diff --git a/dev/api/index.html b/dev/api/index.html index 3aa054ca7..bf832549a 100644 --- a/dev/api/index.html +++ b/dev/api/index.html @@ -1,54 +1,54 @@ -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. It contains hardware limitations of the MRI resonator. It is an input for the simulation.

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's 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()
 
-julia> sys.B0
source

Phantom

KomaMRICore.PhantomType
obj = Phantom(name, x, y, z, ρ, T1, T2, T2s, Δw, Dλ1, Dλ2, Dθ, ux, uy, uz)

The Phantom struct. Most of its field names are vectors, with each element associated with a property value representing a spin. This struct serves as an input for the simulation.

Arguments

  • name: (::String) phantom name
  • x: (::AbstractVector{T<:Real}, [m]) spin x-position vector
  • y: (::AbstractVector{T<:Real}, [m]) spin y-position vector
  • z: (::AbstractVector{T<:Real}, [m]) spin z-position vector
  • ρ: (::AbstractVector{T<:Real}) spin proton density vector
  • T1: (::AbstractVector{T<:Real}, [s]) spin T1 parameter vector
  • T2: (::AbstractVector{T<:Real}, [s]) spin T2 parameter vector
  • T2s: (::AbstractVector{T<:Real}, [s]) spin T2s parameter vector
  • Δw: (::AbstractVector{T<:Real}, [rad/s]) spin off-resonance parameter vector
  • Dλ1: (::AbstractVector{T<:Real}) spin Dλ1 (diffusion) parameter vector
  • Dλ2: (::AbstractVector{T<:Real}) spin Dλ2 (diffusion) parameter vector
  • : (::AbstractVector{T<:Real}) spin Dθ (diffusion) parameter vector
  • ux: (::Function) displacement field in the x-axis
  • uy: (::Function) displacement field in the y-axis
  • uz: (::Function) displacement field in the z-axis

Returns

  • obj: (::Phantom) Phantom struct

Examples

julia> obj = Phantom(x=[0.0])
+julia> sys.B0
source

Phantom

KomaMRICore.PhantomType
obj = Phantom(name, x, y, z, ρ, T1, T2, T2s, Δw, Dλ1, Dλ2, Dθ, ux, uy, uz)

The Phantom struct. Most of its field names are vectors, with each element associated with a property value representing a spin. This struct serves as an input for the simulation.

Arguments

  • name: (::String) phantom name
  • x: (::AbstractVector{T<:Real}, [m]) spin x-position vector
  • y: (::AbstractVector{T<:Real}, [m]) spin y-position vector
  • z: (::AbstractVector{T<:Real}, [m]) spin z-position vector
  • ρ: (::AbstractVector{T<:Real}) spin proton density vector
  • T1: (::AbstractVector{T<:Real}, [s]) spin T1 parameter vector
  • T2: (::AbstractVector{T<:Real}, [s]) spin T2 parameter vector
  • T2s: (::AbstractVector{T<:Real}, [s]) spin T2s parameter vector
  • Δw: (::AbstractVector{T<:Real}, [rad/s]) spin off-resonance parameter vector
  • Dλ1: (::AbstractVector{T<:Real}) spin Dλ1 (diffusion) parameter vector
  • Dλ2: (::AbstractVector{T<:Real}) spin Dλ2 (diffusion) parameter vector
  • : (::AbstractVector{T<:Real}) spin Dθ (diffusion) parameter vector
  • ux: (::Function) displacement field in the x-axis
  • uy: (::Function) displacement field in the y-axis
  • uz: (::Function) displacement field in the z-axis

Returns

  • obj: (::Phantom) Phantom struct

Examples

julia> obj = Phantom(x=[0.0])
 
-julia> obj.ρ
source
KomaMRICore.brain_phantom2DFunction
obj = brain_phantom2D(; axis="axial", ss=4)

Creates a two-dimensional brain Phantom struct.

References

  • B. Aubert-Broche, D.L. Collins, A.C. Evans: "A new improved version of the realistic digital brain phantom" NeuroImage, in review - 2006
  • B. 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
  • https://brainweb.bic.mni.mcgill.ca/brainweb

Keywords

  • axis: (::String, ="axial", opts=["axial", "coronal", "sagittal"]) orientation of the phantom
  • ss: (::Integer, =4) subsampling parameter in all axis

Returns

  • obj: (::Phantom) Phantom struct

Examples

julia> obj = brain_phantom2D(; axis="sagittal", ss=1)
+julia> obj.ρ
source
KomaMRICore.brain_phantom2DFunction
obj = brain_phantom2D(; axis="axial", ss=4)

Creates a two-dimensional brain Phantom struct.

References

  • B. Aubert-Broche, D.L. Collins, A.C. Evans: "A new improved version of the realistic digital brain phantom" NeuroImage, in review - 2006
  • B. 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
  • https://brainweb.bic.mni.mcgill.ca/brainweb

Keywords

  • axis: (::String, ="axial", opts=["axial", "coronal", "sagittal"]) orientation of the phantom
  • ss: (::Integer, =4) subsampling parameter in all axis

Returns

  • obj: (::Phantom) Phantom struct

Examples

julia> obj = brain_phantom2D(; axis="sagittal", ss=1)
 
-julia> plot_phantom_map(obj, :ρ)
source
KomaMRICore.brain_phantom3DFunction
obj = brain_phantom3D(; ss=4)

Creates a three-dimentional brain Phantom struct.

References

  • B. Aubert-Broche, D.L. Collins, A.C. Evans: "A new improved version of the realistic digital brain phantom" NeuroImage, in review - 2006
  • B. 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
  • https://brainweb.bic.mni.mcgill.ca/brainweb

Keywords

  • ss: (::Integer, =4) subsampling parameter in all axes

Returns

  • obj: (::Phantom) 3D Phantom struct

Examples

julia> obj = brain_phantom3D(; ss=5)
+julia> plot_phantom_map(obj, :ρ)
source
KomaMRICore.brain_phantom3DFunction
obj = brain_phantom3D(; ss=4)

Creates a three-dimentional brain Phantom struct.

References

  • B. Aubert-Broche, D.L. Collins, A.C. Evans: "A new improved version of the realistic digital brain phantom" NeuroImage, in review - 2006
  • B. 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
  • https://brainweb.bic.mni.mcgill.ca/brainweb

Keywords

  • ss: (::Integer, =4) subsampling parameter in all axes

Returns

  • obj: (::Phantom) 3D Phantom struct

Examples

julia> obj = brain_phantom3D(; ss=5)
 
-julia> plot_phantom_map(obj, :ρ)
source

Sequence

Sequence

KomaMRICore.SequenceType
seq = Sequence()
 seq = Sequence(GR)
 seq = Sequence(GR, RF)
 seq = Sequence(GR, RF, ADC)
 seq = Sequence(GR, RF, ADC, DUR)
 seq = Sequence(GR::Array{Grad,1})
 seq = Sequence(GR::Array{Grad,1}, RF::Array{RF,1})
-seq = Sequence(GR::Array{Grad,1}, RF::Array{RF,1}, A::ADC, DUR, DEF)

The Sequence struct. It contains events of an MRI sequence. Most field names (except for the DEF field) consist of matrices or vectors, where each column index represents a sequence block. This struct serves as an input for the simulation.

Arguments

  • GR: (::Matrix{Grad}) gradient matrix. Rows for x-y-z amplitudes and columns are for blocks
  • RF: (::Matrix{RF}) RF matrix. The 1 row is for the coil and columns are for blocks
  • ADC: (::Array{ADC,1}) ADC block vector
  • DUR: (::Vector, [s]) duration block vector
  • DEF: (::Dict{String, Any}) dictionary with relevant information of the sequence. Possible keys could be ["AdcRasterTime", "GradientRasterTime", "Name", "Nz", "Num_Blocks", "Nx", "Ny", "PulseqVersion", "BlockDurationRaster", "FileName", "RadiofrequencyRasterTime"]

Returns

  • seq: (::Sequence) Sequence struct
source

Grad

KomaMRICore.GradType
gr = Grad(A, T)
+seq = Sequence(GR::Array{Grad,1}, RF::Array{RF,1}, A::ADC, DUR, DEF)

The Sequence struct. It contains events of an MRI sequence. Most field names (except for the DEF field) consist of matrices or vectors, where each column index represents a sequence block. This struct serves as an input for the simulation.

Arguments

  • GR: (::Matrix{Grad}) gradient matrix. Rows for x-y-z amplitudes and columns are for blocks
  • RF: (::Matrix{RF}) RF matrix. The 1 row is for the coil and columns are for blocks
  • ADC: (::Array{ADC,1}) ADC block vector
  • DUR: (::Vector, [s]) duration block vector
  • DEF: (::Dict{String, Any}) dictionary with relevant information of the sequence. Possible keys could be ["AdcRasterTime", "GradientRasterTime", "Name", "Nz", "Num_Blocks", "Nx", "Ny", "PulseqVersion", "BlockDurationRaster", "FileName", "RadiofrequencyRasterTime"]

Returns

  • seq: (::Sequence) Sequence struct
source

Grad

KomaMRICore.GradType
gr = Grad(A, T)
 gr = Grad(A, T, rise)
 gr = Grad(A, T, rise, delay)
 gr = Grad(A, T, rise, fall, delay)

The Grad struct represents a gradient of a sequence event.

Arguments

  • A: (::Real or ::Vector, [T/m]) amplitude of the gradient
  • T: (::Real or ::Vector, [s]) duration of the flat-top
  • rise: (::Real, [s]) duration of the rise
  • fall: (::Real, [s]) duration of the fall
  • delay: (::Real, [s]) duration of the delay

Returns

  • gr: (::Grad) gradient struct

Examples

julia> gr = Grad(1, 1, 0.1, 0.1, 0.2)
 
-julia> seq = Sequence([gr]); plot_seq(seq)
source
KomaMRICore.GradMethod
gr = Grad(f::Function, T::Real, N::Integer; delay::Real)

Generates an arbitrary gradient waveform defined by the function f in the interval t ∈ [0,T]. The time separation between two consecutive samples is given by T/(N-1).

Arguments

  • f: (::Function) function that describes the gradient waveform
  • T: (::Real, [s]) duration of the gradient waveform
  • N: (::Integer, =300) number of samples of the gradient waveform

Keywords

  • delay: (::Real, =0, [s]) delay time of the waveform

Returns

  • gr: (::Grad) gradient struct

Examples

julia> gx = Grad(t -> sin(π*t / 0.8), 0.8)
+julia> seq = Sequence([gr]); plot_seq(seq)
source
KomaMRICore.GradMethod
gr = Grad(f::Function, T::Real, N::Integer; delay::Real)

Generates an arbitrary gradient waveform defined by the function f in the interval t ∈ [0,T]. The time separation between two consecutive samples is given by T/(N-1).

Arguments

  • f: (::Function) function that describes the gradient waveform
  • T: (::Real, [s]) duration of the gradient waveform
  • N: (::Integer, =300) number of samples of the gradient waveform

Keywords

  • delay: (::Real, =0, [s]) delay time of the waveform

Returns

  • gr: (::Grad) gradient struct

Examples

julia> gx = Grad(t -> sin(π*t / 0.8), 0.8)
 
-julia> seq = Sequence([gx]); plot_seq(seq)
source

RF

RF

KomaMRICore.RFType
rf = RF(A, T)
 rf = RF(A, T, Δf)
 rf = RF(A, T, Δf, delay)

The RF struct represents a Radio Frequency excitation of a sequence event.

Arguments

  • A: (::Complex, [T]) RF complex amplitud modulation (AM), $B_1(t) = |B_1(t)| e^{i\phi(t)} = B_{1}(t) + iB_{1,y}(t)$
  • T: (::Real, [s]) RF duration
  • Δf: (::Real or ::Vector, [Hz]) RF frequency difference with respect to the Larmor frequency. This can be a number but also a vector to represent frequency modulated signals (FM).
  • delay: (::Real, [s]) RF delay time

Returns

  • rf: (::RF) the RF struct

Examples

julia> rf = RF(1, 1, 0, 0.2)
 
-julia> seq = Sequence(); seq += rf; plot_seq(seq)
source

ADC

ADC

KomaMRICore.ADCType
adc = ADC(N, T)
 adc = ADC(N, T, delay)
 adc = ADC(N, T, delay, Δf, ϕ)

The ADC struct represents the Analog to Digital Converter (ADC) of a sequence event.

Arguments

  • N: (::Int64) number of acquired samples
  • T: (::Float64, [s]) duration to acquire the samples
  • delay: (::Float64, [s]) delay time to start the acquisition
  • Δf: (::Float64, [Hz]) delta frequency. It is meant to compensate RF pulse phases
  • ϕ: (::Float64, [rad]) phase. It is meant to compensate RF pulse phases

Returns

  • adc: (::ADC) ADC struct

Examples

julia> adc = ADC(16, 1, 0.1)
 
-julia> seq = Sequence(); seq += adc; plot_seq(seq)
source

Delay

KomaMRICore.DelayType
delay = Delay(T)

The Delay struct is meant to add a delay to a sequence by using a sum operator.

Arguments

  • T: (::Real, [s]) time delay value

Returns

  • delay: (::Delay) delay struct

Examples

julia> delay = Delay(0.5)
+julia> seq = Sequence(); seq += adc; plot_seq(seq)
source

Delay

KomaMRICore.DelayType
delay = Delay(T)

The Delay struct is meant to add a delay to a sequence by using a sum operator.

Arguments

  • T: (::Real, [s]) time delay value

Returns

  • delay: (::Delay) delay struct

Examples

julia> delay = Delay(0.5)
 
 julia> s = Sequence([Grad(1, 1, 0.1)])
 
-julia> seq = delay + s; plot_seq(seq)
source

Read Data

read_seq

KomaMRIFiles.read_seqFunction
seq = read_seq(filename)

Returns the Sequence struct from a Pulseq file with .seq extension.

Arguments

  • filename: (::String) absolute or relative path of the sequence file .seq

Returns

  • seq: (::Sequence) Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
+julia> seq = delay + s; plot_seq(seq)
source

Read Data

read_seq

KomaMRIFiles.read_seqFunction
seq = read_seq(filename)

Returns the Sequence struct from a Pulseq file with .seq extension.

Arguments

  • filename: (::String) absolute or relative path of the sequence file .seq

Returns

  • seq: (::Sequence) Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
 
 julia> seq = read_seq(seq_file)
 
-julia> plot_seq(seq)
source

read_phantom_jemris

KomaMRIFiles.read_phantom_jemrisFunction
obj = read_phantom_jemris(filename)

Returns the Phantom struct from a JEMRIS phantom file .h5.

Arguments

  • filename: (::String) the absolute or relative path of the phantom file .h5

Returns

  • obj: (::Phantom) Phantom struct

Examples

julia> obj_file = joinpath(dirname(pathof(KomaMRI)), "../examples/2.phantoms/brain.h5")
+julia> plot_seq(seq)
source

read_phantom_jemris

KomaMRIFiles.read_phantom_jemrisFunction
obj = read_phantom_jemris(filename)

Returns the Phantom struct from a JEMRIS phantom file .h5.

Arguments

  • filename: (::String) the absolute or relative path of the phantom file .h5

Returns

  • obj: (::Phantom) Phantom struct

Examples

julia> obj_file = joinpath(dirname(pathof(KomaMRI)), "../examples/2.phantoms/brain.h5")
 
 julia> obj = read_phantom_jemris(obj_file)
 
-julia> plot_phantom_map(obj, :ρ)
source

read_phantom_MRiLab

KomaMRIFiles.read_phantom_MRiLabFunction
obj = read_phantom_MRiLab(filename)

Returns the Phantom struct from a MRiLab phantom file .mat.

Arguments

  • filename: (::String) the absolute or relative path of the phantom file .mat

Returns

  • obj: (::Phantom) Phantom struct

Examples

julia> obj_file = joinpath(dirname(pathof(KomaMRI)), "../examples/2.phantoms/brain.mat")
+julia> plot_phantom_map(obj, :ρ)
source

read_phantom_MRiLab

KomaMRIFiles.read_phantom_MRiLabFunction
obj = read_phantom_MRiLab(filename)

Returns the Phantom struct from a MRiLab phantom file .mat.

Arguments

  • filename: (::String) the absolute or relative path of the phantom file .mat

Returns

  • obj: (::Phantom) Phantom struct

Examples

julia> obj_file = joinpath(dirname(pathof(KomaMRI)), "../examples/2.phantoms/brain.mat")
 
 julia> obj = read_phantom_MRiLab(obj_file)
 
-julia> plot_phantom_map(obj, :ρ)
source

signal_to_raw_data

KomaMRICore.signal_to_raw_dataFunction
raw = signal_to_raw_data(signal, seq; phantom_name, sys, sim_params)

Transforms the raw signal into a RawAcquisitionData struct (nearly equivalent to the ISMRMRD format) used for reconstruction with MRIReco.

Arguments

  • signal: (::Matrix{Complex}) raw signal matrix
  • seq: (::Sequence) Sequence struct

Keywords

  • phantom_name: (::String, ="Phantom") phantom name
  • sys: (::Scanner, =Scanner()) Scanner struct
  • sim_params: (::Dict{String, Any}, =Dict{String,Any}()) simulation parameter dictionary

Returns

  • raw: (::RawAcquisitionData) RawAcquisitionData struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/epi_se.seq")
+julia> plot_phantom_map(obj, :ρ)
source

signal_to_raw_data

KomaMRICore.signal_to_raw_dataFunction
raw = signal_to_raw_data(signal, seq; phantom_name, sys, sim_params)

Transforms the raw signal into a RawAcquisitionData struct (nearly equivalent to the ISMRMRD format) used for reconstruction with MRIReco.

Arguments

  • signal: (::Matrix{Complex}) raw signal matrix
  • seq: (::Sequence) Sequence struct

Keywords

  • phantom_name: (::String, ="Phantom") phantom name
  • sys: (::Scanner, =Scanner()) Scanner struct
  • sim_params: (::Dict{String, Any}, =Dict{String,Any}()) simulation parameter dictionary

Returns

  • raw: (::RawAcquisitionData) RawAcquisitionData struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/epi_se.seq")
 
 julia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)
 
@@ -58,76 +58,76 @@
 
 julia> raw = signal_to_raw_data(signal, seq)
 
-julia> plot_signal(raw)
source

Pulse Design

PulseDesigner

PulseDesigner.RF_hard

KomaMRICore.PulseDesigner.RF_hardFunction
seq = RF_hard(B1, T, sys; G=[0, 0, 0], Δf=0)

Returns a sequence with a RF excitation pulse.

Arguments

  • B1: (::Number, [T]) RF pulse amplitude
  • T: (::Real, [s]) RF pulse duration
  • sys: (::Scanner) Scanner struct

Keywords

  • G: (::Vector{Real}, =[0, 0, 0], [T/m]) gradient amplitudes for x, y, z
  • Δf: (::Real, =0, [Hz]) RF pulse carrier frequency displacement

Returns

  • seq: (::Sequence) Sequence struct with a RF pulse

Examples

julia> sys = Scanner(); durRF = π / 2 / (2π * γ * sys.B1);
+julia> plot_signal(raw)
source

Pulse Design

PulseDesigner

PulseDesigner.RF_hard

KomaMRICore.PulseDesigner.RF_hardFunction
seq = RF_hard(B1, T, sys; G=[0, 0, 0], Δf=0)

Returns a sequence with a RF excitation pulse.

Arguments

  • B1: (::Number, [T]) RF pulse amplitude
  • T: (::Real, [s]) RF pulse duration
  • sys: (::Scanner) Scanner struct

Keywords

  • G: (::Vector{Real}, =[0, 0, 0], [T/m]) gradient amplitudes for x, y, z
  • Δf: (::Real, =0, [Hz]) RF pulse carrier frequency displacement

Returns

  • seq: (::Sequence) Sequence struct with a RF pulse

Examples

julia> sys = Scanner(); durRF = π / 2 / (2π * γ * sys.B1);
 
 julia> seq = PulseDesigner.RF_hard(sys.B1, durRF, sys);
 
-julia> plot_seq(seq)
source

PulseDesigner.RF_sinc

KomaMRICore.PulseDesigner.RF_sincFunction
seq = RF_sinc(B1, T, sys; G=[0, 0, 0], Δf=0, a=0.46, TBP=4)

Returns a sequence with a RF sinc waveform.

References

  • Matt 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.

Arguments

  • B1: (::Number, [T]) RF sinc amplitude
  • T: (::Real, [s]) RF sinc duration
  • sys: (::Scanner) Scanner struct

Keywords

  • G: (::Vector{Real}, =[0, 0, 0], [T/m]) gradient amplitudes for x, y, z
  • Δf: (::Real, =0, [Hz]) RF pulse carrier frequency displacement
  • a: (::Real, =0.46) height appodization window parameter
  • TBP: (::Real, =4) width appodization window parameter

Returns

  • seq: (::Sequence) Sequence struct with a RF pulse

Examples

julia> sys = Scanner(); durRF = π / 2 / (2π * γ * sys.B1);
+julia> plot_seq(seq)
source

PulseDesigner.RF_sinc

KomaMRICore.PulseDesigner.RF_sincFunction
seq = RF_sinc(B1, T, sys; G=[0, 0, 0], Δf=0, a=0.46, TBP=4)

Returns a sequence with a RF sinc waveform.

References

  • Matt 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.

Arguments

  • B1: (::Number, [T]) RF sinc amplitude
  • T: (::Real, [s]) RF sinc duration
  • sys: (::Scanner) Scanner struct

Keywords

  • G: (::Vector{Real}, =[0, 0, 0], [T/m]) gradient amplitudes for x, y, z
  • Δf: (::Real, =0, [Hz]) RF pulse carrier frequency displacement
  • a: (::Real, =0.46) height appodization window parameter
  • TBP: (::Real, =4) width appodization window parameter

Returns

  • seq: (::Sequence) Sequence struct with a RF pulse

Examples

julia> sys = Scanner(); durRF = π / 2 / (2π * γ * sys.B1);
 
 julia> seq = PulseDesigner.RF_sinc(sys.B1, durRF, sys);
 
-julia> plot_seq(seq)
source

PulseDesigner.EPI

KomaMRICore.PulseDesigner.EPIFunction
seq = EPI(FOV::Real, N::Integer, sys::Scanner)

Returns a sequence with EPI gradients.

Arguments

  • FOV: (::Real, [m]) field of view
  • N: (::Integer) number of pixels in the x and y axis
  • sys: (::Scanner) Scanner struct

Returns

  • seq: (::Sequence) Sequence struct with EPI gradients

Examples

julia> sys, FOV, N = Scanner(), 23e-2, 101
+julia> plot_seq(seq)
source

PulseDesigner.EPI

KomaMRICore.PulseDesigner.EPIFunction
seq = EPI(FOV::Real, N::Integer, sys::Scanner)

Returns a sequence with EPI gradients.

Arguments

  • FOV: (::Real, [m]) field of view
  • N: (::Integer) number of pixels in the x and y axis
  • sys: (::Scanner) Scanner struct

Returns

  • seq: (::Sequence) Sequence struct with EPI gradients

Examples

julia> sys, FOV, N = Scanner(), 23e-2, 101
 
 julia> seq = PulseDesigner.EPI(FOV, N, sys)
 
 julia> plot_seq(seq)
 
-julia> plot_kspace(seq)
source

PulseDesigner.radial_base

KomaMRICore.PulseDesigner.radial_baseFunction
seq = radial_base(FOV::Real, Nr::Integer, sys::Scanner)

Returns a sequence with radial gradients for a single trajectory.

Arguments

  • FOV: (::Real, [m]) field of view
  • N: (::Integer) number of pixels along the diameter
  • sys: (::Scanner) Scanner struct

Returns

  • seq: (::Sequence) Sequence struct of a single radial trajectory

Examples

julia> sys, FOV, N = Scanner(), 23e-2, 101
+julia> plot_kspace(seq)
source

PulseDesigner.radial_base

KomaMRICore.PulseDesigner.radial_baseFunction
seq = radial_base(FOV::Real, Nr::Integer, sys::Scanner)

Returns a sequence with radial gradients for a single trajectory.

Arguments

  • FOV: (::Real, [m]) field of view
  • N: (::Integer) number of pixels along the diameter
  • sys: (::Scanner) Scanner struct

Returns

  • seq: (::Sequence) Sequence struct of a single radial trajectory

Examples

julia> sys, FOV, N = Scanner(), 23e-2, 101
 
 julia> seq = PulseDesigner.radial_base(FOV, N, sys)
 
 julia> plot_seq(seq)
 
-julia> plot_kspace(seq)
source

PulseDesigner.spiral_base

KomaMRICore.PulseDesigner.spiral_baseFunction
spiral = spiral_base(FOV, N, sys; S0=sys.Smax*2/3, Nint=8, λ=Nint/FOV, BW=60e3)

Definition of a spiral base sequence.

References

  • Glover, 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

Arguments

  • FOV: (::Real, [m]) field of view
  • N: (::Integer) number of pixels along the radious
  • sys: (::Scanner) Scanner struct

Keywords

  • S0: (::Vector{Real}, =sys.Smax*2/3, [T/m/s]) slew rate reference
  • Nint: (::Integer, =8) number of interleaves
  • λ: (::Real, =Nint/FOV, [1/m]) kspace spiral parameter
  • BW: (::Real, =60e3, [Hz]) adquisition parameter

Returns

  • spiral: (::Function) function that returns a Sequence struct when evaluated

Examples

julia> sys, FOV, N = Scanner(), 23e-2, 101
+julia> plot_kspace(seq)
source

PulseDesigner.spiral_base

KomaMRICore.PulseDesigner.spiral_baseFunction
spiral = spiral_base(FOV, N, sys; S0=sys.Smax*2/3, Nint=8, λ=Nint/FOV, BW=60e3)

Definition of a spiral base sequence.

References

  • Glover, 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

Arguments

  • FOV: (::Real, [m]) field of view
  • N: (::Integer) number of pixels along the radious
  • sys: (::Scanner) Scanner struct

Keywords

  • S0: (::Vector{Real}, =sys.Smax*2/3, [T/m/s]) slew rate reference
  • Nint: (::Integer, =8) number of interleaves
  • λ: (::Real, =Nint/FOV, [1/m]) kspace spiral parameter
  • BW: (::Real, =60e3, [Hz]) adquisition parameter

Returns

  • spiral: (::Function) function that returns a Sequence struct when evaluated

Examples

julia> sys, FOV, N = Scanner(), 23e-2, 101
 
 julia> spiral = PulseDesigner.spiral_base(FOV, N, sys)
 
 julia> seq = spiral(0)
 
-julia> plot_seq(seq)
source

PulseDesigner.EPI_example

KomaMRICore.PulseDesigner.EPI_exampleFunction
seq = EPI_example(; sys=Scanner())

Returns a sequence suitable for acquiring the 2D brain example in the provided examples.

Keywords

  • sys: (::Scanner) Scanner struct

Returns

  • seq: (::Sequence) EPI example Sequence struct

Examples

julia> seq = PulseDesigner.EPI_example();
+julia> plot_seq(seq)
source

PulseDesigner.EPI_example

KomaMRICore.PulseDesigner.EPI_exampleFunction
seq = EPI_example(; sys=Scanner())

Returns a sequence suitable for acquiring the 2D brain example in the provided examples.

Keywords

  • sys: (::Scanner) Scanner struct

Returns

  • seq: (::Sequence) EPI example Sequence struct

Examples

julia> seq = PulseDesigner.EPI_example();
 
-julia> plot_seq(seq)
source

Simulation

simulate

KomaMRICore.simulateFunction
out = simulate(obj::Phantom, seq::Sequence, sys::Scanner; sim_params, w)

Returns the raw signal or the last state of the magnetization according to the value of the "return_type" key of the sim_params dictionary.

Arguments

  • obj: (::Phantom) Phantom struct
  • seq: (::Sequence) Sequence struct
  • sys: (::Scanner) Scanner struct

Keywords

  • sim_params: (::Dict{String,Any}, =Dict{String,Any}()) simulation parameter dictionary
  • w: (::Blink.AtomShell.Window, =nothing) the window within which to display a progress bar in the Blink Window UI. If this variable is anything other than 'nothing', the progress bar will be considered

Returns

  • out: (::Vector{Complex} or ::SpinStateRepresentation or ::RawAcquisitionData) depending on whether "return_type" is "mat", "state" or "raw" (default), respectively

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq");
+julia> plot_seq(seq)
source

Simulation

simulate

KomaMRICore.simulateFunction
out = simulate(obj::Phantom, seq::Sequence, sys::Scanner; sim_params, w)

Returns the raw signal or the last state of the magnetization according to the value of the "return_type" key of the sim_params dictionary.

Arguments

  • obj: (::Phantom) Phantom struct
  • seq: (::Sequence) Sequence struct
  • sys: (::Scanner) Scanner struct

Keywords

  • sim_params: (::Dict{String,Any}, =Dict{String,Any}()) simulation parameter dictionary
  • w: (::Blink.AtomShell.Window, =nothing) the window within which to display a progress bar in the Blink Window UI. If this variable is anything other than 'nothing', the progress bar will be considered

Returns

  • out: (::Vector{Complex} or ::SpinStateRepresentation or ::RawAcquisitionData) depending on whether "return_type" is "mat", "state" or "raw" (default), respectively

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq");
 
 julia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)
 
 julia> raw = simulate(obj, seq, sys)
 
-julia> plot_signal(raw)
source

simulate_slice_profile

KomaMRICore.simulate_slice_profileFunction
mag = simulate_slice_profile(seq; z, sim_params)

Returns magnetization of spins distributed along z after running the Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • z: (=range(-2e-2,2e-2,200)) range for the z axis
  • sim_params: (::Dict{String, Any}, =Dict{String,Any}("Δt_rf"=>1e-6)) dictionary with simulation parameters

Returns

  • mag: (::SpinStateRepresentation) final state of the magnetization vector
source

Plots

plot_phantom_map

KomaMRIPlots.plot_phantom_mapFunction
p = plot_phantom_map(obj::Phantom, key::Symbol; kwargs...)

Plots a phantom map for a specific spin parameter given by key.

Arguments

  • obj: (::Phantom) Phantom struct
  • key: (::Symbol, opts: [, :T1, :T2, :T2s, :x, :y, :z]) symbol for displaying different parameters of the phantom spins

Keywords

  • t0: (::Real, =0, [ms]) time to see displacement of the phantom
  • height: (::Integer, =600) plot height
  • width: (::Integer, =nothing) plot width
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • view_2d: (::Bool, =false) boolean to indicate whether to use a 2D scatter plot
  • colorbar: (::Bool, =true) boolean to indicate whether to display a colorbar

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the phantom map for a specific spin parameter

References

Colormaps from https://github.com/markgriswold/MRFColormaps Towards Unified Colormaps for Quantitative MRF Data, Mark Griswold, et al. (2018).

Examples

julia> obj2D, obj3D = brain_phantom2D(), brain_phantom3D();
+julia> plot_signal(raw)
source

simulate_slice_profile

KomaMRICore.simulate_slice_profileFunction
mag = simulate_slice_profile(seq; z, sim_params)

Returns magnetization of spins distributed along z after running the Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • z: (=range(-2e-2,2e-2,200)) range for the z axis
  • sim_params: (::Dict{String, Any}, =Dict{String,Any}("Δt_rf"=>1e-6)) dictionary with simulation parameters

Returns

  • mag: (::SpinStateRepresentation) final state of the magnetization vector
source

Plots

plot_phantom_map

KomaMRIPlots.plot_phantom_mapFunction
p = plot_phantom_map(obj::Phantom, key::Symbol; kwargs...)

Plots a phantom map for a specific spin parameter given by key.

Arguments

  • obj: (::Phantom) Phantom struct
  • key: (::Symbol, opts: [, :T1, :T2, :T2s, :x, :y, :z]) symbol for displaying different parameters of the phantom spins

Keywords

  • t0: (::Real, =0, [ms]) time to see displacement of the phantom
  • height: (::Integer, =600) plot height
  • width: (::Integer, =nothing) plot width
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • view_2d: (::Bool, =false) boolean to indicate whether to use a 2D scatter plot
  • colorbar: (::Bool, =true) boolean to indicate whether to display a colorbar

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the phantom map for a specific spin parameter

References

Colormaps from https://github.com/markgriswold/MRFColormaps Towards Unified Colormaps for Quantitative MRF Data, Mark Griswold, et al. (2018).

Examples

julia> obj2D, obj3D = brain_phantom2D(), brain_phantom3D();
 
 julia> plot_phantom_map(obj2D, :ρ)
 
-julia> plot_phantom_map(obj3D, :ρ)
source

plot_seq

KomaMRIPlots.plot_seqFunction
p = plot_seq(seq::Sequence; kwargs...)

Plots a sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title
  • max_rf_samples: (::Integer, =100) maximum number of RF samples

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
+julia> plot_phantom_map(obj3D, :ρ)
source

plot_seq

KomaMRIPlots.plot_seqFunction
p = plot_seq(seq::Sequence; kwargs...)

Plots a sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title
  • max_rf_samples: (::Integer, =100) maximum number of RF samples

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
 
 julia> seq = read_seq(seq_file)
 
-julia> plot_seq(seq)
source

plot_kspace

KomaMRIPlots.plot_kspaceFunction
p = plot_kspace(seq::Sequence; width=nothing, height=nothing, darkmode=false)

Plots the k-space of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the k-space of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
+julia> plot_seq(seq)
source

plot_kspace

KomaMRIPlots.plot_kspaceFunction
p = plot_kspace(seq::Sequence; width=nothing, height=nothing, darkmode=false)

Plots the k-space of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the k-space of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
 
 julia> seq = read_seq(seq_file)
 
-julia> plot_kspace(seq)
source

plot_M0

KomaMRIPlots.plot_M0Function
p = plot_M0(seq::Sequence; kwargs...)

Plots the zero order moment (M0) of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the moment M0 of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
+julia> plot_kspace(seq)
source

plot_M0

KomaMRIPlots.plot_M0Function
p = plot_M0(seq::Sequence; kwargs...)

Plots the zero order moment (M0) of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the moment M0 of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
 
 julia> seq = read_seq(seq_file)
 
-julia> plot_M0(seq)
source

plot_M1

KomaMRIPlots.plot_M1Function
p = plot_M1(seq::Sequence; kwargs...)

Plots the first order moment (M1) of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the moment M1 of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
+julia> plot_M0(seq)
source

plot_M1

KomaMRIPlots.plot_M1Function
p = plot_M1(seq::Sequence; kwargs...)

Plots the first order moment (M1) of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the moment M1 of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
 
 julia> seq = read_seq(seq_file)
 
-julia> plot_M1(seq)
source

plot_M2

KomaMRIPlots.plot_M2Function
p = plot_M2(seq::Sequence; kwargs...)

Plots the second order moment (M2) of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the moment M2 of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
+julia> plot_M1(seq)
source

plot_M2

KomaMRIPlots.plot_M2Function
p = plot_M2(seq::Sequence; kwargs...)

Plots the second order moment (M2) of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the moment M2 of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
 
 julia> seq = read_seq(seq_file)
 
-julia> plot_M2(seq)
source

plot_eddy_currents

KomaMRIPlots.plot_eddy_currentsFunction
p = plot_eddy_currents(seq::Sequence, λ; kwargs...)

Plots the eddy currents of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct
  • λ: (::Real, [s]) time constant for the decay of Eddy currents

Keywords

  • α: (::Vector{Real}, =ones(size(λ))) eddy currents factors
  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the Eddy currents of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
+julia> plot_M2(seq)
source

plot_eddy_currents

KomaMRIPlots.plot_eddy_currentsFunction
p = plot_eddy_currents(seq::Sequence, λ; kwargs...)

Plots the eddy currents of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct
  • λ: (::Real, [s]) time constant for the decay of Eddy currents

Keywords

  • α: (::Vector{Real}, =ones(size(λ))) eddy currents factors
  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the Eddy currents of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
 
 julia> seq = read_seq(seq_file)
 
-julia> plot_eddy_currents(seq, 80e-3)
source

plot_slew_rate

KomaMRIPlots.plot_slew_rateFunction
p = plot_slew_rate(seq::Sequence; kwargs...)

Plots the slew rate currents of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the slew rate currents of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
+julia> plot_eddy_currents(seq, 80e-3)
source

plot_slew_rate

KomaMRIPlots.plot_slew_rateFunction
p = plot_slew_rate(seq::Sequence; kwargs...)

Plots the slew rate currents of a Sequence struct.

Arguments

  • seq: (::Sequence) Sequence struct

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially
  • title: (::String, ="") plot title

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the slew rate currents of the Sequence struct

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/1.sequences/spiral.seq")
 
 julia> seq = read_seq(seq_file)
 
-julia> plot_slew_rate(seq)
source

plot_signal

KomaMRIPlots.plot_signalFunction
p = plot_signal(raw::RawAcquisitionData; kwargs...)

Plots a raw signal in ISMRMRD format.

Arguments

  • raw: (::RawAcquisitionData) RawAcquisitionData struct (raw signal in ISMRMRD format)

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the raw signal

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq");
+julia> plot_slew_rate(seq)
source

plot_signal

KomaMRIPlots.plot_signalFunction
p = plot_signal(raw::RawAcquisitionData; kwargs...)

Plots a raw signal in ISMRMRD format.

Arguments

  • raw: (::RawAcquisitionData) RawAcquisitionData struct (raw signal in ISMRMRD format)

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • slider: (::Bool, =true) boolean to indicate whether to display a slider
  • show_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • range: (::Vector{Real}, =[]) time range to be displayed initially

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the raw signal

Examples

julia> seq_file = joinpath(dirname(pathof(KomaMRI)), "../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq");
 
 julia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)
 
 julia> raw = simulate(obj, seq, sys)
 
-julia> plot_signal(raw)
source

plot_image

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

Plots an image matrix.

Arguments

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

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • zmin: (::Real, =minimum(abs.(image[:]))) reference value for minimum color
  • zmax: (::Real, =maximum(abs.(image[:]))) reference value for maximum color
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • title: (::String, ="") plot title

Returns

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

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)
source

plot_image

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

Plots an image matrix.

Arguments

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

Keywords

  • width: (::Integer, =nothing) plot width
  • height: (::Integer, =nothing) plot height
  • zmin: (::Real, =minimum(abs.(image[:]))) reference value for minimum color
  • zmax: (::Real, =maximum(abs.(image[:]))) reference value for maximum color
  • darkmode: (::Bool, =false) boolean to indicate whether to display darkmode style
  • title: (::String, ="") plot title

Returns

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

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/examples/1-seq.html b/dev/assets/examples/1-seq.html index ce880ab48..92cdb6693 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('f3c6470c-7200-47af-8752-272bc829e51c')) { + if (document.getElementById('3c3e1984-9790-4d48-8c4e-1d0eebdf9c7e')) { Plotly.newPlot( - 'f3c6470c-7200-47af-8752-272bc829e51c', + '3c3e1984-9790-4d48-8c4e-1d0eebdf9c7e', [{"showlegend":true,"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],"xaxis":"x","y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gx","yaxis":"y","legendgroup":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#636EFA"}},{"showlegend":true,"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],"xaxis":"x","y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gy","yaxis":"y","legendgroup":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#EF553B"}},{"showlegend":true,"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],"xaxis":"x","y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gz","yaxis":"y","legendgroup":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#00CC96"}},{"showlegend":true,"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],"xaxis":"x","y":[null,null,null,null,null,null,0.0,2.0,2.0,0.0,null,null,null,null,null],"type":"scatter","name":"|B1|","yaxis":"y","legendgroup":"|B1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","marker":{"color":"#AB63FA"}},{"showlegend":true,"xaxis":"x","visible":"legendonly","name":"
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('f89c659a-2a1f-41cd-8c66-76b4e6ea3552')) { + if (document.getElementById('3afb1be1-c069-4efa-9443-f98e368ecfda')) { Plotly.newPlot( - 'f89c659a-2a1f-41cd-8c66-76b4e6ea3552', + '3afb1be1-c069-4efa-9443-f98e368ecfda', [{"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.965,3.995,4.025,4.055,4.085,4.115,4.1450000000000005,4.175,4.205,4.235,4.265,4.295,4.325,4.355,4.385,4.415,4.445,4.475,4.505,4.535,4.565,4.595,4.625,4.655,4.6850000000000005,4.715,4.745,4.775,4.805,4.835,4.865,4.8950000000000005,4.925,4.955,4.985,5.015,5.045,5.075,5.105,5.135,5.165,5.195,5.225,5.255,5.285,5.315,5.345,5.375,5.405,5.4350000000000005,5.465,5.495,5.525,5.555,5.585,5.615,5.6450000000000005,5.675,5.705,5.735,5.765,5.795,5.825,5.855,5.885,5.915,5.945,5.975,6.005,6.035,6.065,6.095,6.125,6.155,6.1850000000000005,6.215,6.245,6.275,6.305,6.335,6.365,6.3950000000000005,6.425,6.455,6.485,6.515,6.545,6.575,6.605,6.635,6.665,6.695,6.725,6.755,6.785,6.815,6.845,6.875,6.905,6.9350000000000005,6.965,6.995,7.025,7.055,7.085,7.115,7.1450000000000005,7.175,7.205,7.235,7.265,7.295,7.325,7.355,7.385,7.415,7.445,7.475,7.505,7.535,7.565,7.595,7.625,7.655,7.6850000000000005,7.715,7.745,7.775,7.805,7.835,7.865,7.8950000000000005,7.925,7.955,7.985,8.015,8.045,8.075,8.105,8.135,8.165000000000001,8.195,8.225,8.255,8.285,8.315,8.345,8.375,8.405,8.435,8.465,8.495,8.525,8.555,8.585,8.615,8.645,8.675,8.705,8.735,8.765,8.795,8.825,8.855,8.885,8.915000000000001,8.945,8.975,9.005,9.035,9.065,9.095,9.125,9.155,9.185,9.215,9.245,9.275,9.305,9.335,9.365,9.395,9.425,9.455,9.485,9.515,9.545,9.575,9.605,9.635,9.665000000000001,9.695,9.725,9.755,9.785,9.815,9.845,9.875,9.905,9.935,9.965,9.995,10.025,10.055,10.085,10.115,10.145,10.175,10.205,10.235,10.265,10.295,10.325,10.355,10.385,10.415000000000001,10.445,10.475,10.505,10.535,10.565,10.595,10.625,10.655,10.685,10.715,10.745,10.775,10.805,10.835,10.865,10.895,10.925,10.955,10.985,11.015,11.045,11.075,11.105,11.135,11.165000000000001,11.195,11.225,11.255,11.285,11.315,11.345,11.375,11.405,11.435,11.465,11.495,11.525,11.555,11.585,11.615,11.645,11.675,11.705,11.735,11.765,11.795,11.825,11.855,11.885,11.915000000000001,11.945,11.975,12.005,12.035,12.065,12.095,12.125,12.155,12.185,12.215,12.245,12.275,12.305,12.335,12.365,12.395,12.425,12.455,12.485,12.515,12.545,12.575,12.605,12.635,12.665000000000001,12.695,12.725,12.755,12.785,12.815,12.845,12.875,12.905,12.935,12.965,12.995,13.025,13.055,13.085,13.115,13.145,13.175,13.205,13.235,13.265,13.295,13.325,13.355,13.385,13.415000000000001,13.445,13.475,13.505,13.535,13.565,13.595,13.625,13.655,13.685,13.715,13.745,13.775,13.805,13.835,13.865,13.895,13.925,13.955,13.985,14.015,14.045,14.075,14.105,14.135,14.165000000000001,14.195,14.225,14.255,14.285,14.315,14.345,14.375,14.405,14.435,14.465,14.495,14.525,14.555,14.585,14.615,14.645,14.675,14.705,14.735,14.765,14.795,14.825,14.855,14.885,14.915000000000001,14.945,14.975,15.005,15.035,15.065,15.095,15.125,15.155,15.185,15.215,15.245,15.275,15.305,15.335,15.365,15.395,15.425,15.455,15.485,15.515,15.545,15.575,15.605,15.635,15.665000000000001,15.695,15.725,15.755,15.785,15.815,15.845,15.875,15.905,15.935,15.965,15.995,16.025,16.055,16.085,16.115,16.145,16.175,16.205,16.235,16.265,16.295,16.325,16.355,16.385,16.415,16.445,16.475,16.505,16.535,16.565,16.595,16.625,16.655,16.685,16.715,16.745,16.775,16.805,16.835,16.865,16.895,16.925,16.955,16.985,17.015,17.045,17.075,17.105,17.135,17.165,17.195,17.225,17.255,17.285,17.315,17.345,17.375,17.405,17.435,17.465,17.495,17.525,17.555,17.585,17.615,17.645,17.675,17.705,17.735,17.765,17.795,17.825,17.855,17.885,17.915,17.945,17.975,18.005,18.035,18.065,18.095,18.125,18.155,18.185,18.215,18.245,18.275,18.305,18.335,18.365,18.395,18.425,18.455,18.485,18.515,18.545,18.575,18.605,18.635,18.665,18.695,18.725,18.755,18.785,18.815,18.845,18.875,18.905,18.935,18.965,18.995,19.025,19.055,19.085,19.115,19.145,19.175,19.205,19.235,19.265,19.295,19.325,19.355,19.385,19.415,19.445,19.475,19.505,19.535,19.565,19.595,19.625,19.655,19.685,19.715,19.745,19.775,19.805,19.835,19.865,19.895,19.925,19.955,19.985,20.015,20.045,20.075,20.105,20.135,20.165,20.195,20.225,20.255,20.285,20.315,20.345,20.375,20.405,20.435,20.465,20.495,20.525,20.555,20.585,20.615,20.645,20.675,20.705,20.735,20.765,20.795,20.825,20.855,20.885,20.915,20.945,20.975,21.005,21.035,21.065,21.095,21.125,21.155,21.185,21.215,21.245,21.275,21.305,21.335,21.365,21.395,21.425,21.455,21.485,21.515,21.545,21.575,21.605,21.635,21.665,21.695,21.725,21.755,21.785,21.815,21.845,21.875,21.905,21.935,21.965,21.995,22.025,22.055,22.085,22.115,22.145,22.175,22.205,22.235,22.265,22.295,22.325,22.355,22.385,22.415,22.445,22.475,22.505,22.535,22.565,22.595,22.625,22.655,22.685,22.715,22.745,22.775,22.805,22.835,22.865,22.895,22.925,22.955,22.985,23.015,23.045,23.075,23.105,23.135,23.165,23.195,23.225,23.255,23.285,23.315,23.345,23.375,23.405,23.435,23.465,23.495,23.525,23.555,23.585,23.615,23.645,23.675,23.705,23.735,23.765,23.795,23.825,23.855,23.885,23.915,23.945,23.975,24.005,24.035,24.065,24.095,24.125,24.155,24.185,24.215,24.245,24.275,24.305,24.335,24.365,24.395,24.425,24.455,24.485,24.515,24.545,24.575,24.605,24.635,24.665,24.695,24.725,24.755,24.785,24.815,24.845,24.875,24.905,24.935,24.965,24.995,25.025,25.055,25.085,25.115,25.145,25.175,25.205,25.235,25.265,25.295,25.325,25.355,25.385,25.415,25.445,25.475,25.505,25.535,25.565,25.595,25.625,25.655,25.685,25.715,25.745,25.775,25.805,25.835,25.865,25.895,25.925,25.955,25.985,26.015,26.045,26.075,26.105,26.135,26.165,26.195,26.225,26.255,26.285,26.315,26.345,26.375,26.405,26.435,26.465,26.495,26.525,26.555,26.585,26.615,26.645,26.675,26.705,26.735,26.765,26.795,26.825,26.855,26.885,26.915,26.945,26.975,27.005,27.035,27.065,27.095,27.125,27.155,27.185,27.215,27.245,27.275,27.305,27.335,27.365,27.395,27.425,27.455,27.485,27.515,27.545,27.575,27.605,27.635,27.665,27.695,27.725,27.755,27.785,27.815,27.845,27.875,27.905,27.935,27.965,27.995,28.025,28.055,28.085,28.115,28.145,28.175,28.205,28.235,28.265,28.295,28.325,28.355,28.385,28.415,28.445,28.475,28.505,28.535,28.565,28.595,28.625,28.655,28.685,28.715,28.745,28.775,28.805,28.835,28.865,28.895,28.925,28.955,28.985,29.015,29.045,29.075,29.105,29.135,29.165,29.195,29.225,29.255,29.285,29.315,29.345,29.375,29.405,29.435,29.465,29.495,29.525,29.555,29.585,29.615,29.645,29.675,29.705,29.735,29.765,29.795,29.825,29.855,29.885,29.915,29.945,29.975,30.005,30.035,30.065,30.095,30.125,30.155,30.185,30.215,30.245,30.275,30.305,30.335,30.365,30.395,30.425,30.455,30.485,30.515,30.545,30.575,30.605,30.635,30.665,30.695,30.725,30.755,30.785,30.815,30.845,30.875,30.905,30.935,30.965,30.995,31.025,31.055,31.085,31.115,31.145,31.175,31.205,31.235,31.265,31.295,31.325,31.355,31.385,31.415,31.445,31.475,31.505,31.535,31.565,31.595,31.625,31.655,31.685,31.715,31.745,31.775,31.805,31.835,31.865,31.895,31.925,31.955,31.985,32.015,32.045,32.075,32.105,32.135,32.165,32.195,32.225,32.255,32.285,32.315,32.345,32.375,32.405,32.435,32.465,32.495,32.525,32.555,32.585,32.615,32.645,32.675,32.705,32.735,32.765,32.795,32.825,32.855,32.885,32.915,32.945,32.975,33.005,33.035,33.065,33.095,33.125,33.155,33.185,33.215,33.245,33.275,33.305,33.335,33.365,33.395,33.425,33.455,33.485,33.515,33.545,33.575,33.605,33.635,33.665,33.695,33.725,33.755,33.785,33.815,33.845,33.875,33.905,33.935,33.965,33.995,34.025,34.055,34.085,34.115,34.145,34.175,34.205,34.235,34.265,34.295,34.325,34.355,34.385,34.415,34.445,34.475,34.505,34.535,34.565,34.595,34.625,34.655,34.685,34.715,34.745,34.775,34.805,34.835,34.865,34.895,34.925,34.955,34.985,35.015,35.045,35.075,35.105,35.135,35.165,35.195,35.225,35.255,35.285,35.315,35.345,35.375,35.405,35.435,35.465,35.495,35.525,35.555,35.585,35.615,35.645,35.675,35.705,35.735,35.765,35.795,35.825,35.855,35.885,35.915,35.945,35.975,36.005,36.035,36.065,36.095,36.125,36.155,36.185,36.215,36.245,36.275,36.305,36.335,36.365,36.395,36.425,36.455,36.485,36.515,36.545,36.575,36.605,36.635,36.665,36.695,36.725,36.755,36.785,36.815,36.845,36.875,36.905,36.935,36.965,36.995,37.025,37.055,37.085,37.115,37.145,37.175,37.205,37.235,37.265,37.295,37.325,37.355,37.385,37.415,37.445,37.475,37.505,37.535,37.565,37.595,37.625,37.655,37.685,37.715,37.745,37.775,37.805,37.835,37.865,37.895,37.925,37.955,37.985,38.015,38.045,38.075,38.105,38.135,38.165,38.195,38.225,38.255,38.285,38.315,38.345,38.375,38.405,38.435,38.465,38.495,38.525,38.555,38.585,38.615,38.645,38.675,38.705,38.735,38.765,38.795,38.825,38.855,38.885,38.915,38.945,38.975,39.005,39.035,39.065,39.095,39.125,39.155,39.185,39.215,39.245,39.275,39.305,39.335,39.365,39.395,39.425,39.455,39.485,39.515,39.545,39.575,39.605,39.635,39.665,39.695,39.725,39.755,39.785,39.815,39.845,39.875,39.905,39.935,39.965,39.995,40.025,40.055,40.085,40.115,40.145,40.175,40.205,40.235,40.265,40.295,40.325,40.355,40.385,40.415,40.445,40.475,40.505,40.535,40.565,40.595,40.625,40.655,40.685,40.715,40.745,40.775,40.805,40.835,40.865,40.895,40.925,40.955,40.985,41.015,41.045,41.075,41.105,41.135,41.165,41.195,41.225,41.255,41.285,41.315,41.345,41.375,41.405,41.435,41.465,41.495,41.525,41.555,41.585,41.615,41.645,41.675,41.705,41.735,41.765,41.795,41.825,41.855,41.885,41.915,41.945,41.975,42.005,42.035,42.065,42.095,42.125,42.155,42.185,42.215,42.245,42.275,42.305,42.335,42.365,42.395,42.425,42.455,42.485,42.515,42.545,42.575,42.605,42.635,42.665,42.695,42.725,42.755,42.785,42.815,42.845,42.875,42.905,42.935,42.965,42.995,43.025,43.055,43.085,43.115,43.145,43.175,43.205,43.235,43.265,43.295,43.325,43.355,43.385,43.415,43.445,43.475,43.505,43.535,43.565,43.595,43.625,43.655,43.685,43.715,43.745,43.775,43.805,43.835,43.865,43.895,43.925,43.955,43.985,44.015,44.045,44.075,44.105,44.135,44.165,44.195,44.225,44.255,44.285,44.315,44.345,44.375,44.405,44.435,44.465,44.495,44.525,44.555,44.585,44.615,44.645,44.675,44.705,44.735,44.765,44.795,44.825,44.855,44.885,44.915,44.945,44.975,45.005,45.035,45.065,45.095,45.125,45.155,45.185,45.215,45.245,45.275,45.305,45.335,45.365,45.395,45.425,45.455,45.485,45.515,45.545,45.575,45.605,45.635,45.665,45.695,45.725,45.755,45.785,45.815,45.845,45.875,45.905,45.935,45.965,45.995,46.025,46.055,46.085,46.115,46.145,46.175,46.205,46.235,46.265,46.295,46.325,46.355,46.385,46.415,46.445,46.475,46.505,46.535,46.565,46.595,46.625,46.655,46.685,46.715,46.745,46.775,46.805,46.835,46.865,46.895,46.925,46.955,46.985,47.015,47.045,47.075,47.105,47.135,47.165,47.195,47.225,47.255,47.285,47.315,47.345,47.375,47.405,47.435,47.465,47.495,47.525,47.555,47.585,47.615,47.645,47.675,47.705,47.735,47.765,47.795,47.825,47.855,47.885,47.915,47.945,47.975,48.005,48.035,48.065,48.095,48.125,48.155,48.185,48.215,48.245,48.275,48.305,48.335,48.365,48.395,48.425,48.455,48.485,48.515,48.545,48.575,48.605,48.635,48.665,48.695,48.725,48.755,48.785,48.815,48.845,48.875,48.905,48.935,48.965,48.995,49.025,49.055,49.085,49.115,49.145,49.175,49.205,49.235,49.265,49.295,49.325,49.355,49.385,49.415,49.445,49.475,49.505,49.535,49.565,49.595,49.625,49.655,49.685,49.715,49.745,49.775,49.805,49.835,49.865,49.895,49.925,49.955,49.985,50.015,50.045,50.075,50.105,50.135,50.165,50.195,50.225,50.255,50.285,50.315,50.345,50.375,50.405,50.435,50.465,50.495,50.525,50.555,50.585,50.615,50.645,50.675,50.705,50.735,50.765,50.795,50.825,50.855,50.885,50.915,50.945,50.975,51.005,51.035,51.065,51.095,51.125,51.155,51.185,51.215,51.245,51.275,51.305,51.335,51.365,51.395,51.425,51.455,51.485,51.515,51.545,51.575,51.605,51.635,51.665,51.695,51.725,51.755,51.785,51.815,51.845,51.875,51.905,51.935,51.965,51.995,52.025,52.055,52.085,52.115,52.145,52.175,52.205,52.235,52.265,52.295,52.325,52.355,52.385,52.415,52.445,52.475,52.505,52.535,52.565,52.595,52.625,52.655,52.685,52.715,52.745,52.775,52.805,52.835,52.865,52.895,52.925,52.955,52.985,53.015,53.045,53.075,53.105,53.135,53.165,53.195,53.225,53.255,53.285,53.315,53.345,53.375,53.405,53.435,53.465,53.495,53.525,53.555,53.585,53.615,53.645,53.675,53.705,53.735,53.765,53.795,53.825,53.855,53.885,53.915,53.945,53.975,54.005,54.035,54.065,54.095,54.125,54.155,54.185,54.215,54.245,54.275,54.305,54.335,54.365,54.395,54.425,54.455,54.485,54.515,54.545,54.575,54.605,54.635,54.665,54.695,54.725,54.755,54.785,54.815,54.845,54.875,54.905,54.935,54.965,54.995,55.025,55.055,55.085,55.115,55.145,55.175,55.205,55.235,55.265,55.295,55.325,55.355,55.385,55.415,55.445,55.475,55.505,55.535,55.565,55.595,55.625,55.655,55.685,55.715,55.745,55.775,55.805,55.835,55.865,55.895,55.925,55.955,55.985,56.015,56.045,56.075,56.105,56.135,56.165,56.195,56.225,56.255,56.285,56.315,56.345,56.375,56.405,56.435,56.465,56.495,56.525,56.555,56.585,56.615,56.645,56.675,56.705,56.735,56.765,56.795,56.825,56.855,56.885,56.915,56.945,56.975,57.005,57.035,57.065,57.095,57.125,57.155,57.185,57.215,57.245,57.275,57.305,57.335,57.365,57.395,57.425,57.455,57.485,57.515,57.545,57.575,57.605,57.635,57.665,57.695,57.725,57.755,57.785,57.815,57.845,57.875,57.905,57.935,57.965,57.995,58.025,58.055,58.085,58.115,58.145,58.175,58.205,58.235,58.265,58.295,58.325,58.355,58.385,58.415,58.445,58.475,58.505,58.535,58.565,58.595,58.625,58.655,58.685,58.715,58.745,58.775,58.805,58.835,58.865,58.895,58.925,58.955,58.985,59.015,59.045,59.075,59.105,59.135,59.165,59.195,59.225,59.255,59.285,59.315,59.345,59.375,59.405,59.435,59.465,59.495,59.525,59.555,59.585,59.615,59.645,59.675,59.705,59.735,59.765,59.795,59.825,59.855,59.885,59.915,59.945,59.975,60.005,60.035,60.065,60.095,60.125,60.155,60.185,60.215,60.245,60.275,60.305,60.335,60.365,60.395,60.425,60.455,60.485,60.515,60.545,60.575,60.605,60.635,60.665,60.695,60.725,60.755,60.785,60.815,60.845,60.875,60.905,60.935,60.965,60.995,61.025,61.055,61.085,61.115,61.145,61.175,61.205,61.235,61.265,61.295,61.325,61.355,61.385,61.415,61.445,61.475,61.505,61.535,61.565,61.595,61.625,61.655,61.685,61.715,61.745,61.775,61.805,61.835,61.865,61.895,61.925,61.955,61.985,62.015,62.045,62.075,62.105,62.135,62.165,62.195,62.225,62.255,62.285,62.315,62.345,62.375,62.405,62.435,62.465,62.495,62.525,62.555,62.585,62.615,62.645,62.675,62.705,62.735,62.765,62.795,62.825,62.855,62.885,62.915,62.945,62.975,63.005,63.035,63.065,63.095,63.125,63.155,63.185,63.215,63.245,63.275,63.305,63.335,63.365,63.395,63.425,63.455,63.485,63.515,63.545,63.575,63.605,63.635,63.665,63.695,63.725,63.755,63.785,63.815,63.845,63.875,63.905,63.935,63.965,63.995,64.025,64.055,64.085,64.115,64.145,64.175,64.205,64.235,64.265,64.295,64.325,64.355,64.385,64.415,64.445,64.475,64.505,64.535,64.565,64.595,64.625,64.655,64.685,64.715,64.745,64.775,64.805,64.835,64.865,64.895,64.925,64.955,64.985,65.015,65.045,65.075,65.105,65.135,65.165,65.195,65.225,65.255,65.285,65.315,65.345,65.375,65.405,65.435,65.465,65.495,65.525,65.555,65.585,65.615,65.645,65.675,65.705,65.735,65.765,65.795,65.825,65.855,65.885,65.915,65.945,65.975,66.005,66.035,66.065,66.095,66.125,66.155,66.185,66.215,66.245,66.275,66.305,66.335,66.365,66.395,66.425,66.455,66.485,66.515,66.545,66.575,66.605,66.635,66.665,66.695,66.725,66.755,66.785,66.815,66.845,66.875,66.905,66.935,66.965,66.995,67.025,67.055,67.085,67.115,67.145,67.175,67.205,67.235,67.265,67.295,67.325,67.355,67.385,67.415,67.445,67.475,67.505,67.535,67.565,67.595,67.625,67.655,67.685,67.715,67.745,67.775,67.805,67.835,67.865,67.895,67.925,67.955,67.985,68.015,68.045,68.075,68.105,68.135,68.165,68.195,68.225,68.255,68.285,68.315,68.345,68.375,68.405,68.435,68.465,68.495,68.525,68.555,68.585,68.615,68.645,68.675,68.705,68.735,68.765,68.795,68.825,68.855,68.885,68.915,68.945,68.975,69.005,69.035,69.065,69.095,69.125,69.155,69.185,69.215,69.245,69.275,69.305,69.335,69.365,69.395,69.425,69.455,69.485,69.515,69.545,69.575,69.605,69.635,69.665,69.695,69.725,69.755,69.785,69.815,69.845,69.875,69.905,69.935,69.965,69.995,70.025,70.055,70.085,70.115,70.145,70.175,70.205,70.235,70.265,70.295,70.325,70.355,70.385,70.415,70.445,70.475,70.505,70.535,70.565,70.595,70.625,70.655,70.685,70.715,70.745,70.775,70.805,70.835,70.865,70.895,70.925,70.955,70.985,71.015,71.045,71.075,71.105,71.135,71.165,71.195,71.225,71.255,71.285,71.315,71.345,71.375,71.405,71.435,71.465,71.495,71.525,71.555,71.585,71.615,71.645,71.675,71.705,71.735,71.765,71.795,71.825,71.855,71.885,71.915,71.945,71.975,72.005,72.035,72.065,72.095,72.125,72.155,72.185,72.215,72.245,72.275,72.305,72.335,72.365,72.395,72.425,72.455,72.485,72.515,72.545,72.575,72.605,72.635,72.665,72.695,72.725,72.755,72.785,72.815,72.845,72.875,72.905,72.935,72.965,72.995,73.025,73.055,73.085,73.115,73.145,73.175,73.205,73.235,73.265,73.295,73.325,73.355,73.385,73.415,73.445,73.475,73.505,73.535,73.565,73.595,73.625,73.655,73.685,73.715,73.745,73.775,73.805,73.835,73.865,73.895,73.925,73.955,73.985,74.015,74.045,74.075,74.105,74.135,74.165,74.195,74.225,74.255,74.285,74.315,74.345,74.375,74.405,74.435,74.465,74.495,74.525,74.555,74.585,74.615,74.645,74.675,74.705,74.735,74.765,74.795,74.825,74.855,74.885,74.915,74.945,74.975,75.005,75.035,75.065,75.095,75.125,75.155,75.185,75.215,75.245,75.275,75.305,75.335,75.365,75.395,75.425,75.455,75.485,75.515,75.545,75.575,75.605,75.635,75.665,75.695,75.725,75.755,75.785,75.815,75.845,75.875,75.905,75.935,75.965,75.995,76.025,76.055,76.085,76.115,76.145,76.175,76.205,76.235,76.265,76.295,76.325,76.355,76.385,76.415,76.445,76.475,76.505,76.535,76.565,76.595,76.625,76.655,76.685,76.715,76.745,76.775,76.805,76.835,76.865,76.895,76.925,76.955,76.985,77.015,77.045,77.075,77.105,77.135,77.165,77.195,77.225,77.255,77.285,77.315,77.345,77.375,77.405,77.435,77.465,77.495,77.525,77.555,77.585,77.615,77.645,77.675,77.705,77.735,77.765,77.795,77.825,77.855,77.885,77.915,77.945,77.975,78.005,78.035,78.065,78.095,78.125,78.155,78.185,78.215,78.245,78.275,78.305,78.335,78.365,78.395,78.425,78.455,78.485,78.515,78.545,78.575,78.605,78.635,78.665,78.695,78.725,78.755,78.785,78.815,78.845,78.875,78.905,78.935,78.965,78.995,79.025,79.055,79.085,79.115,79.145,79.175,79.205,79.235,79.265,79.295,79.325,79.355,79.385,79.415,79.445,79.475,79.505,79.535,79.565,79.595,79.625,79.655,79.685,79.715,79.745,79.775,79.805,79.835,79.865,79.895,79.925,79.955,79.985,80.015,80.045,80.075,80.105,80.135,80.165,80.195,80.225,80.255,80.285,80.315,80.345,80.375,80.405,80.435,80.465,80.495,80.525,80.555,80.585,80.615,80.645,80.675,80.705,80.735,80.765,80.795,80.825,80.855,80.885,80.915,80.945,80.975,81.005,81.035,81.065,81.095,81.125,81.155,81.185,81.215,81.245,81.275,81.305,81.335,81.365,81.395,81.425,81.455,81.485,81.515,81.545,81.575,81.605,81.635,81.665,81.695,81.725,81.755,81.785,81.815,81.845,81.875,81.905,81.935,81.965,81.995,82.025,82.055,82.085,82.115,82.145,82.175,82.205,82.235,82.265,82.295,82.325,82.355,82.385,82.415,82.445,82.475,82.505,82.535,82.565,82.595,82.625,82.655,82.685,82.715,82.745,82.775,82.805,82.835,82.865,82.895,82.925,82.955,82.985,83.015,83.045,83.075,83.105,83.135,83.165,83.195,83.225,83.255,83.285,83.315,83.345,83.375,83.405,83.435,83.465,83.495,83.525,83.555,83.585,83.615,83.645,83.675,83.705,83.735,83.765,83.795,83.825,83.855,83.885,83.915,83.945,83.975,84.005,84.035,84.065,84.095,84.125,84.155,84.185,84.215,84.245,84.275,84.305,84.335,84.365,84.395,84.425,84.455,84.485,84.515,84.545,84.575,84.605,84.635,84.665,84.695,84.725,84.755,84.785,84.815,84.845,84.875,84.905,84.935,84.965,84.995,85.025,85.055,85.085,85.115,85.145,85.175,85.205,85.235,85.265,85.295,85.325,85.355,85.385,85.415,85.445,85.475,85.505,85.535,85.565,85.595,85.625,85.655,85.685,85.715,85.745,85.775,85.805,85.835,85.865,85.895,85.925,85.955,85.985,86.015,86.045,86.075,86.105,86.135,86.165,86.195,86.225,86.255,86.285,86.315,86.345,86.375,86.405,86.435,86.465,86.495,86.525,86.555,86.585,86.615,86.645,86.675,86.705,86.735,86.765,86.795,86.825,86.855,86.885,86.915,86.945,86.975,87.005,87.035,87.065,87.095,87.125,87.155,87.185,87.215,87.245,87.275,87.305,87.335,87.365,87.395,87.425,87.455,87.485,87.515,87.545,87.575,87.605,87.635,87.665,87.695,87.725,87.755,87.785,87.815,87.845,87.875,87.905,87.935,87.965,87.995,88.025,88.055,88.085,88.115,88.145,88.175,88.205,88.235,88.265,88.295,88.325,88.355,88.385,88.415,88.445,88.475,88.505,88.535,88.565,88.595,88.625,88.655,88.685,88.715,88.745,88.775,88.805,88.835,88.865,88.895,88.925,88.955,88.985,89.015,89.045,89.075,89.105,89.135,89.165,89.195,89.225,89.255,89.285,89.315,89.345,89.375,89.405,89.435,89.465,89.495,89.525,89.555,89.585,89.615,89.645,89.675,89.705,89.735,89.765,89.795,89.825,89.855,89.885,89.915,89.945,89.975,90.005,90.035,90.065,90.095,90.125,90.155,90.185,90.215,90.245,90.275,90.305,90.335,90.365,90.395,90.425,90.455,90.485,90.515,90.545,90.575,90.605,90.635,90.665,90.695,90.725,90.755,90.785,90.815,90.845,90.875,90.905,90.935,90.965,90.995,91.025,91.055,91.085,91.115,91.145,91.175,91.205,91.235,91.265,91.295,91.325,91.355,91.385,91.415,91.445,91.475,91.505,91.535,91.565,91.595,91.625,91.655,91.685,91.715,91.745,91.775,91.805,91.835,91.865,91.895,91.925,91.955,91.985,92.015,92.045,92.075,92.105,92.135,92.165,92.195,92.225,92.255,92.285,92.315,92.345,92.375,92.405,92.435,92.465,92.495,92.525,92.555,92.585,92.615,92.645,92.675,92.705,92.735,92.765,92.795,92.825,92.855,92.885,92.915,92.945,92.975,93.005,93.035,93.065,93.095,93.125,93.155,93.185,93.215,93.245,93.275,93.305,93.335,93.365,93.395,93.425,93.455,93.485,93.515,93.545,93.575,93.605,93.635,93.665,93.695,93.725,93.755,93.785,93.815,93.845,93.875,93.905,93.935,93.965,93.995,94.025,94.055,94.085,94.115,94.145,94.175,94.205,94.235,94.265,94.295,94.325,94.355,94.385,94.415,94.445,94.475,94.505,94.535,94.565,94.595,94.625,94.655,94.685,94.715,94.745,94.775,94.805,94.835,94.865,94.895,94.925,94.955,94.985,95.015,95.045,95.075,95.105,95.135,95.165,95.195,95.225,95.255,95.285,95.315,95.345,95.375,95.405,95.435,95.465,95.495,95.525,95.555,95.585,95.615,95.645,95.675,95.705,95.735,95.765,95.795,95.825,95.855,95.885,95.915,95.945,95.975,96.005,96.035,96.065,96.095,96.125,96.155,96.185,96.215,96.245,96.275,96.305,96.335,96.365,96.395,96.425,96.455,96.485,96.515,96.545,96.575,96.605,96.635,96.665,96.695,96.725,96.755,96.785,96.815,96.845,96.875,96.905,96.935,96.965,96.995,97.025,97.055,97.085,97.115,97.145,97.175,97.205,97.235,97.265,97.295,97.325,97.355,97.385,97.415,97.445,97.475,97.505,97.535,97.565,97.595,97.625,97.655,97.685,97.715,97.745,97.775,97.805,97.835,97.865,97.895,97.925,97.955,97.985,98.015,98.045,98.075,98.105,98.135,98.165,98.195,98.225,98.255,98.285,98.315,98.345,98.375,98.405,98.435,98.465,98.495,98.525,98.555,98.585,98.615,98.645,98.675,98.705,98.735,98.765,98.795,98.825,98.855,98.885,98.915,98.945,98.975,99.005,99.035,99.065,99.095,99.125,99.155,99.185,99.215,99.245,99.275,99.305,99.335,99.365,99.395,99.425,99.455,99.485,99.515,99.545,99.575,99.605,99.635,99.665,99.695,99.725,99.755,99.785,99.815,99.845,99.875,99.905,99.935,99.965,99.995,100.025,100.055,100.085,100.115,100.145,100.175,100.205,100.235,100.265,100.295,100.325,100.355,100.385,100.415,100.445,100.475,100.505,100.535,100.565,100.595,100.625,100.655,100.685,100.715,100.745,100.775,100.805,100.835,100.865,100.895,100.925,100.955,100.985,101.015,101.045,101.075,101.105,101.135,101.165,101.195,101.225,101.255,101.285,101.315,101.345,101.375,101.405,101.435,101.465,101.495,101.525,101.555,101.585,101.615,101.645,101.675,101.705,101.735,101.765,101.795,101.825,101.855,101.885,101.915,101.945,101.975,102.005,102.035,102.065,102.095,102.125,102.155,102.185,102.215,102.245,102.275,102.305,102.335,102.365,102.395,102.425,102.455,102.485,102.515,102.545,102.575,102.605,102.635,102.665,102.695,102.725,102.755,102.785,102.815,102.845,102.875,102.905,102.935,102.965,102.995,103.025,103.055,103.085,103.115,103.145,103.175,103.205,103.235,103.265,103.295,103.325,103.355,103.385,103.415,103.445,103.475,103.505,103.535,103.565,103.595,103.625,103.655,103.685,103.715,103.745,103.775,103.805,103.835,103.865,103.895,103.925,103.955,103.985,104.015,104.045,104.075,104.105,104.135,104.165,104.195,104.225,104.255,104.285,104.315,104.345,104.375,104.405,104.435,104.465,104.495,104.525,104.555,104.585,104.615,104.645,104.675,104.705,104.735,104.765,104.795,104.825,104.855,104.885,104.915,104.945,104.975,105.005,105.035,105.065,105.095,105.125,105.155,105.185,105.215,105.245,105.275,105.305,105.335,105.365,105.395,105.425,105.455,105.485,105.515,105.545,105.575,105.605,105.635,105.665,105.695,105.725,105.755,105.785,105.815,105.845,105.875,105.905,105.935,105.965,105.995,106.025,106.055,106.085,106.115,106.145,106.175,106.205,106.235,106.265,106.295,106.325,106.355,106.385,106.415,106.445,106.475,106.505,106.535,106.565,106.595,106.625,106.655,106.685,106.715,106.745,106.775,106.805,106.835,106.865,106.895,106.925,106.955,106.985,107.015,107.045,107.075,107.105,107.135,107.165,107.195,107.225,107.255,107.285,107.315,107.345,107.375,107.405,107.435,107.465,107.495,107.525,107.555,107.585,107.615,107.645,107.675,107.705,107.735,107.765,107.795,107.825,107.855,107.885,107.915,107.945,107.975,108.005,108.035,108.065,108.095,108.125,108.155,108.185,108.215,108.245,108.275,108.305,108.335,108.365,108.395,108.425,108.455,108.485,108.515,108.545,108.575,108.605,108.635,108.665,108.695,108.725,108.755,108.785,108.815,108.845,108.875,108.905,108.935,108.965,108.995,109.025,109.055,109.085,109.115,109.145,109.175,109.205,109.235,109.265,109.295,109.325,109.355,109.385,109.415,109.445,109.475,109.505,109.535,109.565,109.595,109.625,109.655,109.685,109.715,109.745,109.775,109.805,109.835,109.865,109.895,109.925,109.955,109.985,110.015,110.045,110.075,110.105,110.135,110.165,110.195,110.225,110.255,110.285,110.315,110.345,110.375,110.405,110.435,110.465,110.495,110.525,110.555,110.585,110.615,110.645,110.675,110.705,110.735,110.765,110.795,110.825,110.855,110.885,110.915,110.945,110.975,111.005,111.035,111.065,111.095,111.125,111.155,111.185,111.215,111.245,111.275,111.305,111.335,111.365,111.395,111.425,111.455,111.485,111.515,111.545,111.575,111.605,111.635,111.665,111.695,111.725,111.755,111.785,111.815,111.845,111.875,111.905,111.935,111.965,111.995,112.025,112.055,112.085,112.115,112.145,112.175,112.205,112.235,112.265,112.295,112.325,112.355,112.385,112.415,112.445,112.475,112.505,112.535,112.565,112.595,112.625,112.655,112.685,112.715,112.745,112.775,112.805,112.835,112.865,112.895,112.925,112.955,112.985,113.015,113.045,113.075,113.105,113.135,113.165,113.195,113.225,113.255,113.285,113.315,113.345,113.375,113.405,113.435,113.465,113.495,113.525,113.555,113.585,113.615,113.645,113.675,113.705,113.735,113.765,113.795,113.825,113.855,113.885,113.915,113.945,113.975,114.005,114.035,114.065,114.095,114.125,114.155,114.185,114.215,114.245,114.275,114.305,114.335,114.365,114.395,114.425,114.455,114.485,114.515,114.545,114.575,114.605,114.635,114.665,114.695,114.725,114.755,114.785,114.815,114.845,114.875,114.905,114.935,114.965,114.995,115.025,115.055,115.085,115.115,115.145,115.175,115.205,115.235,115.265,115.295,115.325,115.355,115.385,115.415,115.445,115.475,115.505,115.535,115.565,115.595,115.625,115.655,115.685,115.715,115.745,115.775,115.805,115.835,115.865,115.895,115.925,115.955,115.985,116.015,116.045,116.075,116.105,116.135,116.165,116.195,116.225,116.255,116.285,116.315,116.345,116.375,116.405,116.435,116.465,116.495,116.525,116.555,116.585,116.615,116.645,116.675,116.705,116.735,116.765,116.795,116.825,116.855,116.885,116.915,116.945,116.975,117.005,117.035,117.065,117.095,117.125,117.155,117.185,117.215,117.245,117.275,117.305,117.335,117.365,117.395,117.425,117.455,117.485,117.515,117.545,117.575,117.605,117.635,117.665,117.695,117.725,117.755,117.785,117.815,117.845,117.875,117.905,117.935,117.965,117.995,118.025,118.055,118.085,118.115,118.145,118.175,118.205,118.235,118.265,118.295,118.325,118.355,118.385,118.415,118.445,118.475,118.505,118.535,118.565,118.595,118.625,118.655,118.685,118.715,118.745,118.775,118.805,118.835,118.865,118.895,118.925,118.955,118.985,119.015,119.045,119.075,119.105,119.135,119.165,119.195,119.225,119.255,119.285,119.315,119.345,119.375,119.405,119.435,119.465,119.495,119.525,119.555,119.585,119.615,119.645,119.675,119.705,119.735,119.765,119.795,119.825,119.855,119.885,119.915,119.945,119.975,120.005,120.035,120.065,120.095,120.125,120.155,120.185,120.215,120.245,120.275,120.305,120.335,120.365,120.395,120.425,120.455,120.485,120.515,120.545,120.575,120.605,120.635,120.665,120.695,120.725,120.755,120.785,120.815,120.845,120.875,120.905,120.935,120.965,120.995,121.025,121.055,121.085,121.115,121.145,121.175,121.205,121.235,121.265,121.295,121.325,121.355,121.385,121.415,121.445,121.475,121.505,121.535,121.565,121.595,121.625,121.655,121.685,121.715,121.745,121.775,121.805,121.835,121.865,121.895,121.925,121.955,121.985,122.015,122.045,122.075,122.105,122.135,122.165,122.195,122.225,122.255,122.285,122.315,122.345,122.375,122.405,122.435,122.465,122.495,122.525,122.555,122.585,122.615,122.645,122.675,122.705,122.735,122.765,122.795,122.825,122.855,122.885,122.915,122.945,122.975,123.005,123.035,123.065,123.095,123.125,123.155,123.185,123.215,123.245,123.275,123.305,123.335,123.365,123.395,123.425,123.455,123.485,123.515,123.545,123.575,123.605,123.635,123.665,123.695,123.725,123.755,123.785,123.815,123.845,123.875,123.905,123.935,123.965,123.995,124.025,124.055,124.085,124.115,124.145,124.175,124.205,124.235,124.265,124.295,124.325,124.355,124.385,124.415,124.445,124.475,124.505,124.535,124.565,124.595,124.625,124.655,124.685,124.715,124.745,124.775,124.805,124.835,124.865,124.895,124.925,124.955,124.985,125.015,125.045,125.075,125.105,125.135,125.165,125.195,125.225,125.255,125.285,125.315,125.345,125.375,125.405,125.435,125.465,125.495,125.525,125.555,125.585,125.615,125.645,125.675,125.705,125.735,125.765,125.795,125.825,125.855,125.885,125.915,125.945,125.975,126.005,126.035,126.065,126.095,126.125,126.155,126.185,126.215,126.245,126.275,126.305,126.335,126.365,126.395,126.425,126.455,126.485,126.515,126.545,126.575,126.605,126.635,126.665,126.695,126.725,126.755,126.785,126.815,126.845,126.875,126.905,126.935,126.965,126.995,127.025,127.055,127.085,127.115,127.145,127.175,127.205,127.235,127.265,127.295,127.325,127.355,127.385,127.415,127.445,127.475,127.505,127.535,127.565,127.595,127.625,127.655,127.685,127.715,127.745,127.775,127.805,127.835,127.865,127.895,127.925,127.955,127.985,128.015,128.045,128.075,128.105,128.135,128.165,128.195,128.225,128.255,128.285,128.315,128.345,128.375,128.405,128.435,128.465,128.495,128.525,128.555,128.585,128.615,128.645,128.675,128.705,128.735,128.765,128.795,128.825,128.855,128.885,128.915,128.945,128.975,129.005,129.035,129.065,129.095,129.125,129.155,129.185,129.215,129.245,129.275,129.305,129.335,129.365,129.395,129.425,129.455,129.485,129.515,129.545,129.575,129.605,129.635,129.665,129.695,129.725,129.755,129.785,129.815,129.845,129.875,129.905,129.935,129.965,129.995,130.025,130.055,130.085,130.115,130.145,130.175,130.205,130.235,130.265,130.295,130.325,130.355,130.385,130.415,130.445,130.475,130.505,130.535,130.565,130.595,130.625,130.655,130.685,130.715,130.745,130.775,130.805,130.835,130.865,130.895,130.925,130.955,130.985,131.015,131.045,131.075,131.105,131.135,131.165,131.195,131.225,131.255,131.285,131.315,131.345,131.375,131.405,131.435,131.465,131.495,131.525,131.555,131.585,131.615,131.645,131.675,131.705,131.735,131.765,131.795,131.825,131.855,131.885,131.915,131.945,131.975,132.005,132.035,132.065,132.095,132.125,132.155,132.185,132.215,132.245,132.275,132.305,132.335,132.365,132.395,132.425,132.455,132.485,132.515,132.545,132.575,132.605,132.635,132.665,132.695,132.725,132.755,132.785,132.815,132.845,132.875,132.905,132.935,132.965,132.995,133.025,133.055,133.085,133.115,133.145,133.175,133.205,133.235,133.265,133.295,133.325,133.355,133.385,133.415,133.445,133.475,133.505,133.535,133.565,133.595,133.625,133.655,133.685,133.715,133.745,133.775,133.805,133.835,133.865,133.895,133.925,133.955,133.985,134.015,134.045,134.075,134.105,134.135,134.165,134.195,134.225,134.255,134.285,134.315,134.345,134.375,134.405,134.435,134.465,134.495,134.525,134.555,134.585,134.615,134.645,134.675,134.705,134.735,134.765,134.795,134.825,134.855,134.885,134.915,134.945,134.975,135.005,135.035,135.065,135.095,135.125,135.155,135.185,135.215,135.245,135.275,135.305,135.335,135.365,135.395,135.425,135.455,135.485,135.515,135.545,135.575,135.605,135.635,135.665,135.695,135.725,135.755,135.785,135.815,135.845,135.875,135.905,135.935,135.965,135.995,136.025,136.055,136.085,136.115,136.145,136.175,136.205,136.235,136.265,136.295,136.325,136.355,136.385,136.415,136.445,136.475,136.505,136.535,136.565,136.595,136.625,136.655,136.685,136.715,136.745,136.775,136.805,136.835,136.865,136.895,136.925,136.955,136.985,137.015,137.045,137.075,137.105,137.135,137.165,137.195,137.225,137.255,137.285,137.315,137.345,137.375,137.405,137.435,137.465,137.495,137.525,137.555,137.585,137.615,137.645,137.675,137.705,137.735,137.765,137.795,137.825,137.855,137.885,137.915,137.945,137.975,138.005,138.035,138.065,138.095,138.125,138.155,138.185,138.215,138.245,138.275,138.305,138.335,138.365,138.395,138.425,138.455,138.485,138.515,138.545,138.575,138.605,138.635,138.665,138.695,138.725,138.755,138.785,138.815,138.845,138.875,138.905,138.935,138.965,138.995,139.025,139.055,139.085,139.115,139.145,139.175,139.205,139.235,139.265,139.295,139.325,139.355,139.385,139.415,139.445,139.475,139.505,139.535,139.565,139.595,139.625,139.655,139.685,139.715,139.745,139.775,139.805,139.835,139.865,139.895,139.925,139.955,139.985,140.015,140.045,140.075,140.105,140.135,140.165,140.195,140.225,140.255,140.285,140.315,140.345,140.375,140.405,140.435,140.465,140.495,140.525,140.555,140.585,140.615,140.645,140.675,140.705,140.735,140.765,140.795,140.825,140.855,140.885,140.915,140.945,140.975,141.005,141.035,141.065,141.095,141.125,141.155,141.185,141.215,141.245,141.275,141.305,141.335,141.365,141.395,141.425,141.455,141.485,141.515,141.545,141.575,141.605,141.635,141.665,141.695,141.725,141.755,141.785,141.815,141.845,141.875,141.905,141.935,141.965,141.995,142.025,142.055,142.085,142.115,142.145,142.175,142.205,142.235,142.265,142.295,142.325,142.355,142.385,142.415,142.445,142.475,142.505,142.535,142.565,142.595,142.625,142.655,142.685,142.715,142.745,142.775,142.805,142.835,142.865,142.895,142.925,142.955,142.985,143.015,143.045,143.075,143.105,143.135,143.165,143.195,143.225,143.255,143.285,143.315,143.345,143.375,143.405,143.435,143.465,143.495,143.525,143.555,143.585,143.615,143.645,143.675,143.705,143.735,143.765,143.795,143.825,143.855,143.885,143.915,143.945,143.975,144.005,144.035,144.065,144.095,144.125,144.155,144.185,144.215,144.245,144.275,144.305,144.335,144.365,144.395,144.425,144.455,144.485,144.515,144.545,144.575,144.605,144.635,144.665,144.695,144.725,144.755,144.785,144.815,144.845,144.875,144.905,144.935,144.965,144.995,145.025,145.055,145.085,145.115,145.145,145.175,145.205,145.235,145.265,145.295,145.325,145.355,145.385,145.415,145.445,145.475,145.505,145.535,145.565,145.595,145.625,145.655,145.685,145.715,145.745,145.775,145.805,145.835,145.865,145.895,145.925,145.955,145.985,146.015,146.045,146.075,146.105,146.135,146.165,146.195,146.225,146.255,146.285,146.315,146.345,146.375,146.405,146.435,146.465,146.495,146.525,146.555,146.585,146.615,146.645,146.675,146.705,146.735,146.765,146.795,146.825,146.855,146.885,146.915,146.945,146.975,147.005,147.035,147.065,147.095,147.125,147.155,147.185,147.215,147.245,147.275,147.305,147.335,147.365,147.395,147.425,147.455,147.485,147.515,147.545,147.575,147.605,147.635,147.665,147.695,147.725,147.755,147.785,147.815,147.845,147.875,147.905,147.935,147.965,147.995,148.025,148.055,148.085,148.115,148.145,148.175,148.205,148.235,148.265,148.295,148.325,148.355,148.385,148.415,148.445,148.475,148.505,148.535,148.565,148.595,148.625,148.655,148.685,148.715,148.745,148.775,148.805,148.835,148.865,148.895,148.925,148.955,148.985,149.015,149.045,149.075,149.105,149.135,149.165,149.195,149.225,149.255,149.285,149.315,149.345,149.375,149.405,149.435,149.465,149.495,149.525,149.555,149.585,149.615,149.645,149.675,149.705,149.735,149.765,149.795,149.825,149.855,149.885,149.915,149.945,149.975,150.005,150.035,150.065,150.095,150.125,150.155,150.185,150.215,150.245,150.275,150.305,150.335,150.365,150.395,150.425,150.455,150.485,150.515,150.545,150.575,150.605,150.635,150.665,150.695,150.725,150.755,150.785,150.815,150.845,150.875,150.905,150.935,150.965,150.995,151.025,151.055,151.085,151.115,151.145,151.175,151.205,151.235,151.265,151.295,151.325,151.355,151.385,151.415,151.445,151.475,151.505,151.535,151.565,151.595,151.625,151.655,151.685,151.715,151.745,151.775,151.805,151.835,151.865,151.895,151.925,151.955,151.985,152.015,152.045,152.075,152.105,152.135,152.165,152.195,152.225,152.255,152.285,152.315,152.345,152.375,152.405,152.435,152.465,152.495,152.525,152.555,152.585,152.615,152.645,152.675,152.705,152.735,152.765,152.795,152.825,152.855,152.885,152.915,152.945,152.975,153.005,153.035,153.065,153.095,153.125,153.155,153.185,153.215,153.245,153.275,153.305,153.335,153.365,153.395,153.425,153.455,153.485,153.515,153.545,153.575,153.605,153.635,153.665,153.695,153.725,153.755,153.785,153.815,153.845,153.875,153.905,153.935,153.965,153.995,154.025,154.055,154.085,154.115,154.145,154.175,154.205,154.235,154.265,154.295,154.325,154.355,154.385,154.415,154.445,154.475,154.505,154.535,154.565,154.595,154.625,154.655,154.685,154.715,154.745,154.775,154.805,154.835,154.865,154.895,154.925,154.955,154.985,155.015,155.045,155.075,155.105,155.135,155.165,155.195,155.225,155.255,155.285,155.315,155.345,155.375,155.405,155.435,155.465,155.495,155.525,155.555,155.585,155.615,155.645,155.675,155.705,155.735,155.765,155.795,155.825,155.855,155.885,155.915,155.945,155.975,156.005,156.035,156.065,156.095,156.125,156.155,156.185,156.215,156.245,156.275,156.305,156.335,156.365,156.395,156.425,156.455,156.485,156.515,156.545,156.575,156.605,156.635,156.665,156.695,156.725,156.755,156.785,156.815,156.845,156.875,156.905,156.935,156.965,156.995,157.025,157.055,157.085,157.115,157.145,157.175,157.205,157.235,157.265,157.295,157.325,157.355,157.385,157.415,157.445,157.475,157.505,157.535,157.565,157.595,157.625,157.655,157.685,157.715,157.745,157.775,157.805,157.835,157.865,157.895,157.925,157.955,157.985,158.015,158.045,158.075,158.105,158.135,158.165,158.195,158.225,158.255,158.285,158.315,158.345,158.375,158.405,158.435,158.465,158.495,158.525,158.555,158.585,158.615,158.645,158.675,158.705,158.735,158.765,158.795,158.825,158.855,158.885,158.915,158.945,158.975,159.005,159.035,159.065,159.095,159.125,159.155,159.185,159.215,159.245,159.275,159.305,159.335,159.365,159.395,159.425,159.455,159.485,159.515,159.545,159.575,159.605,159.635,159.665,159.695,159.725,159.755,159.785,159.815,159.845,159.875,159.905,159.935,159.965,159.995,160.025,160.055,160.085,160.115,160.145,160.175,160.205,160.235,160.265,160.295,160.325,160.355,160.385,160.415,160.445,160.475,160.505,160.535,160.565,160.595,160.625,160.655,160.685,160.715,160.745,160.775,160.805,160.835,160.865,160.895,160.925,160.955,160.985,161.015,161.045,161.075,161.105,161.135,161.165,161.195,161.225,161.255,161.285,161.315,161.345,161.375,161.405,161.435,161.465,161.495,161.525,161.555,161.585,161.615,161.645,161.675,161.705,161.735,161.765,161.795,161.825,161.855,161.885,161.915,161.945,161.975,162.005,162.035,162.065,162.095,162.125,162.155,162.185,162.215,162.245,162.275,162.305,162.335,162.365,162.395,162.425,162.455,162.485,162.515,162.545,162.575,162.605,162.635,162.665,162.695,162.725,162.755,162.785,162.815,162.845,162.875,162.905,162.935,162.965,162.995,163.025,163.055,163.085,163.115,163.145,163.175,163.205,163.235,163.265,163.295,163.325,163.355,163.385,163.415,163.445,163.475,163.505,163.535,163.565,163.595,163.625,163.655,163.685,163.715,163.745,163.775,163.805,163.835,163.865,163.895,163.925,163.955,163.985,164.015,164.045,164.075,164.105,164.135,164.165,164.195,164.225,164.255,164.285,164.315,164.345,164.375,164.405,164.435,164.465,164.495,164.525,164.555,164.585,164.615,164.645,164.675,164.705,164.735,164.765,164.795,164.825,164.855,164.885,164.915,164.945,164.975,165.005,165.035,165.065,165.095,165.125,165.155,165.185,165.215,165.245,165.275,165.305,165.335,165.365,165.395,165.425,165.455,165.485,165.515,165.545,165.575,165.605,165.635,165.665,165.695,165.725,165.755,165.785,165.815,165.845,165.875,165.905,165.935,165.965,165.995,166.025,166.055,166.085,166.115,166.145,166.175,166.205,166.235,166.265,166.295,166.325,166.355,166.385,166.415,166.445,166.475,166.505,166.535,166.565,166.595,166.625,166.655,166.685,166.715,166.745,166.775,166.805,166.835,166.865,166.895,166.925,166.955,166.985,167.015,167.045,167.075,167.105,167.135,167.165,167.195,167.225,167.255,167.285,167.315,167.345,167.375,167.405,167.435,167.465,167.495,167.525,167.555,167.585,167.615,167.645,167.675,167.705,167.735,167.765,167.795,167.825,167.855,167.885,167.915,167.945,167.975,168.005,168.035,168.065,168.095,168.125,168.155,168.185,168.215,168.245,168.275,168.305,168.335,168.365,168.395,168.425,168.455,168.485,168.515,168.545,168.575,168.605,168.635,168.665,168.695,168.725,168.755,168.785,168.815,168.845,168.875,168.905,168.935,168.965,168.995,169.025,169.055,169.085,169.115,169.145,169.175,169.205,169.235,169.265,169.295,169.325,169.355,169.385,169.415,169.445,169.475,169.505,169.535,169.565,169.595,169.625,169.655,169.685,169.715,169.745,169.775,169.805,169.835,169.865,169.895,169.925,169.955,169.985,170.015,170.045,170.075,170.105,170.135,170.165,170.195,170.225,170.255,170.285,170.315,170.345,170.375,170.405,170.435,170.465,170.495,170.525,170.555,170.585,170.615,170.645,170.675,170.705,170.735,170.765,170.795,170.825,170.855,170.885,170.915,170.945,170.975,171.005,171.035,171.065,171.095,171.125,171.155,171.185,171.215,171.245,171.275,171.305,171.335,171.365,171.395,171.425,171.455,171.485,171.515,171.545,171.575,171.605,171.635,171.665,171.695,171.725,171.755,171.785,171.815,171.845,171.875,171.905,171.935,171.965,171.995,172.025,172.055,172.085,172.115,172.145,172.175,172.205,172.235,172.265,172.295,172.325,172.355,172.385,172.415,172.445,172.475,172.505,172.535,172.565,172.595,172.625,172.655,172.685,172.715,172.745,172.775,172.805,172.835,172.865,172.895,172.925,172.955,172.985,173.015,173.045,173.075,173.105,173.135,173.165,173.195,173.225,173.255,173.285,173.315,173.345,173.375,173.405,173.435,173.465,173.495,173.525,173.555,173.585,173.615,173.645,173.675,173.705,173.735,173.765,173.795,173.825,173.855,173.885,173.915,173.945,173.975,174.005,174.035,174.065,174.095,174.125,174.155,174.185,174.215,174.245,174.275,174.305,174.335,174.365,174.395,174.425,174.455,174.485,174.515,174.545,174.575,174.605,174.635,174.665,174.695,174.725,174.755,174.785,174.815,174.845,174.875,174.905,174.935,174.965,174.995,175.025,175.055,175.085,175.115,175.145,175.175,175.205,175.235,175.265,175.295,175.325,175.355,175.385,175.415,175.445,175.475,175.505,175.535,175.565,175.595,175.625,175.655,175.685,175.715,175.745,175.775,175.805,175.835,175.865,175.895,175.925,175.955,175.985,176.015,176.045,176.075,176.105,176.135,176.165,176.195,176.225,176.255,176.285,176.315,176.345,176.375,176.405,176.435,176.465,176.495,176.525,176.555,176.585,176.615,176.645,176.675,176.705,176.735,176.765,176.795,176.825,176.855,176.885,176.915,176.945,176.975,177.005,177.035,177.065,177.095,177.125,177.155,177.185,177.215,177.245,177.275,177.305,177.335,177.365,177.395,177.425,177.455,177.485,177.515,177.545,177.575,177.605,177.635,177.665,177.695,177.725,177.755,177.785,177.815,177.845,177.875,177.905,177.935,177.965,177.995,178.025,178.055,178.085,178.115,178.145,178.175,178.205,178.235,178.265,178.295,178.325,178.355,178.385,178.415,178.445,178.475,178.505,178.535,178.565,178.595,178.625,178.655,178.685,178.715,178.745,178.775,178.805,178.835,178.865,178.895,178.925,178.955,178.985,179.015,179.045,179.075,179.105,179.135,179.165,179.195,179.225,179.255,179.285,179.315,179.345,179.375,179.405,179.435,179.465,179.495,179.525,179.555,179.585,179.615,179.645,179.675,179.705,179.735,179.765,179.795,179.825,179.855,179.885,179.915,179.945,179.975,180.005,180.035,180.065,180.095,180.125,180.155,180.185,180.215,180.245,180.275,180.305,180.335,180.365,180.395,180.425,180.455,180.485,180.515,180.545,180.575,180.605,180.635,180.665,180.695,180.725,180.755,180.785,180.815,180.845,180.875,180.905,180.935,180.965,180.995,181.025,181.055,181.085,181.115,181.145,181.175,181.205,181.235,181.265,181.295,181.325,181.355,181.385,181.415,181.445,181.475,181.505,181.535,181.565,181.595,181.625,181.655,181.685,181.715,181.745,181.775,181.805,181.835,181.865,181.895,181.925,181.955,181.985,182.015,182.045,182.075,182.105,182.135,182.165,182.195,182.225,182.255,182.285,182.315,182.345,182.375,182.405,182.435,182.465,182.495,182.525,182.555,182.585,182.615,182.645,182.675,182.705,182.735,182.765,182.795,182.825,182.855,182.885,182.915,182.945,182.975,183.005,183.035,183.065,183.095,183.125,183.155,183.185,183.215,183.245,183.275,183.305,183.335,183.365,183.395,183.425,183.455,183.485,183.515,183.545,183.575,183.605,183.635,183.665,183.695,183.725,183.755,183.785,183.815,183.845,183.875,183.905,183.935,183.965,183.995,184.025,184.055,184.085,184.115,184.145,184.175,184.205,184.235,184.265,184.295,184.325,184.355,184.385,184.415,184.445,184.475,184.505,184.535,184.565,184.595,184.625,184.655,184.685,184.715,184.745,184.775,184.805,184.835,184.865,184.895,184.925,184.955,184.985,185.015,185.045,185.075,185.105,185.135,185.165,185.195,185.225,185.255,185.285,185.315,185.345,185.375,185.405,185.435,185.465,185.495,185.525,185.555,185.585,185.615,185.645,185.675,185.705,185.735,185.765,185.795,185.825,185.855,185.885,185.915,185.945,185.975,186.005,186.035,186.065,186.095,186.125,186.155,186.185,186.215,186.245,186.275,186.305,186.335,186.365,186.395,186.425,186.455,186.485,186.515,186.545,186.575,186.605,186.635,186.665,186.695,186.725,186.755,186.785,186.815,186.845,186.875,186.905,186.935,186.965,186.995,187.025,187.055,187.085,187.115,187.145,187.175,187.205,187.235,187.265,187.295,187.325,187.355,187.385,187.415,187.445,187.475,187.505,187.535,187.565,187.595,187.625,187.655,187.685,187.715,187.745,187.775,187.805,187.835,187.865,187.895,187.925,187.955,187.985,188.015,188.045,188.075,188.105,188.135,188.165,188.195,188.225,188.255,188.285,188.315,188.345,188.375,188.405,188.435,188.465,188.495,188.525,188.555,188.585,188.615,188.645,188.675,188.705,188.735,188.765,188.795,188.825,188.855,188.885,188.915,188.945,188.975,189.005,189.035,189.065,189.095,189.125,189.155,189.185,189.215,189.245,189.275,189.305,189.335,189.365,189.395,189.425,189.455,189.485,189.515,189.545,189.575,189.605,189.635,189.665,189.695,189.725,189.755,189.785,189.815,189.845,189.875,189.905,189.935,189.965,189.995,190.025,190.055,190.085,190.115,190.145,190.175,190.205,190.235,190.265,190.295,190.325,190.355,190.385,190.415,190.445,190.475,190.505,190.535,190.565,190.595,190.625,190.655,190.685,190.715,190.745,190.775,190.805,190.835,190.865,190.895,190.925,190.955,190.985,191.015,191.045,191.075,191.105,191.135,191.165,191.195,191.225,191.255,191.285,191.315,191.345,191.375,191.405,191.435,191.465,191.495,191.525,191.555,191.585,191.615,191.645,191.675,191.705,191.735,191.765,191.795,191.825,191.855,191.885,191.915,191.945,191.975,192.005,192.035,192.065,192.095,192.125,192.155,192.185,192.215,192.245,192.275,192.305,192.335,192.365,192.395,192.425,192.455,192.485,192.515,192.545,192.575,192.605,192.635,192.665,192.695,192.725,192.755,192.785,192.815,192.845,192.875,192.905,192.935,192.965,192.995,193.025,193.055,193.085,193.115,193.145,193.175,193.205,193.235,193.265,193.295,193.325,193.355,193.385,193.415,193.445,193.475,193.505,193.535,193.565,193.595,193.625,193.655,193.685,193.715,193.745,193.775,193.805,193.835,193.865,193.895,193.925,193.955,193.985,194.015,194.045,194.075,194.105,194.135,194.165,194.195,194.225,194.255,194.285,194.315,194.345,194.375,194.405,194.435,194.465,194.495,194.525,194.555,194.585,194.615,194.645,194.675,194.705,194.735,194.765,194.795,194.825,194.855,194.885,194.915,194.945,194.975,195.005,195.035,195.065,195.095,195.125,195.155,195.185,195.215,195.245,195.275,195.305,195.335,195.365,195.395,195.425,195.455,195.485,195.515,195.545,195.575,195.605,195.635,195.665,195.695,195.725,195.755,195.785,195.815,195.845,195.875,195.905,195.935,195.965,195.995,196.025,196.055,196.085,196.115,196.145,196.175,196.205,196.235,196.265,196.295,196.325,196.355,196.385,196.415,196.445,196.475,196.505,196.535,196.565,196.595,196.625,196.655,196.685,196.715,196.745,196.775,196.805,196.835,196.865,196.895,196.925,196.955,196.985,197.015,197.045,197.075,197.105,197.135,197.165,197.195,197.225,197.255,197.285,197.315,197.345,197.375,197.405,197.435,197.465,197.495,197.525,197.555,197.585,197.615,197.645,197.675,197.705,197.735,197.765,197.795,197.825,197.855,197.885,197.915,197.945,197.975,198.005,198.035,198.065,198.095,198.125,198.155,198.185,198.215,198.245,198.275,198.305,198.335,198.365,198.395,198.425,198.455,198.485,198.515,198.545,198.575,198.605,198.635,198.665,198.695,198.725,198.755,198.785,198.815,198.845,198.875,198.905,198.935,198.965,198.995,199.025,199.055,199.085,199.115,199.145,199.175,199.205,199.235,199.265,199.295,199.325,199.355,199.385,199.415,199.445,199.475,199.505,199.535,199.565,199.595,199.625,199.655,199.685,199.715,199.745,199.775,199.805,199.835,199.865,199.895,199.925,199.955,199.985,200.015,200.045,200.075,200.105,200.135,200.165,200.195,200.225,200.255,200.285,200.315,200.345,200.375,200.405,200.435,200.465,200.495,200.525,200.555,200.585,200.615,200.645,200.675,200.705,200.735,200.765,200.795,200.825,200.855,200.885,200.915,200.945,200.975,201.005,201.035,201.065,201.095,201.125,201.155,201.185,201.215,201.245,201.275,201.305,201.335,201.365,201.395,201.425,201.455,201.485,201.515,201.545,201.575,201.605,201.635,201.665,201.695,201.725,201.755,201.785,201.815,201.845,201.875,201.905,201.935,201.965,201.995,202.025,202.055,202.085,202.115,202.145,202.175,202.205,202.235,202.265,202.295,202.325,202.355,202.385,202.415,202.445,202.475,202.505,202.535,202.565,202.595,202.625,202.655,202.685,202.715,202.745,202.775,202.805,202.835,202.865,202.895,202.925,202.955,202.985,203.015,203.045,203.075,203.105,203.135,203.165,203.195,203.225,203.255,203.285,203.315,203.345,203.375,203.405,203.435,203.465,203.495,203.525,203.555,203.585,203.615,203.645,203.675,203.705,203.735,203.765,203.795,203.825,203.855,203.885,203.915,203.945,203.975,204.005,204.035,204.065,204.095,204.125,204.155,204.185,204.215,204.245,204.275,204.305,204.335,204.365,204.395,204.425,204.455,204.485,204.515,204.545,204.575,204.605,204.635,204.665,204.695,204.725,204.755,204.785,204.815,204.845,204.875,204.905,204.935,204.965,204.995,205.025,205.055,205.085,205.115,205.145,205.175,205.205,205.235,205.265,205.295,205.325,205.355,205.385,205.415,205.445,205.475,205.505,205.535,205.565,205.595,205.625,205.655,205.685,205.715,205.745,205.775,205.805,205.835,205.865,205.895,205.925,205.955,205.985,206.015,206.045,206.075,206.105,206.135,206.165,206.195,206.225,206.255,206.285,206.315,206.345,206.375,206.405,206.435,206.465,206.495,206.525,206.555,206.585,206.615,206.645,206.675,206.705,206.735,206.765,206.795,206.825,206.855,206.885,206.915,206.945,206.975,207.005,207.035,207.065,207.095,207.125,207.155,207.185,207.215,207.245,207.275,207.305,207.335,207.365,207.395,207.425,207.455,207.485,207.515,207.545,207.575,207.605,207.635,207.665,207.695,207.725,207.755,207.785,207.815,207.845,207.875,207.905,207.935,207.965,207.995,208.025,208.055,208.085,208.115,208.145,208.175,208.205,208.235,208.265,208.295,208.325,208.355,208.385,208.415,208.445,208.475,208.505,208.535,208.565,208.595,208.625,208.655,208.685,208.715,208.745,208.775,208.805,208.835,208.865,208.895,208.925,208.955,208.985,209.015,209.045,209.075,209.105,209.135,209.165,209.195,209.225,209.255,209.285,209.315,209.345,209.375,209.405,209.435,209.465,209.495,209.525,209.555,209.585,209.615,209.645,209.675,209.705,209.735,209.765,209.795,209.825,209.855,209.885,209.915,209.945,209.975,210.005,210.035,210.065,210.095,210.125,210.155,210.185,210.215,210.245,210.275,210.305,210.335,210.365,210.395,210.425,210.455,210.485,210.515,210.545,210.575,210.605,210.635,210.665,210.695,210.725,210.755,210.785,210.815,210.845,210.875,210.905,210.935,210.965,210.995,211.025,211.055,211.085,211.115,211.145,211.175,211.205,211.235,211.265,211.295,211.325,211.355,211.385,211.415,211.445,211.475,211.505,211.535,211.565,211.595,211.625,211.655,211.685,211.715,211.745,211.775,211.805,211.835,211.865,211.895,211.925,211.955,211.985,212.015,212.045,212.075,212.105,212.135,212.165,212.195,212.225,212.255,212.285,212.315,212.345,212.375,212.405,212.435,212.465,212.495,212.525,212.555,212.585,212.615,212.645,212.675,212.705,212.735,212.765,212.795,212.825,212.855,212.885,212.915,212.945,212.975,213.005,213.035,213.065,213.095,213.125,213.155,213.185,213.215,213.245,213.275,213.305,213.335,213.365,213.395,213.425,213.455,213.485,213.515,213.545,213.575,213.605,213.635,213.665,213.695,213.725,213.755,213.785,213.815,213.845,213.875,213.905,213.935,213.965,213.995,214.025,214.055,214.085,214.115,214.145,214.175,214.205,214.235,214.265,214.295,214.325,214.355,214.385,214.415,214.445,214.475,214.505,214.535,214.565,214.595,214.625,214.655,214.685,214.715,214.745,214.775,214.805,214.835,214.865,214.895,214.925,214.955,214.985,215.015,215.045,215.075,215.105,215.135,215.165,215.195,215.225,215.255,215.285,215.315,215.345,215.375,215.405,215.435,215.465,215.495,215.525,215.555,215.585,215.615,215.645,215.675,215.705,215.735,215.765,215.795,215.825,215.855,215.885,215.915,215.945,215.975,216.005,216.035,216.065,216.095,216.125,216.155,216.185,216.215,216.245,216.275,216.305,216.335,216.365,216.395,216.425,216.455,216.485,216.515,216.545,216.575,216.605,216.635,216.665,216.695,216.725,216.755,216.785,216.815,216.845,216.875,216.905,216.935,216.965,216.995,217.025,217.055,217.085,217.115,217.145,217.175,217.205,217.235,217.265,217.295,217.325,217.355,217.385,217.415,217.445,217.475,217.505,217.535,217.565,217.595,217.625,217.655,217.685,217.715,217.745,217.775,217.805,217.835,217.865,217.895,217.925,217.955,217.985,218.015,218.045,218.075,218.105,218.135,218.165,218.195,218.225,218.255,218.285,218.315,218.345,218.375,218.405,218.435,218.465,218.495,218.525,218.555,218.585,218.615,218.645,218.675,218.705,218.735,218.765,218.795,218.825,218.855,218.885,218.915,218.945,218.975,219.005,219.035,219.065,219.095,219.125,219.155,219.185,219.215,219.245,219.275,219.305,219.335,219.365,219.395,219.425,219.455,219.485,219.515,219.545,219.575,219.605,219.635,219.665,219.695,219.725,219.755,219.785,219.815,219.845,219.875,219.905,219.935,219.965,219.995,220.025,220.055,220.085,220.115,220.145,220.175,220.205,220.235,220.265,220.295,220.325,220.355,220.385,220.415,220.445,220.475,220.505,220.535,220.565,220.595,220.625,220.655,220.685,220.715,220.745,220.775,220.805,220.835,220.865,220.895,220.925,220.955,220.985,221.015,221.045,221.075,221.105,221.135,221.165,221.195,221.225,221.255,221.285,221.315,221.345,221.375,221.405,221.435,221.465,221.495,221.525,221.555,221.585,221.615,221.645,221.675,221.705,221.735,221.765,221.795,221.825,221.855,221.885,221.915,221.945,221.975,222.005,222.035,222.065,222.095,222.125,222.155,222.185,222.215,222.245,222.275,222.305,222.335,222.365,222.395,222.425,222.455,222.485,222.515,222.545,222.575,222.605,222.635,222.665,222.695,222.725,222.755,222.785,222.815,222.845,222.875,222.905,222.935,222.965,222.995,223.025,223.055,223.085,223.115,223.145,223.175,223.205,223.235,223.265,223.295,223.325,223.355,223.385,223.415,223.445,223.475,223.505,223.535,223.565,223.595,223.625,223.655,223.685,223.715,223.745,223.775,223.805,223.835,223.865,223.895,223.925,223.955,223.985,224.015,224.045,224.075,224.105,224.135,224.165,224.195,224.225,224.255,224.285,224.315,224.345,224.375,224.405,224.435,224.465,224.495,224.525,224.555,224.585,224.615,224.645,224.675,224.705,224.735,224.765,224.795,224.825,224.855,224.885,224.915,224.945,224.975,225.005,225.035,225.065,225.095,225.125,225.155,225.185,225.215,225.245,225.275,225.305,225.335,225.365,225.395,225.425,225.455,225.485,225.515,225.545,225.575,225.605,225.635,225.665,225.695,225.725,225.755,225.785,225.815,225.845,225.875,225.905,225.935,225.965,225.995,226.025,226.055,226.085,226.115,226.145,226.175,226.205,226.235,226.265,226.295,226.325,226.355,226.385,226.415,226.445,226.475,226.505,226.535,226.565,226.595,226.625,226.655,226.685,226.715,226.745,226.775,226.805,226.835,226.865,226.895,226.925,226.955,226.985,227.015,227.045,227.075,227.105,227.135,227.165,227.195,227.225,227.255,227.285,227.315,227.345,227.375,227.405,227.435,227.465,227.495,227.525,227.555,227.585,227.615,227.645,227.675,227.705,227.735,227.765,227.795,227.825,227.855,227.885,227.915,227.945,227.975,228.005,228.035,228.065,228.095,228.125,228.155,228.185,228.215,228.245,228.275,228.305,228.335,228.365,228.395,228.425,228.455,228.485,228.515,228.545,228.575,228.605,228.635,228.665,228.695,228.725,228.755,228.785,228.815,228.845,228.875,228.905,228.935,228.965,228.995,229.025,229.055,229.085,229.115,229.145,229.175,229.205,229.235,229.265,229.295,229.325,229.355,229.385,229.415,229.445,229.475,229.505,229.535,229.565,229.595,229.625,229.655,229.685,229.715,229.745,229.775,229.805,229.835,229.865,229.895,229.925,229.955,229.985,230.015,230.045,230.075,230.105,230.135,230.165,230.195,230.225,230.255,230.285,230.315,230.345,230.375,230.405,230.435,230.465,230.495,230.525,230.555,230.585,230.615,230.645,230.675,230.705,230.735,230.765,230.795,230.825,230.855,230.885,230.915,230.945,230.975,231.005,231.035,231.065,231.095,231.125,231.155,231.185,231.215,231.245,231.275,231.305,231.335,231.365,231.395,231.425,231.455,231.485,231.515,231.545,231.575,231.605,231.635,231.665,231.695,231.725,231.755,231.785,231.815,231.845,231.875,231.905,231.935,231.965,231.995,232.025,232.055,232.085,232.115,232.145,232.175,232.205,232.235,232.265,232.295,232.325,232.355,232.385,232.415,232.445,232.475,232.505,232.535,232.565,232.595,232.625,232.655,232.685,232.715,232.745,232.775,232.805,232.835,232.865,232.895,232.925,232.955,232.985,233.015,233.045,233.075,233.105,233.135,233.165,233.195,233.225,233.255,233.285,233.315,233.345,233.375,233.405,233.435,233.465,233.495,233.525,233.555,233.585,233.615,233.645,233.675,233.705,233.735,233.765,233.795,233.825,233.855,233.885,233.915,233.945,233.975,234.005,234.035,234.065,234.095,234.125,234.155,234.185,234.215,234.245,234.275,234.305,234.335,234.365,234.395,234.425,234.455,234.485,234.515,234.545,234.575,234.605,234.635,234.665,234.695,234.725,234.755,234.785,234.815,234.845,234.875,234.905,234.935,234.965,234.995,235.025,235.055,235.085,235.115,235.145,235.175,235.205,235.235,235.265,235.295,235.325,235.355,235.385,235.415,235.445,235.475,235.505,235.535,235.565,235.595,235.625,235.655,235.685,235.715,235.745,235.775,235.805,235.835,235.865,235.895,235.925,235.955,235.985,236.015,236.045,236.075,236.105,236.135,236.165,236.195,236.225,236.255,236.285,236.315,236.345,236.375,236.405,236.435,236.465,236.495,236.525,236.555,236.585,236.615,236.645,236.675,236.705,236.735,236.765,236.795,236.825,236.855,236.885,236.915,236.945,236.975,237.005,237.035,237.065,237.095,237.125,237.155,237.185,237.215,237.245,237.275,237.305,237.335,237.365,237.395,237.425,237.455,237.485,237.515,237.545,237.575,237.605,237.635,237.665,237.695,237.725,237.755,237.785,237.815,237.845,237.875,237.905,237.935,237.965,237.995,238.025,238.055,238.085,238.115,238.145,238.175,238.205,238.235,238.265,238.295,238.325,238.355,238.385,238.415,238.445,238.475,238.505,238.535,238.565,238.595,238.625,238.655,238.685,238.715,238.745,238.775,238.805,238.835,238.865,238.895,238.925,238.955,238.985,239.015,239.045,239.075,239.105,239.135,239.165,239.195,239.225,239.255,239.285,239.315,239.345,239.375,239.405,239.435,239.465,239.495,239.525,239.555,239.585,239.615,239.645,239.675,239.705,239.735,239.765,239.795,239.825,239.855,239.885,239.915,239.945,239.975,240.005,240.035,240.065,240.095,240.125,240.155,240.185,240.215,240.245,240.275,240.305,240.335,240.365,240.395,240.425,240.455,240.485,240.515,240.545,240.575,240.605,240.635,240.665,240.695,240.725,240.755,240.785,240.815,240.845,240.875,240.905,240.935,240.965,240.995,241.025,241.055,241.085,241.115,241.145,241.175,241.205,241.235,241.265,241.295,241.325,241.355,241.385,241.415,241.445,241.475,241.505,241.535,241.565,241.595,241.625,241.655,241.685,241.715,241.745,241.775,241.805,241.835,241.865,241.895,241.925,241.955,241.985,242.015,242.045,242.075,242.105,242.135,242.165,242.195,242.225,242.255,242.285,242.315,242.345,242.375,242.405,242.435,242.465,242.495,242.525,242.555,242.585,242.615,242.645,242.675,242.705,242.735,242.765,242.795,242.825,242.855,242.885,242.915,242.945,242.975,243.005,243.035,243.065,243.095,243.125,243.155,243.185,243.215,243.245,243.275,243.305,243.335,243.365,243.395,243.425,243.455,243.485,243.515,243.545,243.575,243.605,243.635,243.665,243.695,243.725,243.755,243.785,243.815,243.845,243.875,243.905,243.935,243.965,243.995,244.025,244.055,244.085,244.115,244.145,244.175,244.205,244.235,244.265,244.295,244.325,244.355,244.385,244.415,244.445,244.475,244.505,244.535,244.565,244.595,244.625,244.655,244.685,244.715,244.745,244.775,244.805,244.835,244.865,244.895,244.925,244.955,244.985,245.015,245.045,245.075,245.105,245.135,245.165,245.195,245.225,245.255,245.285,245.315,245.345,245.375,245.405,245.435,245.465,245.495,245.525,245.555,245.585,245.615,245.645,245.675,245.705,245.735,245.765,245.795,245.825,245.855,245.885,245.915,245.945,245.975,246.005,246.035,246.065,246.095,246.125,246.155,246.185,246.215,246.245,246.275,246.305,246.335,246.365,246.395,246.425,246.455,246.485,246.515,246.545,246.575,246.605,246.635,246.665,246.695,246.725,246.755,246.785,246.815,246.845,246.875,246.905,246.935,246.965,246.995,247.025,247.055,247.085,247.115,247.145,247.175,247.205,247.235,247.265,247.295,247.325,247.355,247.385,247.415,247.445,247.475,247.505,247.535,247.565,247.595,247.625,247.655,247.685,247.715,247.745,247.775,247.805,247.835,247.865,247.895,247.925,247.955,247.985,248.015,248.045,248.075,248.105,248.135,248.165,248.195,248.225,248.255,248.285,248.315,248.345,248.375,248.405,248.435,248.465,248.495,248.525,248.555,248.585,248.615,248.645,248.675,248.705,248.735,248.765,248.795,248.825,248.855,248.885,248.915,248.945,248.975,249.005,249.035,249.065,249.095,249.125,249.155,249.185,249.215,249.245,249.275,249.305,249.335,249.365,249.395,249.425,249.455,249.485,249.515,249.545,249.575,249.605,249.635,249.665,249.665]},{"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.965,3.995,4.025,4.055,4.085,4.115,4.1450000000000005,4.175,4.205,4.235,4.265,4.295,4.325,4.355,4.385,4.415,4.445,4.475,4.505,4.535,4.565,4.595,4.625,4.655,4.6850000000000005,4.715,4.745,4.775,4.805,4.835,4.865,4.8950000000000005,4.925,4.955,4.985,5.015,5.045,5.075,5.105,5.135,5.165,5.195,5.225,5.255,5.285,5.315,5.345,5.375,5.405,5.4350000000000005,5.465,5.495,5.525,5.555,5.585,5.615,5.6450000000000005,5.675,5.705,5.735,5.765,5.795,5.825,5.855,5.885,5.915,5.945,5.975,6.005,6.035,6.065,6.095,6.125,6.155,6.1850000000000005,6.215,6.245,6.275,6.305,6.335,6.365,6.3950000000000005,6.425,6.455,6.485,6.515,6.545,6.575,6.605,6.635,6.665,6.695,6.725,6.755,6.785,6.815,6.845,6.875,6.905,6.9350000000000005,6.965,6.995,7.025,7.055,7.085,7.115,7.1450000000000005,7.175,7.205,7.235,7.265,7.295,7.325,7.355,7.385,7.415,7.445,7.475,7.505,7.535,7.565,7.595,7.625,7.655,7.6850000000000005,7.715,7.745,7.775,7.805,7.835,7.865,7.8950000000000005,7.925,7.955,7.985,8.015,8.045,8.075,8.105,8.135,8.165000000000001,8.195,8.225,8.255,8.285,8.315,8.345,8.375,8.405,8.435,8.465,8.495,8.525,8.555,8.585,8.615,8.645,8.675,8.705,8.735,8.765,8.795,8.825,8.855,8.885,8.915000000000001,8.945,8.975,9.005,9.035,9.065,9.095,9.125,9.155,9.185,9.215,9.245,9.275,9.305,9.335,9.365,9.395,9.425,9.455,9.485,9.515,9.545,9.575,9.605,9.635,9.665000000000001,9.695,9.725,9.755,9.785,9.815,9.845,9.875,9.905,9.935,9.965,9.995,10.025,10.055,10.085,10.115,10.145,10.175,10.205,10.235,10.265,10.295,10.325,10.355,10.385,10.415000000000001,10.445,10.475,10.505,10.535,10.565,10.595,10.625,10.655,10.685,10.715,10.745,10.775,10.805,10.835,10.865,10.895,10.925,10.955,10.985,11.015,11.045,11.075,11.105,11.135,11.165000000000001,11.195,11.225,11.255,11.285,11.315,11.345,11.375,11.405,11.435,11.465,11.495,11.525,11.555,11.585,11.615,11.645,11.675,11.705,11.735,11.765,11.795,11.825,11.855,11.885,11.915000000000001,11.945,11.975,12.005,12.035,12.065,12.095,12.125,12.155,12.185,12.215,12.245,12.275,12.305,12.335,12.365,12.395,12.425,12.455,12.485,12.515,12.545,12.575,12.605,12.635,12.665000000000001,12.695,12.725,12.755,12.785,12.815,12.845,12.875,12.905,12.935,12.965,12.995,13.025,13.055,13.085,13.115,13.145,13.175,13.205,13.235,13.265,13.295,13.325,13.355,13.385,13.415000000000001,13.445,13.475,13.505,13.535,13.565,13.595,13.625,13.655,13.685,13.715,13.745,13.775,13.805,13.835,13.865,13.895,13.925,13.955,13.985,14.015,14.045,14.075,14.105,14.135,14.165000000000001,14.195,14.225,14.255,14.285,14.315,14.345,14.375,14.405,14.435,14.465,14.495,14.525,14.555,14.585,14.615,14.645,14.675,14.705,14.735,14.765,14.795,14.825,14.855,14.885,14.915000000000001,14.945,14.975,15.005,15.035,15.065,15.095,15.125,15.155,15.185,15.215,15.245,15.275,15.305,15.335,15.365,15.395,15.425,15.455,15.485,15.515,15.545,15.575,15.605,15.635,15.665000000000001,15.695,15.725,15.755,15.785,15.815,15.845,15.875,15.905,15.935,15.965,15.995,16.025,16.055,16.085,16.115,16.145,16.175,16.205,16.235,16.265,16.295,16.325,16.355,16.385,16.415,16.445,16.475,16.505,16.535,16.565,16.595,16.625,16.655,16.685,16.715,16.745,16.775,16.805,16.835,16.865,16.895,16.925,16.955,16.985,17.015,17.045,17.075,17.105,17.135,17.165,17.195,17.225,17.255,17.285,17.315,17.345,17.375,17.405,17.435,17.465,17.495,17.525,17.555,17.585,17.615,17.645,17.675,17.705,17.735,17.765,17.795,17.825,17.855,17.885,17.915,17.945,17.975,18.005,18.035,18.065,18.095,18.125,18.155,18.185,18.215,18.245,18.275,18.305,18.335,18.365,18.395,18.425,18.455,18.485,18.515,18.545,18.575,18.605,18.635,18.665,18.695,18.725,18.755,18.785,18.815,18.845,18.875,18.905,18.935,18.965,18.995,19.025,19.055,19.085,19.115,19.145,19.175,19.205,19.235,19.265,19.295,19.325,19.355,19.385,19.415,19.445,19.475,19.505,19.535,19.565,19.595,19.625,19.655,19.685,19.715,19.745,19.775,19.805,19.835,19.865,19.895,19.925,19.955,19.985,20.015,20.045,20.075,20.105,20.135,20.165,20.195,20.225,20.255,20.285,20.315,20.345,20.375,20.405,20.435,20.465,20.495,20.525,20.555,20.585,20.615,20.645,20.675,20.705,20.735,20.765,20.795,20.825,20.855,20.885,20.915,20.945,20.975,21.005,21.035,21.065,21.095,21.125,21.155,21.185,21.215,21.245,21.275,21.305,21.335,21.365,21.395,21.425,21.455,21.485,21.515,21.545,21.575,21.605,21.635,21.665,21.695,21.725,21.755,21.785,21.815,21.845,21.875,21.905,21.935,21.965,21.995,22.025,22.055,22.085,22.115,22.145,22.175,22.205,22.235,22.265,22.295,22.325,22.355,22.385,22.415,22.445,22.475,22.505,22.535,22.565,22.595,22.625,22.655,22.685,22.715,22.745,22.775,22.805,22.835,22.865,22.895,22.925,22.955,22.985,23.015,23.045,23.075,23.105,23.135,23.165,23.195,23.225,23.255,23.285,23.315,23.345,23.375,23.405,23.435,23.465,23.495,23.525,23.555,23.585,23.615,23.645,23.675,23.705,23.735,23.765,23.795,23.825,23.855,23.885,23.915,23.945,23.975,24.005,24.035,24.065,24.095,24.125,24.155,24.185,24.215,24.245,24.275,24.305,24.335,24.365,24.395,24.425,24.455,24.485,24.515,24.545,24.575,24.605,24.635,24.665,24.695,24.725,24.755,24.785,24.815,24.845,24.875,24.905,24.935,24.965,24.995,25.025,25.055,25.085,25.115,25.145,25.175,25.205,25.235,25.265,25.295,25.325,25.355,25.385,25.415,25.445,25.475,25.505,25.535,25.565,25.595,25.625,25.655,25.685,25.715,25.745,25.775,25.805,25.835,25.865,25.895,25.925,25.955,25.985,26.015,26.045,26.075,26.105,26.135,26.165,26.195,26.225,26.255,26.285,26.315,26.345,26.375,26.405,26.435,26.465,26.495,26.525,26.555,26.585,26.615,26.645,26.675,26.705,26.735,26.765,26.795,26.825,26.855,26.885,26.915,26.945,26.975,27.005,27.035,27.065,27.095,27.125,27.155,27.185,27.215,27.245,27.275,27.305,27.335,27.365,27.395,27.425,27.455,27.485,27.515,27.545,27.575,27.605,27.635,27.665,27.695,27.725,27.755,27.785,27.815,27.845,27.875,27.905,27.935,27.965,27.995,28.025,28.055,28.085,28.115,28.145,28.175,28.205,28.235,28.265,28.295,28.325,28.355,28.385,28.415,28.445,28.475,28.505,28.535,28.565,28.595,28.625,28.655,28.685,28.715,28.745,28.775,28.805,28.835,28.865,28.895,28.925,28.955,28.985,29.015,29.045,29.075,29.105,29.135,29.165,29.195,29.225,29.255,29.285,29.315,29.345,29.375,29.405,29.435,29.465,29.495,29.525,29.555,29.585,29.615,29.645,29.675,29.705,29.735,29.765,29.795,29.825,29.855,29.885,29.915,29.945,29.975,30.005,30.035,30.065,30.095,30.125,30.155,30.185,30.215,30.245,30.275,30.305,30.335,30.365,30.395,30.425,30.455,30.485,30.515,30.545,30.575,30.605,30.635,30.665,30.695,30.725,30.755,30.785,30.815,30.845,30.875,30.905,30.935,30.965,30.995,31.025,31.055,31.085,31.115,31.145,31.175,31.205,31.235,31.265,31.295,31.325,31.355,31.385,31.415,31.445,31.475,31.505,31.535,31.565,31.595,31.625,31.655,31.685,31.715,31.745,31.775,31.805,31.835,31.865,31.895,31.925,31.955,31.985,32.015,32.045,32.075,32.105,32.135,32.165,32.195,32.225,32.255,32.285,32.315,32.345,32.375,32.405,32.435,32.465,32.495,32.525,32.555,32.585,32.615,32.645,32.675,32.705,32.735,32.765,32.795,32.825,32.855,32.885,32.915,32.945,32.975,33.005,33.035,33.065,33.095,33.125,33.155,33.185,33.215,33.245,33.275,33.305,33.335,33.365,33.395,33.425,33.455,33.485,33.515,33.545,33.575,33.605,33.635,33.665,33.695,33.725,33.755,33.785,33.815,33.845,33.875,33.905,33.935,33.965,33.995,34.025,34.055,34.085,34.115,34.145,34.175,34.205,34.235,34.265,34.295,34.325,34.355,34.385,34.415,34.445,34.475,34.505,34.535,34.565,34.595,34.625,34.655,34.685,34.715,34.745,34.775,34.805,34.835,34.865,34.895,34.925,34.955,34.985,35.015,35.045,35.075,35.105,35.135,35.165,35.195,35.225,35.255,35.285,35.315,35.345,35.375,35.405,35.435,35.465,35.495,35.525,35.555,35.585,35.615,35.645,35.675,35.705,35.735,35.765,35.795,35.825,35.855,35.885,35.915,35.945,35.975,36.005,36.035,36.065,36.095,36.125,36.155,36.185,36.215,36.245,36.275,36.305,36.335,36.365,36.395,36.425,36.455,36.485,36.515,36.545,36.575,36.605,36.635,36.665,36.695,36.725,36.755,36.785,36.815,36.845,36.875,36.905,36.935,36.965,36.995,37.025,37.055,37.085,37.115,37.145,37.175,37.205,37.235,37.265,37.295,37.325,37.355,37.385,37.415,37.445,37.475,37.505,37.535,37.565,37.595,37.625,37.655,37.685,37.715,37.745,37.775,37.805,37.835,37.865,37.895,37.925,37.955,37.985,38.015,38.045,38.075,38.105,38.135,38.165,38.195,38.225,38.255,38.285,38.315,38.345,38.375,38.405,38.435,38.465,38.495,38.525,38.555,38.585,38.615,38.645,38.675,38.705,38.735,38.765,38.795,38.825,38.855,38.885,38.915,38.945,38.975,39.005,39.035,39.065,39.095,39.125,39.155,39.185,39.215,39.245,39.275,39.305,39.335,39.365,39.395,39.425,39.455,39.485,39.515,39.545,39.575,39.605,39.635,39.665,39.695,39.725,39.755,39.785,39.815,39.845,39.875,39.905,39.935,39.965,39.995,40.025,40.055,40.085,40.115,40.145,40.175,40.205,40.235,40.265,40.295,40.325,40.355,40.385,40.415,40.445,40.475,40.505,40.535,40.565,40.595,40.625,40.655,40.685,40.715,40.745,40.775,40.805,40.835,40.865,40.895,40.925,40.955,40.985,41.015,41.045,41.075,41.105,41.135,41.165,41.195,41.225,41.255,41.285,41.315,41.345,41.375,41.405,41.435,41.465,41.495,41.525,41.555,41.585,41.615,41.645,41.675,41.705,41.735,41.765,41.795,41.825,41.855,41.885,41.915,41.945,41.975,42.005,42.035,42.065,42.095,42.125,42.155,42.185,42.215,42.245,42.275,42.305,42.335,42.365,42.395,42.425,42.455,42.485,42.515,42.545,42.575,42.605,42.635,42.665,42.695,42.725,42.755,42.785,42.815,42.845,42.875,42.905,42.935,42.965,42.995,43.025,43.055,43.085,43.115,43.145,43.175,43.205,43.235,43.265,43.295,43.325,43.355,43.385,43.415,43.445,43.475,43.505,43.535,43.565,43.595,43.625,43.655,43.685,43.715,43.745,43.775,43.805,43.835,43.865,43.895,43.925,43.955,43.985,44.015,44.045,44.075,44.105,44.135,44.165,44.195,44.225,44.255,44.285,44.315,44.345,44.375,44.405,44.435,44.465,44.495,44.525,44.555,44.585,44.615,44.645,44.675,44.705,44.735,44.765,44.795,44.825,44.855,44.885,44.915,44.945,44.975,45.005,45.035,45.065,45.095,45.125,45.155,45.185,45.215,45.245,45.275,45.305,45.335,45.365,45.395,45.425,45.455,45.485,45.515,45.545,45.575,45.605,45.635,45.665,45.695,45.725,45.755,45.785,45.815,45.845,45.875,45.905,45.935,45.965,45.995,46.025,46.055,46.085,46.115,46.145,46.175,46.205,46.235,46.265,46.295,46.325,46.355,46.385,46.415,46.445,46.475,46.505,46.535,46.565,46.595,46.625,46.655,46.685,46.715,46.745,46.775,46.805,46.835,46.865,46.895,46.925,46.955,46.985,47.015,47.045,47.075,47.105,47.135,47.165,47.195,47.225,47.255,47.285,47.315,47.345,47.375,47.405,47.435,47.465,47.495,47.525,47.555,47.585,47.615,47.645,47.675,47.705,47.735,47.765,47.795,47.825,47.855,47.885,47.915,47.945,47.975,48.005,48.035,48.065,48.095,48.125,48.155,48.185,48.215,48.245,48.275,48.305,48.335,48.365,48.395,48.425,48.455,48.485,48.515,48.545,48.575,48.605,48.635,48.665,48.695,48.725,48.755,48.785,48.815,48.845,48.875,48.905,48.935,48.965,48.995,49.025,49.055,49.085,49.115,49.145,49.175,49.205,49.235,49.265,49.295,49.325,49.355,49.385,49.415,49.445,49.475,49.505,49.535,49.565,49.595,49.625,49.655,49.685,49.715,49.745,49.775,49.805,49.835,49.865,49.895,49.925,49.955,49.985,50.015,50.045,50.075,50.105,50.135,50.165,50.195,50.225,50.255,50.285,50.315,50.345,50.375,50.405,50.435,50.465,50.495,50.525,50.555,50.585,50.615,50.645,50.675,50.705,50.735,50.765,50.795,50.825,50.855,50.885,50.915,50.945,50.975,51.005,51.035,51.065,51.095,51.125,51.155,51.185,51.215,51.245,51.275,51.305,51.335,51.365,51.395,51.425,51.455,51.485,51.515,51.545,51.575,51.605,51.635,51.665,51.695,51.725,51.755,51.785,51.815,51.845,51.875,51.905,51.935,51.965,51.995,52.025,52.055,52.085,52.115,52.145,52.175,52.205,52.235,52.265,52.295,52.325,52.355,52.385,52.415,52.445,52.475,52.505,52.535,52.565,52.595,52.625,52.655,52.685,52.715,52.745,52.775,52.805,52.835,52.865,52.895,52.925,52.955,52.985,53.015,53.045,53.075,53.105,53.135,53.165,53.195,53.225,53.255,53.285,53.315,53.345,53.375,53.405,53.435,53.465,53.495,53.525,53.555,53.585,53.615,53.645,53.675,53.705,53.735,53.765,53.795,53.825,53.855,53.885,53.915,53.945,53.975,54.005,54.035,54.065,54.095,54.125,54.155,54.185,54.215,54.245,54.275,54.305,54.335,54.365,54.395,54.425,54.455,54.485,54.515,54.545,54.575,54.605,54.635,54.665,54.695,54.725,54.755,54.785,54.815,54.845,54.875,54.905,54.935,54.965,54.995,55.025,55.055,55.085,55.115,55.145,55.175,55.205,55.235,55.265,55.295,55.325,55.355,55.385,55.415,55.445,55.475,55.505,55.535,55.565,55.595,55.625,55.655,55.685,55.715,55.745,55.775,55.805,55.835,55.865,55.895,55.925,55.955,55.985,56.015,56.045,56.075,56.105,56.135,56.165,56.195,56.225,56.255,56.285,56.315,56.345,56.375,56.405,56.435,56.465,56.495,56.525,56.555,56.585,56.615,56.645,56.675,56.705,56.735,56.765,56.795,56.825,56.855,56.885,56.915,56.945,56.975,57.005,57.035,57.065,57.095,57.125,57.155,57.185,57.215,57.245,57.275,57.305,57.335,57.365,57.395,57.425,57.455,57.485,57.515,57.545,57.575,57.605,57.635,57.665,57.695,57.725,57.755,57.785,57.815,57.845,57.875,57.905,57.935,57.965,57.995,58.025,58.055,58.085,58.115,58.145,58.175,58.205,58.235,58.265,58.295,58.325,58.355,58.385,58.415,58.445,58.475,58.505,58.535,58.565,58.595,58.625,58.655,58.685,58.715,58.745,58.775,58.805,58.835,58.865,58.895,58.925,58.955,58.985,59.015,59.045,59.075,59.105,59.135,59.165,59.195,59.225,59.255,59.285,59.315,59.345,59.375,59.405,59.435,59.465,59.495,59.525,59.555,59.585,59.615,59.645,59.675,59.705,59.735,59.765,59.795,59.825,59.855,59.885,59.915,59.945,59.975,60.005,60.035,60.065,60.095,60.125,60.155,60.185,60.215,60.245,60.275,60.305,60.335,60.365,60.395,60.425,60.455,60.485,60.515,60.545,60.575,60.605,60.635,60.665,60.695,60.725,60.755,60.785,60.815,60.845,60.875,60.905,60.935,60.965,60.995,61.025,61.055,61.085,61.115,61.145,61.175,61.205,61.235,61.265,61.295,61.325,61.355,61.385,61.415,61.445,61.475,61.505,61.535,61.565,61.595,61.625,61.655,61.685,61.715,61.745,61.775,61.805,61.835,61.865,61.895,61.925,61.955,61.985,62.015,62.045,62.075,62.105,62.135,62.165,62.195,62.225,62.255,62.285,62.315,62.345,62.375,62.405,62.435,62.465,62.495,62.525,62.555,62.585,62.615,62.645,62.675,62.705,62.735,62.765,62.795,62.825,62.855,62.885,62.915,62.945,62.975,63.005,63.035,63.065,63.095,63.125,63.155,63.185,63.215,63.245,63.275,63.305,63.335,63.365,63.395,63.425,63.455,63.485,63.515,63.545,63.575,63.605,63.635,63.665,63.695,63.725,63.755,63.785,63.815,63.845,63.875,63.905,63.935,63.965,63.995,64.025,64.055,64.085,64.115,64.145,64.175,64.205,64.235,64.265,64.295,64.325,64.355,64.385,64.415,64.445,64.475,64.505,64.535,64.565,64.595,64.625,64.655,64.685,64.715,64.745,64.775,64.805,64.835,64.865,64.895,64.925,64.955,64.985,65.015,65.045,65.075,65.105,65.135,65.165,65.195,65.225,65.255,65.285,65.315,65.345,65.375,65.405,65.435,65.465,65.495,65.525,65.555,65.585,65.615,65.645,65.675,65.705,65.735,65.765,65.795,65.825,65.855,65.885,65.915,65.945,65.975,66.005,66.035,66.065,66.095,66.125,66.155,66.185,66.215,66.245,66.275,66.305,66.335,66.365,66.395,66.425,66.455,66.485,66.515,66.545,66.575,66.605,66.635,66.665,66.695,66.725,66.755,66.785,66.815,66.845,66.875,66.905,66.935,66.965,66.995,67.025,67.055,67.085,67.115,67.145,67.175,67.205,67.235,67.265,67.295,67.325,67.355,67.385,67.415,67.445,67.475,67.505,67.535,67.565,67.595,67.625,67.655,67.685,67.715,67.745,67.775,67.805,67.835,67.865,67.895,67.925,67.955,67.985,68.015,68.045,68.075,68.105,68.135,68.165,68.195,68.225,68.255,68.285,68.315,68.345,68.375,68.405,68.435,68.465,68.495,68.525,68.555,68.585,68.615,68.645,68.675,68.705,68.735,68.765,68.795,68.825,68.855,68.885,68.915,68.945,68.975,69.005,69.035,69.065,69.095,69.125,69.155,69.185,69.215,69.245,69.275,69.305,69.335,69.365,69.395,69.425,69.455,69.485,69.515,69.545,69.575,69.605,69.635,69.665,69.695,69.725,69.755,69.785,69.815,69.845,69.875,69.905,69.935,69.965,69.995,70.025,70.055,70.085,70.115,70.145,70.175,70.205,70.235,70.265,70.295,70.325,70.355,70.385,70.415,70.445,70.475,70.505,70.535,70.565,70.595,70.625,70.655,70.685,70.715,70.745,70.775,70.805,70.835,70.865,70.895,70.925,70.955,70.985,71.015,71.045,71.075,71.105,71.135,71.165,71.195,71.225,71.255,71.285,71.315,71.345,71.375,71.405,71.435,71.465,71.495,71.525,71.555,71.585,71.615,71.645,71.675,71.705,71.735,71.765,71.795,71.825,71.855,71.885,71.915,71.945,71.975,72.005,72.035,72.065,72.095,72.125,72.155,72.185,72.215,72.245,72.275,72.305,72.335,72.365,72.395,72.425,72.455,72.485,72.515,72.545,72.575,72.605,72.635,72.665,72.695,72.725,72.755,72.785,72.815,72.845,72.875,72.905,72.935,72.965,72.995,73.025,73.055,73.085,73.115,73.145,73.175,73.205,73.235,73.265,73.295,73.325,73.355,73.385,73.415,73.445,73.475,73.505,73.535,73.565,73.595,73.625,73.655,73.685,73.715,73.745,73.775,73.805,73.835,73.865,73.895,73.925,73.955,73.985,74.015,74.045,74.075,74.105,74.135,74.165,74.195,74.225,74.255,74.285,74.315,74.345,74.375,74.405,74.435,74.465,74.495,74.525,74.555,74.585,74.615,74.645,74.675,74.705,74.735,74.765,74.795,74.825,74.855,74.885,74.915,74.945,74.975,75.005,75.035,75.065,75.095,75.125,75.155,75.185,75.215,75.245,75.275,75.305,75.335,75.365,75.395,75.425,75.455,75.485,75.515,75.545,75.575,75.605,75.635,75.665,75.695,75.725,75.755,75.785,75.815,75.845,75.875,75.905,75.935,75.965,75.995,76.025,76.055,76.085,76.115,76.145,76.175,76.205,76.235,76.265,76.295,76.325,76.355,76.385,76.415,76.445,76.475,76.505,76.535,76.565,76.595,76.625,76.655,76.685,76.715,76.745,76.775,76.805,76.835,76.865,76.895,76.925,76.955,76.985,77.015,77.045,77.075,77.105,77.135,77.165,77.195,77.225,77.255,77.285,77.315,77.345,77.375,77.405,77.435,77.465,77.495,77.525,77.555,77.585,77.615,77.645,77.675,77.705,77.735,77.765,77.795,77.825,77.855,77.885,77.915,77.945,77.975,78.005,78.035,78.065,78.095,78.125,78.155,78.185,78.215,78.245,78.275,78.305,78.335,78.365,78.395,78.425,78.455,78.485,78.515,78.545,78.575,78.605,78.635,78.665,78.695,78.725,78.755,78.785,78.815,78.845,78.875,78.905,78.935,78.965,78.995,79.025,79.055,79.085,79.115,79.145,79.175,79.205,79.235,79.265,79.295,79.325,79.355,79.385,79.415,79.445,79.475,79.505,79.535,79.565,79.595,79.625,79.655,79.685,79.715,79.745,79.775,79.805,79.835,79.865,79.895,79.925,79.955,79.985,80.015,80.045,80.075,80.105,80.135,80.165,80.195,80.225,80.255,80.285,80.315,80.345,80.375,80.405,80.435,80.465,80.495,80.525,80.555,80.585,80.615,80.645,80.675,80.705,80.735,80.765,80.795,80.825,80.855,80.885,80.915,80.945,80.975,81.005,81.035,81.065,81.095,81.125,81.155,81.185,81.215,81.245,81.275,81.305,81.335,81.365,81.395,81.425,81.455,81.485,81.515,81.545,81.575,81.605,81.635,81.665,81.695,81.725,81.755,81.785,81.815,81.845,81.875,81.905,81.935,81.965,81.995,82.025,82.055,82.085,82.115,82.145,82.175,82.205,82.235,82.265,82.295,82.325,82.355,82.385,82.415,82.445,82.475,82.505,82.535,82.565,82.595,82.625,82.655,82.685,82.715,82.745,82.775,82.805,82.835,82.865,82.895,82.925,82.955,82.985,83.015,83.045,83.075,83.105,83.135,83.165,83.195,83.225,83.255,83.285,83.315,83.345,83.375,83.405,83.435,83.465,83.495,83.525,83.555,83.585,83.615,83.645,83.675,83.705,83.735,83.765,83.795,83.825,83.855,83.885,83.915,83.945,83.975,84.005,84.035,84.065,84.095,84.125,84.155,84.185,84.215,84.245,84.275,84.305,84.335,84.365,84.395,84.425,84.455,84.485,84.515,84.545,84.575,84.605,84.635,84.665,84.695,84.725,84.755,84.785,84.815,84.845,84.875,84.905,84.935,84.965,84.995,85.025,85.055,85.085,85.115,85.145,85.175,85.205,85.235,85.265,85.295,85.325,85.355,85.385,85.415,85.445,85.475,85.505,85.535,85.565,85.595,85.625,85.655,85.685,85.715,85.745,85.775,85.805,85.835,85.865,85.895,85.925,85.955,85.985,86.015,86.045,86.075,86.105,86.135,86.165,86.195,86.225,86.255,86.285,86.315,86.345,86.375,86.405,86.435,86.465,86.495,86.525,86.555,86.585,86.615,86.645,86.675,86.705,86.735,86.765,86.795,86.825,86.855,86.885,86.915,86.945,86.975,87.005,87.035,87.065,87.095,87.125,87.155,87.185,87.215,87.245,87.275,87.305,87.335,87.365,87.395,87.425,87.455,87.485,87.515,87.545,87.575,87.605,87.635,87.665,87.695,87.725,87.755,87.785,87.815,87.845,87.875,87.905,87.935,87.965,87.995,88.025,88.055,88.085,88.115,88.145,88.175,88.205,88.235,88.265,88.295,88.325,88.355,88.385,88.415,88.445,88.475,88.505,88.535,88.565,88.595,88.625,88.655,88.685,88.715,88.745,88.775,88.805,88.835,88.865,88.895,88.925,88.955,88.985,89.015,89.045,89.075,89.105,89.135,89.165,89.195,89.225,89.255,89.285,89.315,89.345,89.375,89.405,89.435,89.465,89.495,89.525,89.555,89.585,89.615,89.645,89.675,89.705,89.735,89.765,89.795,89.825,89.855,89.885,89.915,89.945,89.975,90.005,90.035,90.065,90.095,90.125,90.155,90.185,90.215,90.245,90.275,90.305,90.335,90.365,90.395,90.425,90.455,90.485,90.515,90.545,90.575,90.605,90.635,90.665,90.695,90.725,90.755,90.785,90.815,90.845,90.875,90.905,90.935,90.965,90.995,91.025,91.055,91.085,91.115,91.145,91.175,91.205,91.235,91.265,91.295,91.325,91.355,91.385,91.415,91.445,91.475,91.505,91.535,91.565,91.595,91.625,91.655,91.685,91.715,91.745,91.775,91.805,91.835,91.865,91.895,91.925,91.955,91.985,92.015,92.045,92.075,92.105,92.135,92.165,92.195,92.225,92.255,92.285,92.315,92.345,92.375,92.405,92.435,92.465,92.495,92.525,92.555,92.585,92.615,92.645,92.675,92.705,92.735,92.765,92.795,92.825,92.855,92.885,92.915,92.945,92.975,93.005,93.035,93.065,93.095,93.125,93.155,93.185,93.215,93.245,93.275,93.305,93.335,93.365,93.395,93.425,93.455,93.485,93.515,93.545,93.575,93.605,93.635,93.665,93.695,93.725,93.755,93.785,93.815,93.845,93.875,93.905,93.935,93.965,93.995,94.025,94.055,94.085,94.115,94.145,94.175,94.205,94.235,94.265,94.295,94.325,94.355,94.385,94.415,94.445,94.475,94.505,94.535,94.565,94.595,94.625,94.655,94.685,94.715,94.745,94.775,94.805,94.835,94.865,94.895,94.925,94.955,94.985,95.015,95.045,95.075,95.105,95.135,95.165,95.195,95.225,95.255,95.285,95.315,95.345,95.375,95.405,95.435,95.465,95.495,95.525,95.555,95.585,95.615,95.645,95.675,95.705,95.735,95.765,95.795,95.825,95.855,95.885,95.915,95.945,95.975,96.005,96.035,96.065,96.095,96.125,96.155,96.185,96.215,96.245,96.275,96.305,96.335,96.365,96.395,96.425,96.455,96.485,96.515,96.545,96.575,96.605,96.635,96.665,96.695,96.725,96.755,96.785,96.815,96.845,96.875,96.905,96.935,96.965,96.995,97.025,97.055,97.085,97.115,97.145,97.175,97.205,97.235,97.265,97.295,97.325,97.355,97.385,97.415,97.445,97.475,97.505,97.535,97.565,97.595,97.625,97.655,97.685,97.715,97.745,97.775,97.805,97.835,97.865,97.895,97.925,97.955,97.985,98.015,98.045,98.075,98.105,98.135,98.165,98.195,98.225,98.255,98.285,98.315,98.345,98.375,98.405,98.435,98.465,98.495,98.525,98.555,98.585,98.615,98.645,98.675,98.705,98.735,98.765,98.795,98.825,98.855,98.885,98.915,98.945,98.975,99.005,99.035,99.065,99.095,99.125,99.155,99.185,99.215,99.245,99.275,99.305,99.335,99.365,99.395,99.425,99.455,99.485,99.515,99.545,99.575,99.605,99.635,99.665,99.695,99.725,99.755,99.785,99.815,99.845,99.875,99.905,99.935,99.965,99.995,100.025,100.055,100.085,100.115,100.145,100.175,100.205,100.235,100.265,100.295,100.325,100.355,100.385,100.415,100.445,100.475,100.505,100.535,100.565,100.595,100.625,100.655,100.685,100.715,100.745,100.775,100.805,100.835,100.865,100.895,100.925,100.955,100.985,101.015,101.045,101.075,101.105,101.135,101.165,101.195,101.225,101.255,101.285,101.315,101.345,101.375,101.405,101.435,101.465,101.495,101.525,101.555,101.585,101.615,101.645,101.675,101.705,101.735,101.765,101.795,101.825,101.855,101.885,101.915,101.945,101.975,102.005,102.035,102.065,102.095,102.125,102.155,102.185,102.215,102.245,102.275,102.305,102.335,102.365,102.395,102.425,102.455,102.485,102.515,102.545,102.575,102.605,102.635,102.665,102.695,102.725,102.755,102.785,102.815,102.845,102.875,102.905,102.935,102.965,102.995,103.025,103.055,103.085,103.115,103.145,103.175,103.205,103.235,103.265,103.295,103.325,103.355,103.385,103.415,103.445,103.475,103.505,103.535,103.565,103.595,103.625,103.655,103.685,103.715,103.745,103.775,103.805,103.835,103.865,103.895,103.925,103.955,103.985,104.015,104.045,104.075,104.105,104.135,104.165,104.195,104.225,104.255,104.285,104.315,104.345,104.375,104.405,104.435,104.465,104.495,104.525,104.555,104.585,104.615,104.645,104.675,104.705,104.735,104.765,104.795,104.825,104.855,104.885,104.915,104.945,104.975,105.005,105.035,105.065,105.095,105.125,105.155,105.185,105.215,105.245,105.275,105.305,105.335,105.365,105.395,105.425,105.455,105.485,105.515,105.545,105.575,105.605,105.635,105.665,105.695,105.725,105.755,105.785,105.815,105.845,105.875,105.905,105.935,105.965,105.995,106.025,106.055,106.085,106.115,106.145,106.175,106.205,106.235,106.265,106.295,106.325,106.355,106.385,106.415,106.445,106.475,106.505,106.535,106.565,106.595,106.625,106.655,106.685,106.715,106.745,106.775,106.805,106.835,106.865,106.895,106.925,106.955,106.985,107.015,107.045,107.075,107.105,107.135,107.165,107.195,107.225,107.255,107.285,107.315,107.345,107.375,107.405,107.435,107.465,107.495,107.525,107.555,107.585,107.615,107.645,107.675,107.705,107.735,107.765,107.795,107.825,107.855,107.885,107.915,107.945,107.975,108.005,108.035,108.065,108.095,108.125,108.155,108.185,108.215,108.245,108.275,108.305,108.335,108.365,108.395,108.425,108.455,108.485,108.515,108.545,108.575,108.605,108.635,108.665,108.695,108.725,108.755,108.785,108.815,108.845,108.875,108.905,108.935,108.965,108.995,109.025,109.055,109.085,109.115,109.145,109.175,109.205,109.235,109.265,109.295,109.325,109.355,109.385,109.415,109.445,109.475,109.505,109.535,109.565,109.595,109.625,109.655,109.685,109.715,109.745,109.775,109.805,109.835,109.865,109.895,109.925,109.955,109.985,110.015,110.045,110.075,110.105,110.135,110.165,110.195,110.225,110.255,110.285,110.315,110.345,110.375,110.405,110.435,110.465,110.495,110.525,110.555,110.585,110.615,110.645,110.675,110.705,110.735,110.765,110.795,110.825,110.855,110.885,110.915,110.945,110.975,111.005,111.035,111.065,111.095,111.125,111.155,111.185,111.215,111.245,111.275,111.305,111.335,111.365,111.395,111.425,111.455,111.485,111.515,111.545,111.575,111.605,111.635,111.665,111.695,111.725,111.755,111.785,111.815,111.845,111.875,111.905,111.935,111.965,111.995,112.025,112.055,112.085,112.115,112.145,112.175,112.205,112.235,112.265,112.295,112.325,112.355,112.385,112.415,112.445,112.475,112.505,112.535,112.565,112.595,112.625,112.655,112.685,112.715,112.745,112.775,112.805,112.835,112.865,112.895,112.925,112.955,112.985,113.015,113.045,113.075,113.105,113.135,113.165,113.195,113.225,113.255,113.285,113.315,113.345,113.375,113.405,113.435,113.465,113.495,113.525,113.555,113.585,113.615,113.645,113.675,113.705,113.735,113.765,113.795,113.825,113.855,113.885,113.915,113.945,113.975,114.005,114.035,114.065,114.095,114.125,114.155,114.185,114.215,114.245,114.275,114.305,114.335,114.365,114.395,114.425,114.455,114.485,114.515,114.545,114.575,114.605,114.635,114.665,114.695,114.725,114.755,114.785,114.815,114.845,114.875,114.905,114.935,114.965,114.995,115.025,115.055,115.085,115.115,115.145,115.175,115.205,115.235,115.265,115.295,115.325,115.355,115.385,115.415,115.445,115.475,115.505,115.535,115.565,115.595,115.625,115.655,115.685,115.715,115.745,115.775,115.805,115.835,115.865,115.895,115.925,115.955,115.985,116.015,116.045,116.075,116.105,116.135,116.165,116.195,116.225,116.255,116.285,116.315,116.345,116.375,116.405,116.435,116.465,116.495,116.525,116.555,116.585,116.615,116.645,116.675,116.705,116.735,116.765,116.795,116.825,116.855,116.885,116.915,116.945,116.975,117.005,117.035,117.065,117.095,117.125,117.155,117.185,117.215,117.245,117.275,117.305,117.335,117.365,117.395,117.425,117.455,117.485,117.515,117.545,117.575,117.605,117.635,117.665,117.695,117.725,117.755,117.785,117.815,117.845,117.875,117.905,117.935,117.965,117.995,118.025,118.055,118.085,118.115,118.145,118.175,118.205,118.235,118.265,118.295,118.325,118.355,118.385,118.415,118.445,118.475,118.505,118.535,118.565,118.595,118.625,118.655,118.685,118.715,118.745,118.775,118.805,118.835,118.865,118.895,118.925,118.955,118.985,119.015,119.045,119.075,119.105,119.135,119.165,119.195,119.225,119.255,119.285,119.315,119.345,119.375,119.405,119.435,119.465,119.495,119.525,119.555,119.585,119.615,119.645,119.675,119.705,119.735,119.765,119.795,119.825,119.855,119.885,119.915,119.945,119.975,120.005,120.035,120.065,120.095,120.125,120.155,120.185,120.215,120.245,120.275,120.305,120.335,120.365,120.395,120.425,120.455,120.485,120.515,120.545,120.575,120.605,120.635,120.665,120.695,120.725,120.755,120.785,120.815,120.845,120.875,120.905,120.935,120.965,120.995,121.025,121.055,121.085,121.115,121.145,121.175,121.205,121.235,121.265,121.295,121.325,121.355,121.385,121.415,121.445,121.475,121.505,121.535,121.565,121.595,121.625,121.655,121.685,121.715,121.745,121.775,121.805,121.835,121.865,121.895,121.925,121.955,121.985,122.015,122.045,122.075,122.105,122.135,122.165,122.195,122.225,122.255,122.285,122.315,122.345,122.375,122.405,122.435,122.465,122.495,122.525,122.555,122.585,122.615,122.645,122.675,122.705,122.735,122.765,122.795,122.825,122.855,122.885,122.915,122.945,122.975,123.005,123.035,123.065,123.095,123.125,123.155,123.185,123.215,123.245,123.275,123.305,123.335,123.365,123.395,123.425,123.455,123.485,123.515,123.545,123.575,123.605,123.635,123.665,123.695,123.725,123.755,123.785,123.815,123.845,123.875,123.905,123.935,123.965,123.995,124.025,124.055,124.085,124.115,124.145,124.175,124.205,124.235,124.265,124.295,124.325,124.355,124.385,124.415,124.445,124.475,124.505,124.535,124.565,124.595,124.625,124.655,124.685,124.715,124.745,124.775,124.805,124.835,124.865,124.895,124.925,124.955,124.985,125.015,125.045,125.075,125.105,125.135,125.165,125.195,125.225,125.255,125.285,125.315,125.345,125.375,125.405,125.435,125.465,125.495,125.525,125.555,125.585,125.615,125.645,125.675,125.705,125.735,125.765,125.795,125.825,125.855,125.885,125.915,125.945,125.975,126.005,126.035,126.065,126.095,126.125,126.155,126.185,126.215,126.245,126.275,126.305,126.335,126.365,126.395,126.425,126.455,126.485,126.515,126.545,126.575,126.605,126.635,126.665,126.695,126.725,126.755,126.785,126.815,126.845,126.875,126.905,126.935,126.965,126.995,127.025,127.055,127.085,127.115,127.145,127.175,127.205,127.235,127.265,127.295,127.325,127.355,127.385,127.415,127.445,127.475,127.505,127.535,127.565,127.595,127.625,127.655,127.685,127.715,127.745,127.775,127.805,127.835,127.865,127.895,127.925,127.955,127.985,128.015,128.045,128.075,128.105,128.135,128.165,128.195,128.225,128.255,128.285,128.315,128.345,128.375,128.405,128.435,128.465,128.495,128.525,128.555,128.585,128.615,128.645,128.675,128.705,128.735,128.765,128.795,128.825,128.855,128.885,128.915,128.945,128.975,129.005,129.035,129.065,129.095,129.125,129.155,129.185,129.215,129.245,129.275,129.305,129.335,129.365,129.395,129.425,129.455,129.485,129.515,129.545,129.575,129.605,129.635,129.665,129.695,129.725,129.755,129.785,129.815,129.845,129.875,129.905,129.935,129.965,129.995,130.025,130.055,130.085,130.115,130.145,130.175,130.205,130.235,130.265,130.295,130.325,130.355,130.385,130.415,130.445,130.475,130.505,130.535,130.565,130.595,130.625,130.655,130.685,130.715,130.745,130.775,130.805,130.835,130.865,130.895,130.925,130.955,130.985,131.015,131.045,131.075,131.105,131.135,131.165,131.195,131.225,131.255,131.285,131.315,131.345,131.375,131.405,131.435,131.465,131.495,131.525,131.555,131.585,131.615,131.645,131.675,131.705,131.735,131.765,131.795,131.825,131.855,131.885,131.915,131.945,131.975,132.005,132.035,132.065,132.095,132.125,132.155,132.185,132.215,132.245,132.275,132.305,132.335,132.365,132.395,132.425,132.455,132.485,132.515,132.545,132.575,132.605,132.635,132.665,132.695,132.725,132.755,132.785,132.815,132.845,132.875,132.905,132.935,132.965,132.995,133.025,133.055,133.085,133.115,133.145,133.175,133.205,133.235,133.265,133.295,133.325,133.355,133.385,133.415,133.445,133.475,133.505,133.535,133.565,133.595,133.625,133.655,133.685,133.715,133.745,133.775,133.805,133.835,133.865,133.895,133.925,133.955,133.985,134.015,134.045,134.075,134.105,134.135,134.165,134.195,134.225,134.255,134.285,134.315,134.345,134.375,134.405,134.435,134.465,134.495,134.525,134.555,134.585,134.615,134.645,134.675,134.705,134.735,134.765,134.795,134.825,134.855,134.885,134.915,134.945,134.975,135.005,135.035,135.065,135.095,135.125,135.155,135.185,135.215,135.245,135.275,135.305,135.335,135.365,135.395,135.425,135.455,135.485,135.515,135.545,135.575,135.605,135.635,135.665,135.695,135.725,135.755,135.785,135.815,135.845,135.875,135.905,135.935,135.965,135.995,136.025,136.055,136.085,136.115,136.145,136.175,136.205,136.235,136.265,136.295,136.325,136.355,136.385,136.415,136.445,136.475,136.505,136.535,136.565,136.595,136.625,136.655,136.685,136.715,136.745,136.775,136.805,136.835,136.865,136.895,136.925,136.955,136.985,137.015,137.045,137.075,137.105,137.135,137.165,137.195,137.225,137.255,137.285,137.315,137.345,137.375,137.405,137.435,137.465,137.495,137.525,137.555,137.585,137.615,137.645,137.675,137.705,137.735,137.765,137.795,137.825,137.855,137.885,137.915,137.945,137.975,138.005,138.035,138.065,138.095,138.125,138.155,138.185,138.215,138.245,138.275,138.305,138.335,138.365,138.395,138.425,138.455,138.485,138.515,138.545,138.575,138.605,138.635,138.665,138.695,138.725,138.755,138.785,138.815,138.845,138.875,138.905,138.935,138.965,138.995,139.025,139.055,139.085,139.115,139.145,139.175,139.205,139.235,139.265,139.295,139.325,139.355,139.385,139.415,139.445,139.475,139.505,139.535,139.565,139.595,139.625,139.655,139.685,139.715,139.745,139.775,139.805,139.835,139.865,139.895,139.925,139.955,139.985,140.015,140.045,140.075,140.105,140.135,140.165,140.195,140.225,140.255,140.285,140.315,140.345,140.375,140.405,140.435,140.465,140.495,140.525,140.555,140.585,140.615,140.645,140.675,140.705,140.735,140.765,140.795,140.825,140.855,140.885,140.915,140.945,140.975,141.005,141.035,141.065,141.095,141.125,141.155,141.185,141.215,141.245,141.275,141.305,141.335,141.365,141.395,141.425,141.455,141.485,141.515,141.545,141.575,141.605,141.635,141.665,141.695,141.725,141.755,141.785,141.815,141.845,141.875,141.905,141.935,141.965,141.995,142.025,142.055,142.085,142.115,142.145,142.175,142.205,142.235,142.265,142.295,142.325,142.355,142.385,142.415,142.445,142.475,142.505,142.535,142.565,142.595,142.625,142.655,142.685,142.715,142.745,142.775,142.805,142.835,142.865,142.895,142.925,142.955,142.985,143.015,143.045,143.075,143.105,143.135,143.165,143.195,143.225,143.255,143.285,143.315,143.345,143.375,143.405,143.435,143.465,143.495,143.525,143.555,143.585,143.615,143.645,143.675,143.705,143.735,143.765,143.795,143.825,143.855,143.885,143.915,143.945,143.975,144.005,144.035,144.065,144.095,144.125,144.155,144.185,144.215,144.245,144.275,144.305,144.335,144.365,144.395,144.425,144.455,144.485,144.515,144.545,144.575,144.605,144.635,144.665,144.695,144.725,144.755,144.785,144.815,144.845,144.875,144.905,144.935,144.965,144.995,145.025,145.055,145.085,145.115,145.145,145.175,145.205,145.235,145.265,145.295,145.325,145.355,145.385,145.415,145.445,145.475,145.505,145.535,145.565,145.595,145.625,145.655,145.685,145.715,145.745,145.775,145.805,145.835,145.865,145.895,145.925,145.955,145.985,146.015,146.045,146.075,146.105,146.135,146.165,146.195,146.225,146.255,146.285,146.315,146.345,146.375,146.405,146.435,146.465,146.495,146.525,146.555,146.585,146.615,146.645,146.675,146.705,146.735,146.765,146.795,146.825,146.855,146.885,146.915,146.945,146.975,147.005,147.035,147.065,147.095,147.125,147.155,147.185,147.215,147.245,147.275,147.305,147.335,147.365,147.395,147.425,147.455,147.485,147.515,147.545,147.575,147.605,147.635,147.665,147.695,147.725,147.755,147.785,147.815,147.845,147.875,147.905,147.935,147.965,147.995,148.025,148.055,148.085,148.115,148.145,148.175,148.205,148.235,148.265,148.295,148.325,148.355,148.385,148.415,148.445,148.475,148.505,148.535,148.565,148.595,148.625,148.655,148.685,148.715,148.745,148.775,148.805,148.835,148.865,148.895,148.925,148.955,148.985,149.015,149.045,149.075,149.105,149.135,149.165,149.195,149.225,149.255,149.285,149.315,149.345,149.375,149.405,149.435,149.465,149.495,149.525,149.555,149.585,149.615,149.645,149.675,149.705,149.735,149.765,149.795,149.825,149.855,149.885,149.915,149.945,149.975,150.005,150.035,150.065,150.095,150.125,150.155,150.185,150.215,150.245,150.275,150.305,150.335,150.365,150.395,150.425,150.455,150.485,150.515,150.545,150.575,150.605,150.635,150.665,150.695,150.725,150.755,150.785,150.815,150.845,150.875,150.905,150.935,150.965,150.995,151.025,151.055,151.085,151.115,151.145,151.175,151.205,151.235,151.265,151.295,151.325,151.355,151.385,151.415,151.445,151.475,151.505,151.535,151.565,151.595,151.625,151.655,151.685,151.715,151.745,151.775,151.805,151.835,151.865,151.895,151.925,151.955,151.985,152.015,152.045,152.075,152.105,152.135,152.165,152.195,152.225,152.255,152.285,152.315,152.345,152.375,152.405,152.435,152.465,152.495,152.525,152.555,152.585,152.615,152.645,152.675,152.705,152.735,152.765,152.795,152.825,152.855,152.885,152.915,152.945,152.975,153.005,153.035,153.065,153.095,153.125,153.155,153.185,153.215,153.245,153.275,153.305,153.335,153.365,153.395,153.425,153.455,153.485,153.515,153.545,153.575,153.605,153.635,153.665,153.695,153.725,153.755,153.785,153.815,153.845,153.875,153.905,153.935,153.965,153.995,154.025,154.055,154.085,154.115,154.145,154.175,154.205,154.235,154.265,154.295,154.325,154.355,154.385,154.415,154.445,154.475,154.505,154.535,154.565,154.595,154.625,154.655,154.685,154.715,154.745,154.775,154.805,154.835,154.865,154.895,154.925,154.955,154.985,155.015,155.045,155.075,155.105,155.135,155.165,155.195,155.225,155.255,155.285,155.315,155.345,155.375,155.405,155.435,155.465,155.495,155.525,155.555,155.585,155.615,155.645,155.675,155.705,155.735,155.765,155.795,155.825,155.855,155.885,155.915,155.945,155.975,156.005,156.035,156.065,156.095,156.125,156.155,156.185,156.215,156.245,156.275,156.305,156.335,156.365,156.395,156.425,156.455,156.485,156.515,156.545,156.575,156.605,156.635,156.665,156.695,156.725,156.755,156.785,156.815,156.845,156.875,156.905,156.935,156.965,156.995,157.025,157.055,157.085,157.115,157.145,157.175,157.205,157.235,157.265,157.295,157.325,157.355,157.385,157.415,157.445,157.475,157.505,157.535,157.565,157.595,157.625,157.655,157.685,157.715,157.745,157.775,157.805,157.835,157.865,157.895,157.925,157.955,157.985,158.015,158.045,158.075,158.105,158.135,158.165,158.195,158.225,158.255,158.285,158.315,158.345,158.375,158.405,158.435,158.465,158.495,158.525,158.555,158.585,158.615,158.645,158.675,158.705,158.735,158.765,158.795,158.825,158.855,158.885,158.915,158.945,158.975,159.005,159.035,159.065,159.095,159.125,159.155,159.185,159.215,159.245,159.275,159.305,159.335,159.365,159.395,159.425,159.455,159.485,159.515,159.545,159.575,159.605,159.635,159.665,159.695,159.725,159.755,159.785,159.815,159.845,159.875,159.905,159.935,159.965,159.995,160.025,160.055,160.085,160.115,160.145,160.175,160.205,160.235,160.265,160.295,160.325,160.355,160.385,160.415,160.445,160.475,160.505,160.535,160.565,160.595,160.625,160.655,160.685,160.715,160.745,160.775,160.805,160.835,160.865,160.895,160.925,160.955,160.985,161.015,161.045,161.075,161.105,161.135,161.165,161.195,161.225,161.255,161.285,161.315,161.345,161.375,161.405,161.435,161.465,161.495,161.525,161.555,161.585,161.615,161.645,161.675,161.705,161.735,161.765,161.795,161.825,161.855,161.885,161.915,161.945,161.975,162.005,162.035,162.065,162.095,162.125,162.155,162.185,162.215,162.245,162.275,162.305,162.335,162.365,162.395,162.425,162.455,162.485,162.515,162.545,162.575,162.605,162.635,162.665,162.695,162.725,162.755,162.785,162.815,162.845,162.875,162.905,162.935,162.965,162.995,163.025,163.055,163.085,163.115,163.145,163.175,163.205,163.235,163.265,163.295,163.325,163.355,163.385,163.415,163.445,163.475,163.505,163.535,163.565,163.595,163.625,163.655,163.685,163.715,163.745,163.775,163.805,163.835,163.865,163.895,163.925,163.955,163.985,164.015,164.045,164.075,164.105,164.135,164.165,164.195,164.225,164.255,164.285,164.315,164.345,164.375,164.405,164.435,164.465,164.495,164.525,164.555,164.585,164.615,164.645,164.675,164.705,164.735,164.765,164.795,164.825,164.855,164.885,164.915,164.945,164.975,165.005,165.035,165.065,165.095,165.125,165.155,165.185,165.215,165.245,165.275,165.305,165.335,165.365,165.395,165.425,165.455,165.485,165.515,165.545,165.575,165.605,165.635,165.665,165.695,165.725,165.755,165.785,165.815,165.845,165.875,165.905,165.935,165.965,165.995,166.025,166.055,166.085,166.115,166.145,166.175,166.205,166.235,166.265,166.295,166.325,166.355,166.385,166.415,166.445,166.475,166.505,166.535,166.565,166.595,166.625,166.655,166.685,166.715,166.745,166.775,166.805,166.835,166.865,166.895,166.925,166.955,166.985,167.015,167.045,167.075,167.105,167.135,167.165,167.195,167.225,167.255,167.285,167.315,167.345,167.375,167.405,167.435,167.465,167.495,167.525,167.555,167.585,167.615,167.645,167.675,167.705,167.735,167.765,167.795,167.825,167.855,167.885,167.915,167.945,167.975,168.005,168.035,168.065,168.095,168.125,168.155,168.185,168.215,168.245,168.275,168.305,168.335,168.365,168.395,168.425,168.455,168.485,168.515,168.545,168.575,168.605,168.635,168.665,168.695,168.725,168.755,168.785,168.815,168.845,168.875,168.905,168.935,168.965,168.995,169.025,169.055,169.085,169.115,169.145,169.175,169.205,169.235,169.265,169.295,169.325,169.355,169.385,169.415,169.445,169.475,169.505,169.535,169.565,169.595,169.625,169.655,169.685,169.715,169.745,169.775,169.805,169.835,169.865,169.895,169.925,169.955,169.985,170.015,170.045,170.075,170.105,170.135,170.165,170.195,170.225,170.255,170.285,170.315,170.345,170.375,170.405,170.435,170.465,170.495,170.525,170.555,170.585,170.615,170.645,170.675,170.705,170.735,170.765,170.795,170.825,170.855,170.885,170.915,170.945,170.975,171.005,171.035,171.065,171.095,171.125,171.155,171.185,171.215,171.245,171.275,171.305,171.335,171.365,171.395,171.425,171.455,171.485,171.515,171.545,171.575,171.605,171.635,171.665,171.695,171.725,171.755,171.785,171.815,171.845,171.875,171.905,171.935,171.965,171.995,172.025,172.055,172.085,172.115,172.145,172.175,172.205,172.235,172.265,172.295,172.325,172.355,172.385,172.415,172.445,172.475,172.505,172.535,172.565,172.595,172.625,172.655,172.685,172.715,172.745,172.775,172.805,172.835,172.865,172.895,172.925,172.955,172.985,173.015,173.045,173.075,173.105,173.135,173.165,173.195,173.225,173.255,173.285,173.315,173.345,173.375,173.405,173.435,173.465,173.495,173.525,173.555,173.585,173.615,173.645,173.675,173.705,173.735,173.765,173.795,173.825,173.855,173.885,173.915,173.945,173.975,174.005,174.035,174.065,174.095,174.125,174.155,174.185,174.215,174.245,174.275,174.305,174.335,174.365,174.395,174.425,174.455,174.485,174.515,174.545,174.575,174.605,174.635,174.665,174.695,174.725,174.755,174.785,174.815,174.845,174.875,174.905,174.935,174.965,174.995,175.025,175.055,175.085,175.115,175.145,175.175,175.205,175.235,175.265,175.295,175.325,175.355,175.385,175.415,175.445,175.475,175.505,175.535,175.565,175.595,175.625,175.655,175.685,175.715,175.745,175.775,175.805,175.835,175.865,175.895,175.925,175.955,175.985,176.015,176.045,176.075,176.105,176.135,176.165,176.195,176.225,176.255,176.285,176.315,176.345,176.375,176.405,176.435,176.465,176.495,176.525,176.555,176.585,176.615,176.645,176.675,176.705,176.735,176.765,176.795,176.825,176.855,176.885,176.915,176.945,176.975,177.005,177.035,177.065,177.095,177.125,177.155,177.185,177.215,177.245,177.275,177.305,177.335,177.365,177.395,177.425,177.455,177.485,177.515,177.545,177.575,177.605,177.635,177.665,177.695,177.725,177.755,177.785,177.815,177.845,177.875,177.905,177.935,177.965,177.995,178.025,178.055,178.085,178.115,178.145,178.175,178.205,178.235,178.265,178.295,178.325,178.355,178.385,178.415,178.445,178.475,178.505,178.535,178.565,178.595,178.625,178.655,178.685,178.715,178.745,178.775,178.805,178.835,178.865,178.895,178.925,178.955,178.985,179.015,179.045,179.075,179.105,179.135,179.165,179.195,179.225,179.255,179.285,179.315,179.345,179.375,179.405,179.435,179.465,179.495,179.525,179.555,179.585,179.615,179.645,179.675,179.705,179.735,179.765,179.795,179.825,179.855,179.885,179.915,179.945,179.975,180.005,180.035,180.065,180.095,180.125,180.155,180.185,180.215,180.245,180.275,180.305,180.335,180.365,180.395,180.425,180.455,180.485,180.515,180.545,180.575,180.605,180.635,180.665,180.695,180.725,180.755,180.785,180.815,180.845,180.875,180.905,180.935,180.965,180.995,181.025,181.055,181.085,181.115,181.145,181.175,181.205,181.235,181.265,181.295,181.325,181.355,181.385,181.415,181.445,181.475,181.505,181.535,181.565,181.595,181.625,181.655,181.685,181.715,181.745,181.775,181.805,181.835,181.865,181.895,181.925,181.955,181.985,182.015,182.045,182.075,182.105,182.135,182.165,182.195,182.225,182.255,182.285,182.315,182.345,182.375,182.405,182.435,182.465,182.495,182.525,182.555,182.585,182.615,182.645,182.675,182.705,182.735,182.765,182.795,182.825,182.855,182.885,182.915,182.945,182.975,183.005,183.035,183.065,183.095,183.125,183.155,183.185,183.215,183.245,183.275,183.305,183.335,183.365,183.395,183.425,183.455,183.485,183.515,183.545,183.575,183.605,183.635,183.665,183.695,183.725,183.755,183.785,183.815,183.845,183.875,183.905,183.935,183.965,183.995,184.025,184.055,184.085,184.115,184.145,184.175,184.205,184.235,184.265,184.295,184.325,184.355,184.385,184.415,184.445,184.475,184.505,184.535,184.565,184.595,184.625,184.655,184.685,184.715,184.745,184.775,184.805,184.835,184.865,184.895,184.925,184.955,184.985,185.015,185.045,185.075,185.105,185.135,185.165,185.195,185.225,185.255,185.285,185.315,185.345,185.375,185.405,185.435,185.465,185.495,185.525,185.555,185.585,185.615,185.645,185.675,185.705,185.735,185.765,185.795,185.825,185.855,185.885,185.915,185.945,185.975,186.005,186.035,186.065,186.095,186.125,186.155,186.185,186.215,186.245,186.275,186.305,186.335,186.365,186.395,186.425,186.455,186.485,186.515,186.545,186.575,186.605,186.635,186.665,186.695,186.725,186.755,186.785,186.815,186.845,186.875,186.905,186.935,186.965,186.995,187.025,187.055,187.085,187.115,187.145,187.175,187.205,187.235,187.265,187.295,187.325,187.355,187.385,187.415,187.445,187.475,187.505,187.535,187.565,187.595,187.625,187.655,187.685,187.715,187.745,187.775,187.805,187.835,187.865,187.895,187.925,187.955,187.985,188.015,188.045,188.075,188.105,188.135,188.165,188.195,188.225,188.255,188.285,188.315,188.345,188.375,188.405,188.435,188.465,188.495,188.525,188.555,188.585,188.615,188.645,188.675,188.705,188.735,188.765,188.795,188.825,188.855,188.885,188.915,188.945,188.975,189.005,189.035,189.065,189.095,189.125,189.155,189.185,189.215,189.245,189.275,189.305,189.335,189.365,189.395,189.425,189.455,189.485,189.515,189.545,189.575,189.605,189.635,189.665,189.695,189.725,189.755,189.785,189.815,189.845,189.875,189.905,189.935,189.965,189.995,190.025,190.055,190.085,190.115,190.145,190.175,190.205,190.235,190.265,190.295,190.325,190.355,190.385,190.415,190.445,190.475,190.505,190.535,190.565,190.595,190.625,190.655,190.685,190.715,190.745,190.775,190.805,190.835,190.865,190.895,190.925,190.955,190.985,191.015,191.045,191.075,191.105,191.135,191.165,191.195,191.225,191.255,191.285,191.315,191.345,191.375,191.405,191.435,191.465,191.495,191.525,191.555,191.585,191.615,191.645,191.675,191.705,191.735,191.765,191.795,191.825,191.855,191.885,191.915,191.945,191.975,192.005,192.035,192.065,192.095,192.125,192.155,192.185,192.215,192.245,192.275,192.305,192.335,192.365,192.395,192.425,192.455,192.485,192.515,192.545,192.575,192.605,192.635,192.665,192.695,192.725,192.755,192.785,192.815,192.845,192.875,192.905,192.935,192.965,192.995,193.025,193.055,193.085,193.115,193.145,193.175,193.205,193.235,193.265,193.295,193.325,193.355,193.385,193.415,193.445,193.475,193.505,193.535,193.565,193.595,193.625,193.655,193.685,193.715,193.745,193.775,193.805,193.835,193.865,193.895,193.925,193.955,193.985,194.015,194.045,194.075,194.105,194.135,194.165,194.195,194.225,194.255,194.285,194.315,194.345,194.375,194.405,194.435,194.465,194.495,194.525,194.555,194.585,194.615,194.645,194.675,194.705,194.735,194.765,194.795,194.825,194.855,194.885,194.915,194.945,194.975,195.005,195.035,195.065,195.095,195.125,195.155,195.185,195.215,195.245,195.275,195.305,195.335,195.365,195.395,195.425,195.455,195.485,195.515,195.545,195.575,195.605,195.635,195.665,195.695,195.725,195.755,195.785,195.815,195.845,195.875,195.905,195.935,195.965,195.995,196.025,196.055,196.085,196.115,196.145,196.175,196.205,196.235,196.265,196.295,196.325,196.355,196.385,196.415,196.445,196.475,196.505,196.535,196.565,196.595,196.625,196.655,196.685,196.715,196.745,196.775,196.805,196.835,196.865,196.895,196.925,196.955,196.985,197.015,197.045,197.075,197.105,197.135,197.165,197.195,197.225,197.255,197.285,197.315,197.345,197.375,197.405,197.435,197.465,197.495,197.525,197.555,197.585,197.615,197.645,197.675,197.705,197.735,197.765,197.795,197.825,197.855,197.885,197.915,197.945,197.975,198.005,198.035,198.065,198.095,198.125,198.155,198.185,198.215,198.245,198.275,198.305,198.335,198.365,198.395,198.425,198.455,198.485,198.515,198.545,198.575,198.605,198.635,198.665,198.695,198.725,198.755,198.785,198.815,198.845,198.875,198.905,198.935,198.965,198.995,199.025,199.055,199.085,199.115,199.145,199.175,199.205,199.235,199.265,199.295,199.325,199.355,199.385,199.415,199.445,199.475,199.505,199.535,199.565,199.595,199.625,199.655,199.685,199.715,199.745,199.775,199.805,199.835,199.865,199.895,199.925,199.955,199.985,200.015,200.045,200.075,200.105,200.135,200.165,200.195,200.225,200.255,200.285,200.315,200.345,200.375,200.405,200.435,200.465,200.495,200.525,200.555,200.585,200.615,200.645,200.675,200.705,200.735,200.765,200.795,200.825,200.855,200.885,200.915,200.945,200.975,201.005,201.035,201.065,201.095,201.125,201.155,201.185,201.215,201.245,201.275,201.305,201.335,201.365,201.395,201.425,201.455,201.485,201.515,201.545,201.575,201.605,201.635,201.665,201.695,201.725,201.755,201.785,201.815,201.845,201.875,201.905,201.935,201.965,201.995,202.025,202.055,202.085,202.115,202.145,202.175,202.205,202.235,202.265,202.295,202.325,202.355,202.385,202.415,202.445,202.475,202.505,202.535,202.565,202.595,202.625,202.655,202.685,202.715,202.745,202.775,202.805,202.835,202.865,202.895,202.925,202.955,202.985,203.015,203.045,203.075,203.105,203.135,203.165,203.195,203.225,203.255,203.285,203.315,203.345,203.375,203.405,203.435,203.465,203.495,203.525,203.555,203.585,203.615,203.645,203.675,203.705,203.735,203.765,203.795,203.825,203.855,203.885,203.915,203.945,203.975,204.005,204.035,204.065,204.095,204.125,204.155,204.185,204.215,204.245,204.275,204.305,204.335,204.365,204.395,204.425,204.455,204.485,204.515,204.545,204.575,204.605,204.635,204.665,204.695,204.725,204.755,204.785,204.815,204.845,204.875,204.905,204.935,204.965,204.995,205.025,205.055,205.085,205.115,205.145,205.175,205.205,205.235,205.265,205.295,205.325,205.355,205.385,205.415,205.445,205.475,205.505,205.535,205.565,205.595,205.625,205.655,205.685,205.715,205.745,205.775,205.805,205.835,205.865,205.895,205.925,205.955,205.985,206.015,206.045,206.075,206.105,206.135,206.165,206.195,206.225,206.255,206.285,206.315,206.345,206.375,206.405,206.435,206.465,206.495,206.525,206.555,206.585,206.615,206.645,206.675,206.705,206.735,206.765,206.795,206.825,206.855,206.885,206.915,206.945,206.975,207.005,207.035,207.065,207.095,207.125,207.155,207.185,207.215,207.245,207.275,207.305,207.335,207.365,207.395,207.425,207.455,207.485,207.515,207.545,207.575,207.605,207.635,207.665,207.695,207.725,207.755,207.785,207.815,207.845,207.875,207.905,207.935,207.965,207.995,208.025,208.055,208.085,208.115,208.145,208.175,208.205,208.235,208.265,208.295,208.325,208.355,208.385,208.415,208.445,208.475,208.505,208.535,208.565,208.595,208.625,208.655,208.685,208.715,208.745,208.775,208.805,208.835,208.865,208.895,208.925,208.955,208.985,209.015,209.045,209.075,209.105,209.135,209.165,209.195,209.225,209.255,209.285,209.315,209.345,209.375,209.405,209.435,209.465,209.495,209.525,209.555,209.585,209.615,209.645,209.675,209.705,209.735,209.765,209.795,209.825,209.855,209.885,209.915,209.945,209.975,210.005,210.035,210.065,210.095,210.125,210.155,210.185,210.215,210.245,210.275,210.305,210.335,210.365,210.395,210.425,210.455,210.485,210.515,210.545,210.575,210.605,210.635,210.665,210.695,210.725,210.755,210.785,210.815,210.845,210.875,210.905,210.935,210.965,210.995,211.025,211.055,211.085,211.115,211.145,211.175,211.205,211.235,211.265,211.295,211.325,211.355,211.385,211.415,211.445,211.475,211.505,211.535,211.565,211.595,211.625,211.655,211.685,211.715,211.745,211.775,211.805,211.835,211.865,211.895,211.925,211.955,211.985,212.015,212.045,212.075,212.105,212.135,212.165,212.195,212.225,212.255,212.285,212.315,212.345,212.375,212.405,212.435,212.465,212.495,212.525,212.555,212.585,212.615,212.645,212.675,212.705,212.735,212.765,212.795,212.825,212.855,212.885,212.915,212.945,212.975,213.005,213.035,213.065,213.095,213.125,213.155,213.185,213.215,213.245,213.275,213.305,213.335,213.365,213.395,213.425,213.455,213.485,213.515,213.545,213.575,213.605,213.635,213.665,213.695,213.725,213.755,213.785,213.815,213.845,213.875,213.905,213.935,213.965,213.995,214.025,214.055,214.085,214.115,214.145,214.175,214.205,214.235,214.265,214.295,214.325,214.355,214.385,214.415,214.445,214.475,214.505,214.535,214.565,214.595,214.625,214.655,214.685,214.715,214.745,214.775,214.805,214.835,214.865,214.895,214.925,214.955,214.985,215.015,215.045,215.075,215.105,215.135,215.165,215.195,215.225,215.255,215.285,215.315,215.345,215.375,215.405,215.435,215.465,215.495,215.525,215.555,215.585,215.615,215.645,215.675,215.705,215.735,215.765,215.795,215.825,215.855,215.885,215.915,215.945,215.975,216.005,216.035,216.065,216.095,216.125,216.155,216.185,216.215,216.245,216.275,216.305,216.335,216.365,216.395,216.425,216.455,216.485,216.515,216.545,216.575,216.605,216.635,216.665,216.695,216.725,216.755,216.785,216.815,216.845,216.875,216.905,216.935,216.965,216.995,217.025,217.055,217.085,217.115,217.145,217.175,217.205,217.235,217.265,217.295,217.325,217.355,217.385,217.415,217.445,217.475,217.505,217.535,217.565,217.595,217.625,217.655,217.685,217.715,217.745,217.775,217.805,217.835,217.865,217.895,217.925,217.955,217.985,218.015,218.045,218.075,218.105,218.135,218.165,218.195,218.225,218.255,218.285,218.315,218.345,218.375,218.405,218.435,218.465,218.495,218.525,218.555,218.585,218.615,218.645,218.675,218.705,218.735,218.765,218.795,218.825,218.855,218.885,218.915,218.945,218.975,219.005,219.035,219.065,219.095,219.125,219.155,219.185,219.215,219.245,219.275,219.305,219.335,219.365,219.395,219.425,219.455,219.485,219.515,219.545,219.575,219.605,219.635,219.665,219.695,219.725,219.755,219.785,219.815,219.845,219.875,219.905,219.935,219.965,219.995,220.025,220.055,220.085,220.115,220.145,220.175,220.205,220.235,220.265,220.295,220.325,220.355,220.385,220.415,220.445,220.475,220.505,220.535,220.565,220.595,220.625,220.655,220.685,220.715,220.745,220.775,220.805,220.835,220.865,220.895,220.925,220.955,220.985,221.015,221.045,221.075,221.105,221.135,221.165,221.195,221.225,221.255,221.285,221.315,221.345,221.375,221.405,221.435,221.465,221.495,221.525,221.555,221.585,221.615,221.645,221.675,221.705,221.735,221.765,221.795,221.825,221.855,221.885,221.915,221.945,221.975,222.005,222.035,222.065,222.095,222.125,222.155,222.185,222.215,222.245,222.275,222.305,222.335,222.365,222.395,222.425,222.455,222.485,222.515,222.545,222.575,222.605,222.635,222.665,222.695,222.725,222.755,222.785,222.815,222.845,222.875,222.905,222.935,222.965,222.995,223.025,223.055,223.085,223.115,223.145,223.175,223.205,223.235,223.265,223.295,223.325,223.355,223.385,223.415,223.445,223.475,223.505,223.535,223.565,223.595,223.625,223.655,223.685,223.715,223.745,223.775,223.805,223.835,223.865,223.895,223.925,223.955,223.985,224.015,224.045,224.075,224.105,224.135,224.165,224.195,224.225,224.255,224.285,224.315,224.345,224.375,224.405,224.435,224.465,224.495,224.525,224.555,224.585,224.615,224.645,224.675,224.705,224.735,224.765,224.795,224.825,224.855,224.885,224.915,224.945,224.975,225.005,225.035,225.065,225.095,225.125,225.155,225.185,225.215,225.245,225.275,225.305,225.335,225.365,225.395,225.425,225.455,225.485,225.515,225.545,225.575,225.605,225.635,225.665,225.695,225.725,225.755,225.785,225.815,225.845,225.875,225.905,225.935,225.965,225.995,226.025,226.055,226.085,226.115,226.145,226.175,226.205,226.235,226.265,226.295,226.325,226.355,226.385,226.415,226.445,226.475,226.505,226.535,226.565,226.595,226.625,226.655,226.685,226.715,226.745,226.775,226.805,226.835,226.865,226.895,226.925,226.955,226.985,227.015,227.045,227.075,227.105,227.135,227.165,227.195,227.225,227.255,227.285,227.315,227.345,227.375,227.405,227.435,227.465,227.495,227.525,227.555,227.585,227.615,227.645,227.675,227.705,227.735,227.765,227.795,227.825,227.855,227.885,227.915,227.945,227.975,228.005,228.035,228.065,228.095,228.125,228.155,228.185,228.215,228.245,228.275,228.305,228.335,228.365,228.395,228.425,228.455,228.485,228.515,228.545,228.575,228.605,228.635,228.665,228.695,228.725,228.755,228.785,228.815,228.845,228.875,228.905,228.935,228.965,228.995,229.025,229.055,229.085,229.115,229.145,229.175,229.205,229.235,229.265,229.295,229.325,229.355,229.385,229.415,229.445,229.475,229.505,229.535,229.565,229.595,229.625,229.655,229.685,229.715,229.745,229.775,229.805,229.835,229.865,229.895,229.925,229.955,229.985,230.015,230.045,230.075,230.105,230.135,230.165,230.195,230.225,230.255,230.285,230.315,230.345,230.375,230.405,230.435,230.465,230.495,230.525,230.555,230.585,230.615,230.645,230.675,230.705,230.735,230.765,230.795,230.825,230.855,230.885,230.915,230.945,230.975,231.005,231.035,231.065,231.095,231.125,231.155,231.185,231.215,231.245,231.275,231.305,231.335,231.365,231.395,231.425,231.455,231.485,231.515,231.545,231.575,231.605,231.635,231.665,231.695,231.725,231.755,231.785,231.815,231.845,231.875,231.905,231.935,231.965,231.995,232.025,232.055,232.085,232.115,232.145,232.175,232.205,232.235,232.265,232.295,232.325,232.355,232.385,232.415,232.445,232.475,232.505,232.535,232.565,232.595,232.625,232.655,232.685,232.715,232.745,232.775,232.805,232.835,232.865,232.895,232.925,232.955,232.985,233.015,233.045,233.075,233.105,233.135,233.165,233.195,233.225,233.255,233.285,233.315,233.345,233.375,233.405,233.435,233.465,233.495,233.525,233.555,233.585,233.615,233.645,233.675,233.705,233.735,233.765,233.795,233.825,233.855,233.885,233.915,233.945,233.975,234.005,234.035,234.065,234.095,234.125,234.155,234.185,234.215,234.245,234.275,234.305,234.335,234.365,234.395,234.425,234.455,234.485,234.515,234.545,234.575,234.605,234.635,234.665,234.695,234.725,234.755,234.785,234.815,234.845,234.875,234.905,234.935,234.965,234.995,235.025,235.055,235.085,235.115,235.145,235.175,235.205,235.235,235.265,235.295,235.325,235.355,235.385,235.415,235.445,235.475,235.505,235.535,235.565,235.595,235.625,235.655,235.685,235.715,235.745,235.775,235.805,235.835,235.865,235.895,235.925,235.955,235.985,236.015,236.045,236.075,236.105,236.135,236.165,236.195,236.225,236.255,236.285,236.315,236.345,236.375,236.405,236.435,236.465,236.495,236.525,236.555,236.585,236.615,236.645,236.675,236.705,236.735,236.765,236.795,236.825,236.855,236.885,236.915,236.945,236.975,237.005,237.035,237.065,237.095,237.125,237.155,237.185,237.215,237.245,237.275,237.305,237.335,237.365,237.395,237.425,237.455,237.485,237.515,237.545,237.575,237.605,237.635,237.665,237.695,237.725,237.755,237.785,237.815,237.845,237.875,237.905,237.935,237.965,237.995,238.025,238.055,238.085,238.115,238.145,238.175,238.205,238.235,238.265,238.295,238.325,238.355,238.385,238.415,238.445,238.475,238.505,238.535,238.565,238.595,238.625,238.655,238.685,238.715,238.745,238.775,238.805,238.835,238.865,238.895,238.925,238.955,238.985,239.015,239.045,239.075,239.105,239.135,239.165,239.195,239.225,239.255,239.285,239.315,239.345,239.375,239.405,239.435,239.465,239.495,239.525,239.555,239.585,239.615,239.645,239.675,239.705,239.735,239.765,239.795,239.825,239.855,239.885,239.915,239.945,239.975,240.005,240.035,240.065,240.095,240.125,240.155,240.185,240.215,240.245,240.275,240.305,240.335,240.365,240.395,240.425,240.455,240.485,240.515,240.545,240.575,240.605,240.635,240.665,240.695,240.725,240.755,240.785,240.815,240.845,240.875,240.905,240.935,240.965,240.995,241.025,241.055,241.085,241.115,241.145,241.175,241.205,241.235,241.265,241.295,241.325,241.355,241.385,241.415,241.445,241.475,241.505,241.535,241.565,241.595,241.625,241.655,241.685,241.715,241.745,241.775,241.805,241.835,241.865,241.895,241.925,241.955,241.985,242.015,242.045,242.075,242.105,242.135,242.165,242.195,242.225,242.255,242.285,242.315,242.345,242.375,242.405,242.435,242.465,242.495,242.525,242.555,242.585,242.615,242.645,242.675,242.705,242.735,242.765,242.795,242.825,242.855,242.885,242.915,242.945,242.975,243.005,243.035,243.065,243.095,243.125,243.155,243.185,243.215,243.245,243.275,243.305,243.335,243.365,243.395,243.425,243.455,243.485,243.515,243.545,243.575,243.605,243.635,243.665,243.695,243.725,243.755,243.785,243.815,243.845,243.875,243.905,243.935,243.965,243.995,244.025,244.055,244.085,244.115,244.145,244.175,244.205,244.235,244.265,244.295,244.325,244.355,244.385,244.415,244.445,244.475,244.505,244.535,244.565,244.595,244.625,244.655,244.685,244.715,244.745,244.775,244.805,244.835,244.865,244.895,244.925,244.955,244.985,245.015,245.045,245.075,245.105,245.135,245.165,245.195,245.225,245.255,245.285,245.315,245.345,245.375,245.405,245.435,245.465,245.495,245.525,245.555,245.585,245.615,245.645,245.675,245.705,245.735,245.765,245.795,245.825,245.855,245.885,245.915,245.945,245.975,246.005,246.035,246.065,246.095,246.125,246.155,246.185,246.215,246.245,246.275,246.305,246.335,246.365,246.395,246.425,246.455,246.485,246.515,246.545,246.575,246.605,246.635,246.665,246.695,246.725,246.755,246.785,246.815,246.845,246.875,246.905,246.935,246.965,246.995,247.025,247.055,247.085,247.115,247.145,247.175,247.205,247.235,247.265,247.295,247.325,247.355,247.385,247.415,247.445,247.475,247.505,247.535,247.565,247.595,247.625,247.655,247.685,247.715,247.745,247.775,247.805,247.835,247.865,247.895,247.925,247.955,247.985,248.015,248.045,248.075,248.105,248.135,248.165,248.195,248.225,248.255,248.285,248.315,248.345,248.375,248.405,248.435,248.465,248.495,248.525,248.555,248.585,248.615,248.645,248.675,248.705,248.735,248.765,248.795,248.825,248.855,248.885,248.915,248.945,248.975,249.005,249.035,249.065,249.095,249.125,249.155,249.185,249.215,249.245,249.275,249.305,249.335,249.365,249.395,249.425,249.455,249.485,249.515,249.545,249.575,249.605,249.635,249.665,249.665]},{"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.965,3.995,4.025,4.055,4.085,4.115,4.1450000000000005,4.175,4.205,4.235,4.265,4.295,4.325,4.355,4.385,4.415,4.445,4.475,4.505,4.535,4.565,4.595,4.625,4.655,4.6850000000000005,4.715,4.745,4.775,4.805,4.835,4.865,4.8950000000000005,4.925,4.955,4.985,5.015,5.045,5.075,5.105,5.135,5.165,5.195,5.225,5.255,5.285,5.315,5.345,5.375,5.405,5.4350000000000005,5.465,5.495,5.525,5.555,5.585,5.615,5.6450000000000005,5.675,5.705,5.735,5.765,5.795,5.825,5.855,5.885,5.915,5.945,5.975,6.005,6.035,6.065,6.095,6.125,6.155,6.1850000000000005,6.215,6.245,6.275,6.305,6.335,6.365,6.3950000000000005,6.425,6.455,6.485,6.515,6.545,6.575,6.605,6.635,6.665,6.695,6.725,6.755,6.785,6.815,6.845,6.875,6.905,6.9350000000000005,6.965,6.995,7.025,7.055,7.085,7.115,7.1450000000000005,7.175,7.205,7.235,7.265,7.295,7.325,7.355,7.385,7.415,7.445,7.475,7.505,7.535,7.565,7.595,7.625,7.655,7.6850000000000005,7.715,7.745,7.775,7.805,7.835,7.865,7.8950000000000005,7.925,7.955,7.985,8.015,8.045,8.075,8.105,8.135,8.165000000000001,8.195,8.225,8.255,8.285,8.315,8.345,8.375,8.405,8.435,8.465,8.495,8.525,8.555,8.585,8.615,8.645,8.675,8.705,8.735,8.765,8.795,8.825,8.855,8.885,8.915000000000001,8.945,8.975,9.005,9.035,9.065,9.095,9.125,9.155,9.185,9.215,9.245,9.275,9.305,9.335,9.365,9.395,9.425,9.455,9.485,9.515,9.545,9.575,9.605,9.635,9.665000000000001,9.695,9.725,9.755,9.785,9.815,9.845,9.875,9.905,9.935,9.965,9.995,10.025,10.055,10.085,10.115,10.145,10.175,10.205,10.235,10.265,10.295,10.325,10.355,10.385,10.415000000000001,10.445,10.475,10.505,10.535,10.565,10.595,10.625,10.655,10.685,10.715,10.745,10.775,10.805,10.835,10.865,10.895,10.925,10.955,10.985,11.015,11.045,11.075,11.105,11.135,11.165000000000001,11.195,11.225,11.255,11.285,11.315,11.345,11.375,11.405,11.435,11.465,11.495,11.525,11.555,11.585,11.615,11.645,11.675,11.705,11.735,11.765,11.795,11.825,11.855,11.885,11.915000000000001,11.945,11.975,12.005,12.035,12.065,12.095,12.125,12.155,12.185,12.215,12.245,12.275,12.305,12.335,12.365,12.395,12.425,12.455,12.485,12.515,12.545,12.575,12.605,12.635,12.665000000000001,12.695,12.725,12.755,12.785,12.815,12.845,12.875,12.905,12.935,12.965,12.995,13.025,13.055,13.085,13.115,13.145,13.175,13.205,13.235,13.265,13.295,13.325,13.355,13.385,13.415000000000001,13.445,13.475,13.505,13.535,13.565,13.595,13.625,13.655,13.685,13.715,13.745,13.775,13.805,13.835,13.865,13.895,13.925,13.955,13.985,14.015,14.045,14.075,14.105,14.135,14.165000000000001,14.195,14.225,14.255,14.285,14.315,14.345,14.375,14.405,14.435,14.465,14.495,14.525,14.555,14.585,14.615,14.645,14.675,14.705,14.735,14.765,14.795,14.825,14.855,14.885,14.915000000000001,14.945,14.975,15.005,15.035,15.065,15.095,15.125,15.155,15.185,15.215,15.245,15.275,15.305,15.335,15.365,15.395,15.425,15.455,15.485,15.515,15.545,15.575,15.605,15.635,15.665000000000001,15.695,15.725,15.755,15.785,15.815,15.845,15.875,15.905,15.935,15.965,15.995,16.025,16.055,16.085,16.115,16.145,16.175,16.205,16.235,16.265,16.295,16.325,16.355,16.385,16.415,16.445,16.475,16.505,16.535,16.565,16.595,16.625,16.655,16.685,16.715,16.745,16.775,16.805,16.835,16.865,16.895,16.925,16.955,16.985,17.015,17.045,17.075,17.105,17.135,17.165,17.195,17.225,17.255,17.285,17.315,17.345,17.375,17.405,17.435,17.465,17.495,17.525,17.555,17.585,17.615,17.645,17.675,17.705,17.735,17.765,17.795,17.825,17.855,17.885,17.915,17.945,17.975,18.005,18.035,18.065,18.095,18.125,18.155,18.185,18.215,18.245,18.275,18.305,18.335,18.365,18.395,18.425,18.455,18.485,18.515,18.545,18.575,18.605,18.635,18.665,18.695,18.725,18.755,18.785,18.815,18.845,18.875,18.905,18.935,18.965,18.995,19.025,19.055,19.085,19.115,19.145,19.175,19.205,19.235,19.265,19.295,19.325,19.355,19.385,19.415,19.445,19.475,19.505,19.535,19.565,19.595,19.625,19.655,19.685,19.715,19.745,19.775,19.805,19.835,19.865,19.895,19.925,19.955,19.985,20.015,20.045,20.075,20.105,20.135,20.165,20.195,20.225,20.255,20.285,20.315,20.345,20.375,20.405,20.435,20.465,20.495,20.525,20.555,20.585,20.615,20.645,20.675,20.705,20.735,20.765,20.795,20.825,20.855,20.885,20.915,20.945,20.975,21.005,21.035,21.065,21.095,21.125,21.155,21.185,21.215,21.245,21.275,21.305,21.335,21.365,21.395,21.425,21.455,21.485,21.515,21.545,21.575,21.605,21.635,21.665,21.695,21.725,21.755,21.785,21.815,21.845,21.875,21.905,21.935,21.965,21.995,22.025,22.055,22.085,22.115,22.145,22.175,22.205,22.235,22.265,22.295,22.325,22.355,22.385,22.415,22.445,22.475,22.505,22.535,22.565,22.595,22.625,22.655,22.685,22.715,22.745,22.775,22.805,22.835,22.865,22.895,22.925,22.955,22.985,23.015,23.045,23.075,23.105,23.135,23.165,23.195,23.225,23.255,23.285,23.315,23.345,23.375,23.405,23.435,23.465,23.495,23.525,23.555,23.585,23.615,23.645,23.675,23.705,23.735,23.765,23.795,23.825,23.855,23.885,23.915,23.945,23.975,24.005,24.035,24.065,24.095,24.125,24.155,24.185,24.215,24.245,24.275,24.305,24.335,24.365,24.395,24.425,24.455,24.485,24.515,24.545,24.575,24.605,24.635,24.665,24.695,24.725,24.755,24.785,24.815,24.845,24.875,24.905,24.935,24.965,24.995,25.025,25.055,25.085,25.115,25.145,25.175,25.205,25.235,25.265,25.295,25.325,25.355,25.385,25.415,25.445,25.475,25.505,25.535,25.565,25.595,25.625,25.655,25.685,25.715,25.745,25.775,25.805,25.835,25.865,25.895,25.925,25.955,25.985,26.015,26.045,26.075,26.105,26.135,26.165,26.195,26.225,26.255,26.285,26.315,26.345,26.375,26.405,26.435,26.465,26.495,26.525,26.555,26.585,26.615,26.645,26.675,26.705,26.735,26.765,26.795,26.825,26.855,26.885,26.915,26.945,26.975,27.005,27.035,27.065,27.095,27.125,27.155,27.185,27.215,27.245,27.275,27.305,27.335,27.365,27.395,27.425,27.455,27.485,27.515,27.545,27.575,27.605,27.635,27.665,27.695,27.725,27.755,27.785,27.815,27.845,27.875,27.905,27.935,27.965,27.995,28.025,28.055,28.085,28.115,28.145,28.175,28.205,28.235,28.265,28.295,28.325,28.355,28.385,28.415,28.445,28.475,28.505,28.535,28.565,28.595,28.625,28.655,28.685,28.715,28.745,28.775,28.805,28.835,28.865,28.895,28.925,28.955,28.985,29.015,29.045,29.075,29.105,29.135,29.165,29.195,29.225,29.255,29.285,29.315,29.345,29.375,29.405,29.435,29.465,29.495,29.525,29.555,29.585,29.615,29.645,29.675,29.705,29.735,29.765,29.795,29.825,29.855,29.885,29.915,29.945,29.975,30.005,30.035,30.065,30.095,30.125,30.155,30.185,30.215,30.245,30.275,30.305,30.335,30.365,30.395,30.425,30.455,30.485,30.515,30.545,30.575,30.605,30.635,30.665,30.695,30.725,30.755,30.785,30.815,30.845,30.875,30.905,30.935,30.965,30.995,31.025,31.055,31.085,31.115,31.145,31.175,31.205,31.235,31.265,31.295,31.325,31.355,31.385,31.415,31.445,31.475,31.505,31.535,31.565,31.595,31.625,31.655,31.685,31.715,31.745,31.775,31.805,31.835,31.865,31.895,31.925,31.955,31.985,32.015,32.045,32.075,32.105,32.135,32.165,32.195,32.225,32.255,32.285,32.315,32.345,32.375,32.405,32.435,32.465,32.495,32.525,32.555,32.585,32.615,32.645,32.675,32.705,32.735,32.765,32.795,32.825,32.855,32.885,32.915,32.945,32.975,33.005,33.035,33.065,33.095,33.125,33.155,33.185,33.215,33.245,33.275,33.305,33.335,33.365,33.395,33.425,33.455,33.485,33.515,33.545,33.575,33.605,33.635,33.665,33.695,33.725,33.755,33.785,33.815,33.845,33.875,33.905,33.935,33.965,33.995,34.025,34.055,34.085,34.115,34.145,34.175,34.205,34.235,34.265,34.295,34.325,34.355,34.385,34.415,34.445,34.475,34.505,34.535,34.565,34.595,34.625,34.655,34.685,34.715,34.745,34.775,34.805,34.835,34.865,34.895,34.925,34.955,34.985,35.015,35.045,35.075,35.105,35.135,35.165,35.195,35.225,35.255,35.285,35.315,35.345,35.375,35.405,35.435,35.465,35.495,35.525,35.555,35.585,35.615,35.645,35.675,35.705,35.735,35.765,35.795,35.825,35.855,35.885,35.915,35.945,35.975,36.005,36.035,36.065,36.095,36.125,36.155,36.185,36.215,36.245,36.275,36.305,36.335,36.365,36.395,36.425,36.455,36.485,36.515,36.545,36.575,36.605,36.635,36.665,36.695,36.725,36.755,36.785,36.815,36.845,36.875,36.905,36.935,36.965,36.995,37.025,37.055,37.085,37.115,37.145,37.175,37.205,37.235,37.265,37.295,37.325,37.355,37.385,37.415,37.445,37.475,37.505,37.535,37.565,37.595,37.625,37.655,37.685,37.715,37.745,37.775,37.805,37.835,37.865,37.895,37.925,37.955,37.985,38.015,38.045,38.075,38.105,38.135,38.165,38.195,38.225,38.255,38.285,38.315,38.345,38.375,38.405,38.435,38.465,38.495,38.525,38.555,38.585,38.615,38.645,38.675,38.705,38.735,38.765,38.795,38.825,38.855,38.885,38.915,38.945,38.975,39.005,39.035,39.065,39.095,39.125,39.155,39.185,39.215,39.245,39.275,39.305,39.335,39.365,39.395,39.425,39.455,39.485,39.515,39.545,39.575,39.605,39.635,39.665,39.695,39.725,39.755,39.785,39.815,39.845,39.875,39.905,39.935,39.965,39.995,40.025,40.055,40.085,40.115,40.145,40.175,40.205,40.235,40.265,40.295,40.325,40.355,40.385,40.415,40.445,40.475,40.505,40.535,40.565,40.595,40.625,40.655,40.685,40.715,40.745,40.775,40.805,40.835,40.865,40.895,40.925,40.955,40.985,41.015,41.045,41.075,41.105,41.135,41.165,41.195,41.225,41.255,41.285,41.315,41.345,41.375,41.405,41.435,41.465,41.495,41.525,41.555,41.585,41.615,41.645,41.675,41.705,41.735,41.765,41.795,41.825,41.855,41.885,41.915,41.945,41.975,42.005,42.035,42.065,42.095,42.125,42.155,42.185,42.215,42.245,42.275,42.305,42.335,42.365,42.395,42.425,42.455,42.485,42.515,42.545,42.575,42.605,42.635,42.665,42.695,42.725,42.755,42.785,42.815,42.845,42.875,42.905,42.935,42.965,42.995,43.025,43.055,43.085,43.115,43.145,43.175,43.205,43.235,43.265,43.295,43.325,43.355,43.385,43.415,43.445,43.475,43.505,43.535,43.565,43.595,43.625,43.655,43.685,43.715,43.745,43.775,43.805,43.835,43.865,43.895,43.925,43.955,43.985,44.015,44.045,44.075,44.105,44.135,44.165,44.195,44.225,44.255,44.285,44.315,44.345,44.375,44.405,44.435,44.465,44.495,44.525,44.555,44.585,44.615,44.645,44.675,44.705,44.735,44.765,44.795,44.825,44.855,44.885,44.915,44.945,44.975,45.005,45.035,45.065,45.095,45.125,45.155,45.185,45.215,45.245,45.275,45.305,45.335,45.365,45.395,45.425,45.455,45.485,45.515,45.545,45.575,45.605,45.635,45.665,45.695,45.725,45.755,45.785,45.815,45.845,45.875,45.905,45.935,45.965,45.995,46.025,46.055,46.085,46.115,46.145,46.175,46.205,46.235,46.265,46.295,46.325,46.355,46.385,46.415,46.445,46.475,46.505,46.535,46.565,46.595,46.625,46.655,46.685,46.715,46.745,46.775,46.805,46.835,46.865,46.895,46.925,46.955,46.985,47.015,47.045,47.075,47.105,47.135,47.165,47.195,47.225,47.255,47.285,47.315,47.345,47.375,47.405,47.435,47.465,47.495,47.525,47.555,47.585,47.615,47.645,47.675,47.705,47.735,47.765,47.795,47.825,47.855,47.885,47.915,47.945,47.975,48.005,48.035,48.065,48.095,48.125,48.155,48.185,48.215,48.245,48.275,48.305,48.335,48.365,48.395,48.425,48.455,48.485,48.515,48.545,48.575,48.605,48.635,48.665,48.695,48.725,48.755,48.785,48.815,48.845,48.875,48.905,48.935,48.965,48.995,49.025,49.055,49.085,49.115,49.145,49.175,49.205,49.235,49.265,49.295,49.325,49.355,49.385,49.415,49.445,49.475,49.505,49.535,49.565,49.595,49.625,49.655,49.685,49.715,49.745,49.775,49.805,49.835,49.865,49.895,49.925,49.955,49.985,50.015,50.045,50.075,50.105,50.135,50.165,50.195,50.225,50.255,50.285,50.315,50.345,50.375,50.405,50.435,50.465,50.495,50.525,50.555,50.585,50.615,50.645,50.675,50.705,50.735,50.765,50.795,50.825,50.855,50.885,50.915,50.945,50.975,51.005,51.035,51.065,51.095,51.125,51.155,51.185,51.215,51.245,51.275,51.305,51.335,51.365,51.395,51.425,51.455,51.485,51.515,51.545,51.575,51.605,51.635,51.665,51.695,51.725,51.755,51.785,51.815,51.845,51.875,51.905,51.935,51.965,51.995,52.025,52.055,52.085,52.115,52.145,52.175,52.205,52.235,52.265,52.295,52.325,52.355,52.385,52.415,52.445,52.475,52.505,52.535,52.565,52.595,52.625,52.655,52.685,52.715,52.745,52.775,52.805,52.835,52.865,52.895,52.925,52.955,52.985,53.015,53.045,53.075,53.105,53.135,53.165,53.195,53.225,53.255,53.285,53.315,53.345,53.375,53.405,53.435,53.465,53.495,53.525,53.555,53.585,53.615,53.645,53.675,53.705,53.735,53.765,53.795,53.825,53.855,53.885,53.915,53.945,53.975,54.005,54.035,54.065,54.095,54.125,54.155,54.185,54.215,54.245,54.275,54.305,54.335,54.365,54.395,54.425,54.455,54.485,54.515,54.545,54.575,54.605,54.635,54.665,54.695,54.725,54.755,54.785,54.815,54.845,54.875,54.905,54.935,54.965,54.995,55.025,55.055,55.085,55.115,55.145,55.175,55.205,55.235,55.265,55.295,55.325,55.355,55.385,55.415,55.445,55.475,55.505,55.535,55.565,55.595,55.625,55.655,55.685,55.715,55.745,55.775,55.805,55.835,55.865,55.895,55.925,55.955,55.985,56.015,56.045,56.075,56.105,56.135,56.165,56.195,56.225,56.255,56.285,56.315,56.345,56.375,56.405,56.435,56.465,56.495,56.525,56.555,56.585,56.615,56.645,56.675,56.705,56.735,56.765,56.795,56.825,56.855,56.885,56.915,56.945,56.975,57.005,57.035,57.065,57.095,57.125,57.155,57.185,57.215,57.245,57.275,57.305,57.335,57.365,57.395,57.425,57.455,57.485,57.515,57.545,57.575,57.605,57.635,57.665,57.695,57.725,57.755,57.785,57.815,57.845,57.875,57.905,57.935,57.965,57.995,58.025,58.055,58.085,58.115,58.145,58.175,58.205,58.235,58.265,58.295,58.325,58.355,58.385,58.415,58.445,58.475,58.505,58.535,58.565,58.595,58.625,58.655,58.685,58.715,58.745,58.775,58.805,58.835,58.865,58.895,58.925,58.955,58.985,59.015,59.045,59.075,59.105,59.135,59.165,59.195,59.225,59.255,59.285,59.315,59.345,59.375,59.405,59.435,59.465,59.495,59.525,59.555,59.585,59.615,59.645,59.675,59.705,59.735,59.765,59.795,59.825,59.855,59.885,59.915,59.945,59.975,60.005,60.035,60.065,60.095,60.125,60.155,60.185,60.215,60.245,60.275,60.305,60.335,60.365,60.395,60.425,60.455,60.485,60.515,60.545,60.575,60.605,60.635,60.665,60.695,60.725,60.755,60.785,60.815,60.845,60.875,60.905,60.935,60.965,60.995,61.025,61.055,61.085,61.115,61.145,61.175,61.205,61.235,61.265,61.295,61.325,61.355,61.385,61.415,61.445,61.475,61.505,61.535,61.565,61.595,61.625,61.655,61.685,61.715,61.745,61.775,61.805,61.835,61.865,61.895,61.925,61.955,61.985,62.015,62.045,62.075,62.105,62.135,62.165,62.195,62.225,62.255,62.285,62.315,62.345,62.375,62.405,62.435,62.465,62.495,62.525,62.555,62.585,62.615,62.645,62.675,62.705,62.735,62.765,62.795,62.825,62.855,62.885,62.915,62.945,62.975,63.005,63.035,63.065,63.095,63.125,63.155,63.185,63.215,63.245,63.275,63.305,63.335,63.365,63.395,63.425,63.455,63.485,63.515,63.545,63.575,63.605,63.635,63.665,63.695,63.725,63.755,63.785,63.815,63.845,63.875,63.905,63.935,63.965,63.995,64.025,64.055,64.085,64.115,64.145,64.175,64.205,64.235,64.265,64.295,64.325,64.355,64.385,64.415,64.445,64.475,64.505,64.535,64.565,64.595,64.625,64.655,64.685,64.715,64.745,64.775,64.805,64.835,64.865,64.895,64.925,64.955,64.985,65.015,65.045,65.075,65.105,65.135,65.165,65.195,65.225,65.255,65.285,65.315,65.345,65.375,65.405,65.435,65.465,65.495,65.525,65.555,65.585,65.615,65.645,65.675,65.705,65.735,65.765,65.795,65.825,65.855,65.885,65.915,65.945,65.975,66.005,66.035,66.065,66.095,66.125,66.155,66.185,66.215,66.245,66.275,66.305,66.335,66.365,66.395,66.425,66.455,66.485,66.515,66.545,66.575,66.605,66.635,66.665,66.695,66.725,66.755,66.785,66.815,66.845,66.875,66.905,66.935,66.965,66.995,67.025,67.055,67.085,67.115,67.145,67.175,67.205,67.235,67.265,67.295,67.325,67.355,67.385,67.415,67.445,67.475,67.505,67.535,67.565,67.595,67.625,67.655,67.685,67.715,67.745,67.775,67.805,67.835,67.865,67.895,67.925,67.955,67.985,68.015,68.045,68.075,68.105,68.135,68.165,68.195,68.225,68.255,68.285,68.315,68.345,68.375,68.405,68.435,68.465,68.495,68.525,68.555,68.585,68.615,68.645,68.675,68.705,68.735,68.765,68.795,68.825,68.855,68.885,68.915,68.945,68.975,69.005,69.035,69.065,69.095,69.125,69.155,69.185,69.215,69.245,69.275,69.305,69.335,69.365,69.395,69.425,69.455,69.485,69.515,69.545,69.575,69.605,69.635,69.665,69.695,69.725,69.755,69.785,69.815,69.845,69.875,69.905,69.935,69.965,69.995,70.025,70.055,70.085,70.115,70.145,70.175,70.205,70.235,70.265,70.295,70.325,70.355,70.385,70.415,70.445,70.475,70.505,70.535,70.565,70.595,70.625,70.655,70.685,70.715,70.745,70.775,70.805,70.835,70.865,70.895,70.925,70.955,70.985,71.015,71.045,71.075,71.105,71.135,71.165,71.195,71.225,71.255,71.285,71.315,71.345,71.375,71.405,71.435,71.465,71.495,71.525,71.555,71.585,71.615,71.645,71.675,71.705,71.735,71.765,71.795,71.825,71.855,71.885,71.915,71.945,71.975,72.005,72.035,72.065,72.095,72.125,72.155,72.185,72.215,72.245,72.275,72.305,72.335,72.365,72.395,72.425,72.455,72.485,72.515,72.545,72.575,72.605,72.635,72.665,72.695,72.725,72.755,72.785,72.815,72.845,72.875,72.905,72.935,72.965,72.995,73.025,73.055,73.085,73.115,73.145,73.175,73.205,73.235,73.265,73.295,73.325,73.355,73.385,73.415,73.445,73.475,73.505,73.535,73.565,73.595,73.625,73.655,73.685,73.715,73.745,73.775,73.805,73.835,73.865,73.895,73.925,73.955,73.985,74.015,74.045,74.075,74.105,74.135,74.165,74.195,74.225,74.255,74.285,74.315,74.345,74.375,74.405,74.435,74.465,74.495,74.525,74.555,74.585,74.615,74.645,74.675,74.705,74.735,74.765,74.795,74.825,74.855,74.885,74.915,74.945,74.975,75.005,75.035,75.065,75.095,75.125,75.155,75.185,75.215,75.245,75.275,75.305,75.335,75.365,75.395,75.425,75.455,75.485,75.515,75.545,75.575,75.605,75.635,75.665,75.695,75.725,75.755,75.785,75.815,75.845,75.875,75.905,75.935,75.965,75.995,76.025,76.055,76.085,76.115,76.145,76.175,76.205,76.235,76.265,76.295,76.325,76.355,76.385,76.415,76.445,76.475,76.505,76.535,76.565,76.595,76.625,76.655,76.685,76.715,76.745,76.775,76.805,76.835,76.865,76.895,76.925,76.955,76.985,77.015,77.045,77.075,77.105,77.135,77.165,77.195,77.225,77.255,77.285,77.315,77.345,77.375,77.405,77.435,77.465,77.495,77.525,77.555,77.585,77.615,77.645,77.675,77.705,77.735,77.765,77.795,77.825,77.855,77.885,77.915,77.945,77.975,78.005,78.035,78.065,78.095,78.125,78.155,78.185,78.215,78.245,78.275,78.305,78.335,78.365,78.395,78.425,78.455,78.485,78.515,78.545,78.575,78.605,78.635,78.665,78.695,78.725,78.755,78.785,78.815,78.845,78.875,78.905,78.935,78.965,78.995,79.025,79.055,79.085,79.115,79.145,79.175,79.205,79.235,79.265,79.295,79.325,79.355,79.385,79.415,79.445,79.475,79.505,79.535,79.565,79.595,79.625,79.655,79.685,79.715,79.745,79.775,79.805,79.835,79.865,79.895,79.925,79.955,79.985,80.015,80.045,80.075,80.105,80.135,80.165,80.195,80.225,80.255,80.285,80.315,80.345,80.375,80.405,80.435,80.465,80.495,80.525,80.555,80.585,80.615,80.645,80.675,80.705,80.735,80.765,80.795,80.825,80.855,80.885,80.915,80.945,80.975,81.005,81.035,81.065,81.095,81.125,81.155,81.185,81.215,81.245,81.275,81.305,81.335,81.365,81.395,81.425,81.455,81.485,81.515,81.545,81.575,81.605,81.635,81.665,81.695,81.725,81.755,81.785,81.815,81.845,81.875,81.905,81.935,81.965,81.995,82.025,82.055,82.085,82.115,82.145,82.175,82.205,82.235,82.265,82.295,82.325,82.355,82.385,82.415,82.445,82.475,82.505,82.535,82.565,82.595,82.625,82.655,82.685,82.715,82.745,82.775,82.805,82.835,82.865,82.895,82.925,82.955,82.985,83.015,83.045,83.075,83.105,83.135,83.165,83.195,83.225,83.255,83.285,83.315,83.345,83.375,83.405,83.435,83.465,83.495,83.525,83.555,83.585,83.615,83.645,83.675,83.705,83.735,83.765,83.795,83.825,83.855,83.885,83.915,83.945,83.975,84.005,84.035,84.065,84.095,84.125,84.155,84.185,84.215,84.245,84.275,84.305,84.335,84.365,84.395,84.425,84.455,84.485,84.515,84.545,84.575,84.605,84.635,84.665,84.695,84.725,84.755,84.785,84.815,84.845,84.875,84.905,84.935,84.965,84.995,85.025,85.055,85.085,85.115,85.145,85.175,85.205,85.235,85.265,85.295,85.325,85.355,85.385,85.415,85.445,85.475,85.505,85.535,85.565,85.595,85.625,85.655,85.685,85.715,85.745,85.775,85.805,85.835,85.865,85.895,85.925,85.955,85.985,86.015,86.045,86.075,86.105,86.135,86.165,86.195,86.225,86.255,86.285,86.315,86.345,86.375,86.405,86.435,86.465,86.495,86.525,86.555,86.585,86.615,86.645,86.675,86.705,86.735,86.765,86.795,86.825,86.855,86.885,86.915,86.945,86.975,87.005,87.035,87.065,87.095,87.125,87.155,87.185,87.215,87.245,87.275,87.305,87.335,87.365,87.395,87.425,87.455,87.485,87.515,87.545,87.575,87.605,87.635,87.665,87.695,87.725,87.755,87.785,87.815,87.845,87.875,87.905,87.935,87.965,87.995,88.025,88.055,88.085,88.115,88.145,88.175,88.205,88.235,88.265,88.295,88.325,88.355,88.385,88.415,88.445,88.475,88.505,88.535,88.565,88.595,88.625,88.655,88.685,88.715,88.745,88.775,88.805,88.835,88.865,88.895,88.925,88.955,88.985,89.015,89.045,89.075,89.105,89.135,89.165,89.195,89.225,89.255,89.285,89.315,89.345,89.375,89.405,89.435,89.465,89.495,89.525,89.555,89.585,89.615,89.645,89.675,89.705,89.735,89.765,89.795,89.825,89.855,89.885,89.915,89.945,89.975,90.005,90.035,90.065,90.095,90.125,90.155,90.185,90.215,90.245,90.275,90.305,90.335,90.365,90.395,90.425,90.455,90.485,90.515,90.545,90.575,90.605,90.635,90.665,90.695,90.725,90.755,90.785,90.815,90.845,90.875,90.905,90.935,90.965,90.995,91.025,91.055,91.085,91.115,91.145,91.175,91.205,91.235,91.265,91.295,91.325,91.355,91.385,91.415,91.445,91.475,91.505,91.535,91.565,91.595,91.625,91.655,91.685,91.715,91.745,91.775,91.805,91.835,91.865,91.895,91.925,91.955,91.985,92.015,92.045,92.075,92.105,92.135,92.165,92.195,92.225,92.255,92.285,92.315,92.345,92.375,92.405,92.435,92.465,92.495,92.525,92.555,92.585,92.615,92.645,92.675,92.705,92.735,92.765,92.795,92.825,92.855,92.885,92.915,92.945,92.975,93.005,93.035,93.065,93.095,93.125,93.155,93.185,93.215,93.245,93.275,93.305,93.335,93.365,93.395,93.425,93.455,93.485,93.515,93.545,93.575,93.605,93.635,93.665,93.695,93.725,93.755,93.785,93.815,93.845,93.875,93.905,93.935,93.965,93.995,94.025,94.055,94.085,94.115,94.145,94.175,94.205,94.235,94.265,94.295,94.325,94.355,94.385,94.415,94.445,94.475,94.505,94.535,94.565,94.595,94.625,94.655,94.685,94.715,94.745,94.775,94.805,94.835,94.865,94.895,94.925,94.955,94.985,95.015,95.045,95.075,95.105,95.135,95.165,95.195,95.225,95.255,95.285,95.315,95.345,95.375,95.405,95.435,95.465,95.495,95.525,95.555,95.585,95.615,95.645,95.675,95.705,95.735,95.765,95.795,95.825,95.855,95.885,95.915,95.945,95.975,96.005,96.035,96.065,96.095,96.125,96.155,96.185,96.215,96.245,96.275,96.305,96.335,96.365,96.395,96.425,96.455,96.485,96.515,96.545,96.575,96.605,96.635,96.665,96.695,96.725,96.755,96.785,96.815,96.845,96.875,96.905,96.935,96.965,96.995,97.025,97.055,97.085,97.115,97.145,97.175,97.205,97.235,97.265,97.295,97.325,97.355,97.385,97.415,97.445,97.475,97.505,97.535,97.565,97.595,97.625,97.655,97.685,97.715,97.745,97.775,97.805,97.835,97.865,97.895,97.925,97.955,97.985,98.015,98.045,98.075,98.105,98.135,98.165,98.195,98.225,98.255,98.285,98.315,98.345,98.375,98.405,98.435,98.465,98.495,98.525,98.555,98.585,98.615,98.645,98.675,98.705,98.735,98.765,98.795,98.825,98.855,98.885,98.915,98.945,98.975,99.005,99.035,99.065,99.095,99.125,99.155,99.185,99.215,99.245,99.275,99.305,99.335,99.365,99.395,99.425,99.455,99.485,99.515,99.545,99.575,99.605,99.635,99.665,99.695,99.725,99.755,99.785,99.815,99.845,99.875,99.905,99.935,99.965,99.995,100.025,100.055,100.085,100.115,100.145,100.175,100.205,100.235,100.265,100.295,100.325,100.355,100.385,100.415,100.445,100.475,100.505,100.535,100.565,100.595,100.625,100.655,100.685,100.715,100.745,100.775,100.805,100.835,100.865,100.895,100.925,100.955,100.985,101.015,101.045,101.075,101.105,101.135,101.165,101.195,101.225,101.255,101.285,101.315,101.345,101.375,101.405,101.435,101.465,101.495,101.525,101.555,101.585,101.615,101.645,101.675,101.705,101.735,101.765,101.795,101.825,101.855,101.885,101.915,101.945,101.975,102.005,102.035,102.065,102.095,102.125,102.155,102.185,102.215,102.245,102.275,102.305,102.335,102.365,102.395,102.425,102.455,102.485,102.515,102.545,102.575,102.605,102.635,102.665,102.695,102.725,102.755,102.785,102.815,102.845,102.875,102.905,102.935,102.965,102.995,103.025,103.055,103.085,103.115,103.145,103.175,103.205,103.235,103.265,103.295,103.325,103.355,103.385,103.415,103.445,103.475,103.505,103.535,103.565,103.595,103.625,103.655,103.685,103.715,103.745,103.775,103.805,103.835,103.865,103.895,103.925,103.955,103.985,104.015,104.045,104.075,104.105,104.135,104.165,104.195,104.225,104.255,104.285,104.315,104.345,104.375,104.405,104.435,104.465,104.495,104.525,104.555,104.585,104.615,104.645,104.675,104.705,104.735,104.765,104.795,104.825,104.855,104.885,104.915,104.945,104.975,105.005,105.035,105.065,105.095,105.125,105.155,105.185,105.215,105.245,105.275,105.305,105.335,105.365,105.395,105.425,105.455,105.485,105.515,105.545,105.575,105.605,105.635,105.665,105.695,105.725,105.755,105.785,105.815,105.845,105.875,105.905,105.935,105.965,105.995,106.025,106.055,106.085,106.115,106.145,106.175,106.205,106.235,106.265,106.295,106.325,106.355,106.385,106.415,106.445,106.475,106.505,106.535,106.565,106.595,106.625,106.655,106.685,106.715,106.745,106.775,106.805,106.835,106.865,106.895,106.925,106.955,106.985,107.015,107.045,107.075,107.105,107.135,107.165,107.195,107.225,107.255,107.285,107.315,107.345,107.375,107.405,107.435,107.465,107.495,107.525,107.555,107.585,107.615,107.645,107.675,107.705,107.735,107.765,107.795,107.825,107.855,107.885,107.915,107.945,107.975,108.005,108.035,108.065,108.095,108.125,108.155,108.185,108.215,108.245,108.275,108.305,108.335,108.365,108.395,108.425,108.455,108.485,108.515,108.545,108.575,108.605,108.635,108.665,108.695,108.725,108.755,108.785,108.815,108.845,108.875,108.905,108.935,108.965,108.995,109.025,109.055,109.085,109.115,109.145,109.175,109.205,109.235,109.265,109.295,109.325,109.355,109.385,109.415,109.445,109.475,109.505,109.535,109.565,109.595,109.625,109.655,109.685,109.715,109.745,109.775,109.805,109.835,109.865,109.895,109.925,109.955,109.985,110.015,110.045,110.075,110.105,110.135,110.165,110.195,110.225,110.255,110.285,110.315,110.345,110.375,110.405,110.435,110.465,110.495,110.525,110.555,110.585,110.615,110.645,110.675,110.705,110.735,110.765,110.795,110.825,110.855,110.885,110.915,110.945,110.975,111.005,111.035,111.065,111.095,111.125,111.155,111.185,111.215,111.245,111.275,111.305,111.335,111.365,111.395,111.425,111.455,111.485,111.515,111.545,111.575,111.605,111.635,111.665,111.695,111.725,111.755,111.785,111.815,111.845,111.875,111.905,111.935,111.965,111.995,112.025,112.055,112.085,112.115,112.145,112.175,112.205,112.235,112.265,112.295,112.325,112.355,112.385,112.415,112.445,112.475,112.505,112.535,112.565,112.595,112.625,112.655,112.685,112.715,112.745,112.775,112.805,112.835,112.865,112.895,112.925,112.955,112.985,113.015,113.045,113.075,113.105,113.135,113.165,113.195,113.225,113.255,113.285,113.315,113.345,113.375,113.405,113.435,113.465,113.495,113.525,113.555,113.585,113.615,113.645,113.675,113.705,113.735,113.765,113.795,113.825,113.855,113.885,113.915,113.945,113.975,114.005,114.035,114.065,114.095,114.125,114.155,114.185,114.215,114.245,114.275,114.305,114.335,114.365,114.395,114.425,114.455,114.485,114.515,114.545,114.575,114.605,114.635,114.665,114.695,114.725,114.755,114.785,114.815,114.845,114.875,114.905,114.935,114.965,114.995,115.025,115.055,115.085,115.115,115.145,115.175,115.205,115.235,115.265,115.295,115.325,115.355,115.385,115.415,115.445,115.475,115.505,115.535,115.565,115.595,115.625,115.655,115.685,115.715,115.745,115.775,115.805,115.835,115.865,115.895,115.925,115.955,115.985,116.015,116.045,116.075,116.105,116.135,116.165,116.195,116.225,116.255,116.285,116.315,116.345,116.375,116.405,116.435,116.465,116.495,116.525,116.555,116.585,116.615,116.645,116.675,116.705,116.735,116.765,116.795,116.825,116.855,116.885,116.915,116.945,116.975,117.005,117.035,117.065,117.095,117.125,117.155,117.185,117.215,117.245,117.275,117.305,117.335,117.365,117.395,117.425,117.455,117.485,117.515,117.545,117.575,117.605,117.635,117.665,117.695,117.725,117.755,117.785,117.815,117.845,117.875,117.905,117.935,117.965,117.995,118.025,118.055,118.085,118.115,118.145,118.175,118.205,118.235,118.265,118.295,118.325,118.355,118.385,118.415,118.445,118.475,118.505,118.535,118.565,118.595,118.625,118.655,118.685,118.715,118.745,118.775,118.805,118.835,118.865,118.895,118.925,118.955,118.985,119.015,119.045,119.075,119.105,119.135,119.165,119.195,119.225,119.255,119.285,119.315,119.345,119.375,119.405,119.435,119.465,119.495,119.525,119.555,119.585,119.615,119.645,119.675,119.705,119.735,119.765,119.795,119.825,119.855,119.885,119.915,119.945,119.975,120.005,120.035,120.065,120.095,120.125,120.155,120.185,120.215,120.245,120.275,120.305,120.335,120.365,120.395,120.425,120.455,120.485,120.515,120.545,120.575,120.605,120.635,120.665,120.695,120.725,120.755,120.785,120.815,120.845,120.875,120.905,120.935,120.965,120.995,121.025,121.055,121.085,121.115,121.145,121.175,121.205,121.235,121.265,121.295,121.325,121.355,121.385,121.415,121.445,121.475,121.505,121.535,121.565,121.595,121.625,121.655,121.685,121.715,121.745,121.775,121.805,121.835,121.865,121.895,121.925,121.955,121.985,122.015,122.045,122.075,122.105,122.135,122.165,122.195,122.225,122.255,122.285,122.315,122.345,122.375,122.405,122.435,122.465,122.495,122.525,122.555,122.585,122.615,122.645,122.675,122.705,122.735,122.765,122.795,122.825,122.855,122.885,122.915,122.945,122.975,123.005,123.035,123.065,123.095,123.125,123.155,123.185,123.215,123.245,123.275,123.305,123.335,123.365,123.395,123.425,123.455,123.485,123.515,123.545,123.575,123.605,123.635,123.665,123.695,123.725,123.755,123.785,123.815,123.845,123.875,123.905,123.935,123.965,123.995,124.025,124.055,124.085,124.115,124.145,124.175,124.205,124.235,124.265,124.295,124.325,124.355,124.385,124.415,124.445,124.475,124.505,124.535,124.565,124.595,124.625,124.655,124.685,124.715,124.745,124.775,124.805,124.835,124.865,124.895,124.925,124.955,124.985,125.015,125.045,125.075,125.105,125.135,125.165,125.195,125.225,125.255,125.285,125.315,125.345,125.375,125.405,125.435,125.465,125.495,125.525,125.555,125.585,125.615,125.645,125.675,125.705,125.735,125.765,125.795,125.825,125.855,125.885,125.915,125.945,125.975,126.005,126.035,126.065,126.095,126.125,126.155,126.185,126.215,126.245,126.275,126.305,126.335,126.365,126.395,126.425,126.455,126.485,126.515,126.545,126.575,126.605,126.635,126.665,126.695,126.725,126.755,126.785,126.815,126.845,126.875,126.905,126.935,126.965,126.995,127.025,127.055,127.085,127.115,127.145,127.175,127.205,127.235,127.265,127.295,127.325,127.355,127.385,127.415,127.445,127.475,127.505,127.535,127.565,127.595,127.625,127.655,127.685,127.715,127.745,127.775,127.805,127.835,127.865,127.895,127.925,127.955,127.985,128.015,128.045,128.075,128.105,128.135,128.165,128.195,128.225,128.255,128.285,128.315,128.345,128.375,128.405,128.435,128.465,128.495,128.525,128.555,128.585,128.615,128.645,128.675,128.705,128.735,128.765,128.795,128.825,128.855,128.885,128.915,128.945,128.975,129.005,129.035,129.065,129.095,129.125,129.155,129.185,129.215,129.245,129.275,129.305,129.335,129.365,129.395,129.425,129.455,129.485,129.515,129.545,129.575,129.605,129.635,129.665,129.695,129.725,129.755,129.785,129.815,129.845,129.875,129.905,129.935,129.965,129.995,130.025,130.055,130.085,130.115,130.145,130.175,130.205,130.235,130.265,130.295,130.325,130.355,130.385,130.415,130.445,130.475,130.505,130.535,130.565,130.595,130.625,130.655,130.685,130.715,130.745,130.775,130.805,130.835,130.865,130.895,130.925,130.955,130.985,131.015,131.045,131.075,131.105,131.135,131.165,131.195,131.225,131.255,131.285,131.315,131.345,131.375,131.405,131.435,131.465,131.495,131.525,131.555,131.585,131.615,131.645,131.675,131.705,131.735,131.765,131.795,131.825,131.855,131.885,131.915,131.945,131.975,132.005,132.035,132.065,132.095,132.125,132.155,132.185,132.215,132.245,132.275,132.305,132.335,132.365,132.395,132.425,132.455,132.485,132.515,132.545,132.575,132.605,132.635,132.665,132.695,132.725,132.755,132.785,132.815,132.845,132.875,132.905,132.935,132.965,132.995,133.025,133.055,133.085,133.115,133.145,133.175,133.205,133.235,133.265,133.295,133.325,133.355,133.385,133.415,133.445,133.475,133.505,133.535,133.565,133.595,133.625,133.655,133.685,133.715,133.745,133.775,133.805,133.835,133.865,133.895,133.925,133.955,133.985,134.015,134.045,134.075,134.105,134.135,134.165,134.195,134.225,134.255,134.285,134.315,134.345,134.375,134.405,134.435,134.465,134.495,134.525,134.555,134.585,134.615,134.645,134.675,134.705,134.735,134.765,134.795,134.825,134.855,134.885,134.915,134.945,134.975,135.005,135.035,135.065,135.095,135.125,135.155,135.185,135.215,135.245,135.275,135.305,135.335,135.365,135.395,135.425,135.455,135.485,135.515,135.545,135.575,135.605,135.635,135.665,135.695,135.725,135.755,135.785,135.815,135.845,135.875,135.905,135.935,135.965,135.995,136.025,136.055,136.085,136.115,136.145,136.175,136.205,136.235,136.265,136.295,136.325,136.355,136.385,136.415,136.445,136.475,136.505,136.535,136.565,136.595,136.625,136.655,136.685,136.715,136.745,136.775,136.805,136.835,136.865,136.895,136.925,136.955,136.985,137.015,137.045,137.075,137.105,137.135,137.165,137.195,137.225,137.255,137.285,137.315,137.345,137.375,137.405,137.435,137.465,137.495,137.525,137.555,137.585,137.615,137.645,137.675,137.705,137.735,137.765,137.795,137.825,137.855,137.885,137.915,137.945,137.975,138.005,138.035,138.065,138.095,138.125,138.155,138.185,138.215,138.245,138.275,138.305,138.335,138.365,138.395,138.425,138.455,138.485,138.515,138.545,138.575,138.605,138.635,138.665,138.695,138.725,138.755,138.785,138.815,138.845,138.875,138.905,138.935,138.965,138.995,139.025,139.055,139.085,139.115,139.145,139.175,139.205,139.235,139.265,139.295,139.325,139.355,139.385,139.415,139.445,139.475,139.505,139.535,139.565,139.595,139.625,139.655,139.685,139.715,139.745,139.775,139.805,139.835,139.865,139.895,139.925,139.955,139.985,140.015,140.045,140.075,140.105,140.135,140.165,140.195,140.225,140.255,140.285,140.315,140.345,140.375,140.405,140.435,140.465,140.495,140.525,140.555,140.585,140.615,140.645,140.675,140.705,140.735,140.765,140.795,140.825,140.855,140.885,140.915,140.945,140.975,141.005,141.035,141.065,141.095,141.125,141.155,141.185,141.215,141.245,141.275,141.305,141.335,141.365,141.395,141.425,141.455,141.485,141.515,141.545,141.575,141.605,141.635,141.665,141.695,141.725,141.755,141.785,141.815,141.845,141.875,141.905,141.935,141.965,141.995,142.025,142.055,142.085,142.115,142.145,142.175,142.205,142.235,142.265,142.295,142.325,142.355,142.385,142.415,142.445,142.475,142.505,142.535,142.565,142.595,142.625,142.655,142.685,142.715,142.745,142.775,142.805,142.835,142.865,142.895,142.925,142.955,142.985,143.015,143.045,143.075,143.105,143.135,143.165,143.195,143.225,143.255,143.285,143.315,143.345,143.375,143.405,143.435,143.465,143.495,143.525,143.555,143.585,143.615,143.645,143.675,143.705,143.735,143.765,143.795,143.825,143.855,143.885,143.915,143.945,143.975,144.005,144.035,144.065,144.095,144.125,144.155,144.185,144.215,144.245,144.275,144.305,144.335,144.365,144.395,144.425,144.455,144.485,144.515,144.545,144.575,144.605,144.635,144.665,144.695,144.725,144.755,144.785,144.815,144.845,144.875,144.905,144.935,144.965,144.995,145.025,145.055,145.085,145.115,145.145,145.175,145.205,145.235,145.265,145.295,145.325,145.355,145.385,145.415,145.445,145.475,145.505,145.535,145.565,145.595,145.625,145.655,145.685,145.715,145.745,145.775,145.805,145.835,145.865,145.895,145.925,145.955,145.985,146.015,146.045,146.075,146.105,146.135,146.165,146.195,146.225,146.255,146.285,146.315,146.345,146.375,146.405,146.435,146.465,146.495,146.525,146.555,146.585,146.615,146.645,146.675,146.705,146.735,146.765,146.795,146.825,146.855,146.885,146.915,146.945,146.975,147.005,147.035,147.065,147.095,147.125,147.155,147.185,147.215,147.245,147.275,147.305,147.335,147.365,147.395,147.425,147.455,147.485,147.515,147.545,147.575,147.605,147.635,147.665,147.695,147.725,147.755,147.785,147.815,147.845,147.875,147.905,147.935,147.965,147.995,148.025,148.055,148.085,148.115,148.145,148.175,148.205,148.235,148.265,148.295,148.325,148.355,148.385,148.415,148.445,148.475,148.505,148.535,148.565,148.595,148.625,148.655,148.685,148.715,148.745,148.775,148.805,148.835,148.865,148.895,148.925,148.955,148.985,149.015,149.045,149.075,149.105,149.135,149.165,149.195,149.225,149.255,149.285,149.315,149.345,149.375,149.405,149.435,149.465,149.495,149.525,149.555,149.585,149.615,149.645,149.675,149.705,149.735,149.765,149.795,149.825,149.855,149.885,149.915,149.945,149.975,150.005,150.035,150.065,150.095,150.125,150.155,150.185,150.215,150.245,150.275,150.305,150.335,150.365,150.395,150.425,150.455,150.485,150.515,150.545,150.575,150.605,150.635,150.665,150.695,150.725,150.755,150.785,150.815,150.845,150.875,150.905,150.935,150.965,150.995,151.025,151.055,151.085,151.115,151.145,151.175,151.205,151.235,151.265,151.295,151.325,151.355,151.385,151.415,151.445,151.475,151.505,151.535,151.565,151.595,151.625,151.655,151.685,151.715,151.745,151.775,151.805,151.835,151.865,151.895,151.925,151.955,151.985,152.015,152.045,152.075,152.105,152.135,152.165,152.195,152.225,152.255,152.285,152.315,152.345,152.375,152.405,152.435,152.465,152.495,152.525,152.555,152.585,152.615,152.645,152.675,152.705,152.735,152.765,152.795,152.825,152.855,152.885,152.915,152.945,152.975,153.005,153.035,153.065,153.095,153.125,153.155,153.185,153.215,153.245,153.275,153.305,153.335,153.365,153.395,153.425,153.455,153.485,153.515,153.545,153.575,153.605,153.635,153.665,153.695,153.725,153.755,153.785,153.815,153.845,153.875,153.905,153.935,153.965,153.995,154.025,154.055,154.085,154.115,154.145,154.175,154.205,154.235,154.265,154.295,154.325,154.355,154.385,154.415,154.445,154.475,154.505,154.535,154.565,154.595,154.625,154.655,154.685,154.715,154.745,154.775,154.805,154.835,154.865,154.895,154.925,154.955,154.985,155.015,155.045,155.075,155.105,155.135,155.165,155.195,155.225,155.255,155.285,155.315,155.345,155.375,155.405,155.435,155.465,155.495,155.525,155.555,155.585,155.615,155.645,155.675,155.705,155.735,155.765,155.795,155.825,155.855,155.885,155.915,155.945,155.975,156.005,156.035,156.065,156.095,156.125,156.155,156.185,156.215,156.245,156.275,156.305,156.335,156.365,156.395,156.425,156.455,156.485,156.515,156.545,156.575,156.605,156.635,156.665,156.695,156.725,156.755,156.785,156.815,156.845,156.875,156.905,156.935,156.965,156.995,157.025,157.055,157.085,157.115,157.145,157.175,157.205,157.235,157.265,157.295,157.325,157.355,157.385,157.415,157.445,157.475,157.505,157.535,157.565,157.595,157.625,157.655,157.685,157.715,157.745,157.775,157.805,157.835,157.865,157.895,157.925,157.955,157.985,158.015,158.045,158.075,158.105,158.135,158.165,158.195,158.225,158.255,158.285,158.315,158.345,158.375,158.405,158.435,158.465,158.495,158.525,158.555,158.585,158.615,158.645,158.675,158.705,158.735,158.765,158.795,158.825,158.855,158.885,158.915,158.945,158.975,159.005,159.035,159.065,159.095,159.125,159.155,159.185,159.215,159.245,159.275,159.305,159.335,159.365,159.395,159.425,159.455,159.485,159.515,159.545,159.575,159.605,159.635,159.665,159.695,159.725,159.755,159.785,159.815,159.845,159.875,159.905,159.935,159.965,159.995,160.025,160.055,160.085,160.115,160.145,160.175,160.205,160.235,160.265,160.295,160.325,160.355,160.385,160.415,160.445,160.475,160.505,160.535,160.565,160.595,160.625,160.655,160.685,160.715,160.745,160.775,160.805,160.835,160.865,160.895,160.925,160.955,160.985,161.015,161.045,161.075,161.105,161.135,161.165,161.195,161.225,161.255,161.285,161.315,161.345,161.375,161.405,161.435,161.465,161.495,161.525,161.555,161.585,161.615,161.645,161.675,161.705,161.735,161.765,161.795,161.825,161.855,161.885,161.915,161.945,161.975,162.005,162.035,162.065,162.095,162.125,162.155,162.185,162.215,162.245,162.275,162.305,162.335,162.365,162.395,162.425,162.455,162.485,162.515,162.545,162.575,162.605,162.635,162.665,162.695,162.725,162.755,162.785,162.815,162.845,162.875,162.905,162.935,162.965,162.995,163.025,163.055,163.085,163.115,163.145,163.175,163.205,163.235,163.265,163.295,163.325,163.355,163.385,163.415,163.445,163.475,163.505,163.535,163.565,163.595,163.625,163.655,163.685,163.715,163.745,163.775,163.805,163.835,163.865,163.895,163.925,163.955,163.985,164.015,164.045,164.075,164.105,164.135,164.165,164.195,164.225,164.255,164.285,164.315,164.345,164.375,164.405,164.435,164.465,164.495,164.525,164.555,164.585,164.615,164.645,164.675,164.705,164.735,164.765,164.795,164.825,164.855,164.885,164.915,164.945,164.975,165.005,165.035,165.065,165.095,165.125,165.155,165.185,165.215,165.245,165.275,165.305,165.335,165.365,165.395,165.425,165.455,165.485,165.515,165.545,165.575,165.605,165.635,165.665,165.695,165.725,165.755,165.785,165.815,165.845,165.875,165.905,165.935,165.965,165.995,166.025,166.055,166.085,166.115,166.145,166.175,166.205,166.235,166.265,166.295,166.325,166.355,166.385,166.415,166.445,166.475,166.505,166.535,166.565,166.595,166.625,166.655,166.685,166.715,166.745,166.775,166.805,166.835,166.865,166.895,166.925,166.955,166.985,167.015,167.045,167.075,167.105,167.135,167.165,167.195,167.225,167.255,167.285,167.315,167.345,167.375,167.405,167.435,167.465,167.495,167.525,167.555,167.585,167.615,167.645,167.675,167.705,167.735,167.765,167.795,167.825,167.855,167.885,167.915,167.945,167.975,168.005,168.035,168.065,168.095,168.125,168.155,168.185,168.215,168.245,168.275,168.305,168.335,168.365,168.395,168.425,168.455,168.485,168.515,168.545,168.575,168.605,168.635,168.665,168.695,168.725,168.755,168.785,168.815,168.845,168.875,168.905,168.935,168.965,168.995,169.025,169.055,169.085,169.115,169.145,169.175,169.205,169.235,169.265,169.295,169.325,169.355,169.385,169.415,169.445,169.475,169.505,169.535,169.565,169.595,169.625,169.655,169.685,169.715,169.745,169.775,169.805,169.835,169.865,169.895,169.925,169.955,169.985,170.015,170.045,170.075,170.105,170.135,170.165,170.195,170.225,170.255,170.285,170.315,170.345,170.375,170.405,170.435,170.465,170.495,170.525,170.555,170.585,170.615,170.645,170.675,170.705,170.735,170.765,170.795,170.825,170.855,170.885,170.915,170.945,170.975,171.005,171.035,171.065,171.095,171.125,171.155,171.185,171.215,171.245,171.275,171.305,171.335,171.365,171.395,171.425,171.455,171.485,171.515,171.545,171.575,171.605,171.635,171.665,171.695,171.725,171.755,171.785,171.815,171.845,171.875,171.905,171.935,171.965,171.995,172.025,172.055,172.085,172.115,172.145,172.175,172.205,172.235,172.265,172.295,172.325,172.355,172.385,172.415,172.445,172.475,172.505,172.535,172.565,172.595,172.625,172.655,172.685,172.715,172.745,172.775,172.805,172.835,172.865,172.895,172.925,172.955,172.985,173.015,173.045,173.075,173.105,173.135,173.165,173.195,173.225,173.255,173.285,173.315,173.345,173.375,173.405,173.435,173.465,173.495,173.525,173.555,173.585,173.615,173.645,173.675,173.705,173.735,173.765,173.795,173.825,173.855,173.885,173.915,173.945,173.975,174.005,174.035,174.065,174.095,174.125,174.155,174.185,174.215,174.245,174.275,174.305,174.335,174.365,174.395,174.425,174.455,174.485,174.515,174.545,174.575,174.605,174.635,174.665,174.695,174.725,174.755,174.785,174.815,174.845,174.875,174.905,174.935,174.965,174.995,175.025,175.055,175.085,175.115,175.145,175.175,175.205,175.235,175.265,175.295,175.325,175.355,175.385,175.415,175.445,175.475,175.505,175.535,175.565,175.595,175.625,175.655,175.685,175.715,175.745,175.775,175.805,175.835,175.865,175.895,175.925,175.955,175.985,176.015,176.045,176.075,176.105,176.135,176.165,176.195,176.225,176.255,176.285,176.315,176.345,176.375,176.405,176.435,176.465,176.495,176.525,176.555,176.585,176.615,176.645,176.675,176.705,176.735,176.765,176.795,176.825,176.855,176.885,176.915,176.945,176.975,177.005,177.035,177.065,177.095,177.125,177.155,177.185,177.215,177.245,177.275,177.305,177.335,177.365,177.395,177.425,177.455,177.485,177.515,177.545,177.575,177.605,177.635,177.665,177.695,177.725,177.755,177.785,177.815,177.845,177.875,177.905,177.935,177.965,177.995,178.025,178.055,178.085,178.115,178.145,178.175,178.205,178.235,178.265,178.295,178.325,178.355,178.385,178.415,178.445,178.475,178.505,178.535,178.565,178.595,178.625,178.655,178.685,178.715,178.745,178.775,178.805,178.835,178.865,178.895,178.925,178.955,178.985,179.015,179.045,179.075,179.105,179.135,179.165,179.195,179.225,179.255,179.285,179.315,179.345,179.375,179.405,179.435,179.465,179.495,179.525,179.555,179.585,179.615,179.645,179.675,179.705,179.735,179.765,179.795,179.825,179.855,179.885,179.915,179.945,179.975,180.005,180.035,180.065,180.095,180.125,180.155,180.185,180.215,180.245,180.275,180.305,180.335,180.365,180.395,180.425,180.455,180.485,180.515,180.545,180.575,180.605,180.635,180.665,180.695,180.725,180.755,180.785,180.815,180.845,180.875,180.905,180.935,180.965,180.995,181.025,181.055,181.085,181.115,181.145,181.175,181.205,181.235,181.265,181.295,181.325,181.355,181.385,181.415,181.445,181.475,181.505,181.535,181.565,181.595,181.625,181.655,181.685,181.715,181.745,181.775,181.805,181.835,181.865,181.895,181.925,181.955,181.985,182.015,182.045,182.075,182.105,182.135,182.165,182.195,182.225,182.255,182.285,182.315,182.345,182.375,182.405,182.435,182.465,182.495,182.525,182.555,182.585,182.615,182.645,182.675,182.705,182.735,182.765,182.795,182.825,182.855,182.885,182.915,182.945,182.975,183.005,183.035,183.065,183.095,183.125,183.155,183.185,183.215,183.245,183.275,183.305,183.335,183.365,183.395,183.425,183.455,183.485,183.515,183.545,183.575,183.605,183.635,183.665,183.695,183.725,183.755,183.785,183.815,183.845,183.875,183.905,183.935,183.965,183.995,184.025,184.055,184.085,184.115,184.145,184.175,184.205,184.235,184.265,184.295,184.325,184.355,184.385,184.415,184.445,184.475,184.505,184.535,184.565,184.595,184.625,184.655,184.685,184.715,184.745,184.775,184.805,184.835,184.865,184.895,184.925,184.955,184.985,185.015,185.045,185.075,185.105,185.135,185.165,185.195,185.225,185.255,185.285,185.315,185.345,185.375,185.405,185.435,185.465,185.495,185.525,185.555,185.585,185.615,185.645,185.675,185.705,185.735,185.765,185.795,185.825,185.855,185.885,185.915,185.945,185.975,186.005,186.035,186.065,186.095,186.125,186.155,186.185,186.215,186.245,186.275,186.305,186.335,186.365,186.395,186.425,186.455,186.485,186.515,186.545,186.575,186.605,186.635,186.665,186.695,186.725,186.755,186.785,186.815,186.845,186.875,186.905,186.935,186.965,186.995,187.025,187.055,187.085,187.115,187.145,187.175,187.205,187.235,187.265,187.295,187.325,187.355,187.385,187.415,187.445,187.475,187.505,187.535,187.565,187.595,187.625,187.655,187.685,187.715,187.745,187.775,187.805,187.835,187.865,187.895,187.925,187.955,187.985,188.015,188.045,188.075,188.105,188.135,188.165,188.195,188.225,188.255,188.285,188.315,188.345,188.375,188.405,188.435,188.465,188.495,188.525,188.555,188.585,188.615,188.645,188.675,188.705,188.735,188.765,188.795,188.825,188.855,188.885,188.915,188.945,188.975,189.005,189.035,189.065,189.095,189.125,189.155,189.185,189.215,189.245,189.275,189.305,189.335,189.365,189.395,189.425,189.455,189.485,189.515,189.545,189.575,189.605,189.635,189.665,189.695,189.725,189.755,189.785,189.815,189.845,189.875,189.905,189.935,189.965,189.995,190.025,190.055,190.085,190.115,190.145,190.175,190.205,190.235,190.265,190.295,190.325,190.355,190.385,190.415,190.445,190.475,190.505,190.535,190.565,190.595,190.625,190.655,190.685,190.715,190.745,190.775,190.805,190.835,190.865,190.895,190.925,190.955,190.985,191.015,191.045,191.075,191.105,191.135,191.165,191.195,191.225,191.255,191.285,191.315,191.345,191.375,191.405,191.435,191.465,191.495,191.525,191.555,191.585,191.615,191.645,191.675,191.705,191.735,191.765,191.795,191.825,191.855,191.885,191.915,191.945,191.975,192.005,192.035,192.065,192.095,192.125,192.155,192.185,192.215,192.245,192.275,192.305,192.335,192.365,192.395,192.425,192.455,192.485,192.515,192.545,192.575,192.605,192.635,192.665,192.695,192.725,192.755,192.785,192.815,192.845,192.875,192.905,192.935,192.965,192.995,193.025,193.055,193.085,193.115,193.145,193.175,193.205,193.235,193.265,193.295,193.325,193.355,193.385,193.415,193.445,193.475,193.505,193.535,193.565,193.595,193.625,193.655,193.685,193.715,193.745,193.775,193.805,193.835,193.865,193.895,193.925,193.955,193.985,194.015,194.045,194.075,194.105,194.135,194.165,194.195,194.225,194.255,194.285,194.315,194.345,194.375,194.405,194.435,194.465,194.495,194.525,194.555,194.585,194.615,194.645,194.675,194.705,194.735,194.765,194.795,194.825,194.855,194.885,194.915,194.945,194.975,195.005,195.035,195.065,195.095,195.125,195.155,195.185,195.215,195.245,195.275,195.305,195.335,195.365,195.395,195.425,195.455,195.485,195.515,195.545,195.575,195.605,195.635,195.665,195.695,195.725,195.755,195.785,195.815,195.845,195.875,195.905,195.935,195.965,195.995,196.025,196.055,196.085,196.115,196.145,196.175,196.205,196.235,196.265,196.295,196.325,196.355,196.385,196.415,196.445,196.475,196.505,196.535,196.565,196.595,196.625,196.655,196.685,196.715,196.745,196.775,196.805,196.835,196.865,196.895,196.925,196.955,196.985,197.015,197.045,197.075,197.105,197.135,197.165,197.195,197.225,197.255,197.285,197.315,197.345,197.375,197.405,197.435,197.465,197.495,197.525,197.555,197.585,197.615,197.645,197.675,197.705,197.735,197.765,197.795,197.825,197.855,197.885,197.915,197.945,197.975,198.005,198.035,198.065,198.095,198.125,198.155,198.185,198.215,198.245,198.275,198.305,198.335,198.365,198.395,198.425,198.455,198.485,198.515,198.545,198.575,198.605,198.635,198.665,198.695,198.725,198.755,198.785,198.815,198.845,198.875,198.905,198.935,198.965,198.995,199.025,199.055,199.085,199.115,199.145,199.175,199.205,199.235,199.265,199.295,199.325,199.355,199.385,199.415,199.445,199.475,199.505,199.535,199.565,199.595,199.625,199.655,199.685,199.715,199.745,199.775,199.805,199.835,199.865,199.895,199.925,199.955,199.985,200.015,200.045,200.075,200.105,200.135,200.165,200.195,200.225,200.255,200.285,200.315,200.345,200.375,200.405,200.435,200.465,200.495,200.525,200.555,200.585,200.615,200.645,200.675,200.705,200.735,200.765,200.795,200.825,200.855,200.885,200.915,200.945,200.975,201.005,201.035,201.065,201.095,201.125,201.155,201.185,201.215,201.245,201.275,201.305,201.335,201.365,201.395,201.425,201.455,201.485,201.515,201.545,201.575,201.605,201.635,201.665,201.695,201.725,201.755,201.785,201.815,201.845,201.875,201.905,201.935,201.965,201.995,202.025,202.055,202.085,202.115,202.145,202.175,202.205,202.235,202.265,202.295,202.325,202.355,202.385,202.415,202.445,202.475,202.505,202.535,202.565,202.595,202.625,202.655,202.685,202.715,202.745,202.775,202.805,202.835,202.865,202.895,202.925,202.955,202.985,203.015,203.045,203.075,203.105,203.135,203.165,203.195,203.225,203.255,203.285,203.315,203.345,203.375,203.405,203.435,203.465,203.495,203.525,203.555,203.585,203.615,203.645,203.675,203.705,203.735,203.765,203.795,203.825,203.855,203.885,203.915,203.945,203.975,204.005,204.035,204.065,204.095,204.125,204.155,204.185,204.215,204.245,204.275,204.305,204.335,204.365,204.395,204.425,204.455,204.485,204.515,204.545,204.575,204.605,204.635,204.665,204.695,204.725,204.755,204.785,204.815,204.845,204.875,204.905,204.935,204.965,204.995,205.025,205.055,205.085,205.115,205.145,205.175,205.205,205.235,205.265,205.295,205.325,205.355,205.385,205.415,205.445,205.475,205.505,205.535,205.565,205.595,205.625,205.655,205.685,205.715,205.745,205.775,205.805,205.835,205.865,205.895,205.925,205.955,205.985,206.015,206.045,206.075,206.105,206.135,206.165,206.195,206.225,206.255,206.285,206.315,206.345,206.375,206.405,206.435,206.465,206.495,206.525,206.555,206.585,206.615,206.645,206.675,206.705,206.735,206.765,206.795,206.825,206.855,206.885,206.915,206.945,206.975,207.005,207.035,207.065,207.095,207.125,207.155,207.185,207.215,207.245,207.275,207.305,207.335,207.365,207.395,207.425,207.455,207.485,207.515,207.545,207.575,207.605,207.635,207.665,207.695,207.725,207.755,207.785,207.815,207.845,207.875,207.905,207.935,207.965,207.995,208.025,208.055,208.085,208.115,208.145,208.175,208.205,208.235,208.265,208.295,208.325,208.355,208.385,208.415,208.445,208.475,208.505,208.535,208.565,208.595,208.625,208.655,208.685,208.715,208.745,208.775,208.805,208.835,208.865,208.895,208.925,208.955,208.985,209.015,209.045,209.075,209.105,209.135,209.165,209.195,209.225,209.255,209.285,209.315,209.345,209.375,209.405,209.435,209.465,209.495,209.525,209.555,209.585,209.615,209.645,209.675,209.705,209.735,209.765,209.795,209.825,209.855,209.885,209.915,209.945,209.975,210.005,210.035,210.065,210.095,210.125,210.155,210.185,210.215,210.245,210.275,210.305,210.335,210.365,210.395,210.425,210.455,210.485,210.515,210.545,210.575,210.605,210.635,210.665,210.695,210.725,210.755,210.785,210.815,210.845,210.875,210.905,210.935,210.965,210.995,211.025,211.055,211.085,211.115,211.145,211.175,211.205,211.235,211.265,211.295,211.325,211.355,211.385,211.415,211.445,211.475,211.505,211.535,211.565,211.595,211.625,211.655,211.685,211.715,211.745,211.775,211.805,211.835,211.865,211.895,211.925,211.955,211.985,212.015,212.045,212.075,212.105,212.135,212.165,212.195,212.225,212.255,212.285,212.315,212.345,212.375,212.405,212.435,212.465,212.495,212.525,212.555,212.585,212.615,212.645,212.675,212.705,212.735,212.765,212.795,212.825,212.855,212.885,212.915,212.945,212.975,213.005,213.035,213.065,213.095,213.125,213.155,213.185,213.215,213.245,213.275,213.305,213.335,213.365,213.395,213.425,213.455,213.485,213.515,213.545,213.575,213.605,213.635,213.665,213.695,213.725,213.755,213.785,213.815,213.845,213.875,213.905,213.935,213.965,213.995,214.025,214.055,214.085,214.115,214.145,214.175,214.205,214.235,214.265,214.295,214.325,214.355,214.385,214.415,214.445,214.475,214.505,214.535,214.565,214.595,214.625,214.655,214.685,214.715,214.745,214.775,214.805,214.835,214.865,214.895,214.925,214.955,214.985,215.015,215.045,215.075,215.105,215.135,215.165,215.195,215.225,215.255,215.285,215.315,215.345,215.375,215.405,215.435,215.465,215.495,215.525,215.555,215.585,215.615,215.645,215.675,215.705,215.735,215.765,215.795,215.825,215.855,215.885,215.915,215.945,215.975,216.005,216.035,216.065,216.095,216.125,216.155,216.185,216.215,216.245,216.275,216.305,216.335,216.365,216.395,216.425,216.455,216.485,216.515,216.545,216.575,216.605,216.635,216.665,216.695,216.725,216.755,216.785,216.815,216.845,216.875,216.905,216.935,216.965,216.995,217.025,217.055,217.085,217.115,217.145,217.175,217.205,217.235,217.265,217.295,217.325,217.355,217.385,217.415,217.445,217.475,217.505,217.535,217.565,217.595,217.625,217.655,217.685,217.715,217.745,217.775,217.805,217.835,217.865,217.895,217.925,217.955,217.985,218.015,218.045,218.075,218.105,218.135,218.165,218.195,218.225,218.255,218.285,218.315,218.345,218.375,218.405,218.435,218.465,218.495,218.525,218.555,218.585,218.615,218.645,218.675,218.705,218.735,218.765,218.795,218.825,218.855,218.885,218.915,218.945,218.975,219.005,219.035,219.065,219.095,219.125,219.155,219.185,219.215,219.245,219.275,219.305,219.335,219.365,219.395,219.425,219.455,219.485,219.515,219.545,219.575,219.605,219.635,219.665,219.695,219.725,219.755,219.785,219.815,219.845,219.875,219.905,219.935,219.965,219.995,220.025,220.055,220.085,220.115,220.145,220.175,220.205,220.235,220.265,220.295,220.325,220.355,220.385,220.415,220.445,220.475,220.505,220.535,220.565,220.595,220.625,220.655,220.685,220.715,220.745,220.775,220.805,220.835,220.865,220.895,220.925,220.955,220.985,221.015,221.045,221.075,221.105,221.135,221.165,221.195,221.225,221.255,221.285,221.315,221.345,221.375,221.405,221.435,221.465,221.495,221.525,221.555,221.585,221.615,221.645,221.675,221.705,221.735,221.765,221.795,221.825,221.855,221.885,221.915,221.945,221.975,222.005,222.035,222.065,222.095,222.125,222.155,222.185,222.215,222.245,222.275,222.305,222.335,222.365,222.395,222.425,222.455,222.485,222.515,222.545,222.575,222.605,222.635,222.665,222.695,222.725,222.755,222.785,222.815,222.845,222.875,222.905,222.935,222.965,222.995,223.025,223.055,223.085,223.115,223.145,223.175,223.205,223.235,223.265,223.295,223.325,223.355,223.385,223.415,223.445,223.475,223.505,223.535,223.565,223.595,223.625,223.655,223.685,223.715,223.745,223.775,223.805,223.835,223.865,223.895,223.925,223.955,223.985,224.015,224.045,224.075,224.105,224.135,224.165,224.195,224.225,224.255,224.285,224.315,224.345,224.375,224.405,224.435,224.465,224.495,224.525,224.555,224.585,224.615,224.645,224.675,224.705,224.735,224.765,224.795,224.825,224.855,224.885,224.915,224.945,224.975,225.005,225.035,225.065,225.095,225.125,225.155,225.185,225.215,225.245,225.275,225.305,225.335,225.365,225.395,225.425,225.455,225.485,225.515,225.545,225.575,225.605,225.635,225.665,225.695,225.725,225.755,225.785,225.815,225.845,225.875,225.905,225.935,225.965,225.995,226.025,226.055,226.085,226.115,226.145,226.175,226.205,226.235,226.265,226.295,226.325,226.355,226.385,226.415,226.445,226.475,226.505,226.535,226.565,226.595,226.625,226.655,226.685,226.715,226.745,226.775,226.805,226.835,226.865,226.895,226.925,226.955,226.985,227.015,227.045,227.075,227.105,227.135,227.165,227.195,227.225,227.255,227.285,227.315,227.345,227.375,227.405,227.435,227.465,227.495,227.525,227.555,227.585,227.615,227.645,227.675,227.705,227.735,227.765,227.795,227.825,227.855,227.885,227.915,227.945,227.975,228.005,228.035,228.065,228.095,228.125,228.155,228.185,228.215,228.245,228.275,228.305,228.335,228.365,228.395,228.425,228.455,228.485,228.515,228.545,228.575,228.605,228.635,228.665,228.695,228.725,228.755,228.785,228.815,228.845,228.875,228.905,228.935,228.965,228.995,229.025,229.055,229.085,229.115,229.145,229.175,229.205,229.235,229.265,229.295,229.325,229.355,229.385,229.415,229.445,229.475,229.505,229.535,229.565,229.595,229.625,229.655,229.685,229.715,229.745,229.775,229.805,229.835,229.865,229.895,229.925,229.955,229.985,230.015,230.045,230.075,230.105,230.135,230.165,230.195,230.225,230.255,230.285,230.315,230.345,230.375,230.405,230.435,230.465,230.495,230.525,230.555,230.585,230.615,230.645,230.675,230.705,230.735,230.765,230.795,230.825,230.855,230.885,230.915,230.945,230.975,231.005,231.035,231.065,231.095,231.125,231.155,231.185,231.215,231.245,231.275,231.305,231.335,231.365,231.395,231.425,231.455,231.485,231.515,231.545,231.575,231.605,231.635,231.665,231.695,231.725,231.755,231.785,231.815,231.845,231.875,231.905,231.935,231.965,231.995,232.025,232.055,232.085,232.115,232.145,232.175,232.205,232.235,232.265,232.295,232.325,232.355,232.385,232.415,232.445,232.475,232.505,232.535,232.565,232.595,232.625,232.655,232.685,232.715,232.745,232.775,232.805,232.835,232.865,232.895,232.925,232.955,232.985,233.015,233.045,233.075,233.105,233.135,233.165,233.195,233.225,233.255,233.285,233.315,233.345,233.375,233.405,233.435,233.465,233.495,233.525,233.555,233.585,233.615,233.645,233.675,233.705,233.735,233.765,233.795,233.825,233.855,233.885,233.915,233.945,233.975,234.005,234.035,234.065,234.095,234.125,234.155,234.185,234.215,234.245,234.275,234.305,234.335,234.365,234.395,234.425,234.455,234.485,234.515,234.545,234.575,234.605,234.635,234.665,234.695,234.725,234.755,234.785,234.815,234.845,234.875,234.905,234.935,234.965,234.995,235.025,235.055,235.085,235.115,235.145,235.175,235.205,235.235,235.265,235.295,235.325,235.355,235.385,235.415,235.445,235.475,235.505,235.535,235.565,235.595,235.625,235.655,235.685,235.715,235.745,235.775,235.805,235.835,235.865,235.895,235.925,235.955,235.985,236.015,236.045,236.075,236.105,236.135,236.165,236.195,236.225,236.255,236.285,236.315,236.345,236.375,236.405,236.435,236.465,236.495,236.525,236.555,236.585,236.615,236.645,236.675,236.705,236.735,236.765,236.795,236.825,236.855,236.885,236.915,236.945,236.975,237.005,237.035,237.065,237.095,237.125,237.155,237.185,237.215,237.245,237.275,237.305,237.335,237.365,237.395,237.425,237.455,237.485,237.515,237.545,237.575,237.605,237.635,237.665,237.695,237.725,237.755,237.785,237.815,237.845,237.875,237.905,237.935,237.965,237.995,238.025,238.055,238.085,238.115,238.145,238.175,238.205,238.235,238.265,238.295,238.325,238.355,238.385,238.415,238.445,238.475,238.505,238.535,238.565,238.595,238.625,238.655,238.685,238.715,238.745,238.775,238.805,238.835,238.865,238.895,238.925,238.955,238.985,239.015,239.045,239.075,239.105,239.135,239.165,239.195,239.225,239.255,239.285,239.315,239.345,239.375,239.405,239.435,239.465,239.495,239.525,239.555,239.585,239.615,239.645,239.675,239.705,239.735,239.765,239.795,239.825,239.855,239.885,239.915,239.945,239.975,240.005,240.035,240.065,240.095,240.125,240.155,240.185,240.215,240.245,240.275,240.305,240.335,240.365,240.395,240.425,240.455,240.485,240.515,240.545,240.575,240.605,240.635,240.665,240.695,240.725,240.755,240.785,240.815,240.845,240.875,240.905,240.935,240.965,240.995,241.025,241.055,241.085,241.115,241.145,241.175,241.205,241.235,241.265,241.295,241.325,241.355,241.385,241.415,241.445,241.475,241.505,241.535,241.565,241.595,241.625,241.655,241.685,241.715,241.745,241.775,241.805,241.835,241.865,241.895,241.925,241.955,241.985,242.015,242.045,242.075,242.105,242.135,242.165,242.195,242.225,242.255,242.285,242.315,242.345,242.375,242.405,242.435,242.465,242.495,242.525,242.555,242.585,242.615,242.645,242.675,242.705,242.735,242.765,242.795,242.825,242.855,242.885,242.915,242.945,242.975,243.005,243.035,243.065,243.095,243.125,243.155,243.185,243.215,243.245,243.275,243.305,243.335,243.365,243.395,243.425,243.455,243.485,243.515,243.545,243.575,243.605,243.635,243.665,243.695,243.725,243.755,243.785,243.815,243.845,243.875,243.905,243.935,243.965,243.995,244.025,244.055,244.085,244.115,244.145,244.175,244.205,244.235,244.265,244.295,244.325,244.355,244.385,244.415,244.445,244.475,244.505,244.535,244.565,244.595,244.625,244.655,244.685,244.715,244.745,244.775,244.805,244.835,244.865,244.895,244.925,244.955,244.985,245.015,245.045,245.075,245.105,245.135,245.165,245.195,245.225,245.255,245.285,245.315,245.345,245.375,245.405,245.435,245.465,245.495,245.525,245.555,245.585,245.615,245.645,245.675,245.705,245.735,245.765,245.795,245.825,245.855,245.885,245.915,245.945,245.975,246.005,246.035,246.065,246.095,246.125,246.155,246.185,246.215,246.245,246.275,246.305,246.335,246.365,246.395,246.425,246.455,246.485,246.515,246.545,246.575,246.605,246.635,246.665,246.695,246.725,246.755,246.785,246.815,246.845,246.875,246.905,246.935,246.965,246.995,247.025,247.055,247.085,247.115,247.145,247.175,247.205,247.235,247.265,247.295,247.325,247.355,247.385,247.415,247.445,247.475,247.505,247.535,247.565,247.595,247.625,247.655,247.685,247.715,247.745,247.775,247.805,247.835,247.865,247.895,247.925,247.955,247.985,248.015,248.045,248.075,248.105,248.135,248.165,248.195,248.225,248.255,248.285,248.315,248.345,248.375,248.405,248.435,248.465,248.495,248.525,248.555,248.585,248.615,248.645,248.675,248.705,248.735,248.765,248.795,248.825,248.855,248.885,248.915,248.945,248.975,249.005,249.035,249.065,249.095,249.125,249.155,249.185,249.215,249.245,249.275,249.305,249.335,249.365,249.395,249.425,249.455,249.485,249.515,249.545,249.575,249.605,249.635,249.665,249.665]}], {"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 87ca9c5e3..3602ee0ba 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('65cad267-75ee-41b9-bccf-593fb29593dd')) { + if (document.getElementById('9acee969-17b6-4fe9-9ed7-3cbc0e481299')) { Plotly.newPlot( - '65cad267-75ee-41b9-bccf-593fb29593dd', + '9acee969-17b6-4fe9-9ed7-3cbc0e481299', [{"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.965,3.995,4.025,4.055,4.085,4.115,4.1450000000000005,4.175,4.205,4.235,4.265,4.295,4.325,4.355,4.385,4.415,4.445,4.475,4.505,4.535,4.565,4.595,4.625,4.655,4.6850000000000005,4.715,4.745,4.775,4.805,4.835,4.865,4.8950000000000005,4.925,4.955,4.985,5.015,5.045,5.075,5.105,5.135,5.165,5.195,5.225,5.255,5.285,5.315,5.345,5.375,5.405,5.4350000000000005,5.465,5.495,5.525,5.555,5.585,5.615,5.6450000000000005,5.675,5.705,5.735,5.765,5.795,5.825,5.855,5.885,5.915,5.945,5.975,6.005,6.035,6.065,6.095,6.125,6.155,6.1850000000000005,6.215,6.245,6.275,6.305,6.335,6.365,6.3950000000000005,6.425,6.455,6.485,6.515,6.545,6.575,6.605,6.635,6.665,6.695,6.725,6.755,6.785,6.815,6.845,6.875,6.905,6.9350000000000005,6.965,6.995,7.025,7.055,7.085,7.115,7.1450000000000005,7.175,7.205,7.235,7.265,7.295,7.325,7.355,7.385,7.415,7.445,7.475,7.505,7.535,7.565,7.595,7.625,7.655,7.6850000000000005,7.715,7.745,7.775,7.805,7.835,7.865,7.8950000000000005,7.925,7.955,7.985,8.015,8.045,8.075,8.105,8.135,8.165000000000001,8.195,8.225,8.255,8.285,8.315,8.345,8.375,8.405,8.435,8.465,8.495,8.525,8.555,8.585,8.615,8.645,8.675,8.705,8.735,8.765,8.795,8.825,8.855,8.885,8.915000000000001,8.945,8.975,9.005,9.035,9.065,9.095,9.125,9.155,9.185,9.215,9.245,9.275,9.305,9.335,9.365,9.395,9.425,9.455,9.485,9.515,9.545,9.575,9.605,9.635,9.665000000000001,9.695,9.725,9.755,9.785,9.815,9.845,9.875,9.905,9.935,9.965,9.995,10.025,10.055,10.085,10.115,10.145,10.175,10.205,10.235,10.265,10.295,10.325,10.355,10.385,10.415000000000001,10.445,10.475,10.505,10.535,10.565,10.595,10.625,10.655,10.685,10.715,10.745,10.775,10.805,10.835,10.865,10.895,10.925,10.955,10.985,11.015,11.045,11.075,11.105,11.135,11.165000000000001,11.195,11.225,11.255,11.285,11.315,11.345,11.375,11.405,11.435,11.465,11.495,11.525,11.555,11.585,11.615,11.645,11.675,11.705,11.735,11.765,11.795,11.825,11.855,11.885,11.915000000000001,11.945,11.975,12.005,12.035,12.065,12.095,12.125,12.155,12.185,12.215,12.245,12.275,12.305,12.335,12.365,12.395,12.425,12.455,12.485,12.515,12.545,12.575,12.605,12.635,12.665000000000001,12.695,12.725,12.755,12.785,12.815,12.845,12.875,12.905,12.935,12.965,12.995,13.025,13.055,13.085,13.115,13.145,13.175,13.205,13.235,13.265,13.295,13.325,13.355,13.385,13.415000000000001,13.445,13.475,13.505,13.535,13.565,13.595,13.625,13.655,13.685,13.715,13.745,13.775,13.805,13.835,13.865,13.895,13.925,13.955,13.985,14.015,14.045,14.075,14.105,14.135,14.165000000000001,14.195,14.225,14.255,14.285,14.315,14.345,14.375,14.405,14.435,14.465,14.495,14.525,14.555,14.585,14.615,14.645,14.675,14.705,14.735,14.765,14.795,14.825,14.855,14.885,14.915000000000001,14.945,14.975,15.005,15.035,15.065,15.095,15.125,15.155,15.185,15.215,15.245,15.275,15.305,15.335,15.365,15.395,15.425,15.455,15.485,15.515,15.545,15.575,15.605,15.635,15.665000000000001,15.695,15.725,15.755,15.785,15.815,15.845,15.875,15.905,15.935,15.965,15.995,16.025,16.055,16.085,16.115,16.145,16.175,16.205,16.235,16.265,16.295,16.325,16.355,16.385,16.415,16.445,16.475,16.505,16.535,16.565,16.595,16.625,16.655,16.685,16.715,16.745,16.775,16.805,16.835,16.865,16.895,16.925,16.955,16.985,17.015,17.045,17.075,17.105,17.135,17.165,17.195,17.225,17.255,17.285,17.315,17.345,17.375,17.405,17.435,17.465,17.495,17.525,17.555,17.585,17.615,17.645,17.675,17.705,17.735,17.765,17.795,17.825,17.855,17.885,17.915,17.945,17.975,18.005,18.035,18.065,18.095,18.125,18.155,18.185,18.215,18.245,18.275,18.305,18.335,18.365,18.395,18.425,18.455,18.485,18.515,18.545,18.575,18.605,18.635,18.665,18.695,18.725,18.755,18.785,18.815,18.845,18.875,18.905,18.935,18.965,18.995,19.025,19.055,19.085,19.115,19.145,19.175,19.205,19.235,19.265,19.295,19.325,19.355,19.385,19.415,19.445,19.475,19.505,19.535,19.565,19.595,19.625,19.655,19.685,19.715,19.745,19.775,19.805,19.835,19.865,19.895,19.925,19.955,19.985,20.015,20.045,20.075,20.105,20.135,20.165,20.195,20.225,20.255,20.285,20.315,20.345,20.375,20.405,20.435,20.465,20.495,20.525,20.555,20.585,20.615,20.645,20.675,20.705,20.735,20.765,20.795,20.825,20.855,20.885,20.915,20.945,20.975,21.005,21.035,21.065,21.095,21.125,21.155,21.185,21.215,21.245,21.275,21.305,21.335,21.365,21.395,21.425,21.455,21.485,21.515,21.545,21.575,21.605,21.635,21.665,21.695,21.725,21.755,21.785,21.815,21.845,21.875,21.905,21.935,21.965,21.995,22.025,22.055,22.085,22.115,22.145,22.175,22.205,22.235,22.265,22.295,22.325,22.355,22.385,22.415,22.445,22.475,22.505,22.535,22.565,22.595,22.625,22.655,22.685,22.715,22.745,22.775,22.805,22.835,22.865,22.895,22.925,22.955,22.985,23.015,23.045,23.075,23.105,23.135,23.165,23.195,23.225,23.255,23.285,23.315,23.345,23.375,23.405,23.435,23.465,23.495,23.525,23.555,23.585,23.615,23.645,23.675,23.705,23.735,23.765,23.795,23.825,23.855,23.885,23.915,23.945,23.975,24.005,24.035,24.065,24.095,24.125,24.155,24.185,24.215,24.245,24.275,24.305,24.335,24.365,24.395,24.425,24.455,24.485,24.515,24.545,24.575,24.605,24.635,24.665,24.695,24.725,24.755,24.785,24.815,24.845,24.875,24.905,24.935,24.965,24.995,25.025,25.055,25.085,25.115,25.145,25.175,25.205,25.235,25.265,25.295,25.325,25.355,25.385,25.415,25.445,25.475,25.505,25.535,25.565,25.595,25.625,25.655,25.685,25.715,25.745,25.775,25.805,25.835,25.865,25.895,25.925,25.955,25.985,26.015,26.045,26.075,26.105,26.135,26.165,26.195,26.225,26.255,26.285,26.315,26.345,26.375,26.405,26.435,26.465,26.495,26.525,26.555,26.585,26.615,26.645,26.675,26.705,26.735,26.765,26.795,26.825,26.855,26.885,26.915,26.945,26.975,27.005,27.035,27.065,27.095,27.125,27.155,27.185,27.215,27.245,27.275,27.305,27.335,27.365,27.395,27.425,27.455,27.485,27.515,27.545,27.575,27.605,27.635,27.665,27.695,27.725,27.755,27.785,27.815,27.845,27.875,27.905,27.935,27.965,27.995,28.025,28.055,28.085,28.115,28.145,28.175,28.205,28.235,28.265,28.295,28.325,28.355,28.385,28.415,28.445,28.475,28.505,28.535,28.565,28.595,28.625,28.655,28.685,28.715,28.745,28.775,28.805,28.835,28.865,28.895,28.925,28.955,28.985,29.015,29.045,29.075,29.105,29.135,29.165,29.195,29.225,29.255,29.285,29.315,29.345,29.375,29.405,29.435,29.465,29.495,29.525,29.555,29.585,29.615,29.645,29.675,29.705,29.735,29.765,29.795,29.825,29.855,29.885,29.915,29.945,29.975,30.005,30.035,30.065,30.095,30.125,30.155,30.185,30.215,30.245,30.275,30.305,30.335,30.365,30.395,30.425,30.455,30.485,30.515,30.545,30.575,30.605,30.635,30.665,30.695,30.725,30.755,30.785,30.815,30.845,30.875,30.905,30.935,30.965,30.995,31.025,31.055,31.085,31.115,31.145,31.175,31.205,31.235,31.265,31.295,31.325,31.355,31.385,31.415,31.445,31.475,31.505,31.535,31.565,31.595,31.625,31.655,31.685,31.715,31.745,31.775,31.805,31.835,31.865,31.895,31.925,31.955,31.985,32.015,32.045,32.075,32.105,32.135,32.165,32.195,32.225,32.255,32.285,32.315,32.345,32.375,32.405,32.435,32.465,32.495,32.525,32.555,32.585,32.615,32.645,32.675,32.705,32.735,32.765,32.795,32.825,32.855,32.885,32.915,32.945,32.975,33.005,33.035,33.065,33.095,33.125,33.155,33.185,33.215,33.245,33.275,33.305,33.335,33.365,33.395,33.425,33.455,33.485,33.515,33.545,33.575,33.605,33.635,33.665,33.695,33.725,33.755,33.785,33.815,33.845,33.875,33.905,33.935,33.965,33.995,34.025,34.055,34.085,34.115,34.145,34.175,34.205,34.235,34.265,34.295,34.325,34.355,34.385,34.415,34.445,34.475,34.505,34.535,34.565,34.595,34.625,34.655,34.685,34.715,34.745,34.775,34.805,34.835,34.865,34.895,34.925,34.955,34.985,35.015,35.045,35.075,35.105,35.135,35.165,35.195,35.225,35.255,35.285,35.315,35.345,35.375,35.405,35.435,35.465,35.495,35.525,35.555,35.585,35.615,35.645,35.675,35.705,35.735,35.765,35.795,35.825,35.855,35.885,35.915,35.945,35.975,36.005,36.035,36.065,36.095,36.125,36.155,36.185,36.215,36.245,36.275,36.305,36.335,36.365,36.395,36.425,36.455,36.485,36.515,36.545,36.575,36.605,36.635,36.665,36.695,36.725,36.755,36.785,36.815,36.845,36.875,36.905,36.935,36.965,36.995,37.025,37.055,37.085,37.115,37.145,37.175,37.205,37.235,37.265,37.295,37.325,37.355,37.385,37.415,37.445,37.475,37.505,37.535,37.565,37.595,37.625,37.655,37.685,37.715,37.745,37.775,37.805,37.835,37.865,37.895,37.925,37.955,37.985,38.015,38.045,38.075,38.105,38.135,38.165,38.195,38.225,38.255,38.285,38.315,38.345,38.375,38.405,38.435,38.465,38.495,38.525,38.555,38.585,38.615,38.645,38.675,38.705,38.735,38.765,38.795,38.825,38.855,38.885,38.915,38.945,38.975,39.005,39.035,39.065,39.095,39.125,39.155,39.185,39.215,39.245,39.275,39.305,39.335,39.365,39.395,39.425,39.455,39.485,39.515,39.545,39.575,39.605,39.635,39.665,39.695,39.725,39.755,39.785,39.815,39.845,39.875,39.905,39.935,39.965,39.995,40.025,40.055,40.085,40.115,40.145,40.175,40.205,40.235,40.265,40.295,40.325,40.355,40.385,40.415,40.445,40.475,40.505,40.535,40.565,40.595,40.625,40.655,40.685,40.715,40.745,40.775,40.805,40.835,40.865,40.895,40.925,40.955,40.985,41.015,41.045,41.075,41.105,41.135,41.165,41.195,41.225,41.255,41.285,41.315,41.345,41.375,41.405,41.435,41.465,41.495,41.525,41.555,41.585,41.615,41.645,41.675,41.705,41.735,41.765,41.795,41.825,41.855,41.885,41.915,41.945,41.975,42.005,42.035,42.065,42.095,42.125,42.155,42.185,42.215,42.245,42.275,42.305,42.335,42.365,42.395,42.425,42.455,42.485,42.515,42.545,42.575,42.605,42.635,42.665,42.695,42.725,42.755,42.785,42.815,42.845,42.875,42.905,42.935,42.965,42.995,43.025,43.055,43.085,43.115,43.145,43.175,43.205,43.235,43.265,43.295,43.325,43.355,43.385,43.415,43.445,43.475,43.505,43.535,43.565,43.595,43.625,43.655,43.685,43.715,43.745,43.775,43.805,43.835,43.865,43.895,43.925,43.955,43.985,44.015,44.045,44.075,44.105,44.135,44.165,44.195,44.225,44.255,44.285,44.315,44.345,44.375,44.405,44.435,44.465,44.495,44.525,44.555,44.585,44.615,44.645,44.675,44.705,44.735,44.765,44.795,44.825,44.855,44.885,44.915,44.945,44.975,45.005,45.035,45.065,45.095,45.125,45.155,45.185,45.215,45.245,45.275,45.305,45.335,45.365,45.395,45.425,45.455,45.485,45.515,45.545,45.575,45.605,45.635,45.665,45.695,45.725,45.755,45.785,45.815,45.845,45.875,45.905,45.935,45.965,45.995,46.025,46.055,46.085,46.115,46.145,46.175,46.205,46.235,46.265,46.295,46.325,46.355,46.385,46.415,46.445,46.475,46.505,46.535,46.565,46.595,46.625,46.655,46.685,46.715,46.745,46.775,46.805,46.835,46.865,46.895,46.925,46.955,46.985,47.015,47.045,47.075,47.105,47.135,47.165,47.195,47.225,47.255,47.285,47.315,47.345,47.375,47.405,47.435,47.465,47.495,47.525,47.555,47.585,47.615,47.645,47.675,47.705,47.735,47.765,47.795,47.825,47.855,47.885,47.915,47.945,47.975,48.005,48.035,48.065,48.095,48.125,48.155,48.185,48.215,48.245,48.275,48.305,48.335,48.365,48.395,48.425,48.455,48.485,48.515,48.545,48.575,48.605,48.635,48.665,48.695,48.725,48.755,48.785,48.815,48.845,48.875,48.905,48.935,48.965,48.995,49.025,49.055,49.085,49.115,49.145,49.175,49.205,49.235,49.265,49.295,49.325,49.355,49.385,49.415,49.445,49.475,49.505,49.535,49.565,49.595,49.625,49.655,49.685,49.715,49.745,49.775,49.805,49.835,49.865,49.895,49.925,49.955,49.985,50.015,50.045,50.075,50.105,50.135,50.165,50.195,50.225,50.255,50.285,50.315,50.345,50.375,50.405,50.435,50.465,50.495,50.525,50.555,50.585,50.615,50.645,50.675,50.705,50.735,50.765,50.795,50.825,50.855,50.885,50.915,50.945,50.975,51.005,51.035,51.065,51.095,51.125,51.155,51.185,51.215,51.245,51.275,51.305,51.335,51.365,51.395,51.425,51.455,51.485,51.515,51.545,51.575,51.605,51.635,51.665,51.695,51.725,51.755,51.785,51.815,51.845,51.875,51.905,51.935,51.965,51.995,52.025,52.055,52.085,52.115,52.145,52.175,52.205,52.235,52.265,52.295,52.325,52.355,52.385,52.415,52.445,52.475,52.505,52.535,52.565,52.595,52.625,52.655,52.685,52.715,52.745,52.775,52.805,52.835,52.865,52.895,52.925,52.955,52.985,53.015,53.045,53.075,53.105,53.135,53.165,53.195,53.225,53.255,53.285,53.315,53.345,53.375,53.405,53.435,53.465,53.495,53.525,53.555,53.585,53.615,53.645,53.675,53.705,53.735,53.765,53.795,53.825,53.855,53.885,53.915,53.945,53.975,54.005,54.035,54.065,54.095,54.125,54.155,54.185,54.215,54.245,54.275,54.305,54.335,54.365,54.395,54.425,54.455,54.485,54.515,54.545,54.575,54.605,54.635,54.665,54.695,54.725,54.755,54.785,54.815,54.845,54.875,54.905,54.935,54.965,54.995,55.025,55.055,55.085,55.115,55.145,55.175,55.205,55.235,55.265,55.295,55.325,55.355,55.385,55.415,55.445,55.475,55.505,55.535,55.565,55.595,55.625,55.655,55.685,55.715,55.745,55.775,55.805,55.835,55.865,55.895,55.925,55.955,55.985,56.015,56.045,56.075,56.105,56.135,56.165,56.195,56.225,56.255,56.285,56.315,56.345,56.375,56.405,56.435,56.465,56.495,56.525,56.555,56.585,56.615,56.645,56.675,56.705,56.735,56.765,56.795,56.825,56.855,56.885,56.915,56.945,56.975,57.005,57.035,57.065,57.095,57.125,57.155,57.185,57.215,57.245,57.275,57.305,57.335,57.365,57.395,57.425,57.455,57.485,57.515,57.545,57.575,57.605,57.635,57.665,57.695,57.725,57.755,57.785,57.815,57.845,57.875,57.905,57.935,57.965,57.995,58.025,58.055,58.085,58.115,58.145,58.175,58.205,58.235,58.265,58.295,58.325,58.355,58.385,58.415,58.445,58.475,58.505,58.535,58.565,58.595,58.625,58.655,58.685,58.715,58.745,58.775,58.805,58.835,58.865,58.895,58.925,58.955,58.985,59.015,59.045,59.075,59.105,59.135,59.165,59.195,59.225,59.255,59.285,59.315,59.345,59.375,59.405,59.435,59.465,59.495,59.525,59.555,59.585,59.615,59.645,59.675,59.705,59.735,59.765,59.795,59.825,59.855,59.885,59.915,59.945,59.975,60.005,60.035,60.065,60.095,60.125,60.155,60.185,60.215,60.245,60.275,60.305,60.335,60.365,60.395,60.425,60.455,60.485,60.515,60.545,60.575,60.605,60.635,60.665,60.695,60.725,60.755,60.785,60.815,60.845,60.875,60.905,60.935,60.965,60.995,61.025,61.055,61.085,61.115,61.145,61.175,61.205,61.235,61.265,61.295,61.325,61.355,61.385,61.415,61.445,61.475,61.505,61.535,61.565,61.595,61.625,61.655,61.685,61.715,61.745,61.775,61.805,61.835,61.865,61.895,61.925,61.955,61.985,62.015,62.045,62.075,62.105,62.135,62.165,62.195,62.225,62.255,62.285,62.315,62.345,62.375,62.405,62.435,62.465,62.495,62.525,62.555,62.585,62.615,62.645,62.675,62.705,62.735,62.765,62.795,62.825,62.855,62.885,62.915,62.945,62.975,63.005,63.035,63.065,63.095,63.125,63.155,63.185,63.215,63.245,63.275,63.305,63.335,63.365,63.395,63.425,63.455,63.485,63.515,63.545,63.575,63.605,63.635,63.665,63.695,63.725,63.755,63.785,63.815,63.845,63.875,63.905,63.935,63.965,63.995,64.025,64.055,64.085,64.115,64.145,64.175,64.205,64.235,64.265,64.295,64.325,64.355,64.385,64.415,64.445,64.475,64.505,64.535,64.565,64.595,64.625,64.655,64.685,64.715,64.745,64.775,64.805,64.835,64.865,64.895,64.925,64.955,64.985,65.015,65.045,65.075,65.105,65.135,65.165,65.195,65.225,65.255,65.285,65.315,65.345,65.375,65.405,65.435,65.465,65.495,65.525,65.555,65.585,65.615,65.645,65.675,65.705,65.735,65.765,65.795,65.825,65.855,65.885,65.915,65.945,65.975,66.005,66.035,66.065,66.095,66.125,66.155,66.185,66.215,66.245,66.275,66.305,66.335,66.365,66.395,66.425,66.455,66.485,66.515,66.545,66.575,66.605,66.635,66.665,66.695,66.725,66.755,66.785,66.815,66.845,66.875,66.905,66.935,66.965,66.995,67.025,67.055,67.085,67.115,67.145,67.175,67.205,67.235,67.265,67.295,67.325,67.355,67.385,67.415,67.445,67.475,67.505,67.535,67.565,67.595,67.625,67.655,67.685,67.715,67.745,67.775,67.805,67.835,67.865,67.895,67.925,67.955,67.985,68.015,68.045,68.075,68.105,68.135,68.165,68.195,68.225,68.255,68.285,68.315,68.345,68.375,68.405,68.435,68.465,68.495,68.525,68.555,68.585,68.615,68.645,68.675,68.705,68.735,68.765,68.795,68.825,68.855,68.885,68.915,68.945,68.975,69.005,69.035,69.065,69.095,69.125,69.155,69.185,69.215,69.245,69.275,69.305,69.335,69.365,69.395,69.425,69.455,69.485,69.515,69.545,69.575,69.605,69.635,69.665,69.695,69.725,69.755,69.785,69.815,69.845,69.875,69.905,69.935,69.965,69.995,70.025,70.055,70.085,70.115,70.145,70.175,70.205,70.235,70.265,70.295,70.325,70.355,70.385,70.415,70.445,70.475,70.505,70.535,70.565,70.595,70.625,70.655,70.685,70.715,70.745,70.775,70.805,70.835,70.865,70.895,70.925,70.955,70.985,71.015,71.045,71.075,71.105,71.135,71.165,71.195,71.225,71.255,71.285,71.315,71.345,71.375,71.405,71.435,71.465,71.495,71.525,71.555,71.585,71.615,71.645,71.675,71.705,71.735,71.765,71.795,71.825,71.855,71.885,71.915,71.945,71.975,72.005,72.035,72.065,72.095,72.125,72.155,72.185,72.215,72.245,72.275,72.305,72.335,72.365,72.395,72.425,72.455,72.485,72.515,72.545,72.575,72.605,72.635,72.665,72.695,72.725,72.755,72.785,72.815,72.845,72.875,72.905,72.935,72.965,72.995,73.025,73.055,73.085,73.115,73.145,73.175,73.205,73.235,73.265,73.295,73.325,73.355,73.385,73.415,73.445,73.475,73.505,73.535,73.565,73.595,73.625,73.655,73.685,73.715,73.745,73.775,73.805,73.835,73.865,73.895,73.925,73.955,73.985,74.015,74.045,74.075,74.105,74.135,74.165,74.195,74.225,74.255,74.285,74.315,74.345,74.375,74.405,74.435,74.465,74.495,74.525,74.555,74.585,74.615,74.645,74.675,74.705,74.735,74.765,74.795,74.825,74.855,74.885,74.915,74.945,74.975,75.005,75.035,75.065,75.095,75.125,75.155,75.185,75.215,75.245,75.275,75.305,75.335,75.365,75.395,75.425,75.455,75.485,75.515,75.545,75.575,75.605,75.635,75.665,75.695,75.725,75.755,75.785,75.815,75.845,75.875,75.905,75.935,75.965,75.995,76.025,76.055,76.085,76.115,76.145,76.175,76.205,76.235,76.265,76.295,76.325,76.355,76.385,76.415,76.445,76.475,76.505,76.535,76.565,76.595,76.625,76.655,76.685,76.715,76.745,76.775,76.805,76.835,76.865,76.895,76.925,76.955,76.985,77.015,77.045,77.075,77.105,77.135,77.165,77.195,77.225,77.255,77.285,77.315,77.345,77.375,77.405,77.435,77.465,77.495,77.525,77.555,77.585,77.615,77.645,77.675,77.705,77.735,77.765,77.795,77.825,77.855,77.885,77.915,77.945,77.975,78.005,78.035,78.065,78.095,78.125,78.155,78.185,78.215,78.245,78.275,78.305,78.335,78.365,78.395,78.425,78.455,78.485,78.515,78.545,78.575,78.605,78.635,78.665,78.695,78.725,78.755,78.785,78.815,78.845,78.875,78.905,78.935,78.965,78.995,79.025,79.055,79.085,79.115,79.145,79.175,79.205,79.235,79.265,79.295,79.325,79.355,79.385,79.415,79.445,79.475,79.505,79.535,79.565,79.595,79.625,79.655,79.685,79.715,79.745,79.775,79.805,79.835,79.865,79.895,79.925,79.955,79.985,80.015,80.045,80.075,80.105,80.135,80.165,80.195,80.225,80.255,80.285,80.315,80.345,80.375,80.405,80.435,80.465,80.495,80.525,80.555,80.585,80.615,80.645,80.675,80.705,80.735,80.765,80.795,80.825,80.855,80.885,80.915,80.945,80.975,81.005,81.035,81.065,81.095,81.125,81.155,81.185,81.215,81.245,81.275,81.305,81.335,81.365,81.395,81.425,81.455,81.485,81.515,81.545,81.575,81.605,81.635,81.665,81.695,81.725,81.755,81.785,81.815,81.845,81.875,81.905,81.935,81.965,81.995,82.025,82.055,82.085,82.115,82.145,82.175,82.205,82.235,82.265,82.295,82.325,82.355,82.385,82.415,82.445,82.475,82.505,82.535,82.565,82.595,82.625,82.655,82.685,82.715,82.745,82.775,82.805,82.835,82.865,82.895,82.925,82.955,82.985,83.015,83.045,83.075,83.105,83.135,83.165,83.195,83.225,83.255,83.285,83.315,83.345,83.375,83.405,83.435,83.465,83.495,83.525,83.555,83.585,83.615,83.645,83.675,83.705,83.735,83.765,83.795,83.825,83.855,83.885,83.915,83.945,83.975,84.005,84.035,84.065,84.095,84.125,84.155,84.185,84.215,84.245,84.275,84.305,84.335,84.365,84.395,84.425,84.455,84.485,84.515,84.545,84.575,84.605,84.635,84.665,84.695,84.725,84.755,84.785,84.815,84.845,84.875,84.905,84.935,84.965,84.995,85.025,85.055,85.085,85.115,85.145,85.175,85.205,85.235,85.265,85.295,85.325,85.355,85.385,85.415,85.445,85.475,85.505,85.535,85.565,85.595,85.625,85.655,85.685,85.715,85.745,85.775,85.805,85.835,85.865,85.895,85.925,85.955,85.985,86.015,86.045,86.075,86.105,86.135,86.165,86.195,86.225,86.255,86.285,86.315,86.345,86.375,86.405,86.435,86.465,86.495,86.525,86.555,86.585,86.615,86.645,86.675,86.705,86.735,86.765,86.795,86.825,86.855,86.885,86.915,86.945,86.975,87.005,87.035,87.065,87.095,87.125,87.155,87.185,87.215,87.245,87.275,87.305,87.335,87.365,87.395,87.425,87.455,87.485,87.515,87.545,87.575,87.605,87.635,87.665,87.695,87.725,87.755,87.785,87.815,87.845,87.875,87.905,87.935,87.965,87.995,88.025,88.055,88.085,88.115,88.145,88.175,88.205,88.235,88.265,88.295,88.325,88.355,88.385,88.415,88.445,88.475,88.505,88.535,88.565,88.595,88.625,88.655,88.685,88.715,88.745,88.775,88.805,88.835,88.865,88.895,88.925,88.955,88.985,89.015,89.045,89.075,89.105,89.135,89.165,89.195,89.225,89.255,89.285,89.315,89.345,89.375,89.405,89.435,89.465,89.495,89.525,89.555,89.585,89.615,89.645,89.675,89.705,89.735,89.765,89.795,89.825,89.855,89.885,89.915,89.945,89.975,90.005,90.035,90.065,90.095,90.125,90.155,90.185,90.215,90.245,90.275,90.305,90.335,90.365,90.395,90.425,90.455,90.485,90.515,90.545,90.575,90.605,90.635,90.665,90.695,90.725,90.755,90.785,90.815,90.845,90.875,90.905,90.935,90.965,90.995,91.025,91.055,91.085,91.115,91.145,91.175,91.205,91.235,91.265,91.295,91.325,91.355,91.385,91.415,91.445,91.475,91.505,91.535,91.565,91.595,91.625,91.655,91.685,91.715,91.745,91.775,91.805,91.835,91.865,91.895,91.925,91.955,91.985,92.015,92.045,92.075,92.105,92.135,92.165,92.195,92.225,92.255,92.285,92.315,92.345,92.375,92.405,92.435,92.465,92.495,92.525,92.555,92.585,92.615,92.645,92.675,92.705,92.735,92.765,92.795,92.825,92.855,92.885,92.915,92.945,92.975,93.005,93.035,93.065,93.095,93.125,93.155,93.185,93.215,93.245,93.275,93.305,93.335,93.365,93.395,93.425,93.455,93.485,93.515,93.545,93.575,93.605,93.635,93.665,93.695,93.725,93.755,93.785,93.815,93.845,93.875,93.905,93.935,93.965,93.995,94.025,94.055,94.085,94.115,94.145,94.175,94.205,94.235,94.265,94.295,94.325,94.355,94.385,94.415,94.445,94.475,94.505,94.535,94.565,94.595,94.625,94.655,94.685,94.715,94.745,94.775,94.805,94.835,94.865,94.895,94.925,94.955,94.985,95.015,95.045,95.075,95.105,95.135,95.165,95.195,95.225,95.255,95.285,95.315,95.345,95.375,95.405,95.435,95.465,95.495,95.525,95.555,95.585,95.615,95.645,95.675,95.705,95.735,95.765,95.795,95.825,95.855,95.885,95.915,95.945,95.975,96.005,96.035,96.065,96.095,96.125,96.155,96.185,96.215,96.245,96.275,96.305,96.335,96.365,96.395,96.425,96.455,96.485,96.515,96.545,96.575,96.605,96.635,96.665,96.695,96.725,96.755,96.785,96.815,96.845,96.875,96.905,96.935,96.965,96.995,97.025,97.055,97.085,97.115,97.145,97.175,97.205,97.235,97.265,97.295,97.325,97.355,97.385,97.415,97.445,97.475,97.505,97.535,97.565,97.595,97.625,97.655,97.685,97.715,97.745,97.775,97.805,97.835,97.865,97.895,97.925,97.955,97.985,98.015,98.045,98.075,98.105,98.135,98.165,98.195,98.225,98.255,98.285,98.315,98.345,98.375,98.405,98.435,98.465,98.495,98.525,98.555,98.585,98.615,98.645,98.675,98.705,98.735,98.765,98.795,98.825,98.855,98.885,98.915,98.945,98.975,99.005,99.035,99.065,99.095,99.125,99.155,99.185,99.215,99.245,99.275,99.305,99.335,99.365,99.395,99.425,99.455,99.485,99.515,99.545,99.575,99.605,99.635,99.665,99.695,99.725,99.755,99.785,99.815,99.845,99.875,99.905,99.935,99.965,99.995,100.025,100.055,100.085,100.115,100.145,100.175,100.205,100.235,100.265,100.295,100.325,100.355,100.385,100.415,100.445,100.475,100.505,100.535,100.565,100.595,100.625,100.655,100.685,100.715,100.745,100.775,100.805,100.835,100.865,100.895,100.925,100.955,100.985,101.015,101.045,101.075,101.105,101.135,101.165,101.195,101.225,101.255,101.285,101.315,101.345,101.375,101.405,101.435,101.465,101.495,101.525,101.555,101.585,101.615,101.645,101.675,101.705,101.735,101.765,101.795,101.825,101.855,101.885,101.915,101.945,101.975,102.005,102.035,102.065,102.095,102.125,102.155,102.185,102.215,102.245,102.275,102.305,102.335,102.365,102.395,102.425,102.455,102.485,102.515,102.545,102.575,102.605,102.635,102.665,102.695,102.725,102.755,102.785,102.815,102.845,102.875,102.905,102.935,102.965,102.995,103.025,103.055,103.085,103.115,103.145,103.175,103.205,103.235,103.265,103.295,103.325,103.355,103.385,103.415,103.445,103.475,103.505,103.535,103.565,103.595,103.625,103.655,103.685,103.715,103.745,103.775,103.805,103.835,103.865,103.895,103.925,103.955,103.985,104.015,104.045,104.075,104.105,104.135,104.165,104.195,104.225,104.255,104.285,104.315,104.345,104.375,104.405,104.435,104.465,104.495,104.525,104.555,104.585,104.615,104.645,104.675,104.705,104.735,104.765,104.795,104.825,104.855,104.885,104.915,104.945,104.975,105.005,105.035,105.065,105.095,105.125,105.155,105.185,105.215,105.245,105.275,105.305,105.335,105.365,105.395,105.425,105.455,105.485,105.515,105.545,105.575,105.605,105.635,105.665,105.695,105.725,105.755,105.785,105.815,105.845,105.875,105.905,105.935,105.965,105.995,106.025,106.055,106.085,106.115,106.145,106.175,106.205,106.235,106.265,106.295,106.325,106.355,106.385,106.415,106.445,106.475,106.505,106.535,106.565,106.595,106.625,106.655,106.685,106.715,106.745,106.775,106.805,106.835,106.865,106.895,106.925,106.955,106.985,107.015,107.045,107.075,107.105,107.135,107.165,107.195,107.225,107.255,107.285,107.315,107.345,107.375,107.405,107.435,107.465,107.495,107.525,107.555,107.585,107.615,107.645,107.675,107.705,107.735,107.765,107.795,107.825,107.855,107.885,107.915,107.945,107.975,108.005,108.035,108.065,108.095,108.125,108.155,108.185,108.215,108.245,108.275,108.305,108.335,108.365,108.395,108.425,108.455,108.485,108.515,108.545,108.575,108.605,108.635,108.665,108.695,108.725,108.755,108.785,108.815,108.845,108.875,108.905,108.935,108.965,108.995,109.025,109.055,109.085,109.115,109.145,109.175,109.205,109.235,109.265,109.295,109.325,109.355,109.385,109.415,109.445,109.475,109.505,109.535,109.565,109.595,109.625,109.655,109.685,109.715,109.745,109.775,109.805,109.835,109.865,109.895,109.925,109.955,109.985,110.015,110.045,110.075,110.105,110.135,110.165,110.195,110.225,110.255,110.285,110.315,110.345,110.375,110.405,110.435,110.465,110.495,110.525,110.555,110.585,110.615,110.645,110.675,110.705,110.735,110.765,110.795,110.825,110.855,110.885,110.915,110.945,110.975,111.005,111.035,111.065,111.095,111.125,111.155,111.185,111.215,111.245,111.275,111.305,111.335,111.365,111.395,111.425,111.455,111.485,111.515,111.545,111.575,111.605,111.635,111.665,111.695,111.725,111.755,111.785,111.815,111.845,111.875,111.905,111.935,111.965,111.995,112.025,112.055,112.085,112.115,112.145,112.175,112.205,112.235,112.265,112.295,112.325,112.355,112.385,112.415,112.445,112.475,112.505,112.535,112.565,112.595,112.625,112.655,112.685,112.715,112.745,112.775,112.805,112.835,112.865,112.895,112.925,112.955,112.985,113.015,113.045,113.075,113.105,113.135,113.165,113.195,113.225,113.255,113.285,113.315,113.345,113.375,113.405,113.435,113.465,113.495,113.525,113.555,113.585,113.615,113.645,113.675,113.705,113.735,113.765,113.795,113.825,113.855,113.885,113.915,113.945,113.975,114.005,114.035,114.065,114.095,114.125,114.155,114.185,114.215,114.245,114.275,114.305,114.335,114.365,114.395,114.425,114.455,114.485,114.515,114.545,114.575,114.605,114.635,114.665,114.695,114.725,114.755,114.785,114.815,114.845,114.875,114.905,114.935,114.965,114.995,115.025,115.055,115.085,115.115,115.145,115.175,115.205,115.235,115.265,115.295,115.325,115.355,115.385,115.415,115.445,115.475,115.505,115.535,115.565,115.595,115.625,115.655,115.685,115.715,115.745,115.775,115.805,115.835,115.865,115.895,115.925,115.955,115.985,116.015,116.045,116.075,116.105,116.135,116.165,116.195,116.225,116.255,116.285,116.315,116.345,116.375,116.405,116.435,116.465,116.495,116.525,116.555,116.585,116.615,116.645,116.675,116.705,116.735,116.765,116.795,116.825,116.855,116.885,116.915,116.945,116.975,117.005,117.035,117.065,117.095,117.125,117.155,117.185,117.215,117.245,117.275,117.305,117.335,117.365,117.395,117.425,117.455,117.485,117.515,117.545,117.575,117.605,117.635,117.665,117.695,117.725,117.755,117.785,117.815,117.845,117.875,117.905,117.935,117.965,117.995,118.025,118.055,118.085,118.115,118.145,118.175,118.205,118.235,118.265,118.295,118.325,118.355,118.385,118.415,118.445,118.475,118.505,118.535,118.565,118.595,118.625,118.655,118.685,118.715,118.745,118.775,118.805,118.835,118.865,118.895,118.925,118.955,118.985,119.015,119.045,119.075,119.105,119.135,119.165,119.195,119.225,119.255,119.285,119.315,119.345,119.375,119.405,119.435,119.465,119.495,119.525,119.555,119.585,119.615,119.645,119.675,119.705,119.735,119.765,119.795,119.825,119.855,119.885,119.915,119.945,119.975,120.005,120.035,120.065,120.095,120.125,120.155,120.185,120.215,120.245,120.275,120.305,120.335,120.365,120.395,120.425,120.455,120.485,120.515,120.545,120.575,120.605,120.635,120.665,120.695,120.725,120.755,120.785,120.815,120.845,120.875,120.905,120.935,120.965,120.995,121.025,121.055,121.085,121.115,121.145,121.175,121.205,121.235,121.265,121.295,121.325,121.355,121.385,121.415,121.445,121.475,121.505,121.535,121.565,121.595,121.625,121.655,121.685,121.715,121.745,121.775,121.805,121.835,121.865,121.895,121.925,121.955,121.985,122.015,122.045,122.075,122.105,122.135,122.165,122.195,122.225,122.255,122.285,122.315,122.345,122.375,122.405,122.435,122.465,122.495,122.525,122.555,122.585,122.615,122.645,122.675,122.705,122.735,122.765,122.795,122.825,122.855,122.885,122.915,122.945,122.975,123.005,123.035,123.065,123.095,123.125,123.155,123.185,123.215,123.245,123.275,123.305,123.335,123.365,123.395,123.425,123.455,123.485,123.515,123.545,123.575,123.605,123.635,123.665,123.695,123.725,123.755,123.785,123.815,123.845,123.875,123.905,123.935,123.965,123.995,124.025,124.055,124.085,124.115,124.145,124.175,124.205,124.235,124.265,124.295,124.325,124.355,124.385,124.415,124.445,124.475,124.505,124.535,124.565,124.595,124.625,124.655,124.685,124.715,124.745,124.775,124.805,124.835,124.865,124.895,124.925,124.955,124.985,125.015,125.045,125.075,125.105,125.135,125.165,125.195,125.225,125.255,125.285,125.315,125.345,125.375,125.405,125.435,125.465,125.495,125.525,125.555,125.585,125.615,125.645,125.675,125.705,125.735,125.765,125.795,125.825,125.855,125.885,125.915,125.945,125.975,126.005,126.035,126.065,126.095,126.125,126.155,126.185,126.215,126.245,126.275,126.305,126.335,126.365,126.395,126.425,126.455,126.485,126.515,126.545,126.575,126.605,126.635,126.665,126.695,126.725,126.755,126.785,126.815,126.845,126.875,126.905,126.935,126.965,126.995,127.025,127.055,127.085,127.115,127.145,127.175,127.205,127.235,127.265,127.295,127.325,127.355,127.385,127.415,127.445,127.475,127.505,127.535,127.565,127.595,127.625,127.655,127.685,127.715,127.745,127.775,127.805,127.835,127.865,127.895,127.925,127.955,127.985,128.015,128.045,128.075,128.105,128.135,128.165,128.195,128.225,128.255,128.285,128.315,128.345,128.375,128.405,128.435,128.465,128.495,128.525,128.555,128.585,128.615,128.645,128.675,128.705,128.735,128.765,128.795,128.825,128.855,128.885,128.915,128.945,128.975,129.005,129.035,129.065,129.095,129.125,129.155,129.185,129.215,129.245,129.275,129.305,129.335,129.365,129.395,129.425,129.455,129.485,129.515,129.545,129.575,129.605,129.635,129.665,129.695,129.725,129.755,129.785,129.815,129.845,129.875,129.905,129.935,129.965,129.995,130.025,130.055,130.085,130.115,130.145,130.175,130.205,130.235,130.265,130.295,130.325,130.355,130.385,130.415,130.445,130.475,130.505,130.535,130.565,130.595,130.625,130.655,130.685,130.715,130.745,130.775,130.805,130.835,130.865,130.895,130.925,130.955,130.985,131.015,131.045,131.075,131.105,131.135,131.165,131.195,131.225,131.255,131.285,131.315,131.345,131.375,131.405,131.435,131.465,131.495,131.525,131.555,131.585,131.615,131.645,131.675,131.705,131.735,131.765,131.795,131.825,131.855,131.885,131.915,131.945,131.975,132.005,132.035,132.065,132.095,132.125,132.155,132.185,132.215,132.245,132.275,132.305,132.335,132.365,132.395,132.425,132.455,132.485,132.515,132.545,132.575,132.605,132.635,132.665,132.695,132.725,132.755,132.785,132.815,132.845,132.875,132.905,132.935,132.965,132.995,133.025,133.055,133.085,133.115,133.145,133.175,133.205,133.235,133.265,133.295,133.325,133.355,133.385,133.415,133.445,133.475,133.505,133.535,133.565,133.595,133.625,133.655,133.685,133.715,133.745,133.775,133.805,133.835,133.865,133.895,133.925,133.955,133.985,134.015,134.045,134.075,134.105,134.135,134.165,134.195,134.225,134.255,134.285,134.315,134.345,134.375,134.405,134.435,134.465,134.495,134.525,134.555,134.585,134.615,134.645,134.675,134.705,134.735,134.765,134.795,134.825,134.855,134.885,134.915,134.945,134.975,135.005,135.035,135.065,135.095,135.125,135.155,135.185,135.215,135.245,135.275,135.305,135.335,135.365,135.395,135.425,135.455,135.485,135.515,135.545,135.575,135.605,135.635,135.665,135.695,135.725,135.755,135.785,135.815,135.845,135.875,135.905,135.935,135.965,135.995,136.025,136.055,136.085,136.115,136.145,136.175,136.205,136.235,136.265,136.295,136.325,136.355,136.385,136.415,136.445,136.475,136.505,136.535,136.565,136.595,136.625,136.655,136.685,136.715,136.745,136.775,136.805,136.835,136.865,136.895,136.925,136.955,136.985,137.015,137.045,137.075,137.105,137.135,137.165,137.195,137.225,137.255,137.285,137.315,137.345,137.375,137.405,137.435,137.465,137.495,137.525,137.555,137.585,137.615,137.645,137.675,137.705,137.735,137.765,137.795,137.825,137.855,137.885,137.915,137.945,137.975,138.005,138.035,138.065,138.095,138.125,138.155,138.185,138.215,138.245,138.275,138.305,138.335,138.365,138.395,138.425,138.455,138.485,138.515,138.545,138.575,138.605,138.635,138.665,138.695,138.725,138.755,138.785,138.815,138.845,138.875,138.905,138.935,138.965,138.995,139.025,139.055,139.085,139.115,139.145,139.175,139.205,139.235,139.265,139.295,139.325,139.355,139.385,139.415,139.445,139.475,139.505,139.535,139.565,139.595,139.625,139.655,139.685,139.715,139.745,139.775,139.805,139.835,139.865,139.895,139.925,139.955,139.985,140.015,140.045,140.075,140.105,140.135,140.165,140.195,140.225,140.255,140.285,140.315,140.345,140.375,140.405,140.435,140.465,140.495,140.525,140.555,140.585,140.615,140.645,140.675,140.705,140.735,140.765,140.795,140.825,140.855,140.885,140.915,140.945,140.975,141.005,141.035,141.065,141.095,141.125,141.155,141.185,141.215,141.245,141.275,141.305,141.335,141.365,141.395,141.425,141.455,141.485,141.515,141.545,141.575,141.605,141.635,141.665,141.695,141.725,141.755,141.785,141.815,141.845,141.875,141.905,141.935,141.965,141.995,142.025,142.055,142.085,142.115,142.145,142.175,142.205,142.235,142.265,142.295,142.325,142.355,142.385,142.415,142.445,142.475,142.505,142.535,142.565,142.595,142.625,142.655,142.685,142.715,142.745,142.775,142.805,142.835,142.865,142.895,142.925,142.955,142.985,143.015,143.045,143.075,143.105,143.135,143.165,143.195,143.225,143.255,143.285,143.315,143.345,143.375,143.405,143.435,143.465,143.495,143.525,143.555,143.585,143.615,143.645,143.675,143.705,143.735,143.765,143.795,143.825,143.855,143.885,143.915,143.945,143.975,144.005,144.035,144.065,144.095,144.125,144.155,144.185,144.215,144.245,144.275,144.305,144.335,144.365,144.395,144.425,144.455,144.485,144.515,144.545,144.575,144.605,144.635,144.665,144.695,144.725,144.755,144.785,144.815,144.845,144.875,144.905,144.935,144.965,144.995,145.025,145.055,145.085,145.115,145.145,145.175,145.205,145.235,145.265,145.295,145.325,145.355,145.385,145.415,145.445,145.475,145.505,145.535,145.565,145.595,145.625,145.655,145.685,145.715,145.745,145.775,145.805,145.835,145.865,145.895,145.925,145.955,145.985,146.015,146.045,146.075,146.105,146.135,146.165,146.195,146.225,146.255,146.285,146.315,146.345,146.375,146.405,146.435,146.465,146.495,146.525,146.555,146.585,146.615,146.645,146.675,146.705,146.735,146.765,146.795,146.825,146.855,146.885,146.915,146.945,146.975,147.005,147.035,147.065,147.095,147.125,147.155,147.185,147.215,147.245,147.275,147.305,147.335,147.365,147.395,147.425,147.455,147.485,147.515,147.545,147.575,147.605,147.635,147.665,147.695,147.725,147.755,147.785,147.815,147.845,147.875,147.905,147.935,147.965,147.995,148.025,148.055,148.085,148.115,148.145,148.175,148.205,148.235,148.265,148.295,148.325,148.355,148.385,148.415,148.445,148.475,148.505,148.535,148.565,148.595,148.625,148.655,148.685,148.715,148.745,148.775,148.805,148.835,148.865,148.895,148.925,148.955,148.985,149.015,149.045,149.075,149.105,149.135,149.165,149.195,149.225,149.255,149.285,149.315,149.345,149.375,149.405,149.435,149.465,149.495,149.525,149.555,149.585,149.615,149.645,149.675,149.705,149.735,149.765,149.795,149.825,149.855,149.885,149.915,149.945,149.975,150.005,150.035,150.065,150.095,150.125,150.155,150.185,150.215,150.245,150.275,150.305,150.335,150.365,150.395,150.425,150.455,150.485,150.515,150.545,150.575,150.605,150.635,150.665,150.695,150.725,150.755,150.785,150.815,150.845,150.875,150.905,150.935,150.965,150.995,151.025,151.055,151.085,151.115,151.145,151.175,151.205,151.235,151.265,151.295,151.325,151.355,151.385,151.415,151.445,151.475,151.505,151.535,151.565,151.595,151.625,151.655,151.685,151.715,151.745,151.775,151.805,151.835,151.865,151.895,151.925,151.955,151.985,152.015,152.045,152.075,152.105,152.135,152.165,152.195,152.225,152.255,152.285,152.315,152.345,152.375,152.405,152.435,152.465,152.495,152.525,152.555,152.585,152.615,152.645,152.675,152.705,152.735,152.765,152.795,152.825,152.855,152.885,152.915,152.945,152.975,153.005,153.035,153.065,153.095,153.125,153.155,153.185,153.215,153.245,153.275,153.305,153.335,153.365,153.395,153.425,153.455,153.485,153.515,153.545,153.575,153.605,153.635,153.665,153.695,153.725,153.755,153.785,153.815,153.845,153.875,153.905,153.935,153.965,153.995,154.025,154.055,154.085,154.115,154.145,154.175,154.205,154.235,154.265,154.295,154.325,154.355,154.385,154.415,154.445,154.475,154.505,154.535,154.565,154.595,154.625,154.655,154.685,154.715,154.745,154.775,154.805,154.835,154.865,154.895,154.925,154.955,154.985,155.015,155.045,155.075,155.105,155.135,155.165,155.195,155.225,155.255,155.285,155.315,155.345,155.375,155.405,155.435,155.465,155.495,155.525,155.555,155.585,155.615,155.645,155.675,155.705,155.735,155.765,155.795,155.825,155.855,155.885,155.915,155.945,155.975,156.005,156.035,156.065,156.095,156.125,156.155,156.185,156.215,156.245,156.275,156.305,156.335,156.365,156.395,156.425,156.455,156.485,156.515,156.545,156.575,156.605,156.635,156.665,156.695,156.725,156.755,156.785,156.815,156.845,156.875,156.905,156.935,156.965,156.995,157.025,157.055,157.085,157.115,157.145,157.175,157.205,157.235,157.265,157.295,157.325,157.355,157.385,157.415,157.445,157.475,157.505,157.535,157.565,157.595,157.625,157.655,157.685,157.715,157.745,157.775,157.805,157.835,157.865,157.895,157.925,157.955,157.985,158.015,158.045,158.075,158.105,158.135,158.165,158.195,158.225,158.255,158.285,158.315,158.345,158.375,158.405,158.435,158.465,158.495,158.525,158.555,158.585,158.615,158.645,158.675,158.705,158.735,158.765,158.795,158.825,158.855,158.885,158.915,158.945,158.975,159.005,159.035,159.065,159.095,159.125,159.155,159.185,159.215,159.245,159.275,159.305,159.335,159.365,159.395,159.425,159.455,159.485,159.515,159.545,159.575,159.605,159.635,159.665,159.695,159.725,159.755,159.785,159.815,159.845,159.875,159.905,159.935,159.965,159.995,160.025,160.055,160.085,160.115,160.145,160.175,160.205,160.235,160.265,160.295,160.325,160.355,160.385,160.415,160.445,160.475,160.505,160.535,160.565,160.595,160.625,160.655,160.685,160.715,160.745,160.775,160.805,160.835,160.865,160.895,160.925,160.955,160.985,161.015,161.045,161.075,161.105,161.135,161.165,161.195,161.225,161.255,161.285,161.315,161.345,161.375,161.405,161.435,161.465,161.495,161.525,161.555,161.585,161.615,161.645,161.675,161.705,161.735,161.765,161.795,161.825,161.855,161.885,161.915,161.945,161.975,162.005,162.035,162.065,162.095,162.125,162.155,162.185,162.215,162.245,162.275,162.305,162.335,162.365,162.395,162.425,162.455,162.485,162.515,162.545,162.575,162.605,162.635,162.665,162.695,162.725,162.755,162.785,162.815,162.845,162.875,162.905,162.935,162.965,162.995,163.025,163.055,163.085,163.115,163.145,163.175,163.205,163.235,163.265,163.295,163.325,163.355,163.385,163.415,163.445,163.475,163.505,163.535,163.565,163.595,163.625,163.655,163.685,163.715,163.745,163.775,163.805,163.835,163.865,163.895,163.925,163.955,163.985,164.015,164.045,164.075,164.105,164.135,164.165,164.195,164.225,164.255,164.285,164.315,164.345,164.375,164.405,164.435,164.465,164.495,164.525,164.555,164.585,164.615,164.645,164.675,164.705,164.735,164.765,164.795,164.825,164.855,164.885,164.915,164.945,164.975,165.005,165.035,165.065,165.095,165.125,165.155,165.185,165.215,165.245,165.275,165.305,165.335,165.365,165.395,165.425,165.455,165.485,165.515,165.545,165.575,165.605,165.635,165.665,165.695,165.725,165.755,165.785,165.815,165.845,165.875,165.905,165.935,165.965,165.995,166.025,166.055,166.085,166.115,166.145,166.175,166.205,166.235,166.265,166.295,166.325,166.355,166.385,166.415,166.445,166.475,166.505,166.535,166.565,166.595,166.625,166.655,166.685,166.715,166.745,166.775,166.805,166.835,166.865,166.895,166.925,166.955,166.985,167.015,167.045,167.075,167.105,167.135,167.165,167.195,167.225,167.255,167.285,167.315,167.345,167.375,167.405,167.435,167.465,167.495,167.525,167.555,167.585,167.615,167.645,167.675,167.705,167.735,167.765,167.795,167.825,167.855,167.885,167.915,167.945,167.975,168.005,168.035,168.065,168.095,168.125,168.155,168.185,168.215,168.245,168.275,168.305,168.335,168.365,168.395,168.425,168.455,168.485,168.515,168.545,168.575,168.605,168.635,168.665,168.695,168.725,168.755,168.785,168.815,168.845,168.875,168.905,168.935,168.965,168.995,169.025,169.055,169.085,169.115,169.145,169.175,169.205,169.235,169.265,169.295,169.325,169.355,169.385,169.415,169.445,169.475,169.505,169.535,169.565,169.595,169.625,169.655,169.685,169.715,169.745,169.775,169.805,169.835,169.865,169.895,169.925,169.955,169.985,170.015,170.045,170.075,170.105,170.135,170.165,170.195,170.225,170.255,170.285,170.315,170.345,170.375,170.405,170.435,170.465,170.495,170.525,170.555,170.585,170.615,170.645,170.675,170.705,170.735,170.765,170.795,170.825,170.855,170.885,170.915,170.945,170.975,171.005,171.035,171.065,171.095,171.125,171.155,171.185,171.215,171.245,171.275,171.305,171.335,171.365,171.395,171.425,171.455,171.485,171.515,171.545,171.575,171.605,171.635,171.665,171.695,171.725,171.755,171.785,171.815,171.845,171.875,171.905,171.935,171.965,171.995,172.025,172.055,172.085,172.115,172.145,172.175,172.205,172.235,172.265,172.295,172.325,172.355,172.385,172.415,172.445,172.475,172.505,172.535,172.565,172.595,172.625,172.655,172.685,172.715,172.745,172.775,172.805,172.835,172.865,172.895,172.925,172.955,172.985,173.015,173.045,173.075,173.105,173.135,173.165,173.195,173.225,173.255,173.285,173.315,173.345,173.375,173.405,173.435,173.465,173.495,173.525,173.555,173.585,173.615,173.645,173.675,173.705,173.735,173.765,173.795,173.825,173.855,173.885,173.915,173.945,173.975,174.005,174.035,174.065,174.095,174.125,174.155,174.185,174.215,174.245,174.275,174.305,174.335,174.365,174.395,174.425,174.455,174.485,174.515,174.545,174.575,174.605,174.635,174.665,174.695,174.725,174.755,174.785,174.815,174.845,174.875,174.905,174.935,174.965,174.995,175.025,175.055,175.085,175.115,175.145,175.175,175.205,175.235,175.265,175.295,175.325,175.355,175.385,175.415,175.445,175.475,175.505,175.535,175.565,175.595,175.625,175.655,175.685,175.715,175.745,175.775,175.805,175.835,175.865,175.895,175.925,175.955,175.985,176.015,176.045,176.075,176.105,176.135,176.165,176.195,176.225,176.255,176.285,176.315,176.345,176.375,176.405,176.435,176.465,176.495,176.525,176.555,176.585,176.615,176.645,176.675,176.705,176.735,176.765,176.795,176.825,176.855,176.885,176.915,176.945,176.975,177.005,177.035,177.065,177.095,177.125,177.155,177.185,177.215,177.245,177.275,177.305,177.335,177.365,177.395,177.425,177.455,177.485,177.515,177.545,177.575,177.605,177.635,177.665,177.695,177.725,177.755,177.785,177.815,177.845,177.875,177.905,177.935,177.965,177.995,178.025,178.055,178.085,178.115,178.145,178.175,178.205,178.235,178.265,178.295,178.325,178.355,178.385,178.415,178.445,178.475,178.505,178.535,178.565,178.595,178.625,178.655,178.685,178.715,178.745,178.775,178.805,178.835,178.865,178.895,178.925,178.955,178.985,179.015,179.045,179.075,179.105,179.135,179.165,179.195,179.225,179.255,179.285,179.315,179.345,179.375,179.405,179.435,179.465,179.495,179.525,179.555,179.585,179.615,179.645,179.675,179.705,179.735,179.765,179.795,179.825,179.855,179.885,179.915,179.945,179.975,180.005,180.035,180.065,180.095,180.125,180.155,180.185,180.215,180.245,180.275,180.305,180.335,180.365,180.395,180.425,180.455,180.485,180.515,180.545,180.575,180.605,180.635,180.665,180.695,180.725,180.755,180.785,180.815,180.845,180.875,180.905,180.935,180.965,180.995,181.025,181.055,181.085,181.115,181.145,181.175,181.205,181.235,181.265,181.295,181.325,181.355,181.385,181.415,181.445,181.475,181.505,181.535,181.565,181.595,181.625,181.655,181.685,181.715,181.745,181.775,181.805,181.835,181.865,181.895,181.925,181.955,181.985,182.015,182.045,182.075,182.105,182.135,182.165,182.195,182.225,182.255,182.285,182.315,182.345,182.375,182.405,182.435,182.465,182.495,182.525,182.555,182.585,182.615,182.645,182.675,182.705,182.735,182.765,182.795,182.825,182.855,182.885,182.915,182.945,182.975,183.005,183.035,183.065,183.095,183.125,183.155,183.185,183.215,183.245,183.275,183.305,183.335,183.365,183.395,183.425,183.455,183.485,183.515,183.545,183.575,183.605,183.635,183.665,183.695,183.725,183.755,183.785,183.815,183.845,183.875,183.905,183.935,183.965,183.995,184.025,184.055,184.085,184.115,184.145,184.175,184.205,184.235,184.265,184.295,184.325,184.355,184.385,184.415,184.445,184.475,184.505,184.535,184.565,184.595,184.625,184.655,184.685,184.715,184.745,184.775,184.805,184.835,184.865,184.895,184.925,184.955,184.985,185.015,185.045,185.075,185.105,185.135,185.165,185.195,185.225,185.255,185.285,185.315,185.345,185.375,185.405,185.435,185.465,185.495,185.525,185.555,185.585,185.615,185.645,185.675,185.705,185.735,185.765,185.795,185.825,185.855,185.885,185.915,185.945,185.975,186.005,186.035,186.065,186.095,186.125,186.155,186.185,186.215,186.245,186.275,186.305,186.335,186.365,186.395,186.425,186.455,186.485,186.515,186.545,186.575,186.605,186.635,186.665,186.695,186.725,186.755,186.785,186.815,186.845,186.875,186.905,186.935,186.965,186.995,187.025,187.055,187.085,187.115,187.145,187.175,187.205,187.235,187.265,187.295,187.325,187.355,187.385,187.415,187.445,187.475,187.505,187.535,187.565,187.595,187.625,187.655,187.685,187.715,187.745,187.775,187.805,187.835,187.865,187.895,187.925,187.955,187.985,188.015,188.045,188.075,188.105,188.135,188.165,188.195,188.225,188.255,188.285,188.315,188.345,188.375,188.405,188.435,188.465,188.495,188.525,188.555,188.585,188.615,188.645,188.675,188.705,188.735,188.765,188.795,188.825,188.855,188.885,188.915,188.945,188.975,189.005,189.035,189.065,189.095,189.125,189.155,189.185,189.215,189.245,189.275,189.305,189.335,189.365,189.395,189.425,189.455,189.485,189.515,189.545,189.575,189.605,189.635,189.665,189.695,189.725,189.755,189.785,189.815,189.845,189.875,189.905,189.935,189.965,189.995,190.025,190.055,190.085,190.115,190.145,190.175,190.205,190.235,190.265,190.295,190.325,190.355,190.385,190.415,190.445,190.475,190.505,190.535,190.565,190.595,190.625,190.655,190.685,190.715,190.745,190.775,190.805,190.835,190.865,190.895,190.925,190.955,190.985,191.015,191.045,191.075,191.105,191.135,191.165,191.195,191.225,191.255,191.285,191.315,191.345,191.375,191.405,191.435,191.465,191.495,191.525,191.555,191.585,191.615,191.645,191.675,191.705,191.735,191.765,191.795,191.825,191.855,191.885,191.915,191.945,191.975,192.005,192.035,192.065,192.095,192.125,192.155,192.185,192.215,192.245,192.275,192.305,192.335,192.365,192.395,192.425,192.455,192.485,192.515,192.545,192.575,192.605,192.635,192.665,192.695,192.725,192.755,192.785,192.815,192.845,192.875,192.905,192.935,192.965,192.995,193.025,193.055,193.085,193.115,193.145,193.175,193.205,193.235,193.265,193.295,193.325,193.355,193.385,193.415,193.445,193.475,193.505,193.535,193.565,193.595,193.625,193.655,193.685,193.715,193.745,193.775,193.805,193.835,193.865,193.895,193.925,193.955,193.985,194.015,194.045,194.075,194.105,194.135,194.165,194.195,194.225,194.255,194.285,194.315,194.345,194.375,194.405,194.435,194.465,194.495,194.525,194.555,194.585,194.615,194.645,194.675,194.705,194.735,194.765,194.795,194.825,194.855,194.885,194.915,194.945,194.975,195.005,195.035,195.065,195.095,195.125,195.155,195.185,195.215,195.245,195.275,195.305,195.335,195.365,195.395,195.425,195.455,195.485,195.515,195.545,195.575,195.605,195.635,195.665,195.695,195.725,195.755,195.785,195.815,195.845,195.875,195.905,195.935,195.965,195.995,196.025,196.055,196.085,196.115,196.145,196.175,196.205,196.235,196.265,196.295,196.325,196.355,196.385,196.415,196.445,196.475,196.505,196.535,196.565,196.595,196.625,196.655,196.685,196.715,196.745,196.775,196.805,196.835,196.865,196.895,196.925,196.955,196.985,197.015,197.045,197.075,197.105,197.135,197.165,197.195,197.225,197.255,197.285,197.315,197.345,197.375,197.405,197.435,197.465,197.495,197.525,197.555,197.585,197.615,197.645,197.675,197.705,197.735,197.765,197.795,197.825,197.855,197.885,197.915,197.945,197.975,198.005,198.035,198.065,198.095,198.125,198.155,198.185,198.215,198.245,198.275,198.305,198.335,198.365,198.395,198.425,198.455,198.485,198.515,198.545,198.575,198.605,198.635,198.665,198.695,198.725,198.755,198.785,198.815,198.845,198.875,198.905,198.935,198.965,198.995,199.025,199.055,199.085,199.115,199.145,199.175,199.205,199.235,199.265,199.295,199.325,199.355,199.385,199.415,199.445,199.475,199.505,199.535,199.565,199.595,199.625,199.655,199.685,199.715,199.745,199.775,199.805,199.835,199.865,199.895,199.925,199.955,199.985,200.015,200.045,200.075,200.105,200.135,200.165,200.195,200.225,200.255,200.285,200.315,200.345,200.375,200.405,200.435,200.465,200.495,200.525,200.555,200.585,200.615,200.645,200.675,200.705,200.735,200.765,200.795,200.825,200.855,200.885,200.915,200.945,200.975,201.005,201.035,201.065,201.095,201.125,201.155,201.185,201.215,201.245,201.275,201.305,201.335,201.365,201.395,201.425,201.455,201.485,201.515,201.545,201.575,201.605,201.635,201.665,201.695,201.725,201.755,201.785,201.815,201.845,201.875,201.905,201.935,201.965,201.995,202.025,202.055,202.085,202.115,202.145,202.175,202.205,202.235,202.265,202.295,202.325,202.355,202.385,202.415,202.445,202.475,202.505,202.535,202.565,202.595,202.625,202.655,202.685,202.715,202.745,202.775,202.805,202.835,202.865,202.895,202.925,202.955,202.985,203.015,203.045,203.075,203.105,203.135,203.165,203.195,203.225,203.255,203.285,203.315,203.345,203.375,203.405,203.435,203.465,203.495,203.525,203.555,203.585,203.615,203.645,203.675,203.705,203.735,203.765,203.795,203.825,203.855,203.885,203.915,203.945,203.975,204.005,204.035,204.065,204.095,204.125,204.155,204.185,204.215,204.245,204.275,204.305,204.335,204.365,204.395,204.425,204.455,204.485,204.515,204.545,204.575,204.605,204.635,204.665,204.695,204.725,204.755,204.785,204.815,204.845,204.875,204.905,204.935,204.965,204.995,205.025,205.055,205.085,205.115,205.145,205.175,205.205,205.235,205.265,205.295,205.325,205.355,205.385,205.415,205.445,205.475,205.505,205.535,205.565,205.595,205.625,205.655,205.685,205.715,205.745,205.775,205.805,205.835,205.865,205.895,205.925,205.955,205.985,206.015,206.045,206.075,206.105,206.135,206.165,206.195,206.225,206.255,206.285,206.315,206.345,206.375,206.405,206.435,206.465,206.495,206.525,206.555,206.585,206.615,206.645,206.675,206.705,206.735,206.765,206.795,206.825,206.855,206.885,206.915,206.945,206.975,207.005,207.035,207.065,207.095,207.125,207.155,207.185,207.215,207.245,207.275,207.305,207.335,207.365,207.395,207.425,207.455,207.485,207.515,207.545,207.575,207.605,207.635,207.665,207.695,207.725,207.755,207.785,207.815,207.845,207.875,207.905,207.935,207.965,207.995,208.025,208.055,208.085,208.115,208.145,208.175,208.205,208.235,208.265,208.295,208.325,208.355,208.385,208.415,208.445,208.475,208.505,208.535,208.565,208.595,208.625,208.655,208.685,208.715,208.745,208.775,208.805,208.835,208.865,208.895,208.925,208.955,208.985,209.015,209.045,209.075,209.105,209.135,209.165,209.195,209.225,209.255,209.285,209.315,209.345,209.375,209.405,209.435,209.465,209.495,209.525,209.555,209.585,209.615,209.645,209.675,209.705,209.735,209.765,209.795,209.825,209.855,209.885,209.915,209.945,209.975,210.005,210.035,210.065,210.095,210.125,210.155,210.185,210.215,210.245,210.275,210.305,210.335,210.365,210.395,210.425,210.455,210.485,210.515,210.545,210.575,210.605,210.635,210.665,210.695,210.725,210.755,210.785,210.815,210.845,210.875,210.905,210.935,210.965,210.995,211.025,211.055,211.085,211.115,211.145,211.175,211.205,211.235,211.265,211.295,211.325,211.355,211.385,211.415,211.445,211.475,211.505,211.535,211.565,211.595,211.625,211.655,211.685,211.715,211.745,211.775,211.805,211.835,211.865,211.895,211.925,211.955,211.985,212.015,212.045,212.075,212.105,212.135,212.165,212.195,212.225,212.255,212.285,212.315,212.345,212.375,212.405,212.435,212.465,212.495,212.525,212.555,212.585,212.615,212.645,212.675,212.705,212.735,212.765,212.795,212.825,212.855,212.885,212.915,212.945,212.975,213.005,213.035,213.065,213.095,213.125,213.155,213.185,213.215,213.245,213.275,213.305,213.335,213.365,213.395,213.425,213.455,213.485,213.515,213.545,213.575,213.605,213.635,213.665,213.695,213.725,213.755,213.785,213.815,213.845,213.875,213.905,213.935,213.965,213.995,214.025,214.055,214.085,214.115,214.145,214.175,214.205,214.235,214.265,214.295,214.325,214.355,214.385,214.415,214.445,214.475,214.505,214.535,214.565,214.595,214.625,214.655,214.685,214.715,214.745,214.775,214.805,214.835,214.865,214.895,214.925,214.955,214.985,215.015,215.045,215.075,215.105,215.135,215.165,215.195,215.225,215.255,215.285,215.315,215.345,215.375,215.405,215.435,215.465,215.495,215.525,215.555,215.585,215.615,215.645,215.675,215.705,215.735,215.765,215.795,215.825,215.855,215.885,215.915,215.945,215.975,216.005,216.035,216.065,216.095,216.125,216.155,216.185,216.215,216.245,216.275,216.305,216.335,216.365,216.395,216.425,216.455,216.485,216.515,216.545,216.575,216.605,216.635,216.665,216.695,216.725,216.755,216.785,216.815,216.845,216.875,216.905,216.935,216.965,216.995,217.025,217.055,217.085,217.115,217.145,217.175,217.205,217.235,217.265,217.295,217.325,217.355,217.385,217.415,217.445,217.475,217.505,217.535,217.565,217.595,217.625,217.655,217.685,217.715,217.745,217.775,217.805,217.835,217.865,217.895,217.925,217.955,217.985,218.015,218.045,218.075,218.105,218.135,218.165,218.195,218.225,218.255,218.285,218.315,218.345,218.375,218.405,218.435,218.465,218.495,218.525,218.555,218.585,218.615,218.645,218.675,218.705,218.735,218.765,218.795,218.825,218.855,218.885,218.915,218.945,218.975,219.005,219.035,219.065,219.095,219.125,219.155,219.185,219.215,219.245,219.275,219.305,219.335,219.365,219.395,219.425,219.455,219.485,219.515,219.545,219.575,219.605,219.635,219.665,219.695,219.725,219.755,219.785,219.815,219.845,219.875,219.905,219.935,219.965,219.995,220.025,220.055,220.085,220.115,220.145,220.175,220.205,220.235,220.265,220.295,220.325,220.355,220.385,220.415,220.445,220.475,220.505,220.535,220.565,220.595,220.625,220.655,220.685,220.715,220.745,220.775,220.805,220.835,220.865,220.895,220.925,220.955,220.985,221.015,221.045,221.075,221.105,221.135,221.165,221.195,221.225,221.255,221.285,221.315,221.345,221.375,221.405,221.435,221.465,221.495,221.525,221.555,221.585,221.615,221.645,221.675,221.705,221.735,221.765,221.795,221.825,221.855,221.885,221.915,221.945,221.975,222.005,222.035,222.065,222.095,222.125,222.155,222.185,222.215,222.245,222.275,222.305,222.335,222.365,222.395,222.425,222.455,222.485,222.515,222.545,222.575,222.605,222.635,222.665,222.695,222.725,222.755,222.785,222.815,222.845,222.875,222.905,222.935,222.965,222.995,223.025,223.055,223.085,223.115,223.145,223.175,223.205,223.235,223.265,223.295,223.325,223.355,223.385,223.415,223.445,223.475,223.505,223.535,223.565,223.595,223.625,223.655,223.685,223.715,223.745,223.775,223.805,223.835,223.865,223.895,223.925,223.955,223.985,224.015,224.045,224.075,224.105,224.135,224.165,224.195,224.225,224.255,224.285,224.315,224.345,224.375,224.405,224.435,224.465,224.495,224.525,224.555,224.585,224.615,224.645,224.675,224.705,224.735,224.765,224.795,224.825,224.855,224.885,224.915,224.945,224.975,225.005,225.035,225.065,225.095,225.125,225.155,225.185,225.215,225.245,225.275,225.305,225.335,225.365,225.395,225.425,225.455,225.485,225.515,225.545,225.575,225.605,225.635,225.665,225.695,225.725,225.755,225.785,225.815,225.845,225.875,225.905,225.935,225.965,225.995,226.025,226.055,226.085,226.115,226.145,226.175,226.205,226.235,226.265,226.295,226.325,226.355,226.385,226.415,226.445,226.475,226.505,226.535,226.565,226.595,226.625,226.655,226.685,226.715,226.745,226.775,226.805,226.835,226.865,226.895,226.925,226.955,226.985,227.015,227.045,227.075,227.105,227.135,227.165,227.195,227.225,227.255,227.285,227.315,227.345,227.375,227.405,227.435,227.465,227.495,227.525,227.555,227.585,227.615,227.645,227.675,227.705,227.735,227.765,227.795,227.825,227.855,227.885,227.915,227.945,227.975,228.005,228.035,228.065,228.095,228.125,228.155,228.185,228.215,228.245,228.275,228.305,228.335,228.365,228.395,228.425,228.455,228.485,228.515,228.545,228.575,228.605,228.635,228.665,228.695,228.725,228.755,228.785,228.815,228.845,228.875,228.905,228.935,228.965,228.995,229.025,229.055,229.085,229.115,229.145,229.175,229.205,229.235,229.265,229.295,229.325,229.355,229.385,229.415,229.445,229.475,229.505,229.535,229.565,229.595,229.625,229.655,229.685,229.715,229.745,229.775,229.805,229.835,229.865,229.895,229.925,229.955,229.985,230.015,230.045,230.075,230.105,230.135,230.165,230.195,230.225,230.255,230.285,230.315,230.345,230.375,230.405,230.435,230.465,230.495,230.525,230.555,230.585,230.615,230.645,230.675,230.705,230.735,230.765,230.795,230.825,230.855,230.885,230.915,230.945,230.975,231.005,231.035,231.065,231.095,231.125,231.155,231.185,231.215,231.245,231.275,231.305,231.335,231.365,231.395,231.425,231.455,231.485,231.515,231.545,231.575,231.605,231.635,231.665,231.695,231.725,231.755,231.785,231.815,231.845,231.875,231.905,231.935,231.965,231.995,232.025,232.055,232.085,232.115,232.145,232.175,232.205,232.235,232.265,232.295,232.325,232.355,232.385,232.415,232.445,232.475,232.505,232.535,232.565,232.595,232.625,232.655,232.685,232.715,232.745,232.775,232.805,232.835,232.865,232.895,232.925,232.955,232.985,233.015,233.045,233.075,233.105,233.135,233.165,233.195,233.225,233.255,233.285,233.315,233.345,233.375,233.405,233.435,233.465,233.495,233.525,233.555,233.585,233.615,233.645,233.675,233.705,233.735,233.765,233.795,233.825,233.855,233.885,233.915,233.945,233.975,234.005,234.035,234.065,234.095,234.125,234.155,234.185,234.215,234.245,234.275,234.305,234.335,234.365,234.395,234.425,234.455,234.485,234.515,234.545,234.575,234.605,234.635,234.665,234.695,234.725,234.755,234.785,234.815,234.845,234.875,234.905,234.935,234.965,234.995,235.025,235.055,235.085,235.115,235.145,235.175,235.205,235.235,235.265,235.295,235.325,235.355,235.385,235.415,235.445,235.475,235.505,235.535,235.565,235.595,235.625,235.655,235.685,235.715,235.745,235.775,235.805,235.835,235.865,235.895,235.925,235.955,235.985,236.015,236.045,236.075,236.105,236.135,236.165,236.195,236.225,236.255,236.285,236.315,236.345,236.375,236.405,236.435,236.465,236.495,236.525,236.555,236.585,236.615,236.645,236.675,236.705,236.735,236.765,236.795,236.825,236.855,236.885,236.915,236.945,236.975,237.005,237.035,237.065,237.095,237.125,237.155,237.185,237.215,237.245,237.275,237.305,237.335,237.365,237.395,237.425,237.455,237.485,237.515,237.545,237.575,237.605,237.635,237.665,237.695,237.725,237.755,237.785,237.815,237.845,237.875,237.905,237.935,237.965,237.995,238.025,238.055,238.085,238.115,238.145,238.175,238.205,238.235,238.265,238.295,238.325,238.355,238.385,238.415,238.445,238.475,238.505,238.535,238.565,238.595,238.625,238.655,238.685,238.715,238.745,238.775,238.805,238.835,238.865,238.895,238.925,238.955,238.985,239.015,239.045,239.075,239.105,239.135,239.165,239.195,239.225,239.255,239.285,239.315,239.345,239.375,239.405,239.435,239.465,239.495,239.525,239.555,239.585,239.615,239.645,239.675,239.705,239.735,239.765,239.795,239.825,239.855,239.885,239.915,239.945,239.975,240.005,240.035,240.065,240.095,240.125,240.155,240.185,240.215,240.245,240.275,240.305,240.335,240.365,240.395,240.425,240.455,240.485,240.515,240.545,240.575,240.605,240.635,240.665,240.695,240.725,240.755,240.785,240.815,240.845,240.875,240.905,240.935,240.965,240.995,241.025,241.055,241.085,241.115,241.145,241.175,241.205,241.235,241.265,241.295,241.325,241.355,241.385,241.415,241.445,241.475,241.505,241.535,241.565,241.595,241.625,241.655,241.685,241.715,241.745,241.775,241.805,241.835,241.865,241.895,241.925,241.955,241.985,242.015,242.045,242.075,242.105,242.135,242.165,242.195,242.225,242.255,242.285,242.315,242.345,242.375,242.405,242.435,242.465,242.495,242.525,242.555,242.585,242.615,242.645,242.675,242.705,242.735,242.765,242.795,242.825,242.855,242.885,242.915,242.945,242.975,243.005,243.035,243.065,243.095,243.125,243.155,243.185,243.215,243.245,243.275,243.305,243.335,243.365,243.395,243.425,243.455,243.485,243.515,243.545,243.575,243.605,243.635,243.665,243.695,243.725,243.755,243.785,243.815,243.845,243.875,243.905,243.935,243.965,243.995,244.025,244.055,244.085,244.115,244.145,244.175,244.205,244.235,244.265,244.295,244.325,244.355,244.385,244.415,244.445,244.475,244.505,244.535,244.565,244.595,244.625,244.655,244.685,244.715,244.745,244.775,244.805,244.835,244.865,244.895,244.925,244.955,244.985,245.015,245.045,245.075,245.105,245.135,245.165,245.195,245.225,245.255,245.285,245.315,245.345,245.375,245.405,245.435,245.465,245.495,245.525,245.555,245.585,245.615,245.645,245.675,245.705,245.735,245.765,245.795,245.825,245.855,245.885,245.915,245.945,245.975,246.005,246.035,246.065,246.095,246.125,246.155,246.185,246.215,246.245,246.275,246.305,246.335,246.365,246.395,246.425,246.455,246.485,246.515,246.545,246.575,246.605,246.635,246.665,246.695,246.725,246.755,246.785,246.815,246.845,246.875,246.905,246.935,246.965,246.995,247.025,247.055,247.085,247.115,247.145,247.175,247.205,247.235,247.265,247.295,247.325,247.355,247.385,247.415,247.445,247.475,247.505,247.535,247.565,247.595,247.625,247.655,247.685,247.715,247.745,247.775,247.805,247.835,247.865,247.895,247.925,247.955,247.985,248.015,248.045,248.075,248.105,248.135,248.165,248.195,248.225,248.255,248.285,248.315,248.345,248.375,248.405,248.435,248.465,248.495,248.525,248.555,248.585,248.615,248.645,248.675,248.705,248.735,248.765,248.795,248.825,248.855,248.885,248.915,248.945,248.975,249.005,249.035,249.065,249.095,249.125,249.155,249.185,249.215,249.245,249.275,249.305,249.335,249.365,249.395,249.425,249.455,249.485,249.515,249.545,249.575,249.605,249.635,249.665,249.665]},{"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.965,3.995,4.025,4.055,4.085,4.115,4.1450000000000005,4.175,4.205,4.235,4.265,4.295,4.325,4.355,4.385,4.415,4.445,4.475,4.505,4.535,4.565,4.595,4.625,4.655,4.6850000000000005,4.715,4.745,4.775,4.805,4.835,4.865,4.8950000000000005,4.925,4.955,4.985,5.015,5.045,5.075,5.105,5.135,5.165,5.195,5.225,5.255,5.285,5.315,5.345,5.375,5.405,5.4350000000000005,5.465,5.495,5.525,5.555,5.585,5.615,5.6450000000000005,5.675,5.705,5.735,5.765,5.795,5.825,5.855,5.885,5.915,5.945,5.975,6.005,6.035,6.065,6.095,6.125,6.155,6.1850000000000005,6.215,6.245,6.275,6.305,6.335,6.365,6.3950000000000005,6.425,6.455,6.485,6.515,6.545,6.575,6.605,6.635,6.665,6.695,6.725,6.755,6.785,6.815,6.845,6.875,6.905,6.9350000000000005,6.965,6.995,7.025,7.055,7.085,7.115,7.1450000000000005,7.175,7.205,7.235,7.265,7.295,7.325,7.355,7.385,7.415,7.445,7.475,7.505,7.535,7.565,7.595,7.625,7.655,7.6850000000000005,7.715,7.745,7.775,7.805,7.835,7.865,7.8950000000000005,7.925,7.955,7.985,8.015,8.045,8.075,8.105,8.135,8.165000000000001,8.195,8.225,8.255,8.285,8.315,8.345,8.375,8.405,8.435,8.465,8.495,8.525,8.555,8.585,8.615,8.645,8.675,8.705,8.735,8.765,8.795,8.825,8.855,8.885,8.915000000000001,8.945,8.975,9.005,9.035,9.065,9.095,9.125,9.155,9.185,9.215,9.245,9.275,9.305,9.335,9.365,9.395,9.425,9.455,9.485,9.515,9.545,9.575,9.605,9.635,9.665000000000001,9.695,9.725,9.755,9.785,9.815,9.845,9.875,9.905,9.935,9.965,9.995,10.025,10.055,10.085,10.115,10.145,10.175,10.205,10.235,10.265,10.295,10.325,10.355,10.385,10.415000000000001,10.445,10.475,10.505,10.535,10.565,10.595,10.625,10.655,10.685,10.715,10.745,10.775,10.805,10.835,10.865,10.895,10.925,10.955,10.985,11.015,11.045,11.075,11.105,11.135,11.165000000000001,11.195,11.225,11.255,11.285,11.315,11.345,11.375,11.405,11.435,11.465,11.495,11.525,11.555,11.585,11.615,11.645,11.675,11.705,11.735,11.765,11.795,11.825,11.855,11.885,11.915000000000001,11.945,11.975,12.005,12.035,12.065,12.095,12.125,12.155,12.185,12.215,12.245,12.275,12.305,12.335,12.365,12.395,12.425,12.455,12.485,12.515,12.545,12.575,12.605,12.635,12.665000000000001,12.695,12.725,12.755,12.785,12.815,12.845,12.875,12.905,12.935,12.965,12.995,13.025,13.055,13.085,13.115,13.145,13.175,13.205,13.235,13.265,13.295,13.325,13.355,13.385,13.415000000000001,13.445,13.475,13.505,13.535,13.565,13.595,13.625,13.655,13.685,13.715,13.745,13.775,13.805,13.835,13.865,13.895,13.925,13.955,13.985,14.015,14.045,14.075,14.105,14.135,14.165000000000001,14.195,14.225,14.255,14.285,14.315,14.345,14.375,14.405,14.435,14.465,14.495,14.525,14.555,14.585,14.615,14.645,14.675,14.705,14.735,14.765,14.795,14.825,14.855,14.885,14.915000000000001,14.945,14.975,15.005,15.035,15.065,15.095,15.125,15.155,15.185,15.215,15.245,15.275,15.305,15.335,15.365,15.395,15.425,15.455,15.485,15.515,15.545,15.575,15.605,15.635,15.665000000000001,15.695,15.725,15.755,15.785,15.815,15.845,15.875,15.905,15.935,15.965,15.995,16.025,16.055,16.085,16.115,16.145,16.175,16.205,16.235,16.265,16.295,16.325,16.355,16.385,16.415,16.445,16.475,16.505,16.535,16.565,16.595,16.625,16.655,16.685,16.715,16.745,16.775,16.805,16.835,16.865,16.895,16.925,16.955,16.985,17.015,17.045,17.075,17.105,17.135,17.165,17.195,17.225,17.255,17.285,17.315,17.345,17.375,17.405,17.435,17.465,17.495,17.525,17.555,17.585,17.615,17.645,17.675,17.705,17.735,17.765,17.795,17.825,17.855,17.885,17.915,17.945,17.975,18.005,18.035,18.065,18.095,18.125,18.155,18.185,18.215,18.245,18.275,18.305,18.335,18.365,18.395,18.425,18.455,18.485,18.515,18.545,18.575,18.605,18.635,18.665,18.695,18.725,18.755,18.785,18.815,18.845,18.875,18.905,18.935,18.965,18.995,19.025,19.055,19.085,19.115,19.145,19.175,19.205,19.235,19.265,19.295,19.325,19.355,19.385,19.415,19.445,19.475,19.505,19.535,19.565,19.595,19.625,19.655,19.685,19.715,19.745,19.775,19.805,19.835,19.865,19.895,19.925,19.955,19.985,20.015,20.045,20.075,20.105,20.135,20.165,20.195,20.225,20.255,20.285,20.315,20.345,20.375,20.405,20.435,20.465,20.495,20.525,20.555,20.585,20.615,20.645,20.675,20.705,20.735,20.765,20.795,20.825,20.855,20.885,20.915,20.945,20.975,21.005,21.035,21.065,21.095,21.125,21.155,21.185,21.215,21.245,21.275,21.305,21.335,21.365,21.395,21.425,21.455,21.485,21.515,21.545,21.575,21.605,21.635,21.665,21.695,21.725,21.755,21.785,21.815,21.845,21.875,21.905,21.935,21.965,21.995,22.025,22.055,22.085,22.115,22.145,22.175,22.205,22.235,22.265,22.295,22.325,22.355,22.385,22.415,22.445,22.475,22.505,22.535,22.565,22.595,22.625,22.655,22.685,22.715,22.745,22.775,22.805,22.835,22.865,22.895,22.925,22.955,22.985,23.015,23.045,23.075,23.105,23.135,23.165,23.195,23.225,23.255,23.285,23.315,23.345,23.375,23.405,23.435,23.465,23.495,23.525,23.555,23.585,23.615,23.645,23.675,23.705,23.735,23.765,23.795,23.825,23.855,23.885,23.915,23.945,23.975,24.005,24.035,24.065,24.095,24.125,24.155,24.185,24.215,24.245,24.275,24.305,24.335,24.365,24.395,24.425,24.455,24.485,24.515,24.545,24.575,24.605,24.635,24.665,24.695,24.725,24.755,24.785,24.815,24.845,24.875,24.905,24.935,24.965,24.995,25.025,25.055,25.085,25.115,25.145,25.175,25.205,25.235,25.265,25.295,25.325,25.355,25.385,25.415,25.445,25.475,25.505,25.535,25.565,25.595,25.625,25.655,25.685,25.715,25.745,25.775,25.805,25.835,25.865,25.895,25.925,25.955,25.985,26.015,26.045,26.075,26.105,26.135,26.165,26.195,26.225,26.255,26.285,26.315,26.345,26.375,26.405,26.435,26.465,26.495,26.525,26.555,26.585,26.615,26.645,26.675,26.705,26.735,26.765,26.795,26.825,26.855,26.885,26.915,26.945,26.975,27.005,27.035,27.065,27.095,27.125,27.155,27.185,27.215,27.245,27.275,27.305,27.335,27.365,27.395,27.425,27.455,27.485,27.515,27.545,27.575,27.605,27.635,27.665,27.695,27.725,27.755,27.785,27.815,27.845,27.875,27.905,27.935,27.965,27.995,28.025,28.055,28.085,28.115,28.145,28.175,28.205,28.235,28.265,28.295,28.325,28.355,28.385,28.415,28.445,28.475,28.505,28.535,28.565,28.595,28.625,28.655,28.685,28.715,28.745,28.775,28.805,28.835,28.865,28.895,28.925,28.955,28.985,29.015,29.045,29.075,29.105,29.135,29.165,29.195,29.225,29.255,29.285,29.315,29.345,29.375,29.405,29.435,29.465,29.495,29.525,29.555,29.585,29.615,29.645,29.675,29.705,29.735,29.765,29.795,29.825,29.855,29.885,29.915,29.945,29.975,30.005,30.035,30.065,30.095,30.125,30.155,30.185,30.215,30.245,30.275,30.305,30.335,30.365,30.395,30.425,30.455,30.485,30.515,30.545,30.575,30.605,30.635,30.665,30.695,30.725,30.755,30.785,30.815,30.845,30.875,30.905,30.935,30.965,30.995,31.025,31.055,31.085,31.115,31.145,31.175,31.205,31.235,31.265,31.295,31.325,31.355,31.385,31.415,31.445,31.475,31.505,31.535,31.565,31.595,31.625,31.655,31.685,31.715,31.745,31.775,31.805,31.835,31.865,31.895,31.925,31.955,31.985,32.015,32.045,32.075,32.105,32.135,32.165,32.195,32.225,32.255,32.285,32.315,32.345,32.375,32.405,32.435,32.465,32.495,32.525,32.555,32.585,32.615,32.645,32.675,32.705,32.735,32.765,32.795,32.825,32.855,32.885,32.915,32.945,32.975,33.005,33.035,33.065,33.095,33.125,33.155,33.185,33.215,33.245,33.275,33.305,33.335,33.365,33.395,33.425,33.455,33.485,33.515,33.545,33.575,33.605,33.635,33.665,33.695,33.725,33.755,33.785,33.815,33.845,33.875,33.905,33.935,33.965,33.995,34.025,34.055,34.085,34.115,34.145,34.175,34.205,34.235,34.265,34.295,34.325,34.355,34.385,34.415,34.445,34.475,34.505,34.535,34.565,34.595,34.625,34.655,34.685,34.715,34.745,34.775,34.805,34.835,34.865,34.895,34.925,34.955,34.985,35.015,35.045,35.075,35.105,35.135,35.165,35.195,35.225,35.255,35.285,35.315,35.345,35.375,35.405,35.435,35.465,35.495,35.525,35.555,35.585,35.615,35.645,35.675,35.705,35.735,35.765,35.795,35.825,35.855,35.885,35.915,35.945,35.975,36.005,36.035,36.065,36.095,36.125,36.155,36.185,36.215,36.245,36.275,36.305,36.335,36.365,36.395,36.425,36.455,36.485,36.515,36.545,36.575,36.605,36.635,36.665,36.695,36.725,36.755,36.785,36.815,36.845,36.875,36.905,36.935,36.965,36.995,37.025,37.055,37.085,37.115,37.145,37.175,37.205,37.235,37.265,37.295,37.325,37.355,37.385,37.415,37.445,37.475,37.505,37.535,37.565,37.595,37.625,37.655,37.685,37.715,37.745,37.775,37.805,37.835,37.865,37.895,37.925,37.955,37.985,38.015,38.045,38.075,38.105,38.135,38.165,38.195,38.225,38.255,38.285,38.315,38.345,38.375,38.405,38.435,38.465,38.495,38.525,38.555,38.585,38.615,38.645,38.675,38.705,38.735,38.765,38.795,38.825,38.855,38.885,38.915,38.945,38.975,39.005,39.035,39.065,39.095,39.125,39.155,39.185,39.215,39.245,39.275,39.305,39.335,39.365,39.395,39.425,39.455,39.485,39.515,39.545,39.575,39.605,39.635,39.665,39.695,39.725,39.755,39.785,39.815,39.845,39.875,39.905,39.935,39.965,39.995,40.025,40.055,40.085,40.115,40.145,40.175,40.205,40.235,40.265,40.295,40.325,40.355,40.385,40.415,40.445,40.475,40.505,40.535,40.565,40.595,40.625,40.655,40.685,40.715,40.745,40.775,40.805,40.835,40.865,40.895,40.925,40.955,40.985,41.015,41.045,41.075,41.105,41.135,41.165,41.195,41.225,41.255,41.285,41.315,41.345,41.375,41.405,41.435,41.465,41.495,41.525,41.555,41.585,41.615,41.645,41.675,41.705,41.735,41.765,41.795,41.825,41.855,41.885,41.915,41.945,41.975,42.005,42.035,42.065,42.095,42.125,42.155,42.185,42.215,42.245,42.275,42.305,42.335,42.365,42.395,42.425,42.455,42.485,42.515,42.545,42.575,42.605,42.635,42.665,42.695,42.725,42.755,42.785,42.815,42.845,42.875,42.905,42.935,42.965,42.995,43.025,43.055,43.085,43.115,43.145,43.175,43.205,43.235,43.265,43.295,43.325,43.355,43.385,43.415,43.445,43.475,43.505,43.535,43.565,43.595,43.625,43.655,43.685,43.715,43.745,43.775,43.805,43.835,43.865,43.895,43.925,43.955,43.985,44.015,44.045,44.075,44.105,44.135,44.165,44.195,44.225,44.255,44.285,44.315,44.345,44.375,44.405,44.435,44.465,44.495,44.525,44.555,44.585,44.615,44.645,44.675,44.705,44.735,44.765,44.795,44.825,44.855,44.885,44.915,44.945,44.975,45.005,45.035,45.065,45.095,45.125,45.155,45.185,45.215,45.245,45.275,45.305,45.335,45.365,45.395,45.425,45.455,45.485,45.515,45.545,45.575,45.605,45.635,45.665,45.695,45.725,45.755,45.785,45.815,45.845,45.875,45.905,45.935,45.965,45.995,46.025,46.055,46.085,46.115,46.145,46.175,46.205,46.235,46.265,46.295,46.325,46.355,46.385,46.415,46.445,46.475,46.505,46.535,46.565,46.595,46.625,46.655,46.685,46.715,46.745,46.775,46.805,46.835,46.865,46.895,46.925,46.955,46.985,47.015,47.045,47.075,47.105,47.135,47.165,47.195,47.225,47.255,47.285,47.315,47.345,47.375,47.405,47.435,47.465,47.495,47.525,47.555,47.585,47.615,47.645,47.675,47.705,47.735,47.765,47.795,47.825,47.855,47.885,47.915,47.945,47.975,48.005,48.035,48.065,48.095,48.125,48.155,48.185,48.215,48.245,48.275,48.305,48.335,48.365,48.395,48.425,48.455,48.485,48.515,48.545,48.575,48.605,48.635,48.665,48.695,48.725,48.755,48.785,48.815,48.845,48.875,48.905,48.935,48.965,48.995,49.025,49.055,49.085,49.115,49.145,49.175,49.205,49.235,49.265,49.295,49.325,49.355,49.385,49.415,49.445,49.475,49.505,49.535,49.565,49.595,49.625,49.655,49.685,49.715,49.745,49.775,49.805,49.835,49.865,49.895,49.925,49.955,49.985,50.015,50.045,50.075,50.105,50.135,50.165,50.195,50.225,50.255,50.285,50.315,50.345,50.375,50.405,50.435,50.465,50.495,50.525,50.555,50.585,50.615,50.645,50.675,50.705,50.735,50.765,50.795,50.825,50.855,50.885,50.915,50.945,50.975,51.005,51.035,51.065,51.095,51.125,51.155,51.185,51.215,51.245,51.275,51.305,51.335,51.365,51.395,51.425,51.455,51.485,51.515,51.545,51.575,51.605,51.635,51.665,51.695,51.725,51.755,51.785,51.815,51.845,51.875,51.905,51.935,51.965,51.995,52.025,52.055,52.085,52.115,52.145,52.175,52.205,52.235,52.265,52.295,52.325,52.355,52.385,52.415,52.445,52.475,52.505,52.535,52.565,52.595,52.625,52.655,52.685,52.715,52.745,52.775,52.805,52.835,52.865,52.895,52.925,52.955,52.985,53.015,53.045,53.075,53.105,53.135,53.165,53.195,53.225,53.255,53.285,53.315,53.345,53.375,53.405,53.435,53.465,53.495,53.525,53.555,53.585,53.615,53.645,53.675,53.705,53.735,53.765,53.795,53.825,53.855,53.885,53.915,53.945,53.975,54.005,54.035,54.065,54.095,54.125,54.155,54.185,54.215,54.245,54.275,54.305,54.335,54.365,54.395,54.425,54.455,54.485,54.515,54.545,54.575,54.605,54.635,54.665,54.695,54.725,54.755,54.785,54.815,54.845,54.875,54.905,54.935,54.965,54.995,55.025,55.055,55.085,55.115,55.145,55.175,55.205,55.235,55.265,55.295,55.325,55.355,55.385,55.415,55.445,55.475,55.505,55.535,55.565,55.595,55.625,55.655,55.685,55.715,55.745,55.775,55.805,55.835,55.865,55.895,55.925,55.955,55.985,56.015,56.045,56.075,56.105,56.135,56.165,56.195,56.225,56.255,56.285,56.315,56.345,56.375,56.405,56.435,56.465,56.495,56.525,56.555,56.585,56.615,56.645,56.675,56.705,56.735,56.765,56.795,56.825,56.855,56.885,56.915,56.945,56.975,57.005,57.035,57.065,57.095,57.125,57.155,57.185,57.215,57.245,57.275,57.305,57.335,57.365,57.395,57.425,57.455,57.485,57.515,57.545,57.575,57.605,57.635,57.665,57.695,57.725,57.755,57.785,57.815,57.845,57.875,57.905,57.935,57.965,57.995,58.025,58.055,58.085,58.115,58.145,58.175,58.205,58.235,58.265,58.295,58.325,58.355,58.385,58.415,58.445,58.475,58.505,58.535,58.565,58.595,58.625,58.655,58.685,58.715,58.745,58.775,58.805,58.835,58.865,58.895,58.925,58.955,58.985,59.015,59.045,59.075,59.105,59.135,59.165,59.195,59.225,59.255,59.285,59.315,59.345,59.375,59.405,59.435,59.465,59.495,59.525,59.555,59.585,59.615,59.645,59.675,59.705,59.735,59.765,59.795,59.825,59.855,59.885,59.915,59.945,59.975,60.005,60.035,60.065,60.095,60.125,60.155,60.185,60.215,60.245,60.275,60.305,60.335,60.365,60.395,60.425,60.455,60.485,60.515,60.545,60.575,60.605,60.635,60.665,60.695,60.725,60.755,60.785,60.815,60.845,60.875,60.905,60.935,60.965,60.995,61.025,61.055,61.085,61.115,61.145,61.175,61.205,61.235,61.265,61.295,61.325,61.355,61.385,61.415,61.445,61.475,61.505,61.535,61.565,61.595,61.625,61.655,61.685,61.715,61.745,61.775,61.805,61.835,61.865,61.895,61.925,61.955,61.985,62.015,62.045,62.075,62.105,62.135,62.165,62.195,62.225,62.255,62.285,62.315,62.345,62.375,62.405,62.435,62.465,62.495,62.525,62.555,62.585,62.615,62.645,62.675,62.705,62.735,62.765,62.795,62.825,62.855,62.885,62.915,62.945,62.975,63.005,63.035,63.065,63.095,63.125,63.155,63.185,63.215,63.245,63.275,63.305,63.335,63.365,63.395,63.425,63.455,63.485,63.515,63.545,63.575,63.605,63.635,63.665,63.695,63.725,63.755,63.785,63.815,63.845,63.875,63.905,63.935,63.965,63.995,64.025,64.055,64.085,64.115,64.145,64.175,64.205,64.235,64.265,64.295,64.325,64.355,64.385,64.415,64.445,64.475,64.505,64.535,64.565,64.595,64.625,64.655,64.685,64.715,64.745,64.775,64.805,64.835,64.865,64.895,64.925,64.955,64.985,65.015,65.045,65.075,65.105,65.135,65.165,65.195,65.225,65.255,65.285,65.315,65.345,65.375,65.405,65.435,65.465,65.495,65.525,65.555,65.585,65.615,65.645,65.675,65.705,65.735,65.765,65.795,65.825,65.855,65.885,65.915,65.945,65.975,66.005,66.035,66.065,66.095,66.125,66.155,66.185,66.215,66.245,66.275,66.305,66.335,66.365,66.395,66.425,66.455,66.485,66.515,66.545,66.575,66.605,66.635,66.665,66.695,66.725,66.755,66.785,66.815,66.845,66.875,66.905,66.935,66.965,66.995,67.025,67.055,67.085,67.115,67.145,67.175,67.205,67.235,67.265,67.295,67.325,67.355,67.385,67.415,67.445,67.475,67.505,67.535,67.565,67.595,67.625,67.655,67.685,67.715,67.745,67.775,67.805,67.835,67.865,67.895,67.925,67.955,67.985,68.015,68.045,68.075,68.105,68.135,68.165,68.195,68.225,68.255,68.285,68.315,68.345,68.375,68.405,68.435,68.465,68.495,68.525,68.555,68.585,68.615,68.645,68.675,68.705,68.735,68.765,68.795,68.825,68.855,68.885,68.915,68.945,68.975,69.005,69.035,69.065,69.095,69.125,69.155,69.185,69.215,69.245,69.275,69.305,69.335,69.365,69.395,69.425,69.455,69.485,69.515,69.545,69.575,69.605,69.635,69.665,69.695,69.725,69.755,69.785,69.815,69.845,69.875,69.905,69.935,69.965,69.995,70.025,70.055,70.085,70.115,70.145,70.175,70.205,70.235,70.265,70.295,70.325,70.355,70.385,70.415,70.445,70.475,70.505,70.535,70.565,70.595,70.625,70.655,70.685,70.715,70.745,70.775,70.805,70.835,70.865,70.895,70.925,70.955,70.985,71.015,71.045,71.075,71.105,71.135,71.165,71.195,71.225,71.255,71.285,71.315,71.345,71.375,71.405,71.435,71.465,71.495,71.525,71.555,71.585,71.615,71.645,71.675,71.705,71.735,71.765,71.795,71.825,71.855,71.885,71.915,71.945,71.975,72.005,72.035,72.065,72.095,72.125,72.155,72.185,72.215,72.245,72.275,72.305,72.335,72.365,72.395,72.425,72.455,72.485,72.515,72.545,72.575,72.605,72.635,72.665,72.695,72.725,72.755,72.785,72.815,72.845,72.875,72.905,72.935,72.965,72.995,73.025,73.055,73.085,73.115,73.145,73.175,73.205,73.235,73.265,73.295,73.325,73.355,73.385,73.415,73.445,73.475,73.505,73.535,73.565,73.595,73.625,73.655,73.685,73.715,73.745,73.775,73.805,73.835,73.865,73.895,73.925,73.955,73.985,74.015,74.045,74.075,74.105,74.135,74.165,74.195,74.225,74.255,74.285,74.315,74.345,74.375,74.405,74.435,74.465,74.495,74.525,74.555,74.585,74.615,74.645,74.675,74.705,74.735,74.765,74.795,74.825,74.855,74.885,74.915,74.945,74.975,75.005,75.035,75.065,75.095,75.125,75.155,75.185,75.215,75.245,75.275,75.305,75.335,75.365,75.395,75.425,75.455,75.485,75.515,75.545,75.575,75.605,75.635,75.665,75.695,75.725,75.755,75.785,75.815,75.845,75.875,75.905,75.935,75.965,75.995,76.025,76.055,76.085,76.115,76.145,76.175,76.205,76.235,76.265,76.295,76.325,76.355,76.385,76.415,76.445,76.475,76.505,76.535,76.565,76.595,76.625,76.655,76.685,76.715,76.745,76.775,76.805,76.835,76.865,76.895,76.925,76.955,76.985,77.015,77.045,77.075,77.105,77.135,77.165,77.195,77.225,77.255,77.285,77.315,77.345,77.375,77.405,77.435,77.465,77.495,77.525,77.555,77.585,77.615,77.645,77.675,77.705,77.735,77.765,77.795,77.825,77.855,77.885,77.915,77.945,77.975,78.005,78.035,78.065,78.095,78.125,78.155,78.185,78.215,78.245,78.275,78.305,78.335,78.365,78.395,78.425,78.455,78.485,78.515,78.545,78.575,78.605,78.635,78.665,78.695,78.725,78.755,78.785,78.815,78.845,78.875,78.905,78.935,78.965,78.995,79.025,79.055,79.085,79.115,79.145,79.175,79.205,79.235,79.265,79.295,79.325,79.355,79.385,79.415,79.445,79.475,79.505,79.535,79.565,79.595,79.625,79.655,79.685,79.715,79.745,79.775,79.805,79.835,79.865,79.895,79.925,79.955,79.985,80.015,80.045,80.075,80.105,80.135,80.165,80.195,80.225,80.255,80.285,80.315,80.345,80.375,80.405,80.435,80.465,80.495,80.525,80.555,80.585,80.615,80.645,80.675,80.705,80.735,80.765,80.795,80.825,80.855,80.885,80.915,80.945,80.975,81.005,81.035,81.065,81.095,81.125,81.155,81.185,81.215,81.245,81.275,81.305,81.335,81.365,81.395,81.425,81.455,81.485,81.515,81.545,81.575,81.605,81.635,81.665,81.695,81.725,81.755,81.785,81.815,81.845,81.875,81.905,81.935,81.965,81.995,82.025,82.055,82.085,82.115,82.145,82.175,82.205,82.235,82.265,82.295,82.325,82.355,82.385,82.415,82.445,82.475,82.505,82.535,82.565,82.595,82.625,82.655,82.685,82.715,82.745,82.775,82.805,82.835,82.865,82.895,82.925,82.955,82.985,83.015,83.045,83.075,83.105,83.135,83.165,83.195,83.225,83.255,83.285,83.315,83.345,83.375,83.405,83.435,83.465,83.495,83.525,83.555,83.585,83.615,83.645,83.675,83.705,83.735,83.765,83.795,83.825,83.855,83.885,83.915,83.945,83.975,84.005,84.035,84.065,84.095,84.125,84.155,84.185,84.215,84.245,84.275,84.305,84.335,84.365,84.395,84.425,84.455,84.485,84.515,84.545,84.575,84.605,84.635,84.665,84.695,84.725,84.755,84.785,84.815,84.845,84.875,84.905,84.935,84.965,84.995,85.025,85.055,85.085,85.115,85.145,85.175,85.205,85.235,85.265,85.295,85.325,85.355,85.385,85.415,85.445,85.475,85.505,85.535,85.565,85.595,85.625,85.655,85.685,85.715,85.745,85.775,85.805,85.835,85.865,85.895,85.925,85.955,85.985,86.015,86.045,86.075,86.105,86.135,86.165,86.195,86.225,86.255,86.285,86.315,86.345,86.375,86.405,86.435,86.465,86.495,86.525,86.555,86.585,86.615,86.645,86.675,86.705,86.735,86.765,86.795,86.825,86.855,86.885,86.915,86.945,86.975,87.005,87.035,87.065,87.095,87.125,87.155,87.185,87.215,87.245,87.275,87.305,87.335,87.365,87.395,87.425,87.455,87.485,87.515,87.545,87.575,87.605,87.635,87.665,87.695,87.725,87.755,87.785,87.815,87.845,87.875,87.905,87.935,87.965,87.995,88.025,88.055,88.085,88.115,88.145,88.175,88.205,88.235,88.265,88.295,88.325,88.355,88.385,88.415,88.445,88.475,88.505,88.535,88.565,88.595,88.625,88.655,88.685,88.715,88.745,88.775,88.805,88.835,88.865,88.895,88.925,88.955,88.985,89.015,89.045,89.075,89.105,89.135,89.165,89.195,89.225,89.255,89.285,89.315,89.345,89.375,89.405,89.435,89.465,89.495,89.525,89.555,89.585,89.615,89.645,89.675,89.705,89.735,89.765,89.795,89.825,89.855,89.885,89.915,89.945,89.975,90.005,90.035,90.065,90.095,90.125,90.155,90.185,90.215,90.245,90.275,90.305,90.335,90.365,90.395,90.425,90.455,90.485,90.515,90.545,90.575,90.605,90.635,90.665,90.695,90.725,90.755,90.785,90.815,90.845,90.875,90.905,90.935,90.965,90.995,91.025,91.055,91.085,91.115,91.145,91.175,91.205,91.235,91.265,91.295,91.325,91.355,91.385,91.415,91.445,91.475,91.505,91.535,91.565,91.595,91.625,91.655,91.685,91.715,91.745,91.775,91.805,91.835,91.865,91.895,91.925,91.955,91.985,92.015,92.045,92.075,92.105,92.135,92.165,92.195,92.225,92.255,92.285,92.315,92.345,92.375,92.405,92.435,92.465,92.495,92.525,92.555,92.585,92.615,92.645,92.675,92.705,92.735,92.765,92.795,92.825,92.855,92.885,92.915,92.945,92.975,93.005,93.035,93.065,93.095,93.125,93.155,93.185,93.215,93.245,93.275,93.305,93.335,93.365,93.395,93.425,93.455,93.485,93.515,93.545,93.575,93.605,93.635,93.665,93.695,93.725,93.755,93.785,93.815,93.845,93.875,93.905,93.935,93.965,93.995,94.025,94.055,94.085,94.115,94.145,94.175,94.205,94.235,94.265,94.295,94.325,94.355,94.385,94.415,94.445,94.475,94.505,94.535,94.565,94.595,94.625,94.655,94.685,94.715,94.745,94.775,94.805,94.835,94.865,94.895,94.925,94.955,94.985,95.015,95.045,95.075,95.105,95.135,95.165,95.195,95.225,95.255,95.285,95.315,95.345,95.375,95.405,95.435,95.465,95.495,95.525,95.555,95.585,95.615,95.645,95.675,95.705,95.735,95.765,95.795,95.825,95.855,95.885,95.915,95.945,95.975,96.005,96.035,96.065,96.095,96.125,96.155,96.185,96.215,96.245,96.275,96.305,96.335,96.365,96.395,96.425,96.455,96.485,96.515,96.545,96.575,96.605,96.635,96.665,96.695,96.725,96.755,96.785,96.815,96.845,96.875,96.905,96.935,96.965,96.995,97.025,97.055,97.085,97.115,97.145,97.175,97.205,97.235,97.265,97.295,97.325,97.355,97.385,97.415,97.445,97.475,97.505,97.535,97.565,97.595,97.625,97.655,97.685,97.715,97.745,97.775,97.805,97.835,97.865,97.895,97.925,97.955,97.985,98.015,98.045,98.075,98.105,98.135,98.165,98.195,98.225,98.255,98.285,98.315,98.345,98.375,98.405,98.435,98.465,98.495,98.525,98.555,98.585,98.615,98.645,98.675,98.705,98.735,98.765,98.795,98.825,98.855,98.885,98.915,98.945,98.975,99.005,99.035,99.065,99.095,99.125,99.155,99.185,99.215,99.245,99.275,99.305,99.335,99.365,99.395,99.425,99.455,99.485,99.515,99.545,99.575,99.605,99.635,99.665,99.695,99.725,99.755,99.785,99.815,99.845,99.875,99.905,99.935,99.965,99.995,100.025,100.055,100.085,100.115,100.145,100.175,100.205,100.235,100.265,100.295,100.325,100.355,100.385,100.415,100.445,100.475,100.505,100.535,100.565,100.595,100.625,100.655,100.685,100.715,100.745,100.775,100.805,100.835,100.865,100.895,100.925,100.955,100.985,101.015,101.045,101.075,101.105,101.135,101.165,101.195,101.225,101.255,101.285,101.315,101.345,101.375,101.405,101.435,101.465,101.495,101.525,101.555,101.585,101.615,101.645,101.675,101.705,101.735,101.765,101.795,101.825,101.855,101.885,101.915,101.945,101.975,102.005,102.035,102.065,102.095,102.125,102.155,102.185,102.215,102.245,102.275,102.305,102.335,102.365,102.395,102.425,102.455,102.485,102.515,102.545,102.575,102.605,102.635,102.665,102.695,102.725,102.755,102.785,102.815,102.845,102.875,102.905,102.935,102.965,102.995,103.025,103.055,103.085,103.115,103.145,103.175,103.205,103.235,103.265,103.295,103.325,103.355,103.385,103.415,103.445,103.475,103.505,103.535,103.565,103.595,103.625,103.655,103.685,103.715,103.745,103.775,103.805,103.835,103.865,103.895,103.925,103.955,103.985,104.015,104.045,104.075,104.105,104.135,104.165,104.195,104.225,104.255,104.285,104.315,104.345,104.375,104.405,104.435,104.465,104.495,104.525,104.555,104.585,104.615,104.645,104.675,104.705,104.735,104.765,104.795,104.825,104.855,104.885,104.915,104.945,104.975,105.005,105.035,105.065,105.095,105.125,105.155,105.185,105.215,105.245,105.275,105.305,105.335,105.365,105.395,105.425,105.455,105.485,105.515,105.545,105.575,105.605,105.635,105.665,105.695,105.725,105.755,105.785,105.815,105.845,105.875,105.905,105.935,105.965,105.995,106.025,106.055,106.085,106.115,106.145,106.175,106.205,106.235,106.265,106.295,106.325,106.355,106.385,106.415,106.445,106.475,106.505,106.535,106.565,106.595,106.625,106.655,106.685,106.715,106.745,106.775,106.805,106.835,106.865,106.895,106.925,106.955,106.985,107.015,107.045,107.075,107.105,107.135,107.165,107.195,107.225,107.255,107.285,107.315,107.345,107.375,107.405,107.435,107.465,107.495,107.525,107.555,107.585,107.615,107.645,107.675,107.705,107.735,107.765,107.795,107.825,107.855,107.885,107.915,107.945,107.975,108.005,108.035,108.065,108.095,108.125,108.155,108.185,108.215,108.245,108.275,108.305,108.335,108.365,108.395,108.425,108.455,108.485,108.515,108.545,108.575,108.605,108.635,108.665,108.695,108.725,108.755,108.785,108.815,108.845,108.875,108.905,108.935,108.965,108.995,109.025,109.055,109.085,109.115,109.145,109.175,109.205,109.235,109.265,109.295,109.325,109.355,109.385,109.415,109.445,109.475,109.505,109.535,109.565,109.595,109.625,109.655,109.685,109.715,109.745,109.775,109.805,109.835,109.865,109.895,109.925,109.955,109.985,110.015,110.045,110.075,110.105,110.135,110.165,110.195,110.225,110.255,110.285,110.315,110.345,110.375,110.405,110.435,110.465,110.495,110.525,110.555,110.585,110.615,110.645,110.675,110.705,110.735,110.765,110.795,110.825,110.855,110.885,110.915,110.945,110.975,111.005,111.035,111.065,111.095,111.125,111.155,111.185,111.215,111.245,111.275,111.305,111.335,111.365,111.395,111.425,111.455,111.485,111.515,111.545,111.575,111.605,111.635,111.665,111.695,111.725,111.755,111.785,111.815,111.845,111.875,111.905,111.935,111.965,111.995,112.025,112.055,112.085,112.115,112.145,112.175,112.205,112.235,112.265,112.295,112.325,112.355,112.385,112.415,112.445,112.475,112.505,112.535,112.565,112.595,112.625,112.655,112.685,112.715,112.745,112.775,112.805,112.835,112.865,112.895,112.925,112.955,112.985,113.015,113.045,113.075,113.105,113.135,113.165,113.195,113.225,113.255,113.285,113.315,113.345,113.375,113.405,113.435,113.465,113.495,113.525,113.555,113.585,113.615,113.645,113.675,113.705,113.735,113.765,113.795,113.825,113.855,113.885,113.915,113.945,113.975,114.005,114.035,114.065,114.095,114.125,114.155,114.185,114.215,114.245,114.275,114.305,114.335,114.365,114.395,114.425,114.455,114.485,114.515,114.545,114.575,114.605,114.635,114.665,114.695,114.725,114.755,114.785,114.815,114.845,114.875,114.905,114.935,114.965,114.995,115.025,115.055,115.085,115.115,115.145,115.175,115.205,115.235,115.265,115.295,115.325,115.355,115.385,115.415,115.445,115.475,115.505,115.535,115.565,115.595,115.625,115.655,115.685,115.715,115.745,115.775,115.805,115.835,115.865,115.895,115.925,115.955,115.985,116.015,116.045,116.075,116.105,116.135,116.165,116.195,116.225,116.255,116.285,116.315,116.345,116.375,116.405,116.435,116.465,116.495,116.525,116.555,116.585,116.615,116.645,116.675,116.705,116.735,116.765,116.795,116.825,116.855,116.885,116.915,116.945,116.975,117.005,117.035,117.065,117.095,117.125,117.155,117.185,117.215,117.245,117.275,117.305,117.335,117.365,117.395,117.425,117.455,117.485,117.515,117.545,117.575,117.605,117.635,117.665,117.695,117.725,117.755,117.785,117.815,117.845,117.875,117.905,117.935,117.965,117.995,118.025,118.055,118.085,118.115,118.145,118.175,118.205,118.235,118.265,118.295,118.325,118.355,118.385,118.415,118.445,118.475,118.505,118.535,118.565,118.595,118.625,118.655,118.685,118.715,118.745,118.775,118.805,118.835,118.865,118.895,118.925,118.955,118.985,119.015,119.045,119.075,119.105,119.135,119.165,119.195,119.225,119.255,119.285,119.315,119.345,119.375,119.405,119.435,119.465,119.495,119.525,119.555,119.585,119.615,119.645,119.675,119.705,119.735,119.765,119.795,119.825,119.855,119.885,119.915,119.945,119.975,120.005,120.035,120.065,120.095,120.125,120.155,120.185,120.215,120.245,120.275,120.305,120.335,120.365,120.395,120.425,120.455,120.485,120.515,120.545,120.575,120.605,120.635,120.665,120.695,120.725,120.755,120.785,120.815,120.845,120.875,120.905,120.935,120.965,120.995,121.025,121.055,121.085,121.115,121.145,121.175,121.205,121.235,121.265,121.295,121.325,121.355,121.385,121.415,121.445,121.475,121.505,121.535,121.565,121.595,121.625,121.655,121.685,121.715,121.745,121.775,121.805,121.835,121.865,121.895,121.925,121.955,121.985,122.015,122.045,122.075,122.105,122.135,122.165,122.195,122.225,122.255,122.285,122.315,122.345,122.375,122.405,122.435,122.465,122.495,122.525,122.555,122.585,122.615,122.645,122.675,122.705,122.735,122.765,122.795,122.825,122.855,122.885,122.915,122.945,122.975,123.005,123.035,123.065,123.095,123.125,123.155,123.185,123.215,123.245,123.275,123.305,123.335,123.365,123.395,123.425,123.455,123.485,123.515,123.545,123.575,123.605,123.635,123.665,123.695,123.725,123.755,123.785,123.815,123.845,123.875,123.905,123.935,123.965,123.995,124.025,124.055,124.085,124.115,124.145,124.175,124.205,124.235,124.265,124.295,124.325,124.355,124.385,124.415,124.445,124.475,124.505,124.535,124.565,124.595,124.625,124.655,124.685,124.715,124.745,124.775,124.805,124.835,124.865,124.895,124.925,124.955,124.985,125.015,125.045,125.075,125.105,125.135,125.165,125.195,125.225,125.255,125.285,125.315,125.345,125.375,125.405,125.435,125.465,125.495,125.525,125.555,125.585,125.615,125.645,125.675,125.705,125.735,125.765,125.795,125.825,125.855,125.885,125.915,125.945,125.975,126.005,126.035,126.065,126.095,126.125,126.155,126.185,126.215,126.245,126.275,126.305,126.335,126.365,126.395,126.425,126.455,126.485,126.515,126.545,126.575,126.605,126.635,126.665,126.695,126.725,126.755,126.785,126.815,126.845,126.875,126.905,126.935,126.965,126.995,127.025,127.055,127.085,127.115,127.145,127.175,127.205,127.235,127.265,127.295,127.325,127.355,127.385,127.415,127.445,127.475,127.505,127.535,127.565,127.595,127.625,127.655,127.685,127.715,127.745,127.775,127.805,127.835,127.865,127.895,127.925,127.955,127.985,128.015,128.045,128.075,128.105,128.135,128.165,128.195,128.225,128.255,128.285,128.315,128.345,128.375,128.405,128.435,128.465,128.495,128.525,128.555,128.585,128.615,128.645,128.675,128.705,128.735,128.765,128.795,128.825,128.855,128.885,128.915,128.945,128.975,129.005,129.035,129.065,129.095,129.125,129.155,129.185,129.215,129.245,129.275,129.305,129.335,129.365,129.395,129.425,129.455,129.485,129.515,129.545,129.575,129.605,129.635,129.665,129.695,129.725,129.755,129.785,129.815,129.845,129.875,129.905,129.935,129.965,129.995,130.025,130.055,130.085,130.115,130.145,130.175,130.205,130.235,130.265,130.295,130.325,130.355,130.385,130.415,130.445,130.475,130.505,130.535,130.565,130.595,130.625,130.655,130.685,130.715,130.745,130.775,130.805,130.835,130.865,130.895,130.925,130.955,130.985,131.015,131.045,131.075,131.105,131.135,131.165,131.195,131.225,131.255,131.285,131.315,131.345,131.375,131.405,131.435,131.465,131.495,131.525,131.555,131.585,131.615,131.645,131.675,131.705,131.735,131.765,131.795,131.825,131.855,131.885,131.915,131.945,131.975,132.005,132.035,132.065,132.095,132.125,132.155,132.185,132.215,132.245,132.275,132.305,132.335,132.365,132.395,132.425,132.455,132.485,132.515,132.545,132.575,132.605,132.635,132.665,132.695,132.725,132.755,132.785,132.815,132.845,132.875,132.905,132.935,132.965,132.995,133.025,133.055,133.085,133.115,133.145,133.175,133.205,133.235,133.265,133.295,133.325,133.355,133.385,133.415,133.445,133.475,133.505,133.535,133.565,133.595,133.625,133.655,133.685,133.715,133.745,133.775,133.805,133.835,133.865,133.895,133.925,133.955,133.985,134.015,134.045,134.075,134.105,134.135,134.165,134.195,134.225,134.255,134.285,134.315,134.345,134.375,134.405,134.435,134.465,134.495,134.525,134.555,134.585,134.615,134.645,134.675,134.705,134.735,134.765,134.795,134.825,134.855,134.885,134.915,134.945,134.975,135.005,135.035,135.065,135.095,135.125,135.155,135.185,135.215,135.245,135.275,135.305,135.335,135.365,135.395,135.425,135.455,135.485,135.515,135.545,135.575,135.605,135.635,135.665,135.695,135.725,135.755,135.785,135.815,135.845,135.875,135.905,135.935,135.965,135.995,136.025,136.055,136.085,136.115,136.145,136.175,136.205,136.235,136.265,136.295,136.325,136.355,136.385,136.415,136.445,136.475,136.505,136.535,136.565,136.595,136.625,136.655,136.685,136.715,136.745,136.775,136.805,136.835,136.865,136.895,136.925,136.955,136.985,137.015,137.045,137.075,137.105,137.135,137.165,137.195,137.225,137.255,137.285,137.315,137.345,137.375,137.405,137.435,137.465,137.495,137.525,137.555,137.585,137.615,137.645,137.675,137.705,137.735,137.765,137.795,137.825,137.855,137.885,137.915,137.945,137.975,138.005,138.035,138.065,138.095,138.125,138.155,138.185,138.215,138.245,138.275,138.305,138.335,138.365,138.395,138.425,138.455,138.485,138.515,138.545,138.575,138.605,138.635,138.665,138.695,138.725,138.755,138.785,138.815,138.845,138.875,138.905,138.935,138.965,138.995,139.025,139.055,139.085,139.115,139.145,139.175,139.205,139.235,139.265,139.295,139.325,139.355,139.385,139.415,139.445,139.475,139.505,139.535,139.565,139.595,139.625,139.655,139.685,139.715,139.745,139.775,139.805,139.835,139.865,139.895,139.925,139.955,139.985,140.015,140.045,140.075,140.105,140.135,140.165,140.195,140.225,140.255,140.285,140.315,140.345,140.375,140.405,140.435,140.465,140.495,140.525,140.555,140.585,140.615,140.645,140.675,140.705,140.735,140.765,140.795,140.825,140.855,140.885,140.915,140.945,140.975,141.005,141.035,141.065,141.095,141.125,141.155,141.185,141.215,141.245,141.275,141.305,141.335,141.365,141.395,141.425,141.455,141.485,141.515,141.545,141.575,141.605,141.635,141.665,141.695,141.725,141.755,141.785,141.815,141.845,141.875,141.905,141.935,141.965,141.995,142.025,142.055,142.085,142.115,142.145,142.175,142.205,142.235,142.265,142.295,142.325,142.355,142.385,142.415,142.445,142.475,142.505,142.535,142.565,142.595,142.625,142.655,142.685,142.715,142.745,142.775,142.805,142.835,142.865,142.895,142.925,142.955,142.985,143.015,143.045,143.075,143.105,143.135,143.165,143.195,143.225,143.255,143.285,143.315,143.345,143.375,143.405,143.435,143.465,143.495,143.525,143.555,143.585,143.615,143.645,143.675,143.705,143.735,143.765,143.795,143.825,143.855,143.885,143.915,143.945,143.975,144.005,144.035,144.065,144.095,144.125,144.155,144.185,144.215,144.245,144.275,144.305,144.335,144.365,144.395,144.425,144.455,144.485,144.515,144.545,144.575,144.605,144.635,144.665,144.695,144.725,144.755,144.785,144.815,144.845,144.875,144.905,144.935,144.965,144.995,145.025,145.055,145.085,145.115,145.145,145.175,145.205,145.235,145.265,145.295,145.325,145.355,145.385,145.415,145.445,145.475,145.505,145.535,145.565,145.595,145.625,145.655,145.685,145.715,145.745,145.775,145.805,145.835,145.865,145.895,145.925,145.955,145.985,146.015,146.045,146.075,146.105,146.135,146.165,146.195,146.225,146.255,146.285,146.315,146.345,146.375,146.405,146.435,146.465,146.495,146.525,146.555,146.585,146.615,146.645,146.675,146.705,146.735,146.765,146.795,146.825,146.855,146.885,146.915,146.945,146.975,147.005,147.035,147.065,147.095,147.125,147.155,147.185,147.215,147.245,147.275,147.305,147.335,147.365,147.395,147.425,147.455,147.485,147.515,147.545,147.575,147.605,147.635,147.665,147.695,147.725,147.755,147.785,147.815,147.845,147.875,147.905,147.935,147.965,147.995,148.025,148.055,148.085,148.115,148.145,148.175,148.205,148.235,148.265,148.295,148.325,148.355,148.385,148.415,148.445,148.475,148.505,148.535,148.565,148.595,148.625,148.655,148.685,148.715,148.745,148.775,148.805,148.835,148.865,148.895,148.925,148.955,148.985,149.015,149.045,149.075,149.105,149.135,149.165,149.195,149.225,149.255,149.285,149.315,149.345,149.375,149.405,149.435,149.465,149.495,149.525,149.555,149.585,149.615,149.645,149.675,149.705,149.735,149.765,149.795,149.825,149.855,149.885,149.915,149.945,149.975,150.005,150.035,150.065,150.095,150.125,150.155,150.185,150.215,150.245,150.275,150.305,150.335,150.365,150.395,150.425,150.455,150.485,150.515,150.545,150.575,150.605,150.635,150.665,150.695,150.725,150.755,150.785,150.815,150.845,150.875,150.905,150.935,150.965,150.995,151.025,151.055,151.085,151.115,151.145,151.175,151.205,151.235,151.265,151.295,151.325,151.355,151.385,151.415,151.445,151.475,151.505,151.535,151.565,151.595,151.625,151.655,151.685,151.715,151.745,151.775,151.805,151.835,151.865,151.895,151.925,151.955,151.985,152.015,152.045,152.075,152.105,152.135,152.165,152.195,152.225,152.255,152.285,152.315,152.345,152.375,152.405,152.435,152.465,152.495,152.525,152.555,152.585,152.615,152.645,152.675,152.705,152.735,152.765,152.795,152.825,152.855,152.885,152.915,152.945,152.975,153.005,153.035,153.065,153.095,153.125,153.155,153.185,153.215,153.245,153.275,153.305,153.335,153.365,153.395,153.425,153.455,153.485,153.515,153.545,153.575,153.605,153.635,153.665,153.695,153.725,153.755,153.785,153.815,153.845,153.875,153.905,153.935,153.965,153.995,154.025,154.055,154.085,154.115,154.145,154.175,154.205,154.235,154.265,154.295,154.325,154.355,154.385,154.415,154.445,154.475,154.505,154.535,154.565,154.595,154.625,154.655,154.685,154.715,154.745,154.775,154.805,154.835,154.865,154.895,154.925,154.955,154.985,155.015,155.045,155.075,155.105,155.135,155.165,155.195,155.225,155.255,155.285,155.315,155.345,155.375,155.405,155.435,155.465,155.495,155.525,155.555,155.585,155.615,155.645,155.675,155.705,155.735,155.765,155.795,155.825,155.855,155.885,155.915,155.945,155.975,156.005,156.035,156.065,156.095,156.125,156.155,156.185,156.215,156.245,156.275,156.305,156.335,156.365,156.395,156.425,156.455,156.485,156.515,156.545,156.575,156.605,156.635,156.665,156.695,156.725,156.755,156.785,156.815,156.845,156.875,156.905,156.935,156.965,156.995,157.025,157.055,157.085,157.115,157.145,157.175,157.205,157.235,157.265,157.295,157.325,157.355,157.385,157.415,157.445,157.475,157.505,157.535,157.565,157.595,157.625,157.655,157.685,157.715,157.745,157.775,157.805,157.835,157.865,157.895,157.925,157.955,157.985,158.015,158.045,158.075,158.105,158.135,158.165,158.195,158.225,158.255,158.285,158.315,158.345,158.375,158.405,158.435,158.465,158.495,158.525,158.555,158.585,158.615,158.645,158.675,158.705,158.735,158.765,158.795,158.825,158.855,158.885,158.915,158.945,158.975,159.005,159.035,159.065,159.095,159.125,159.155,159.185,159.215,159.245,159.275,159.305,159.335,159.365,159.395,159.425,159.455,159.485,159.515,159.545,159.575,159.605,159.635,159.665,159.695,159.725,159.755,159.785,159.815,159.845,159.875,159.905,159.935,159.965,159.995,160.025,160.055,160.085,160.115,160.145,160.175,160.205,160.235,160.265,160.295,160.325,160.355,160.385,160.415,160.445,160.475,160.505,160.535,160.565,160.595,160.625,160.655,160.685,160.715,160.745,160.775,160.805,160.835,160.865,160.895,160.925,160.955,160.985,161.015,161.045,161.075,161.105,161.135,161.165,161.195,161.225,161.255,161.285,161.315,161.345,161.375,161.405,161.435,161.465,161.495,161.525,161.555,161.585,161.615,161.645,161.675,161.705,161.735,161.765,161.795,161.825,161.855,161.885,161.915,161.945,161.975,162.005,162.035,162.065,162.095,162.125,162.155,162.185,162.215,162.245,162.275,162.305,162.335,162.365,162.395,162.425,162.455,162.485,162.515,162.545,162.575,162.605,162.635,162.665,162.695,162.725,162.755,162.785,162.815,162.845,162.875,162.905,162.935,162.965,162.995,163.025,163.055,163.085,163.115,163.145,163.175,163.205,163.235,163.265,163.295,163.325,163.355,163.385,163.415,163.445,163.475,163.505,163.535,163.565,163.595,163.625,163.655,163.685,163.715,163.745,163.775,163.805,163.835,163.865,163.895,163.925,163.955,163.985,164.015,164.045,164.075,164.105,164.135,164.165,164.195,164.225,164.255,164.285,164.315,164.345,164.375,164.405,164.435,164.465,164.495,164.525,164.555,164.585,164.615,164.645,164.675,164.705,164.735,164.765,164.795,164.825,164.855,164.885,164.915,164.945,164.975,165.005,165.035,165.065,165.095,165.125,165.155,165.185,165.215,165.245,165.275,165.305,165.335,165.365,165.395,165.425,165.455,165.485,165.515,165.545,165.575,165.605,165.635,165.665,165.695,165.725,165.755,165.785,165.815,165.845,165.875,165.905,165.935,165.965,165.995,166.025,166.055,166.085,166.115,166.145,166.175,166.205,166.235,166.265,166.295,166.325,166.355,166.385,166.415,166.445,166.475,166.505,166.535,166.565,166.595,166.625,166.655,166.685,166.715,166.745,166.775,166.805,166.835,166.865,166.895,166.925,166.955,166.985,167.015,167.045,167.075,167.105,167.135,167.165,167.195,167.225,167.255,167.285,167.315,167.345,167.375,167.405,167.435,167.465,167.495,167.525,167.555,167.585,167.615,167.645,167.675,167.705,167.735,167.765,167.795,167.825,167.855,167.885,167.915,167.945,167.975,168.005,168.035,168.065,168.095,168.125,168.155,168.185,168.215,168.245,168.275,168.305,168.335,168.365,168.395,168.425,168.455,168.485,168.515,168.545,168.575,168.605,168.635,168.665,168.695,168.725,168.755,168.785,168.815,168.845,168.875,168.905,168.935,168.965,168.995,169.025,169.055,169.085,169.115,169.145,169.175,169.205,169.235,169.265,169.295,169.325,169.355,169.385,169.415,169.445,169.475,169.505,169.535,169.565,169.595,169.625,169.655,169.685,169.715,169.745,169.775,169.805,169.835,169.865,169.895,169.925,169.955,169.985,170.015,170.045,170.075,170.105,170.135,170.165,170.195,170.225,170.255,170.285,170.315,170.345,170.375,170.405,170.435,170.465,170.495,170.525,170.555,170.585,170.615,170.645,170.675,170.705,170.735,170.765,170.795,170.825,170.855,170.885,170.915,170.945,170.975,171.005,171.035,171.065,171.095,171.125,171.155,171.185,171.215,171.245,171.275,171.305,171.335,171.365,171.395,171.425,171.455,171.485,171.515,171.545,171.575,171.605,171.635,171.665,171.695,171.725,171.755,171.785,171.815,171.845,171.875,171.905,171.935,171.965,171.995,172.025,172.055,172.085,172.115,172.145,172.175,172.205,172.235,172.265,172.295,172.325,172.355,172.385,172.415,172.445,172.475,172.505,172.535,172.565,172.595,172.625,172.655,172.685,172.715,172.745,172.775,172.805,172.835,172.865,172.895,172.925,172.955,172.985,173.015,173.045,173.075,173.105,173.135,173.165,173.195,173.225,173.255,173.285,173.315,173.345,173.375,173.405,173.435,173.465,173.495,173.525,173.555,173.585,173.615,173.645,173.675,173.705,173.735,173.765,173.795,173.825,173.855,173.885,173.915,173.945,173.975,174.005,174.035,174.065,174.095,174.125,174.155,174.185,174.215,174.245,174.275,174.305,174.335,174.365,174.395,174.425,174.455,174.485,174.515,174.545,174.575,174.605,174.635,174.665,174.695,174.725,174.755,174.785,174.815,174.845,174.875,174.905,174.935,174.965,174.995,175.025,175.055,175.085,175.115,175.145,175.175,175.205,175.235,175.265,175.295,175.325,175.355,175.385,175.415,175.445,175.475,175.505,175.535,175.565,175.595,175.625,175.655,175.685,175.715,175.745,175.775,175.805,175.835,175.865,175.895,175.925,175.955,175.985,176.015,176.045,176.075,176.105,176.135,176.165,176.195,176.225,176.255,176.285,176.315,176.345,176.375,176.405,176.435,176.465,176.495,176.525,176.555,176.585,176.615,176.645,176.675,176.705,176.735,176.765,176.795,176.825,176.855,176.885,176.915,176.945,176.975,177.005,177.035,177.065,177.095,177.125,177.155,177.185,177.215,177.245,177.275,177.305,177.335,177.365,177.395,177.425,177.455,177.485,177.515,177.545,177.575,177.605,177.635,177.665,177.695,177.725,177.755,177.785,177.815,177.845,177.875,177.905,177.935,177.965,177.995,178.025,178.055,178.085,178.115,178.145,178.175,178.205,178.235,178.265,178.295,178.325,178.355,178.385,178.415,178.445,178.475,178.505,178.535,178.565,178.595,178.625,178.655,178.685,178.715,178.745,178.775,178.805,178.835,178.865,178.895,178.925,178.955,178.985,179.015,179.045,179.075,179.105,179.135,179.165,179.195,179.225,179.255,179.285,179.315,179.345,179.375,179.405,179.435,179.465,179.495,179.525,179.555,179.585,179.615,179.645,179.675,179.705,179.735,179.765,179.795,179.825,179.855,179.885,179.915,179.945,179.975,180.005,180.035,180.065,180.095,180.125,180.155,180.185,180.215,180.245,180.275,180.305,180.335,180.365,180.395,180.425,180.455,180.485,180.515,180.545,180.575,180.605,180.635,180.665,180.695,180.725,180.755,180.785,180.815,180.845,180.875,180.905,180.935,180.965,180.995,181.025,181.055,181.085,181.115,181.145,181.175,181.205,181.235,181.265,181.295,181.325,181.355,181.385,181.415,181.445,181.475,181.505,181.535,181.565,181.595,181.625,181.655,181.685,181.715,181.745,181.775,181.805,181.835,181.865,181.895,181.925,181.955,181.985,182.015,182.045,182.075,182.105,182.135,182.165,182.195,182.225,182.255,182.285,182.315,182.345,182.375,182.405,182.435,182.465,182.495,182.525,182.555,182.585,182.615,182.645,182.675,182.705,182.735,182.765,182.795,182.825,182.855,182.885,182.915,182.945,182.975,183.005,183.035,183.065,183.095,183.125,183.155,183.185,183.215,183.245,183.275,183.305,183.335,183.365,183.395,183.425,183.455,183.485,183.515,183.545,183.575,183.605,183.635,183.665,183.695,183.725,183.755,183.785,183.815,183.845,183.875,183.905,183.935,183.965,183.995,184.025,184.055,184.085,184.115,184.145,184.175,184.205,184.235,184.265,184.295,184.325,184.355,184.385,184.415,184.445,184.475,184.505,184.535,184.565,184.595,184.625,184.655,184.685,184.715,184.745,184.775,184.805,184.835,184.865,184.895,184.925,184.955,184.985,185.015,185.045,185.075,185.105,185.135,185.165,185.195,185.225,185.255,185.285,185.315,185.345,185.375,185.405,185.435,185.465,185.495,185.525,185.555,185.585,185.615,185.645,185.675,185.705,185.735,185.765,185.795,185.825,185.855,185.885,185.915,185.945,185.975,186.005,186.035,186.065,186.095,186.125,186.155,186.185,186.215,186.245,186.275,186.305,186.335,186.365,186.395,186.425,186.455,186.485,186.515,186.545,186.575,186.605,186.635,186.665,186.695,186.725,186.755,186.785,186.815,186.845,186.875,186.905,186.935,186.965,186.995,187.025,187.055,187.085,187.115,187.145,187.175,187.205,187.235,187.265,187.295,187.325,187.355,187.385,187.415,187.445,187.475,187.505,187.535,187.565,187.595,187.625,187.655,187.685,187.715,187.745,187.775,187.805,187.835,187.865,187.895,187.925,187.955,187.985,188.015,188.045,188.075,188.105,188.135,188.165,188.195,188.225,188.255,188.285,188.315,188.345,188.375,188.405,188.435,188.465,188.495,188.525,188.555,188.585,188.615,188.645,188.675,188.705,188.735,188.765,188.795,188.825,188.855,188.885,188.915,188.945,188.975,189.005,189.035,189.065,189.095,189.125,189.155,189.185,189.215,189.245,189.275,189.305,189.335,189.365,189.395,189.425,189.455,189.485,189.515,189.545,189.575,189.605,189.635,189.665,189.695,189.725,189.755,189.785,189.815,189.845,189.875,189.905,189.935,189.965,189.995,190.025,190.055,190.085,190.115,190.145,190.175,190.205,190.235,190.265,190.295,190.325,190.355,190.385,190.415,190.445,190.475,190.505,190.535,190.565,190.595,190.625,190.655,190.685,190.715,190.745,190.775,190.805,190.835,190.865,190.895,190.925,190.955,190.985,191.015,191.045,191.075,191.105,191.135,191.165,191.195,191.225,191.255,191.285,191.315,191.345,191.375,191.405,191.435,191.465,191.495,191.525,191.555,191.585,191.615,191.645,191.675,191.705,191.735,191.765,191.795,191.825,191.855,191.885,191.915,191.945,191.975,192.005,192.035,192.065,192.095,192.125,192.155,192.185,192.215,192.245,192.275,192.305,192.335,192.365,192.395,192.425,192.455,192.485,192.515,192.545,192.575,192.605,192.635,192.665,192.695,192.725,192.755,192.785,192.815,192.845,192.875,192.905,192.935,192.965,192.995,193.025,193.055,193.085,193.115,193.145,193.175,193.205,193.235,193.265,193.295,193.325,193.355,193.385,193.415,193.445,193.475,193.505,193.535,193.565,193.595,193.625,193.655,193.685,193.715,193.745,193.775,193.805,193.835,193.865,193.895,193.925,193.955,193.985,194.015,194.045,194.075,194.105,194.135,194.165,194.195,194.225,194.255,194.285,194.315,194.345,194.375,194.405,194.435,194.465,194.495,194.525,194.555,194.585,194.615,194.645,194.675,194.705,194.735,194.765,194.795,194.825,194.855,194.885,194.915,194.945,194.975,195.005,195.035,195.065,195.095,195.125,195.155,195.185,195.215,195.245,195.275,195.305,195.335,195.365,195.395,195.425,195.455,195.485,195.515,195.545,195.575,195.605,195.635,195.665,195.695,195.725,195.755,195.785,195.815,195.845,195.875,195.905,195.935,195.965,195.995,196.025,196.055,196.085,196.115,196.145,196.175,196.205,196.235,196.265,196.295,196.325,196.355,196.385,196.415,196.445,196.475,196.505,196.535,196.565,196.595,196.625,196.655,196.685,196.715,196.745,196.775,196.805,196.835,196.865,196.895,196.925,196.955,196.985,197.015,197.045,197.075,197.105,197.135,197.165,197.195,197.225,197.255,197.285,197.315,197.345,197.375,197.405,197.435,197.465,197.495,197.525,197.555,197.585,197.615,197.645,197.675,197.705,197.735,197.765,197.795,197.825,197.855,197.885,197.915,197.945,197.975,198.005,198.035,198.065,198.095,198.125,198.155,198.185,198.215,198.245,198.275,198.305,198.335,198.365,198.395,198.425,198.455,198.485,198.515,198.545,198.575,198.605,198.635,198.665,198.695,198.725,198.755,198.785,198.815,198.845,198.875,198.905,198.935,198.965,198.995,199.025,199.055,199.085,199.115,199.145,199.175,199.205,199.235,199.265,199.295,199.325,199.355,199.385,199.415,199.445,199.475,199.505,199.535,199.565,199.595,199.625,199.655,199.685,199.715,199.745,199.775,199.805,199.835,199.865,199.895,199.925,199.955,199.985,200.015,200.045,200.075,200.105,200.135,200.165,200.195,200.225,200.255,200.285,200.315,200.345,200.375,200.405,200.435,200.465,200.495,200.525,200.555,200.585,200.615,200.645,200.675,200.705,200.735,200.765,200.795,200.825,200.855,200.885,200.915,200.945,200.975,201.005,201.035,201.065,201.095,201.125,201.155,201.185,201.215,201.245,201.275,201.305,201.335,201.365,201.395,201.425,201.455,201.485,201.515,201.545,201.575,201.605,201.635,201.665,201.695,201.725,201.755,201.785,201.815,201.845,201.875,201.905,201.935,201.965,201.995,202.025,202.055,202.085,202.115,202.145,202.175,202.205,202.235,202.265,202.295,202.325,202.355,202.385,202.415,202.445,202.475,202.505,202.535,202.565,202.595,202.625,202.655,202.685,202.715,202.745,202.775,202.805,202.835,202.865,202.895,202.925,202.955,202.985,203.015,203.045,203.075,203.105,203.135,203.165,203.195,203.225,203.255,203.285,203.315,203.345,203.375,203.405,203.435,203.465,203.495,203.525,203.555,203.585,203.615,203.645,203.675,203.705,203.735,203.765,203.795,203.825,203.855,203.885,203.915,203.945,203.975,204.005,204.035,204.065,204.095,204.125,204.155,204.185,204.215,204.245,204.275,204.305,204.335,204.365,204.395,204.425,204.455,204.485,204.515,204.545,204.575,204.605,204.635,204.665,204.695,204.725,204.755,204.785,204.815,204.845,204.875,204.905,204.935,204.965,204.995,205.025,205.055,205.085,205.115,205.145,205.175,205.205,205.235,205.265,205.295,205.325,205.355,205.385,205.415,205.445,205.475,205.505,205.535,205.565,205.595,205.625,205.655,205.685,205.715,205.745,205.775,205.805,205.835,205.865,205.895,205.925,205.955,205.985,206.015,206.045,206.075,206.105,206.135,206.165,206.195,206.225,206.255,206.285,206.315,206.345,206.375,206.405,206.435,206.465,206.495,206.525,206.555,206.585,206.615,206.645,206.675,206.705,206.735,206.765,206.795,206.825,206.855,206.885,206.915,206.945,206.975,207.005,207.035,207.065,207.095,207.125,207.155,207.185,207.215,207.245,207.275,207.305,207.335,207.365,207.395,207.425,207.455,207.485,207.515,207.545,207.575,207.605,207.635,207.665,207.695,207.725,207.755,207.785,207.815,207.845,207.875,207.905,207.935,207.965,207.995,208.025,208.055,208.085,208.115,208.145,208.175,208.205,208.235,208.265,208.295,208.325,208.355,208.385,208.415,208.445,208.475,208.505,208.535,208.565,208.595,208.625,208.655,208.685,208.715,208.745,208.775,208.805,208.835,208.865,208.895,208.925,208.955,208.985,209.015,209.045,209.075,209.105,209.135,209.165,209.195,209.225,209.255,209.285,209.315,209.345,209.375,209.405,209.435,209.465,209.495,209.525,209.555,209.585,209.615,209.645,209.675,209.705,209.735,209.765,209.795,209.825,209.855,209.885,209.915,209.945,209.975,210.005,210.035,210.065,210.095,210.125,210.155,210.185,210.215,210.245,210.275,210.305,210.335,210.365,210.395,210.425,210.455,210.485,210.515,210.545,210.575,210.605,210.635,210.665,210.695,210.725,210.755,210.785,210.815,210.845,210.875,210.905,210.935,210.965,210.995,211.025,211.055,211.085,211.115,211.145,211.175,211.205,211.235,211.265,211.295,211.325,211.355,211.385,211.415,211.445,211.475,211.505,211.535,211.565,211.595,211.625,211.655,211.685,211.715,211.745,211.775,211.805,211.835,211.865,211.895,211.925,211.955,211.985,212.015,212.045,212.075,212.105,212.135,212.165,212.195,212.225,212.255,212.285,212.315,212.345,212.375,212.405,212.435,212.465,212.495,212.525,212.555,212.585,212.615,212.645,212.675,212.705,212.735,212.765,212.795,212.825,212.855,212.885,212.915,212.945,212.975,213.005,213.035,213.065,213.095,213.125,213.155,213.185,213.215,213.245,213.275,213.305,213.335,213.365,213.395,213.425,213.455,213.485,213.515,213.545,213.575,213.605,213.635,213.665,213.695,213.725,213.755,213.785,213.815,213.845,213.875,213.905,213.935,213.965,213.995,214.025,214.055,214.085,214.115,214.145,214.175,214.205,214.235,214.265,214.295,214.325,214.355,214.385,214.415,214.445,214.475,214.505,214.535,214.565,214.595,214.625,214.655,214.685,214.715,214.745,214.775,214.805,214.835,214.865,214.895,214.925,214.955,214.985,215.015,215.045,215.075,215.105,215.135,215.165,215.195,215.225,215.255,215.285,215.315,215.345,215.375,215.405,215.435,215.465,215.495,215.525,215.555,215.585,215.615,215.645,215.675,215.705,215.735,215.765,215.795,215.825,215.855,215.885,215.915,215.945,215.975,216.005,216.035,216.065,216.095,216.125,216.155,216.185,216.215,216.245,216.275,216.305,216.335,216.365,216.395,216.425,216.455,216.485,216.515,216.545,216.575,216.605,216.635,216.665,216.695,216.725,216.755,216.785,216.815,216.845,216.875,216.905,216.935,216.965,216.995,217.025,217.055,217.085,217.115,217.145,217.175,217.205,217.235,217.265,217.295,217.325,217.355,217.385,217.415,217.445,217.475,217.505,217.535,217.565,217.595,217.625,217.655,217.685,217.715,217.745,217.775,217.805,217.835,217.865,217.895,217.925,217.955,217.985,218.015,218.045,218.075,218.105,218.135,218.165,218.195,218.225,218.255,218.285,218.315,218.345,218.375,218.405,218.435,218.465,218.495,218.525,218.555,218.585,218.615,218.645,218.675,218.705,218.735,218.765,218.795,218.825,218.855,218.885,218.915,218.945,218.975,219.005,219.035,219.065,219.095,219.125,219.155,219.185,219.215,219.245,219.275,219.305,219.335,219.365,219.395,219.425,219.455,219.485,219.515,219.545,219.575,219.605,219.635,219.665,219.695,219.725,219.755,219.785,219.815,219.845,219.875,219.905,219.935,219.965,219.995,220.025,220.055,220.085,220.115,220.145,220.175,220.205,220.235,220.265,220.295,220.325,220.355,220.385,220.415,220.445,220.475,220.505,220.535,220.565,220.595,220.625,220.655,220.685,220.715,220.745,220.775,220.805,220.835,220.865,220.895,220.925,220.955,220.985,221.015,221.045,221.075,221.105,221.135,221.165,221.195,221.225,221.255,221.285,221.315,221.345,221.375,221.405,221.435,221.465,221.495,221.525,221.555,221.585,221.615,221.645,221.675,221.705,221.735,221.765,221.795,221.825,221.855,221.885,221.915,221.945,221.975,222.005,222.035,222.065,222.095,222.125,222.155,222.185,222.215,222.245,222.275,222.305,222.335,222.365,222.395,222.425,222.455,222.485,222.515,222.545,222.575,222.605,222.635,222.665,222.695,222.725,222.755,222.785,222.815,222.845,222.875,222.905,222.935,222.965,222.995,223.025,223.055,223.085,223.115,223.145,223.175,223.205,223.235,223.265,223.295,223.325,223.355,223.385,223.415,223.445,223.475,223.505,223.535,223.565,223.595,223.625,223.655,223.685,223.715,223.745,223.775,223.805,223.835,223.865,223.895,223.925,223.955,223.985,224.015,224.045,224.075,224.105,224.135,224.165,224.195,224.225,224.255,224.285,224.315,224.345,224.375,224.405,224.435,224.465,224.495,224.525,224.555,224.585,224.615,224.645,224.675,224.705,224.735,224.765,224.795,224.825,224.855,224.885,224.915,224.945,224.975,225.005,225.035,225.065,225.095,225.125,225.155,225.185,225.215,225.245,225.275,225.305,225.335,225.365,225.395,225.425,225.455,225.485,225.515,225.545,225.575,225.605,225.635,225.665,225.695,225.725,225.755,225.785,225.815,225.845,225.875,225.905,225.935,225.965,225.995,226.025,226.055,226.085,226.115,226.145,226.175,226.205,226.235,226.265,226.295,226.325,226.355,226.385,226.415,226.445,226.475,226.505,226.535,226.565,226.595,226.625,226.655,226.685,226.715,226.745,226.775,226.805,226.835,226.865,226.895,226.925,226.955,226.985,227.015,227.045,227.075,227.105,227.135,227.165,227.195,227.225,227.255,227.285,227.315,227.345,227.375,227.405,227.435,227.465,227.495,227.525,227.555,227.585,227.615,227.645,227.675,227.705,227.735,227.765,227.795,227.825,227.855,227.885,227.915,227.945,227.975,228.005,228.035,228.065,228.095,228.125,228.155,228.185,228.215,228.245,228.275,228.305,228.335,228.365,228.395,228.425,228.455,228.485,228.515,228.545,228.575,228.605,228.635,228.665,228.695,228.725,228.755,228.785,228.815,228.845,228.875,228.905,228.935,228.965,228.995,229.025,229.055,229.085,229.115,229.145,229.175,229.205,229.235,229.265,229.295,229.325,229.355,229.385,229.415,229.445,229.475,229.505,229.535,229.565,229.595,229.625,229.655,229.685,229.715,229.745,229.775,229.805,229.835,229.865,229.895,229.925,229.955,229.985,230.015,230.045,230.075,230.105,230.135,230.165,230.195,230.225,230.255,230.285,230.315,230.345,230.375,230.405,230.435,230.465,230.495,230.525,230.555,230.585,230.615,230.645,230.675,230.705,230.735,230.765,230.795,230.825,230.855,230.885,230.915,230.945,230.975,231.005,231.035,231.065,231.095,231.125,231.155,231.185,231.215,231.245,231.275,231.305,231.335,231.365,231.395,231.425,231.455,231.485,231.515,231.545,231.575,231.605,231.635,231.665,231.695,231.725,231.755,231.785,231.815,231.845,231.875,231.905,231.935,231.965,231.995,232.025,232.055,232.085,232.115,232.145,232.175,232.205,232.235,232.265,232.295,232.325,232.355,232.385,232.415,232.445,232.475,232.505,232.535,232.565,232.595,232.625,232.655,232.685,232.715,232.745,232.775,232.805,232.835,232.865,232.895,232.925,232.955,232.985,233.015,233.045,233.075,233.105,233.135,233.165,233.195,233.225,233.255,233.285,233.315,233.345,233.375,233.405,233.435,233.465,233.495,233.525,233.555,233.585,233.615,233.645,233.675,233.705,233.735,233.765,233.795,233.825,233.855,233.885,233.915,233.945,233.975,234.005,234.035,234.065,234.095,234.125,234.155,234.185,234.215,234.245,234.275,234.305,234.335,234.365,234.395,234.425,234.455,234.485,234.515,234.545,234.575,234.605,234.635,234.665,234.695,234.725,234.755,234.785,234.815,234.845,234.875,234.905,234.935,234.965,234.995,235.025,235.055,235.085,235.115,235.145,235.175,235.205,235.235,235.265,235.295,235.325,235.355,235.385,235.415,235.445,235.475,235.505,235.535,235.565,235.595,235.625,235.655,235.685,235.715,235.745,235.775,235.805,235.835,235.865,235.895,235.925,235.955,235.985,236.015,236.045,236.075,236.105,236.135,236.165,236.195,236.225,236.255,236.285,236.315,236.345,236.375,236.405,236.435,236.465,236.495,236.525,236.555,236.585,236.615,236.645,236.675,236.705,236.735,236.765,236.795,236.825,236.855,236.885,236.915,236.945,236.975,237.005,237.035,237.065,237.095,237.125,237.155,237.185,237.215,237.245,237.275,237.305,237.335,237.365,237.395,237.425,237.455,237.485,237.515,237.545,237.575,237.605,237.635,237.665,237.695,237.725,237.755,237.785,237.815,237.845,237.875,237.905,237.935,237.965,237.995,238.025,238.055,238.085,238.115,238.145,238.175,238.205,238.235,238.265,238.295,238.325,238.355,238.385,238.415,238.445,238.475,238.505,238.535,238.565,238.595,238.625,238.655,238.685,238.715,238.745,238.775,238.805,238.835,238.865,238.895,238.925,238.955,238.985,239.015,239.045,239.075,239.105,239.135,239.165,239.195,239.225,239.255,239.285,239.315,239.345,239.375,239.405,239.435,239.465,239.495,239.525,239.555,239.585,239.615,239.645,239.675,239.705,239.735,239.765,239.795,239.825,239.855,239.885,239.915,239.945,239.975,240.005,240.035,240.065,240.095,240.125,240.155,240.185,240.215,240.245,240.275,240.305,240.335,240.365,240.395,240.425,240.455,240.485,240.515,240.545,240.575,240.605,240.635,240.665,240.695,240.725,240.755,240.785,240.815,240.845,240.875,240.905,240.935,240.965,240.995,241.025,241.055,241.085,241.115,241.145,241.175,241.205,241.235,241.265,241.295,241.325,241.355,241.385,241.415,241.445,241.475,241.505,241.535,241.565,241.595,241.625,241.655,241.685,241.715,241.745,241.775,241.805,241.835,241.865,241.895,241.925,241.955,241.985,242.015,242.045,242.075,242.105,242.135,242.165,242.195,242.225,242.255,242.285,242.315,242.345,242.375,242.405,242.435,242.465,242.495,242.525,242.555,242.585,242.615,242.645,242.675,242.705,242.735,242.765,242.795,242.825,242.855,242.885,242.915,242.945,242.975,243.005,243.035,243.065,243.095,243.125,243.155,243.185,243.215,243.245,243.275,243.305,243.335,243.365,243.395,243.425,243.455,243.485,243.515,243.545,243.575,243.605,243.635,243.665,243.695,243.725,243.755,243.785,243.815,243.845,243.875,243.905,243.935,243.965,243.995,244.025,244.055,244.085,244.115,244.145,244.175,244.205,244.235,244.265,244.295,244.325,244.355,244.385,244.415,244.445,244.475,244.505,244.535,244.565,244.595,244.625,244.655,244.685,244.715,244.745,244.775,244.805,244.835,244.865,244.895,244.925,244.955,244.985,245.015,245.045,245.075,245.105,245.135,245.165,245.195,245.225,245.255,245.285,245.315,245.345,245.375,245.405,245.435,245.465,245.495,245.525,245.555,245.585,245.615,245.645,245.675,245.705,245.735,245.765,245.795,245.825,245.855,245.885,245.915,245.945,245.975,246.005,246.035,246.065,246.095,246.125,246.155,246.185,246.215,246.245,246.275,246.305,246.335,246.365,246.395,246.425,246.455,246.485,246.515,246.545,246.575,246.605,246.635,246.665,246.695,246.725,246.755,246.785,246.815,246.845,246.875,246.905,246.935,246.965,246.995,247.025,247.055,247.085,247.115,247.145,247.175,247.205,247.235,247.265,247.295,247.325,247.355,247.385,247.415,247.445,247.475,247.505,247.535,247.565,247.595,247.625,247.655,247.685,247.715,247.745,247.775,247.805,247.835,247.865,247.895,247.925,247.955,247.985,248.015,248.045,248.075,248.105,248.135,248.165,248.195,248.225,248.255,248.285,248.315,248.345,248.375,248.405,248.435,248.465,248.495,248.525,248.555,248.585,248.615,248.645,248.675,248.705,248.735,248.765,248.795,248.825,248.855,248.885,248.915,248.945,248.975,249.005,249.035,249.065,249.095,249.125,249.155,249.185,249.215,249.245,249.275,249.305,249.335,249.365,249.395,249.425,249.455,249.485,249.515,249.545,249.575,249.605,249.635,249.665,249.665]},{"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.965,3.995,4.025,4.055,4.085,4.115,4.1450000000000005,4.175,4.205,4.235,4.265,4.295,4.325,4.355,4.385,4.415,4.445,4.475,4.505,4.535,4.565,4.595,4.625,4.655,4.6850000000000005,4.715,4.745,4.775,4.805,4.835,4.865,4.8950000000000005,4.925,4.955,4.985,5.015,5.045,5.075,5.105,5.135,5.165,5.195,5.225,5.255,5.285,5.315,5.345,5.375,5.405,5.4350000000000005,5.465,5.495,5.525,5.555,5.585,5.615,5.6450000000000005,5.675,5.705,5.735,5.765,5.795,5.825,5.855,5.885,5.915,5.945,5.975,6.005,6.035,6.065,6.095,6.125,6.155,6.1850000000000005,6.215,6.245,6.275,6.305,6.335,6.365,6.3950000000000005,6.425,6.455,6.485,6.515,6.545,6.575,6.605,6.635,6.665,6.695,6.725,6.755,6.785,6.815,6.845,6.875,6.905,6.9350000000000005,6.965,6.995,7.025,7.055,7.085,7.115,7.1450000000000005,7.175,7.205,7.235,7.265,7.295,7.325,7.355,7.385,7.415,7.445,7.475,7.505,7.535,7.565,7.595,7.625,7.655,7.6850000000000005,7.715,7.745,7.775,7.805,7.835,7.865,7.8950000000000005,7.925,7.955,7.985,8.015,8.045,8.075,8.105,8.135,8.165000000000001,8.195,8.225,8.255,8.285,8.315,8.345,8.375,8.405,8.435,8.465,8.495,8.525,8.555,8.585,8.615,8.645,8.675,8.705,8.735,8.765,8.795,8.825,8.855,8.885,8.915000000000001,8.945,8.975,9.005,9.035,9.065,9.095,9.125,9.155,9.185,9.215,9.245,9.275,9.305,9.335,9.365,9.395,9.425,9.455,9.485,9.515,9.545,9.575,9.605,9.635,9.665000000000001,9.695,9.725,9.755,9.785,9.815,9.845,9.875,9.905,9.935,9.965,9.995,10.025,10.055,10.085,10.115,10.145,10.175,10.205,10.235,10.265,10.295,10.325,10.355,10.385,10.415000000000001,10.445,10.475,10.505,10.535,10.565,10.595,10.625,10.655,10.685,10.715,10.745,10.775,10.805,10.835,10.865,10.895,10.925,10.955,10.985,11.015,11.045,11.075,11.105,11.135,11.165000000000001,11.195,11.225,11.255,11.285,11.315,11.345,11.375,11.405,11.435,11.465,11.495,11.525,11.555,11.585,11.615,11.645,11.675,11.705,11.735,11.765,11.795,11.825,11.855,11.885,11.915000000000001,11.945,11.975,12.005,12.035,12.065,12.095,12.125,12.155,12.185,12.215,12.245,12.275,12.305,12.335,12.365,12.395,12.425,12.455,12.485,12.515,12.545,12.575,12.605,12.635,12.665000000000001,12.695,12.725,12.755,12.785,12.815,12.845,12.875,12.905,12.935,12.965,12.995,13.025,13.055,13.085,13.115,13.145,13.175,13.205,13.235,13.265,13.295,13.325,13.355,13.385,13.415000000000001,13.445,13.475,13.505,13.535,13.565,13.595,13.625,13.655,13.685,13.715,13.745,13.775,13.805,13.835,13.865,13.895,13.925,13.955,13.985,14.015,14.045,14.075,14.105,14.135,14.165000000000001,14.195,14.225,14.255,14.285,14.315,14.345,14.375,14.405,14.435,14.465,14.495,14.525,14.555,14.585,14.615,14.645,14.675,14.705,14.735,14.765,14.795,14.825,14.855,14.885,14.915000000000001,14.945,14.975,15.005,15.035,15.065,15.095,15.125,15.155,15.185,15.215,15.245,15.275,15.305,15.335,15.365,15.395,15.425,15.455,15.485,15.515,15.545,15.575,15.605,15.635,15.665000000000001,15.695,15.725,15.755,15.785,15.815,15.845,15.875,15.905,15.935,15.965,15.995,16.025,16.055,16.085,16.115,16.145,16.175,16.205,16.235,16.265,16.295,16.325,16.355,16.385,16.415,16.445,16.475,16.505,16.535,16.565,16.595,16.625,16.655,16.685,16.715,16.745,16.775,16.805,16.835,16.865,16.895,16.925,16.955,16.985,17.015,17.045,17.075,17.105,17.135,17.165,17.195,17.225,17.255,17.285,17.315,17.345,17.375,17.405,17.435,17.465,17.495,17.525,17.555,17.585,17.615,17.645,17.675,17.705,17.735,17.765,17.795,17.825,17.855,17.885,17.915,17.945,17.975,18.005,18.035,18.065,18.095,18.125,18.155,18.185,18.215,18.245,18.275,18.305,18.335,18.365,18.395,18.425,18.455,18.485,18.515,18.545,18.575,18.605,18.635,18.665,18.695,18.725,18.755,18.785,18.815,18.845,18.875,18.905,18.935,18.965,18.995,19.025,19.055,19.085,19.115,19.145,19.175,19.205,19.235,19.265,19.295,19.325,19.355,19.385,19.415,19.445,19.475,19.505,19.535,19.565,19.595,19.625,19.655,19.685,19.715,19.745,19.775,19.805,19.835,19.865,19.895,19.925,19.955,19.985,20.015,20.045,20.075,20.105,20.135,20.165,20.195,20.225,20.255,20.285,20.315,20.345,20.375,20.405,20.435,20.465,20.495,20.525,20.555,20.585,20.615,20.645,20.675,20.705,20.735,20.765,20.795,20.825,20.855,20.885,20.915,20.945,20.975,21.005,21.035,21.065,21.095,21.125,21.155,21.185,21.215,21.245,21.275,21.305,21.335,21.365,21.395,21.425,21.455,21.485,21.515,21.545,21.575,21.605,21.635,21.665,21.695,21.725,21.755,21.785,21.815,21.845,21.875,21.905,21.935,21.965,21.995,22.025,22.055,22.085,22.115,22.145,22.175,22.205,22.235,22.265,22.295,22.325,22.355,22.385,22.415,22.445,22.475,22.505,22.535,22.565,22.595,22.625,22.655,22.685,22.715,22.745,22.775,22.805,22.835,22.865,22.895,22.925,22.955,22.985,23.015,23.045,23.075,23.105,23.135,23.165,23.195,23.225,23.255,23.285,23.315,23.345,23.375,23.405,23.435,23.465,23.495,23.525,23.555,23.585,23.615,23.645,23.675,23.705,23.735,23.765,23.795,23.825,23.855,23.885,23.915,23.945,23.975,24.005,24.035,24.065,24.095,24.125,24.155,24.185,24.215,24.245,24.275,24.305,24.335,24.365,24.395,24.425,24.455,24.485,24.515,24.545,24.575,24.605,24.635,24.665,24.695,24.725,24.755,24.785,24.815,24.845,24.875,24.905,24.935,24.965,24.995,25.025,25.055,25.085,25.115,25.145,25.175,25.205,25.235,25.265,25.295,25.325,25.355,25.385,25.415,25.445,25.475,25.505,25.535,25.565,25.595,25.625,25.655,25.685,25.715,25.745,25.775,25.805,25.835,25.865,25.895,25.925,25.955,25.985,26.015,26.045,26.075,26.105,26.135,26.165,26.195,26.225,26.255,26.285,26.315,26.345,26.375,26.405,26.435,26.465,26.495,26.525,26.555,26.585,26.615,26.645,26.675,26.705,26.735,26.765,26.795,26.825,26.855,26.885,26.915,26.945,26.975,27.005,27.035,27.065,27.095,27.125,27.155,27.185,27.215,27.245,27.275,27.305,27.335,27.365,27.395,27.425,27.455,27.485,27.515,27.545,27.575,27.605,27.635,27.665,27.695,27.725,27.755,27.785,27.815,27.845,27.875,27.905,27.935,27.965,27.995,28.025,28.055,28.085,28.115,28.145,28.175,28.205,28.235,28.265,28.295,28.325,28.355,28.385,28.415,28.445,28.475,28.505,28.535,28.565,28.595,28.625,28.655,28.685,28.715,28.745,28.775,28.805,28.835,28.865,28.895,28.925,28.955,28.985,29.015,29.045,29.075,29.105,29.135,29.165,29.195,29.225,29.255,29.285,29.315,29.345,29.375,29.405,29.435,29.465,29.495,29.525,29.555,29.585,29.615,29.645,29.675,29.705,29.735,29.765,29.795,29.825,29.855,29.885,29.915,29.945,29.975,30.005,30.035,30.065,30.095,30.125,30.155,30.185,30.215,30.245,30.275,30.305,30.335,30.365,30.395,30.425,30.455,30.485,30.515,30.545,30.575,30.605,30.635,30.665,30.695,30.725,30.755,30.785,30.815,30.845,30.875,30.905,30.935,30.965,30.995,31.025,31.055,31.085,31.115,31.145,31.175,31.205,31.235,31.265,31.295,31.325,31.355,31.385,31.415,31.445,31.475,31.505,31.535,31.565,31.595,31.625,31.655,31.685,31.715,31.745,31.775,31.805,31.835,31.865,31.895,31.925,31.955,31.985,32.015,32.045,32.075,32.105,32.135,32.165,32.195,32.225,32.255,32.285,32.315,32.345,32.375,32.405,32.435,32.465,32.495,32.525,32.555,32.585,32.615,32.645,32.675,32.705,32.735,32.765,32.795,32.825,32.855,32.885,32.915,32.945,32.975,33.005,33.035,33.065,33.095,33.125,33.155,33.185,33.215,33.245,33.275,33.305,33.335,33.365,33.395,33.425,33.455,33.485,33.515,33.545,33.575,33.605,33.635,33.665,33.695,33.725,33.755,33.785,33.815,33.845,33.875,33.905,33.935,33.965,33.995,34.025,34.055,34.085,34.115,34.145,34.175,34.205,34.235,34.265,34.295,34.325,34.355,34.385,34.415,34.445,34.475,34.505,34.535,34.565,34.595,34.625,34.655,34.685,34.715,34.745,34.775,34.805,34.835,34.865,34.895,34.925,34.955,34.985,35.015,35.045,35.075,35.105,35.135,35.165,35.195,35.225,35.255,35.285,35.315,35.345,35.375,35.405,35.435,35.465,35.495,35.525,35.555,35.585,35.615,35.645,35.675,35.705,35.735,35.765,35.795,35.825,35.855,35.885,35.915,35.945,35.975,36.005,36.035,36.065,36.095,36.125,36.155,36.185,36.215,36.245,36.275,36.305,36.335,36.365,36.395,36.425,36.455,36.485,36.515,36.545,36.575,36.605,36.635,36.665,36.695,36.725,36.755,36.785,36.815,36.845,36.875,36.905,36.935,36.965,36.995,37.025,37.055,37.085,37.115,37.145,37.175,37.205,37.235,37.265,37.295,37.325,37.355,37.385,37.415,37.445,37.475,37.505,37.535,37.565,37.595,37.625,37.655,37.685,37.715,37.745,37.775,37.805,37.835,37.865,37.895,37.925,37.955,37.985,38.015,38.045,38.075,38.105,38.135,38.165,38.195,38.225,38.255,38.285,38.315,38.345,38.375,38.405,38.435,38.465,38.495,38.525,38.555,38.585,38.615,38.645,38.675,38.705,38.735,38.765,38.795,38.825,38.855,38.885,38.915,38.945,38.975,39.005,39.035,39.065,39.095,39.125,39.155,39.185,39.215,39.245,39.275,39.305,39.335,39.365,39.395,39.425,39.455,39.485,39.515,39.545,39.575,39.605,39.635,39.665,39.695,39.725,39.755,39.785,39.815,39.845,39.875,39.905,39.935,39.965,39.995,40.025,40.055,40.085,40.115,40.145,40.175,40.205,40.235,40.265,40.295,40.325,40.355,40.385,40.415,40.445,40.475,40.505,40.535,40.565,40.595,40.625,40.655,40.685,40.715,40.745,40.775,40.805,40.835,40.865,40.895,40.925,40.955,40.985,41.015,41.045,41.075,41.105,41.135,41.165,41.195,41.225,41.255,41.285,41.315,41.345,41.375,41.405,41.435,41.465,41.495,41.525,41.555,41.585,41.615,41.645,41.675,41.705,41.735,41.765,41.795,41.825,41.855,41.885,41.915,41.945,41.975,42.005,42.035,42.065,42.095,42.125,42.155,42.185,42.215,42.245,42.275,42.305,42.335,42.365,42.395,42.425,42.455,42.485,42.515,42.545,42.575,42.605,42.635,42.665,42.695,42.725,42.755,42.785,42.815,42.845,42.875,42.905,42.935,42.965,42.995,43.025,43.055,43.085,43.115,43.145,43.175,43.205,43.235,43.265,43.295,43.325,43.355,43.385,43.415,43.445,43.475,43.505,43.535,43.565,43.595,43.625,43.655,43.685,43.715,43.745,43.775,43.805,43.835,43.865,43.895,43.925,43.955,43.985,44.015,44.045,44.075,44.105,44.135,44.165,44.195,44.225,44.255,44.285,44.315,44.345,44.375,44.405,44.435,44.465,44.495,44.525,44.555,44.585,44.615,44.645,44.675,44.705,44.735,44.765,44.795,44.825,44.855,44.885,44.915,44.945,44.975,45.005,45.035,45.065,45.095,45.125,45.155,45.185,45.215,45.245,45.275,45.305,45.335,45.365,45.395,45.425,45.455,45.485,45.515,45.545,45.575,45.605,45.635,45.665,45.695,45.725,45.755,45.785,45.815,45.845,45.875,45.905,45.935,45.965,45.995,46.025,46.055,46.085,46.115,46.145,46.175,46.205,46.235,46.265,46.295,46.325,46.355,46.385,46.415,46.445,46.475,46.505,46.535,46.565,46.595,46.625,46.655,46.685,46.715,46.745,46.775,46.805,46.835,46.865,46.895,46.925,46.955,46.985,47.015,47.045,47.075,47.105,47.135,47.165,47.195,47.225,47.255,47.285,47.315,47.345,47.375,47.405,47.435,47.465,47.495,47.525,47.555,47.585,47.615,47.645,47.675,47.705,47.735,47.765,47.795,47.825,47.855,47.885,47.915,47.945,47.975,48.005,48.035,48.065,48.095,48.125,48.155,48.185,48.215,48.245,48.275,48.305,48.335,48.365,48.395,48.425,48.455,48.485,48.515,48.545,48.575,48.605,48.635,48.665,48.695,48.725,48.755,48.785,48.815,48.845,48.875,48.905,48.935,48.965,48.995,49.025,49.055,49.085,49.115,49.145,49.175,49.205,49.235,49.265,49.295,49.325,49.355,49.385,49.415,49.445,49.475,49.505,49.535,49.565,49.595,49.625,49.655,49.685,49.715,49.745,49.775,49.805,49.835,49.865,49.895,49.925,49.955,49.985,50.015,50.045,50.075,50.105,50.135,50.165,50.195,50.225,50.255,50.285,50.315,50.345,50.375,50.405,50.435,50.465,50.495,50.525,50.555,50.585,50.615,50.645,50.675,50.705,50.735,50.765,50.795,50.825,50.855,50.885,50.915,50.945,50.975,51.005,51.035,51.065,51.095,51.125,51.155,51.185,51.215,51.245,51.275,51.305,51.335,51.365,51.395,51.425,51.455,51.485,51.515,51.545,51.575,51.605,51.635,51.665,51.695,51.725,51.755,51.785,51.815,51.845,51.875,51.905,51.935,51.965,51.995,52.025,52.055,52.085,52.115,52.145,52.175,52.205,52.235,52.265,52.295,52.325,52.355,52.385,52.415,52.445,52.475,52.505,52.535,52.565,52.595,52.625,52.655,52.685,52.715,52.745,52.775,52.805,52.835,52.865,52.895,52.925,52.955,52.985,53.015,53.045,53.075,53.105,53.135,53.165,53.195,53.225,53.255,53.285,53.315,53.345,53.375,53.405,53.435,53.465,53.495,53.525,53.555,53.585,53.615,53.645,53.675,53.705,53.735,53.765,53.795,53.825,53.855,53.885,53.915,53.945,53.975,54.005,54.035,54.065,54.095,54.125,54.155,54.185,54.215,54.245,54.275,54.305,54.335,54.365,54.395,54.425,54.455,54.485,54.515,54.545,54.575,54.605,54.635,54.665,54.695,54.725,54.755,54.785,54.815,54.845,54.875,54.905,54.935,54.965,54.995,55.025,55.055,55.085,55.115,55.145,55.175,55.205,55.235,55.265,55.295,55.325,55.355,55.385,55.415,55.445,55.475,55.505,55.535,55.565,55.595,55.625,55.655,55.685,55.715,55.745,55.775,55.805,55.835,55.865,55.895,55.925,55.955,55.985,56.015,56.045,56.075,56.105,56.135,56.165,56.195,56.225,56.255,56.285,56.315,56.345,56.375,56.405,56.435,56.465,56.495,56.525,56.555,56.585,56.615,56.645,56.675,56.705,56.735,56.765,56.795,56.825,56.855,56.885,56.915,56.945,56.975,57.005,57.035,57.065,57.095,57.125,57.155,57.185,57.215,57.245,57.275,57.305,57.335,57.365,57.395,57.425,57.455,57.485,57.515,57.545,57.575,57.605,57.635,57.665,57.695,57.725,57.755,57.785,57.815,57.845,57.875,57.905,57.935,57.965,57.995,58.025,58.055,58.085,58.115,58.145,58.175,58.205,58.235,58.265,58.295,58.325,58.355,58.385,58.415,58.445,58.475,58.505,58.535,58.565,58.595,58.625,58.655,58.685,58.715,58.745,58.775,58.805,58.835,58.865,58.895,58.925,58.955,58.985,59.015,59.045,59.075,59.105,59.135,59.165,59.195,59.225,59.255,59.285,59.315,59.345,59.375,59.405,59.435,59.465,59.495,59.525,59.555,59.585,59.615,59.645,59.675,59.705,59.735,59.765,59.795,59.825,59.855,59.885,59.915,59.945,59.975,60.005,60.035,60.065,60.095,60.125,60.155,60.185,60.215,60.245,60.275,60.305,60.335,60.365,60.395,60.425,60.455,60.485,60.515,60.545,60.575,60.605,60.635,60.665,60.695,60.725,60.755,60.785,60.815,60.845,60.875,60.905,60.935,60.965,60.995,61.025,61.055,61.085,61.115,61.145,61.175,61.205,61.235,61.265,61.295,61.325,61.355,61.385,61.415,61.445,61.475,61.505,61.535,61.565,61.595,61.625,61.655,61.685,61.715,61.745,61.775,61.805,61.835,61.865,61.895,61.925,61.955,61.985,62.015,62.045,62.075,62.105,62.135,62.165,62.195,62.225,62.255,62.285,62.315,62.345,62.375,62.405,62.435,62.465,62.495,62.525,62.555,62.585,62.615,62.645,62.675,62.705,62.735,62.765,62.795,62.825,62.855,62.885,62.915,62.945,62.975,63.005,63.035,63.065,63.095,63.125,63.155,63.185,63.215,63.245,63.275,63.305,63.335,63.365,63.395,63.425,63.455,63.485,63.515,63.545,63.575,63.605,63.635,63.665,63.695,63.725,63.755,63.785,63.815,63.845,63.875,63.905,63.935,63.965,63.995,64.025,64.055,64.085,64.115,64.145,64.175,64.205,64.235,64.265,64.295,64.325,64.355,64.385,64.415,64.445,64.475,64.505,64.535,64.565,64.595,64.625,64.655,64.685,64.715,64.745,64.775,64.805,64.835,64.865,64.895,64.925,64.955,64.985,65.015,65.045,65.075,65.105,65.135,65.165,65.195,65.225,65.255,65.285,65.315,65.345,65.375,65.405,65.435,65.465,65.495,65.525,65.555,65.585,65.615,65.645,65.675,65.705,65.735,65.765,65.795,65.825,65.855,65.885,65.915,65.945,65.975,66.005,66.035,66.065,66.095,66.125,66.155,66.185,66.215,66.245,66.275,66.305,66.335,66.365,66.395,66.425,66.455,66.485,66.515,66.545,66.575,66.605,66.635,66.665,66.695,66.725,66.755,66.785,66.815,66.845,66.875,66.905,66.935,66.965,66.995,67.025,67.055,67.085,67.115,67.145,67.175,67.205,67.235,67.265,67.295,67.325,67.355,67.385,67.415,67.445,67.475,67.505,67.535,67.565,67.595,67.625,67.655,67.685,67.715,67.745,67.775,67.805,67.835,67.865,67.895,67.925,67.955,67.985,68.015,68.045,68.075,68.105,68.135,68.165,68.195,68.225,68.255,68.285,68.315,68.345,68.375,68.405,68.435,68.465,68.495,68.525,68.555,68.585,68.615,68.645,68.675,68.705,68.735,68.765,68.795,68.825,68.855,68.885,68.915,68.945,68.975,69.005,69.035,69.065,69.095,69.125,69.155,69.185,69.215,69.245,69.275,69.305,69.335,69.365,69.395,69.425,69.455,69.485,69.515,69.545,69.575,69.605,69.635,69.665,69.695,69.725,69.755,69.785,69.815,69.845,69.875,69.905,69.935,69.965,69.995,70.025,70.055,70.085,70.115,70.145,70.175,70.205,70.235,70.265,70.295,70.325,70.355,70.385,70.415,70.445,70.475,70.505,70.535,70.565,70.595,70.625,70.655,70.685,70.715,70.745,70.775,70.805,70.835,70.865,70.895,70.925,70.955,70.985,71.015,71.045,71.075,71.105,71.135,71.165,71.195,71.225,71.255,71.285,71.315,71.345,71.375,71.405,71.435,71.465,71.495,71.525,71.555,71.585,71.615,71.645,71.675,71.705,71.735,71.765,71.795,71.825,71.855,71.885,71.915,71.945,71.975,72.005,72.035,72.065,72.095,72.125,72.155,72.185,72.215,72.245,72.275,72.305,72.335,72.365,72.395,72.425,72.455,72.485,72.515,72.545,72.575,72.605,72.635,72.665,72.695,72.725,72.755,72.785,72.815,72.845,72.875,72.905,72.935,72.965,72.995,73.025,73.055,73.085,73.115,73.145,73.175,73.205,73.235,73.265,73.295,73.325,73.355,73.385,73.415,73.445,73.475,73.505,73.535,73.565,73.595,73.625,73.655,73.685,73.715,73.745,73.775,73.805,73.835,73.865,73.895,73.925,73.955,73.985,74.015,74.045,74.075,74.105,74.135,74.165,74.195,74.225,74.255,74.285,74.315,74.345,74.375,74.405,74.435,74.465,74.495,74.525,74.555,74.585,74.615,74.645,74.675,74.705,74.735,74.765,74.795,74.825,74.855,74.885,74.915,74.945,74.975,75.005,75.035,75.065,75.095,75.125,75.155,75.185,75.215,75.245,75.275,75.305,75.335,75.365,75.395,75.425,75.455,75.485,75.515,75.545,75.575,75.605,75.635,75.665,75.695,75.725,75.755,75.785,75.815,75.845,75.875,75.905,75.935,75.965,75.995,76.025,76.055,76.085,76.115,76.145,76.175,76.205,76.235,76.265,76.295,76.325,76.355,76.385,76.415,76.445,76.475,76.505,76.535,76.565,76.595,76.625,76.655,76.685,76.715,76.745,76.775,76.805,76.835,76.865,76.895,76.925,76.955,76.985,77.015,77.045,77.075,77.105,77.135,77.165,77.195,77.225,77.255,77.285,77.315,77.345,77.375,77.405,77.435,77.465,77.495,77.525,77.555,77.585,77.615,77.645,77.675,77.705,77.735,77.765,77.795,77.825,77.855,77.885,77.915,77.945,77.975,78.005,78.035,78.065,78.095,78.125,78.155,78.185,78.215,78.245,78.275,78.305,78.335,78.365,78.395,78.425,78.455,78.485,78.515,78.545,78.575,78.605,78.635,78.665,78.695,78.725,78.755,78.785,78.815,78.845,78.875,78.905,78.935,78.965,78.995,79.025,79.055,79.085,79.115,79.145,79.175,79.205,79.235,79.265,79.295,79.325,79.355,79.385,79.415,79.445,79.475,79.505,79.535,79.565,79.595,79.625,79.655,79.685,79.715,79.745,79.775,79.805,79.835,79.865,79.895,79.925,79.955,79.985,80.015,80.045,80.075,80.105,80.135,80.165,80.195,80.225,80.255,80.285,80.315,80.345,80.375,80.405,80.435,80.465,80.495,80.525,80.555,80.585,80.615,80.645,80.675,80.705,80.735,80.765,80.795,80.825,80.855,80.885,80.915,80.945,80.975,81.005,81.035,81.065,81.095,81.125,81.155,81.185,81.215,81.245,81.275,81.305,81.335,81.365,81.395,81.425,81.455,81.485,81.515,81.545,81.575,81.605,81.635,81.665,81.695,81.725,81.755,81.785,81.815,81.845,81.875,81.905,81.935,81.965,81.995,82.025,82.055,82.085,82.115,82.145,82.175,82.205,82.235,82.265,82.295,82.325,82.355,82.385,82.415,82.445,82.475,82.505,82.535,82.565,82.595,82.625,82.655,82.685,82.715,82.745,82.775,82.805,82.835,82.865,82.895,82.925,82.955,82.985,83.015,83.045,83.075,83.105,83.135,83.165,83.195,83.225,83.255,83.285,83.315,83.345,83.375,83.405,83.435,83.465,83.495,83.525,83.555,83.585,83.615,83.645,83.675,83.705,83.735,83.765,83.795,83.825,83.855,83.885,83.915,83.945,83.975,84.005,84.035,84.065,84.095,84.125,84.155,84.185,84.215,84.245,84.275,84.305,84.335,84.365,84.395,84.425,84.455,84.485,84.515,84.545,84.575,84.605,84.635,84.665,84.695,84.725,84.755,84.785,84.815,84.845,84.875,84.905,84.935,84.965,84.995,85.025,85.055,85.085,85.115,85.145,85.175,85.205,85.235,85.265,85.295,85.325,85.355,85.385,85.415,85.445,85.475,85.505,85.535,85.565,85.595,85.625,85.655,85.685,85.715,85.745,85.775,85.805,85.835,85.865,85.895,85.925,85.955,85.985,86.015,86.045,86.075,86.105,86.135,86.165,86.195,86.225,86.255,86.285,86.315,86.345,86.375,86.405,86.435,86.465,86.495,86.525,86.555,86.585,86.615,86.645,86.675,86.705,86.735,86.765,86.795,86.825,86.855,86.885,86.915,86.945,86.975,87.005,87.035,87.065,87.095,87.125,87.155,87.185,87.215,87.245,87.275,87.305,87.335,87.365,87.395,87.425,87.455,87.485,87.515,87.545,87.575,87.605,87.635,87.665,87.695,87.725,87.755,87.785,87.815,87.845,87.875,87.905,87.935,87.965,87.995,88.025,88.055,88.085,88.115,88.145,88.175,88.205,88.235,88.265,88.295,88.325,88.355,88.385,88.415,88.445,88.475,88.505,88.535,88.565,88.595,88.625,88.655,88.685,88.715,88.745,88.775,88.805,88.835,88.865,88.895,88.925,88.955,88.985,89.015,89.045,89.075,89.105,89.135,89.165,89.195,89.225,89.255,89.285,89.315,89.345,89.375,89.405,89.435,89.465,89.495,89.525,89.555,89.585,89.615,89.645,89.675,89.705,89.735,89.765,89.795,89.825,89.855,89.885,89.915,89.945,89.975,90.005,90.035,90.065,90.095,90.125,90.155,90.185,90.215,90.245,90.275,90.305,90.335,90.365,90.395,90.425,90.455,90.485,90.515,90.545,90.575,90.605,90.635,90.665,90.695,90.725,90.755,90.785,90.815,90.845,90.875,90.905,90.935,90.965,90.995,91.025,91.055,91.085,91.115,91.145,91.175,91.205,91.235,91.265,91.295,91.325,91.355,91.385,91.415,91.445,91.475,91.505,91.535,91.565,91.595,91.625,91.655,91.685,91.715,91.745,91.775,91.805,91.835,91.865,91.895,91.925,91.955,91.985,92.015,92.045,92.075,92.105,92.135,92.165,92.195,92.225,92.255,92.285,92.315,92.345,92.375,92.405,92.435,92.465,92.495,92.525,92.555,92.585,92.615,92.645,92.675,92.705,92.735,92.765,92.795,92.825,92.855,92.885,92.915,92.945,92.975,93.005,93.035,93.065,93.095,93.125,93.155,93.185,93.215,93.245,93.275,93.305,93.335,93.365,93.395,93.425,93.455,93.485,93.515,93.545,93.575,93.605,93.635,93.665,93.695,93.725,93.755,93.785,93.815,93.845,93.875,93.905,93.935,93.965,93.995,94.025,94.055,94.085,94.115,94.145,94.175,94.205,94.235,94.265,94.295,94.325,94.355,94.385,94.415,94.445,94.475,94.505,94.535,94.565,94.595,94.625,94.655,94.685,94.715,94.745,94.775,94.805,94.835,94.865,94.895,94.925,94.955,94.985,95.015,95.045,95.075,95.105,95.135,95.165,95.195,95.225,95.255,95.285,95.315,95.345,95.375,95.405,95.435,95.465,95.495,95.525,95.555,95.585,95.615,95.645,95.675,95.705,95.735,95.765,95.795,95.825,95.855,95.885,95.915,95.945,95.975,96.005,96.035,96.065,96.095,96.125,96.155,96.185,96.215,96.245,96.275,96.305,96.335,96.365,96.395,96.425,96.455,96.485,96.515,96.545,96.575,96.605,96.635,96.665,96.695,96.725,96.755,96.785,96.815,96.845,96.875,96.905,96.935,96.965,96.995,97.025,97.055,97.085,97.115,97.145,97.175,97.205,97.235,97.265,97.295,97.325,97.355,97.385,97.415,97.445,97.475,97.505,97.535,97.565,97.595,97.625,97.655,97.685,97.715,97.745,97.775,97.805,97.835,97.865,97.895,97.925,97.955,97.985,98.015,98.045,98.075,98.105,98.135,98.165,98.195,98.225,98.255,98.285,98.315,98.345,98.375,98.405,98.435,98.465,98.495,98.525,98.555,98.585,98.615,98.645,98.675,98.705,98.735,98.765,98.795,98.825,98.855,98.885,98.915,98.945,98.975,99.005,99.035,99.065,99.095,99.125,99.155,99.185,99.215,99.245,99.275,99.305,99.335,99.365,99.395,99.425,99.455,99.485,99.515,99.545,99.575,99.605,99.635,99.665,99.695,99.725,99.755,99.785,99.815,99.845,99.875,99.905,99.935,99.965,99.995,100.025,100.055,100.085,100.115,100.145,100.175,100.205,100.235,100.265,100.295,100.325,100.355,100.385,100.415,100.445,100.475,100.505,100.535,100.565,100.595,100.625,100.655,100.685,100.715,100.745,100.775,100.805,100.835,100.865,100.895,100.925,100.955,100.985,101.015,101.045,101.075,101.105,101.135,101.165,101.195,101.225,101.255,101.285,101.315,101.345,101.375,101.405,101.435,101.465,101.495,101.525,101.555,101.585,101.615,101.645,101.675,101.705,101.735,101.765,101.795,101.825,101.855,101.885,101.915,101.945,101.975,102.005,102.035,102.065,102.095,102.125,102.155,102.185,102.215,102.245,102.275,102.305,102.335,102.365,102.395,102.425,102.455,102.485,102.515,102.545,102.575,102.605,102.635,102.665,102.695,102.725,102.755,102.785,102.815,102.845,102.875,102.905,102.935,102.965,102.995,103.025,103.055,103.085,103.115,103.145,103.175,103.205,103.235,103.265,103.295,103.325,103.355,103.385,103.415,103.445,103.475,103.505,103.535,103.565,103.595,103.625,103.655,103.685,103.715,103.745,103.775,103.805,103.835,103.865,103.895,103.925,103.955,103.985,104.015,104.045,104.075,104.105,104.135,104.165,104.195,104.225,104.255,104.285,104.315,104.345,104.375,104.405,104.435,104.465,104.495,104.525,104.555,104.585,104.615,104.645,104.675,104.705,104.735,104.765,104.795,104.825,104.855,104.885,104.915,104.945,104.975,105.005,105.035,105.065,105.095,105.125,105.155,105.185,105.215,105.245,105.275,105.305,105.335,105.365,105.395,105.425,105.455,105.485,105.515,105.545,105.575,105.605,105.635,105.665,105.695,105.725,105.755,105.785,105.815,105.845,105.875,105.905,105.935,105.965,105.995,106.025,106.055,106.085,106.115,106.145,106.175,106.205,106.235,106.265,106.295,106.325,106.355,106.385,106.415,106.445,106.475,106.505,106.535,106.565,106.595,106.625,106.655,106.685,106.715,106.745,106.775,106.805,106.835,106.865,106.895,106.925,106.955,106.985,107.015,107.045,107.075,107.105,107.135,107.165,107.195,107.225,107.255,107.285,107.315,107.345,107.375,107.405,107.435,107.465,107.495,107.525,107.555,107.585,107.615,107.645,107.675,107.705,107.735,107.765,107.795,107.825,107.855,107.885,107.915,107.945,107.975,108.005,108.035,108.065,108.095,108.125,108.155,108.185,108.215,108.245,108.275,108.305,108.335,108.365,108.395,108.425,108.455,108.485,108.515,108.545,108.575,108.605,108.635,108.665,108.695,108.725,108.755,108.785,108.815,108.845,108.875,108.905,108.935,108.965,108.995,109.025,109.055,109.085,109.115,109.145,109.175,109.205,109.235,109.265,109.295,109.325,109.355,109.385,109.415,109.445,109.475,109.505,109.535,109.565,109.595,109.625,109.655,109.685,109.715,109.745,109.775,109.805,109.835,109.865,109.895,109.925,109.955,109.985,110.015,110.045,110.075,110.105,110.135,110.165,110.195,110.225,110.255,110.285,110.315,110.345,110.375,110.405,110.435,110.465,110.495,110.525,110.555,110.585,110.615,110.645,110.675,110.705,110.735,110.765,110.795,110.825,110.855,110.885,110.915,110.945,110.975,111.005,111.035,111.065,111.095,111.125,111.155,111.185,111.215,111.245,111.275,111.305,111.335,111.365,111.395,111.425,111.455,111.485,111.515,111.545,111.575,111.605,111.635,111.665,111.695,111.725,111.755,111.785,111.815,111.845,111.875,111.905,111.935,111.965,111.995,112.025,112.055,112.085,112.115,112.145,112.175,112.205,112.235,112.265,112.295,112.325,112.355,112.385,112.415,112.445,112.475,112.505,112.535,112.565,112.595,112.625,112.655,112.685,112.715,112.745,112.775,112.805,112.835,112.865,112.895,112.925,112.955,112.985,113.015,113.045,113.075,113.105,113.135,113.165,113.195,113.225,113.255,113.285,113.315,113.345,113.375,113.405,113.435,113.465,113.495,113.525,113.555,113.585,113.615,113.645,113.675,113.705,113.735,113.765,113.795,113.825,113.855,113.885,113.915,113.945,113.975,114.005,114.035,114.065,114.095,114.125,114.155,114.185,114.215,114.245,114.275,114.305,114.335,114.365,114.395,114.425,114.455,114.485,114.515,114.545,114.575,114.605,114.635,114.665,114.695,114.725,114.755,114.785,114.815,114.845,114.875,114.905,114.935,114.965,114.995,115.025,115.055,115.085,115.115,115.145,115.175,115.205,115.235,115.265,115.295,115.325,115.355,115.385,115.415,115.445,115.475,115.505,115.535,115.565,115.595,115.625,115.655,115.685,115.715,115.745,115.775,115.805,115.835,115.865,115.895,115.925,115.955,115.985,116.015,116.045,116.075,116.105,116.135,116.165,116.195,116.225,116.255,116.285,116.315,116.345,116.375,116.405,116.435,116.465,116.495,116.525,116.555,116.585,116.615,116.645,116.675,116.705,116.735,116.765,116.795,116.825,116.855,116.885,116.915,116.945,116.975,117.005,117.035,117.065,117.095,117.125,117.155,117.185,117.215,117.245,117.275,117.305,117.335,117.365,117.395,117.425,117.455,117.485,117.515,117.545,117.575,117.605,117.635,117.665,117.695,117.725,117.755,117.785,117.815,117.845,117.875,117.905,117.935,117.965,117.995,118.025,118.055,118.085,118.115,118.145,118.175,118.205,118.235,118.265,118.295,118.325,118.355,118.385,118.415,118.445,118.475,118.505,118.535,118.565,118.595,118.625,118.655,118.685,118.715,118.745,118.775,118.805,118.835,118.865,118.895,118.925,118.955,118.985,119.015,119.045,119.075,119.105,119.135,119.165,119.195,119.225,119.255,119.285,119.315,119.345,119.375,119.405,119.435,119.465,119.495,119.525,119.555,119.585,119.615,119.645,119.675,119.705,119.735,119.765,119.795,119.825,119.855,119.885,119.915,119.945,119.975,120.005,120.035,120.065,120.095,120.125,120.155,120.185,120.215,120.245,120.275,120.305,120.335,120.365,120.395,120.425,120.455,120.485,120.515,120.545,120.575,120.605,120.635,120.665,120.695,120.725,120.755,120.785,120.815,120.845,120.875,120.905,120.935,120.965,120.995,121.025,121.055,121.085,121.115,121.145,121.175,121.205,121.235,121.265,121.295,121.325,121.355,121.385,121.415,121.445,121.475,121.505,121.535,121.565,121.595,121.625,121.655,121.685,121.715,121.745,121.775,121.805,121.835,121.865,121.895,121.925,121.955,121.985,122.015,122.045,122.075,122.105,122.135,122.165,122.195,122.225,122.255,122.285,122.315,122.345,122.375,122.405,122.435,122.465,122.495,122.525,122.555,122.585,122.615,122.645,122.675,122.705,122.735,122.765,122.795,122.825,122.855,122.885,122.915,122.945,122.975,123.005,123.035,123.065,123.095,123.125,123.155,123.185,123.215,123.245,123.275,123.305,123.335,123.365,123.395,123.425,123.455,123.485,123.515,123.545,123.575,123.605,123.635,123.665,123.695,123.725,123.755,123.785,123.815,123.845,123.875,123.905,123.935,123.965,123.995,124.025,124.055,124.085,124.115,124.145,124.175,124.205,124.235,124.265,124.295,124.325,124.355,124.385,124.415,124.445,124.475,124.505,124.535,124.565,124.595,124.625,124.655,124.685,124.715,124.745,124.775,124.805,124.835,124.865,124.895,124.925,124.955,124.985,125.015,125.045,125.075,125.105,125.135,125.165,125.195,125.225,125.255,125.285,125.315,125.345,125.375,125.405,125.435,125.465,125.495,125.525,125.555,125.585,125.615,125.645,125.675,125.705,125.735,125.765,125.795,125.825,125.855,125.885,125.915,125.945,125.975,126.005,126.035,126.065,126.095,126.125,126.155,126.185,126.215,126.245,126.275,126.305,126.335,126.365,126.395,126.425,126.455,126.485,126.515,126.545,126.575,126.605,126.635,126.665,126.695,126.725,126.755,126.785,126.815,126.845,126.875,126.905,126.935,126.965,126.995,127.025,127.055,127.085,127.115,127.145,127.175,127.205,127.235,127.265,127.295,127.325,127.355,127.385,127.415,127.445,127.475,127.505,127.535,127.565,127.595,127.625,127.655,127.685,127.715,127.745,127.775,127.805,127.835,127.865,127.895,127.925,127.955,127.985,128.015,128.045,128.075,128.105,128.135,128.165,128.195,128.225,128.255,128.285,128.315,128.345,128.375,128.405,128.435,128.465,128.495,128.525,128.555,128.585,128.615,128.645,128.675,128.705,128.735,128.765,128.795,128.825,128.855,128.885,128.915,128.945,128.975,129.005,129.035,129.065,129.095,129.125,129.155,129.185,129.215,129.245,129.275,129.305,129.335,129.365,129.395,129.425,129.455,129.485,129.515,129.545,129.575,129.605,129.635,129.665,129.695,129.725,129.755,129.785,129.815,129.845,129.875,129.905,129.935,129.965,129.995,130.025,130.055,130.085,130.115,130.145,130.175,130.205,130.235,130.265,130.295,130.325,130.355,130.385,130.415,130.445,130.475,130.505,130.535,130.565,130.595,130.625,130.655,130.685,130.715,130.745,130.775,130.805,130.835,130.865,130.895,130.925,130.955,130.985,131.015,131.045,131.075,131.105,131.135,131.165,131.195,131.225,131.255,131.285,131.315,131.345,131.375,131.405,131.435,131.465,131.495,131.525,131.555,131.585,131.615,131.645,131.675,131.705,131.735,131.765,131.795,131.825,131.855,131.885,131.915,131.945,131.975,132.005,132.035,132.065,132.095,132.125,132.155,132.185,132.215,132.245,132.275,132.305,132.335,132.365,132.395,132.425,132.455,132.485,132.515,132.545,132.575,132.605,132.635,132.665,132.695,132.725,132.755,132.785,132.815,132.845,132.875,132.905,132.935,132.965,132.995,133.025,133.055,133.085,133.115,133.145,133.175,133.205,133.235,133.265,133.295,133.325,133.355,133.385,133.415,133.445,133.475,133.505,133.535,133.565,133.595,133.625,133.655,133.685,133.715,133.745,133.775,133.805,133.835,133.865,133.895,133.925,133.955,133.985,134.015,134.045,134.075,134.105,134.135,134.165,134.195,134.225,134.255,134.285,134.315,134.345,134.375,134.405,134.435,134.465,134.495,134.525,134.555,134.585,134.615,134.645,134.675,134.705,134.735,134.765,134.795,134.825,134.855,134.885,134.915,134.945,134.975,135.005,135.035,135.065,135.095,135.125,135.155,135.185,135.215,135.245,135.275,135.305,135.335,135.365,135.395,135.425,135.455,135.485,135.515,135.545,135.575,135.605,135.635,135.665,135.695,135.725,135.755,135.785,135.815,135.845,135.875,135.905,135.935,135.965,135.995,136.025,136.055,136.085,136.115,136.145,136.175,136.205,136.235,136.265,136.295,136.325,136.355,136.385,136.415,136.445,136.475,136.505,136.535,136.565,136.595,136.625,136.655,136.685,136.715,136.745,136.775,136.805,136.835,136.865,136.895,136.925,136.955,136.985,137.015,137.045,137.075,137.105,137.135,137.165,137.195,137.225,137.255,137.285,137.315,137.345,137.375,137.405,137.435,137.465,137.495,137.525,137.555,137.585,137.615,137.645,137.675,137.705,137.735,137.765,137.795,137.825,137.855,137.885,137.915,137.945,137.975,138.005,138.035,138.065,138.095,138.125,138.155,138.185,138.215,138.245,138.275,138.305,138.335,138.365,138.395,138.425,138.455,138.485,138.515,138.545,138.575,138.605,138.635,138.665,138.695,138.725,138.755,138.785,138.815,138.845,138.875,138.905,138.935,138.965,138.995,139.025,139.055,139.085,139.115,139.145,139.175,139.205,139.235,139.265,139.295,139.325,139.355,139.385,139.415,139.445,139.475,139.505,139.535,139.565,139.595,139.625,139.655,139.685,139.715,139.745,139.775,139.805,139.835,139.865,139.895,139.925,139.955,139.985,140.015,140.045,140.075,140.105,140.135,140.165,140.195,140.225,140.255,140.285,140.315,140.345,140.375,140.405,140.435,140.465,140.495,140.525,140.555,140.585,140.615,140.645,140.675,140.705,140.735,140.765,140.795,140.825,140.855,140.885,140.915,140.945,140.975,141.005,141.035,141.065,141.095,141.125,141.155,141.185,141.215,141.245,141.275,141.305,141.335,141.365,141.395,141.425,141.455,141.485,141.515,141.545,141.575,141.605,141.635,141.665,141.695,141.725,141.755,141.785,141.815,141.845,141.875,141.905,141.935,141.965,141.995,142.025,142.055,142.085,142.115,142.145,142.175,142.205,142.235,142.265,142.295,142.325,142.355,142.385,142.415,142.445,142.475,142.505,142.535,142.565,142.595,142.625,142.655,142.685,142.715,142.745,142.775,142.805,142.835,142.865,142.895,142.925,142.955,142.985,143.015,143.045,143.075,143.105,143.135,143.165,143.195,143.225,143.255,143.285,143.315,143.345,143.375,143.405,143.435,143.465,143.495,143.525,143.555,143.585,143.615,143.645,143.675,143.705,143.735,143.765,143.795,143.825,143.855,143.885,143.915,143.945,143.975,144.005,144.035,144.065,144.095,144.125,144.155,144.185,144.215,144.245,144.275,144.305,144.335,144.365,144.395,144.425,144.455,144.485,144.515,144.545,144.575,144.605,144.635,144.665,144.695,144.725,144.755,144.785,144.815,144.845,144.875,144.905,144.935,144.965,144.995,145.025,145.055,145.085,145.115,145.145,145.175,145.205,145.235,145.265,145.295,145.325,145.355,145.385,145.415,145.445,145.475,145.505,145.535,145.565,145.595,145.625,145.655,145.685,145.715,145.745,145.775,145.805,145.835,145.865,145.895,145.925,145.955,145.985,146.015,146.045,146.075,146.105,146.135,146.165,146.195,146.225,146.255,146.285,146.315,146.345,146.375,146.405,146.435,146.465,146.495,146.525,146.555,146.585,146.615,146.645,146.675,146.705,146.735,146.765,146.795,146.825,146.855,146.885,146.915,146.945,146.975,147.005,147.035,147.065,147.095,147.125,147.155,147.185,147.215,147.245,147.275,147.305,147.335,147.365,147.395,147.425,147.455,147.485,147.515,147.545,147.575,147.605,147.635,147.665,147.695,147.725,147.755,147.785,147.815,147.845,147.875,147.905,147.935,147.965,147.995,148.025,148.055,148.085,148.115,148.145,148.175,148.205,148.235,148.265,148.295,148.325,148.355,148.385,148.415,148.445,148.475,148.505,148.535,148.565,148.595,148.625,148.655,148.685,148.715,148.745,148.775,148.805,148.835,148.865,148.895,148.925,148.955,148.985,149.015,149.045,149.075,149.105,149.135,149.165,149.195,149.225,149.255,149.285,149.315,149.345,149.375,149.405,149.435,149.465,149.495,149.525,149.555,149.585,149.615,149.645,149.675,149.705,149.735,149.765,149.795,149.825,149.855,149.885,149.915,149.945,149.975,150.005,150.035,150.065,150.095,150.125,150.155,150.185,150.215,150.245,150.275,150.305,150.335,150.365,150.395,150.425,150.455,150.485,150.515,150.545,150.575,150.605,150.635,150.665,150.695,150.725,150.755,150.785,150.815,150.845,150.875,150.905,150.935,150.965,150.995,151.025,151.055,151.085,151.115,151.145,151.175,151.205,151.235,151.265,151.295,151.325,151.355,151.385,151.415,151.445,151.475,151.505,151.535,151.565,151.595,151.625,151.655,151.685,151.715,151.745,151.775,151.805,151.835,151.865,151.895,151.925,151.955,151.985,152.015,152.045,152.075,152.105,152.135,152.165,152.195,152.225,152.255,152.285,152.315,152.345,152.375,152.405,152.435,152.465,152.495,152.525,152.555,152.585,152.615,152.645,152.675,152.705,152.735,152.765,152.795,152.825,152.855,152.885,152.915,152.945,152.975,153.005,153.035,153.065,153.095,153.125,153.155,153.185,153.215,153.245,153.275,153.305,153.335,153.365,153.395,153.425,153.455,153.485,153.515,153.545,153.575,153.605,153.635,153.665,153.695,153.725,153.755,153.785,153.815,153.845,153.875,153.905,153.935,153.965,153.995,154.025,154.055,154.085,154.115,154.145,154.175,154.205,154.235,154.265,154.295,154.325,154.355,154.385,154.415,154.445,154.475,154.505,154.535,154.565,154.595,154.625,154.655,154.685,154.715,154.745,154.775,154.805,154.835,154.865,154.895,154.925,154.955,154.985,155.015,155.045,155.075,155.105,155.135,155.165,155.195,155.225,155.255,155.285,155.315,155.345,155.375,155.405,155.435,155.465,155.495,155.525,155.555,155.585,155.615,155.645,155.675,155.705,155.735,155.765,155.795,155.825,155.855,155.885,155.915,155.945,155.975,156.005,156.035,156.065,156.095,156.125,156.155,156.185,156.215,156.245,156.275,156.305,156.335,156.365,156.395,156.425,156.455,156.485,156.515,156.545,156.575,156.605,156.635,156.665,156.695,156.725,156.755,156.785,156.815,156.845,156.875,156.905,156.935,156.965,156.995,157.025,157.055,157.085,157.115,157.145,157.175,157.205,157.235,157.265,157.295,157.325,157.355,157.385,157.415,157.445,157.475,157.505,157.535,157.565,157.595,157.625,157.655,157.685,157.715,157.745,157.775,157.805,157.835,157.865,157.895,157.925,157.955,157.985,158.015,158.045,158.075,158.105,158.135,158.165,158.195,158.225,158.255,158.285,158.315,158.345,158.375,158.405,158.435,158.465,158.495,158.525,158.555,158.585,158.615,158.645,158.675,158.705,158.735,158.765,158.795,158.825,158.855,158.885,158.915,158.945,158.975,159.005,159.035,159.065,159.095,159.125,159.155,159.185,159.215,159.245,159.275,159.305,159.335,159.365,159.395,159.425,159.455,159.485,159.515,159.545,159.575,159.605,159.635,159.665,159.695,159.725,159.755,159.785,159.815,159.845,159.875,159.905,159.935,159.965,159.995,160.025,160.055,160.085,160.115,160.145,160.175,160.205,160.235,160.265,160.295,160.325,160.355,160.385,160.415,160.445,160.475,160.505,160.535,160.565,160.595,160.625,160.655,160.685,160.715,160.745,160.775,160.805,160.835,160.865,160.895,160.925,160.955,160.985,161.015,161.045,161.075,161.105,161.135,161.165,161.195,161.225,161.255,161.285,161.315,161.345,161.375,161.405,161.435,161.465,161.495,161.525,161.555,161.585,161.615,161.645,161.675,161.705,161.735,161.765,161.795,161.825,161.855,161.885,161.915,161.945,161.975,162.005,162.035,162.065,162.095,162.125,162.155,162.185,162.215,162.245,162.275,162.305,162.335,162.365,162.395,162.425,162.455,162.485,162.515,162.545,162.575,162.605,162.635,162.665,162.695,162.725,162.755,162.785,162.815,162.845,162.875,162.905,162.935,162.965,162.995,163.025,163.055,163.085,163.115,163.145,163.175,163.205,163.235,163.265,163.295,163.325,163.355,163.385,163.415,163.445,163.475,163.505,163.535,163.565,163.595,163.625,163.655,163.685,163.715,163.745,163.775,163.805,163.835,163.865,163.895,163.925,163.955,163.985,164.015,164.045,164.075,164.105,164.135,164.165,164.195,164.225,164.255,164.285,164.315,164.345,164.375,164.405,164.435,164.465,164.495,164.525,164.555,164.585,164.615,164.645,164.675,164.705,164.735,164.765,164.795,164.825,164.855,164.885,164.915,164.945,164.975,165.005,165.035,165.065,165.095,165.125,165.155,165.185,165.215,165.245,165.275,165.305,165.335,165.365,165.395,165.425,165.455,165.485,165.515,165.545,165.575,165.605,165.635,165.665,165.695,165.725,165.755,165.785,165.815,165.845,165.875,165.905,165.935,165.965,165.995,166.025,166.055,166.085,166.115,166.145,166.175,166.205,166.235,166.265,166.295,166.325,166.355,166.385,166.415,166.445,166.475,166.505,166.535,166.565,166.595,166.625,166.655,166.685,166.715,166.745,166.775,166.805,166.835,166.865,166.895,166.925,166.955,166.985,167.015,167.045,167.075,167.105,167.135,167.165,167.195,167.225,167.255,167.285,167.315,167.345,167.375,167.405,167.435,167.465,167.495,167.525,167.555,167.585,167.615,167.645,167.675,167.705,167.735,167.765,167.795,167.825,167.855,167.885,167.915,167.945,167.975,168.005,168.035,168.065,168.095,168.125,168.155,168.185,168.215,168.245,168.275,168.305,168.335,168.365,168.395,168.425,168.455,168.485,168.515,168.545,168.575,168.605,168.635,168.665,168.695,168.725,168.755,168.785,168.815,168.845,168.875,168.905,168.935,168.965,168.995,169.025,169.055,169.085,169.115,169.145,169.175,169.205,169.235,169.265,169.295,169.325,169.355,169.385,169.415,169.445,169.475,169.505,169.535,169.565,169.595,169.625,169.655,169.685,169.715,169.745,169.775,169.805,169.835,169.865,169.895,169.925,169.955,169.985,170.015,170.045,170.075,170.105,170.135,170.165,170.195,170.225,170.255,170.285,170.315,170.345,170.375,170.405,170.435,170.465,170.495,170.525,170.555,170.585,170.615,170.645,170.675,170.705,170.735,170.765,170.795,170.825,170.855,170.885,170.915,170.945,170.975,171.005,171.035,171.065,171.095,171.125,171.155,171.185,171.215,171.245,171.275,171.305,171.335,171.365,171.395,171.425,171.455,171.485,171.515,171.545,171.575,171.605,171.635,171.665,171.695,171.725,171.755,171.785,171.815,171.845,171.875,171.905,171.935,171.965,171.995,172.025,172.055,172.085,172.115,172.145,172.175,172.205,172.235,172.265,172.295,172.325,172.355,172.385,172.415,172.445,172.475,172.505,172.535,172.565,172.595,172.625,172.655,172.685,172.715,172.745,172.775,172.805,172.835,172.865,172.895,172.925,172.955,172.985,173.015,173.045,173.075,173.105,173.135,173.165,173.195,173.225,173.255,173.285,173.315,173.345,173.375,173.405,173.435,173.465,173.495,173.525,173.555,173.585,173.615,173.645,173.675,173.705,173.735,173.765,173.795,173.825,173.855,173.885,173.915,173.945,173.975,174.005,174.035,174.065,174.095,174.125,174.155,174.185,174.215,174.245,174.275,174.305,174.335,174.365,174.395,174.425,174.455,174.485,174.515,174.545,174.575,174.605,174.635,174.665,174.695,174.725,174.755,174.785,174.815,174.845,174.875,174.905,174.935,174.965,174.995,175.025,175.055,175.085,175.115,175.145,175.175,175.205,175.235,175.265,175.295,175.325,175.355,175.385,175.415,175.445,175.475,175.505,175.535,175.565,175.595,175.625,175.655,175.685,175.715,175.745,175.775,175.805,175.835,175.865,175.895,175.925,175.955,175.985,176.015,176.045,176.075,176.105,176.135,176.165,176.195,176.225,176.255,176.285,176.315,176.345,176.375,176.405,176.435,176.465,176.495,176.525,176.555,176.585,176.615,176.645,176.675,176.705,176.735,176.765,176.795,176.825,176.855,176.885,176.915,176.945,176.975,177.005,177.035,177.065,177.095,177.125,177.155,177.185,177.215,177.245,177.275,177.305,177.335,177.365,177.395,177.425,177.455,177.485,177.515,177.545,177.575,177.605,177.635,177.665,177.695,177.725,177.755,177.785,177.815,177.845,177.875,177.905,177.935,177.965,177.995,178.025,178.055,178.085,178.115,178.145,178.175,178.205,178.235,178.265,178.295,178.325,178.355,178.385,178.415,178.445,178.475,178.505,178.535,178.565,178.595,178.625,178.655,178.685,178.715,178.745,178.775,178.805,178.835,178.865,178.895,178.925,178.955,178.985,179.015,179.045,179.075,179.105,179.135,179.165,179.195,179.225,179.255,179.285,179.315,179.345,179.375,179.405,179.435,179.465,179.495,179.525,179.555,179.585,179.615,179.645,179.675,179.705,179.735,179.765,179.795,179.825,179.855,179.885,179.915,179.945,179.975,180.005,180.035,180.065,180.095,180.125,180.155,180.185,180.215,180.245,180.275,180.305,180.335,180.365,180.395,180.425,180.455,180.485,180.515,180.545,180.575,180.605,180.635,180.665,180.695,180.725,180.755,180.785,180.815,180.845,180.875,180.905,180.935,180.965,180.995,181.025,181.055,181.085,181.115,181.145,181.175,181.205,181.235,181.265,181.295,181.325,181.355,181.385,181.415,181.445,181.475,181.505,181.535,181.565,181.595,181.625,181.655,181.685,181.715,181.745,181.775,181.805,181.835,181.865,181.895,181.925,181.955,181.985,182.015,182.045,182.075,182.105,182.135,182.165,182.195,182.225,182.255,182.285,182.315,182.345,182.375,182.405,182.435,182.465,182.495,182.525,182.555,182.585,182.615,182.645,182.675,182.705,182.735,182.765,182.795,182.825,182.855,182.885,182.915,182.945,182.975,183.005,183.035,183.065,183.095,183.125,183.155,183.185,183.215,183.245,183.275,183.305,183.335,183.365,183.395,183.425,183.455,183.485,183.515,183.545,183.575,183.605,183.635,183.665,183.695,183.725,183.755,183.785,183.815,183.845,183.875,183.905,183.935,183.965,183.995,184.025,184.055,184.085,184.115,184.145,184.175,184.205,184.235,184.265,184.295,184.325,184.355,184.385,184.415,184.445,184.475,184.505,184.535,184.565,184.595,184.625,184.655,184.685,184.715,184.745,184.775,184.805,184.835,184.865,184.895,184.925,184.955,184.985,185.015,185.045,185.075,185.105,185.135,185.165,185.195,185.225,185.255,185.285,185.315,185.345,185.375,185.405,185.435,185.465,185.495,185.525,185.555,185.585,185.615,185.645,185.675,185.705,185.735,185.765,185.795,185.825,185.855,185.885,185.915,185.945,185.975,186.005,186.035,186.065,186.095,186.125,186.155,186.185,186.215,186.245,186.275,186.305,186.335,186.365,186.395,186.425,186.455,186.485,186.515,186.545,186.575,186.605,186.635,186.665,186.695,186.725,186.755,186.785,186.815,186.845,186.875,186.905,186.935,186.965,186.995,187.025,187.055,187.085,187.115,187.145,187.175,187.205,187.235,187.265,187.295,187.325,187.355,187.385,187.415,187.445,187.475,187.505,187.535,187.565,187.595,187.625,187.655,187.685,187.715,187.745,187.775,187.805,187.835,187.865,187.895,187.925,187.955,187.985,188.015,188.045,188.075,188.105,188.135,188.165,188.195,188.225,188.255,188.285,188.315,188.345,188.375,188.405,188.435,188.465,188.495,188.525,188.555,188.585,188.615,188.645,188.675,188.705,188.735,188.765,188.795,188.825,188.855,188.885,188.915,188.945,188.975,189.005,189.035,189.065,189.095,189.125,189.155,189.185,189.215,189.245,189.275,189.305,189.335,189.365,189.395,189.425,189.455,189.485,189.515,189.545,189.575,189.605,189.635,189.665,189.695,189.725,189.755,189.785,189.815,189.845,189.875,189.905,189.935,189.965,189.995,190.025,190.055,190.085,190.115,190.145,190.175,190.205,190.235,190.265,190.295,190.325,190.355,190.385,190.415,190.445,190.475,190.505,190.535,190.565,190.595,190.625,190.655,190.685,190.715,190.745,190.775,190.805,190.835,190.865,190.895,190.925,190.955,190.985,191.015,191.045,191.075,191.105,191.135,191.165,191.195,191.225,191.255,191.285,191.315,191.345,191.375,191.405,191.435,191.465,191.495,191.525,191.555,191.585,191.615,191.645,191.675,191.705,191.735,191.765,191.795,191.825,191.855,191.885,191.915,191.945,191.975,192.005,192.035,192.065,192.095,192.125,192.155,192.185,192.215,192.245,192.275,192.305,192.335,192.365,192.395,192.425,192.455,192.485,192.515,192.545,192.575,192.605,192.635,192.665,192.695,192.725,192.755,192.785,192.815,192.845,192.875,192.905,192.935,192.965,192.995,193.025,193.055,193.085,193.115,193.145,193.175,193.205,193.235,193.265,193.295,193.325,193.355,193.385,193.415,193.445,193.475,193.505,193.535,193.565,193.595,193.625,193.655,193.685,193.715,193.745,193.775,193.805,193.835,193.865,193.895,193.925,193.955,193.985,194.015,194.045,194.075,194.105,194.135,194.165,194.195,194.225,194.255,194.285,194.315,194.345,194.375,194.405,194.435,194.465,194.495,194.525,194.555,194.585,194.615,194.645,194.675,194.705,194.735,194.765,194.795,194.825,194.855,194.885,194.915,194.945,194.975,195.005,195.035,195.065,195.095,195.125,195.155,195.185,195.215,195.245,195.275,195.305,195.335,195.365,195.395,195.425,195.455,195.485,195.515,195.545,195.575,195.605,195.635,195.665,195.695,195.725,195.755,195.785,195.815,195.845,195.875,195.905,195.935,195.965,195.995,196.025,196.055,196.085,196.115,196.145,196.175,196.205,196.235,196.265,196.295,196.325,196.355,196.385,196.415,196.445,196.475,196.505,196.535,196.565,196.595,196.625,196.655,196.685,196.715,196.745,196.775,196.805,196.835,196.865,196.895,196.925,196.955,196.985,197.015,197.045,197.075,197.105,197.135,197.165,197.195,197.225,197.255,197.285,197.315,197.345,197.375,197.405,197.435,197.465,197.495,197.525,197.555,197.585,197.615,197.645,197.675,197.705,197.735,197.765,197.795,197.825,197.855,197.885,197.915,197.945,197.975,198.005,198.035,198.065,198.095,198.125,198.155,198.185,198.215,198.245,198.275,198.305,198.335,198.365,198.395,198.425,198.455,198.485,198.515,198.545,198.575,198.605,198.635,198.665,198.695,198.725,198.755,198.785,198.815,198.845,198.875,198.905,198.935,198.965,198.995,199.025,199.055,199.085,199.115,199.145,199.175,199.205,199.235,199.265,199.295,199.325,199.355,199.385,199.415,199.445,199.475,199.505,199.535,199.565,199.595,199.625,199.655,199.685,199.715,199.745,199.775,199.805,199.835,199.865,199.895,199.925,199.955,199.985,200.015,200.045,200.075,200.105,200.135,200.165,200.195,200.225,200.255,200.285,200.315,200.345,200.375,200.405,200.435,200.465,200.495,200.525,200.555,200.585,200.615,200.645,200.675,200.705,200.735,200.765,200.795,200.825,200.855,200.885,200.915,200.945,200.975,201.005,201.035,201.065,201.095,201.125,201.155,201.185,201.215,201.245,201.275,201.305,201.335,201.365,201.395,201.425,201.455,201.485,201.515,201.545,201.575,201.605,201.635,201.665,201.695,201.725,201.755,201.785,201.815,201.845,201.875,201.905,201.935,201.965,201.995,202.025,202.055,202.085,202.115,202.145,202.175,202.205,202.235,202.265,202.295,202.325,202.355,202.385,202.415,202.445,202.475,202.505,202.535,202.565,202.595,202.625,202.655,202.685,202.715,202.745,202.775,202.805,202.835,202.865,202.895,202.925,202.955,202.985,203.015,203.045,203.075,203.105,203.135,203.165,203.195,203.225,203.255,203.285,203.315,203.345,203.375,203.405,203.435,203.465,203.495,203.525,203.555,203.585,203.615,203.645,203.675,203.705,203.735,203.765,203.795,203.825,203.855,203.885,203.915,203.945,203.975,204.005,204.035,204.065,204.095,204.125,204.155,204.185,204.215,204.245,204.275,204.305,204.335,204.365,204.395,204.425,204.455,204.485,204.515,204.545,204.575,204.605,204.635,204.665,204.695,204.725,204.755,204.785,204.815,204.845,204.875,204.905,204.935,204.965,204.995,205.025,205.055,205.085,205.115,205.145,205.175,205.205,205.235,205.265,205.295,205.325,205.355,205.385,205.415,205.445,205.475,205.505,205.535,205.565,205.595,205.625,205.655,205.685,205.715,205.745,205.775,205.805,205.835,205.865,205.895,205.925,205.955,205.985,206.015,206.045,206.075,206.105,206.135,206.165,206.195,206.225,206.255,206.285,206.315,206.345,206.375,206.405,206.435,206.465,206.495,206.525,206.555,206.585,206.615,206.645,206.675,206.705,206.735,206.765,206.795,206.825,206.855,206.885,206.915,206.945,206.975,207.005,207.035,207.065,207.095,207.125,207.155,207.185,207.215,207.245,207.275,207.305,207.335,207.365,207.395,207.425,207.455,207.485,207.515,207.545,207.575,207.605,207.635,207.665,207.695,207.725,207.755,207.785,207.815,207.845,207.875,207.905,207.935,207.965,207.995,208.025,208.055,208.085,208.115,208.145,208.175,208.205,208.235,208.265,208.295,208.325,208.355,208.385,208.415,208.445,208.475,208.505,208.535,208.565,208.595,208.625,208.655,208.685,208.715,208.745,208.775,208.805,208.835,208.865,208.895,208.925,208.955,208.985,209.015,209.045,209.075,209.105,209.135,209.165,209.195,209.225,209.255,209.285,209.315,209.345,209.375,209.405,209.435,209.465,209.495,209.525,209.555,209.585,209.615,209.645,209.675,209.705,209.735,209.765,209.795,209.825,209.855,209.885,209.915,209.945,209.975,210.005,210.035,210.065,210.095,210.125,210.155,210.185,210.215,210.245,210.275,210.305,210.335,210.365,210.395,210.425,210.455,210.485,210.515,210.545,210.575,210.605,210.635,210.665,210.695,210.725,210.755,210.785,210.815,210.845,210.875,210.905,210.935,210.965,210.995,211.025,211.055,211.085,211.115,211.145,211.175,211.205,211.235,211.265,211.295,211.325,211.355,211.385,211.415,211.445,211.475,211.505,211.535,211.565,211.595,211.625,211.655,211.685,211.715,211.745,211.775,211.805,211.835,211.865,211.895,211.925,211.955,211.985,212.015,212.045,212.075,212.105,212.135,212.165,212.195,212.225,212.255,212.285,212.315,212.345,212.375,212.405,212.435,212.465,212.495,212.525,212.555,212.585,212.615,212.645,212.675,212.705,212.735,212.765,212.795,212.825,212.855,212.885,212.915,212.945,212.975,213.005,213.035,213.065,213.095,213.125,213.155,213.185,213.215,213.245,213.275,213.305,213.335,213.365,213.395,213.425,213.455,213.485,213.515,213.545,213.575,213.605,213.635,213.665,213.695,213.725,213.755,213.785,213.815,213.845,213.875,213.905,213.935,213.965,213.995,214.025,214.055,214.085,214.115,214.145,214.175,214.205,214.235,214.265,214.295,214.325,214.355,214.385,214.415,214.445,214.475,214.505,214.535,214.565,214.595,214.625,214.655,214.685,214.715,214.745,214.775,214.805,214.835,214.865,214.895,214.925,214.955,214.985,215.015,215.045,215.075,215.105,215.135,215.165,215.195,215.225,215.255,215.285,215.315,215.345,215.375,215.405,215.435,215.465,215.495,215.525,215.555,215.585,215.615,215.645,215.675,215.705,215.735,215.765,215.795,215.825,215.855,215.885,215.915,215.945,215.975,216.005,216.035,216.065,216.095,216.125,216.155,216.185,216.215,216.245,216.275,216.305,216.335,216.365,216.395,216.425,216.455,216.485,216.515,216.545,216.575,216.605,216.635,216.665,216.695,216.725,216.755,216.785,216.815,216.845,216.875,216.905,216.935,216.965,216.995,217.025,217.055,217.085,217.115,217.145,217.175,217.205,217.235,217.265,217.295,217.325,217.355,217.385,217.415,217.445,217.475,217.505,217.535,217.565,217.595,217.625,217.655,217.685,217.715,217.745,217.775,217.805,217.835,217.865,217.895,217.925,217.955,217.985,218.015,218.045,218.075,218.105,218.135,218.165,218.195,218.225,218.255,218.285,218.315,218.345,218.375,218.405,218.435,218.465,218.495,218.525,218.555,218.585,218.615,218.645,218.675,218.705,218.735,218.765,218.795,218.825,218.855,218.885,218.915,218.945,218.975,219.005,219.035,219.065,219.095,219.125,219.155,219.185,219.215,219.245,219.275,219.305,219.335,219.365,219.395,219.425,219.455,219.485,219.515,219.545,219.575,219.605,219.635,219.665,219.695,219.725,219.755,219.785,219.815,219.845,219.875,219.905,219.935,219.965,219.995,220.025,220.055,220.085,220.115,220.145,220.175,220.205,220.235,220.265,220.295,220.325,220.355,220.385,220.415,220.445,220.475,220.505,220.535,220.565,220.595,220.625,220.655,220.685,220.715,220.745,220.775,220.805,220.835,220.865,220.895,220.925,220.955,220.985,221.015,221.045,221.075,221.105,221.135,221.165,221.195,221.225,221.255,221.285,221.315,221.345,221.375,221.405,221.435,221.465,221.495,221.525,221.555,221.585,221.615,221.645,221.675,221.705,221.735,221.765,221.795,221.825,221.855,221.885,221.915,221.945,221.975,222.005,222.035,222.065,222.095,222.125,222.155,222.185,222.215,222.245,222.275,222.305,222.335,222.365,222.395,222.425,222.455,222.485,222.515,222.545,222.575,222.605,222.635,222.665,222.695,222.725,222.755,222.785,222.815,222.845,222.875,222.905,222.935,222.965,222.995,223.025,223.055,223.085,223.115,223.145,223.175,223.205,223.235,223.265,223.295,223.325,223.355,223.385,223.415,223.445,223.475,223.505,223.535,223.565,223.595,223.625,223.655,223.685,223.715,223.745,223.775,223.805,223.835,223.865,223.895,223.925,223.955,223.985,224.015,224.045,224.075,224.105,224.135,224.165,224.195,224.225,224.255,224.285,224.315,224.345,224.375,224.405,224.435,224.465,224.495,224.525,224.555,224.585,224.615,224.645,224.675,224.705,224.735,224.765,224.795,224.825,224.855,224.885,224.915,224.945,224.975,225.005,225.035,225.065,225.095,225.125,225.155,225.185,225.215,225.245,225.275,225.305,225.335,225.365,225.395,225.425,225.455,225.485,225.515,225.545,225.575,225.605,225.635,225.665,225.695,225.725,225.755,225.785,225.815,225.845,225.875,225.905,225.935,225.965,225.995,226.025,226.055,226.085,226.115,226.145,226.175,226.205,226.235,226.265,226.295,226.325,226.355,226.385,226.415,226.445,226.475,226.505,226.535,226.565,226.595,226.625,226.655,226.685,226.715,226.745,226.775,226.805,226.835,226.865,226.895,226.925,226.955,226.985,227.015,227.045,227.075,227.105,227.135,227.165,227.195,227.225,227.255,227.285,227.315,227.345,227.375,227.405,227.435,227.465,227.495,227.525,227.555,227.585,227.615,227.645,227.675,227.705,227.735,227.765,227.795,227.825,227.855,227.885,227.915,227.945,227.975,228.005,228.035,228.065,228.095,228.125,228.155,228.185,228.215,228.245,228.275,228.305,228.335,228.365,228.395,228.425,228.455,228.485,228.515,228.545,228.575,228.605,228.635,228.665,228.695,228.725,228.755,228.785,228.815,228.845,228.875,228.905,228.935,228.965,228.995,229.025,229.055,229.085,229.115,229.145,229.175,229.205,229.235,229.265,229.295,229.325,229.355,229.385,229.415,229.445,229.475,229.505,229.535,229.565,229.595,229.625,229.655,229.685,229.715,229.745,229.775,229.805,229.835,229.865,229.895,229.925,229.955,229.985,230.015,230.045,230.075,230.105,230.135,230.165,230.195,230.225,230.255,230.285,230.315,230.345,230.375,230.405,230.435,230.465,230.495,230.525,230.555,230.585,230.615,230.645,230.675,230.705,230.735,230.765,230.795,230.825,230.855,230.885,230.915,230.945,230.975,231.005,231.035,231.065,231.095,231.125,231.155,231.185,231.215,231.245,231.275,231.305,231.335,231.365,231.395,231.425,231.455,231.485,231.515,231.545,231.575,231.605,231.635,231.665,231.695,231.725,231.755,231.785,231.815,231.845,231.875,231.905,231.935,231.965,231.995,232.025,232.055,232.085,232.115,232.145,232.175,232.205,232.235,232.265,232.295,232.325,232.355,232.385,232.415,232.445,232.475,232.505,232.535,232.565,232.595,232.625,232.655,232.685,232.715,232.745,232.775,232.805,232.835,232.865,232.895,232.925,232.955,232.985,233.015,233.045,233.075,233.105,233.135,233.165,233.195,233.225,233.255,233.285,233.315,233.345,233.375,233.405,233.435,233.465,233.495,233.525,233.555,233.585,233.615,233.645,233.675,233.705,233.735,233.765,233.795,233.825,233.855,233.885,233.915,233.945,233.975,234.005,234.035,234.065,234.095,234.125,234.155,234.185,234.215,234.245,234.275,234.305,234.335,234.365,234.395,234.425,234.455,234.485,234.515,234.545,234.575,234.605,234.635,234.665,234.695,234.725,234.755,234.785,234.815,234.845,234.875,234.905,234.935,234.965,234.995,235.025,235.055,235.085,235.115,235.145,235.175,235.205,235.235,235.265,235.295,235.325,235.355,235.385,235.415,235.445,235.475,235.505,235.535,235.565,235.595,235.625,235.655,235.685,235.715,235.745,235.775,235.805,235.835,235.865,235.895,235.925,235.955,235.985,236.015,236.045,236.075,236.105,236.135,236.165,236.195,236.225,236.255,236.285,236.315,236.345,236.375,236.405,236.435,236.465,236.495,236.525,236.555,236.585,236.615,236.645,236.675,236.705,236.735,236.765,236.795,236.825,236.855,236.885,236.915,236.945,236.975,237.005,237.035,237.065,237.095,237.125,237.155,237.185,237.215,237.245,237.275,237.305,237.335,237.365,237.395,237.425,237.455,237.485,237.515,237.545,237.575,237.605,237.635,237.665,237.695,237.725,237.755,237.785,237.815,237.845,237.875,237.905,237.935,237.965,237.995,238.025,238.055,238.085,238.115,238.145,238.175,238.205,238.235,238.265,238.295,238.325,238.355,238.385,238.415,238.445,238.475,238.505,238.535,238.565,238.595,238.625,238.655,238.685,238.715,238.745,238.775,238.805,238.835,238.865,238.895,238.925,238.955,238.985,239.015,239.045,239.075,239.105,239.135,239.165,239.195,239.225,239.255,239.285,239.315,239.345,239.375,239.405,239.435,239.465,239.495,239.525,239.555,239.585,239.615,239.645,239.675,239.705,239.735,239.765,239.795,239.825,239.855,239.885,239.915,239.945,239.975,240.005,240.035,240.065,240.095,240.125,240.155,240.185,240.215,240.245,240.275,240.305,240.335,240.365,240.395,240.425,240.455,240.485,240.515,240.545,240.575,240.605,240.635,240.665,240.695,240.725,240.755,240.785,240.815,240.845,240.875,240.905,240.935,240.965,240.995,241.025,241.055,241.085,241.115,241.145,241.175,241.205,241.235,241.265,241.295,241.325,241.355,241.385,241.415,241.445,241.475,241.505,241.535,241.565,241.595,241.625,241.655,241.685,241.715,241.745,241.775,241.805,241.835,241.865,241.895,241.925,241.955,241.985,242.015,242.045,242.075,242.105,242.135,242.165,242.195,242.225,242.255,242.285,242.315,242.345,242.375,242.405,242.435,242.465,242.495,242.525,242.555,242.585,242.615,242.645,242.675,242.705,242.735,242.765,242.795,242.825,242.855,242.885,242.915,242.945,242.975,243.005,243.035,243.065,243.095,243.125,243.155,243.185,243.215,243.245,243.275,243.305,243.335,243.365,243.395,243.425,243.455,243.485,243.515,243.545,243.575,243.605,243.635,243.665,243.695,243.725,243.755,243.785,243.815,243.845,243.875,243.905,243.935,243.965,243.995,244.025,244.055,244.085,244.115,244.145,244.175,244.205,244.235,244.265,244.295,244.325,244.355,244.385,244.415,244.445,244.475,244.505,244.535,244.565,244.595,244.625,244.655,244.685,244.715,244.745,244.775,244.805,244.835,244.865,244.895,244.925,244.955,244.985,245.015,245.045,245.075,245.105,245.135,245.165,245.195,245.225,245.255,245.285,245.315,245.345,245.375,245.405,245.435,245.465,245.495,245.525,245.555,245.585,245.615,245.645,245.675,245.705,245.735,245.765,245.795,245.825,245.855,245.885,245.915,245.945,245.975,246.005,246.035,246.065,246.095,246.125,246.155,246.185,246.215,246.245,246.275,246.305,246.335,246.365,246.395,246.425,246.455,246.485,246.515,246.545,246.575,246.605,246.635,246.665,246.695,246.725,246.755,246.785,246.815,246.845,246.875,246.905,246.935,246.965,246.995,247.025,247.055,247.085,247.115,247.145,247.175,247.205,247.235,247.265,247.295,247.325,247.355,247.385,247.415,247.445,247.475,247.505,247.535,247.565,247.595,247.625,247.655,247.685,247.715,247.745,247.775,247.805,247.835,247.865,247.895,247.925,247.955,247.985,248.015,248.045,248.075,248.105,248.135,248.165,248.195,248.225,248.255,248.285,248.315,248.345,248.375,248.405,248.435,248.465,248.495,248.525,248.555,248.585,248.615,248.645,248.675,248.705,248.735,248.765,248.795,248.825,248.855,248.885,248.915,248.945,248.975,249.005,249.035,249.065,249.095,249.125,249.155,249.185,249.215,249.245,249.275,249.305,249.335,249.365,249.395,249.425,249.455,249.485,249.515,249.545,249.575,249.605,249.635,249.665,249.665]}], {"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 6ba21fc5b..88717325c 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('f7d15955-b75d-4a97-8395-bbea5e80eec5')) { + if (document.getElementById('4824de86-e3b2-4df7-93a9-ade67632393c')) { Plotly.newPlot( - 'f7d15955-b75d-4a97-8395-bbea5e80eec5', + '4824de86-e3b2-4df7-93a9-ade67632393c', [{"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 6555fa325..7a931892d 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('c726ec3e-0eaa-4f9f-83d7-f2fc3040553e')) { + if (document.getElementById('72cd2912-1d2b-4011-9da9-e2b43e2e4915')) { Plotly.newPlot( - 'c726ec3e-0eaa-4f9f-83d7-f2fc3040553e', + '72cd2912-1d2b-4011-9da9-e2b43e2e4915', [{"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 b44cef2be..34d1dd4e2 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('ea249ed4-3a72-44c7-bc6a-8a5237199504')) { + if (document.getElementById('4b0c27b6-c4f7-43b2-aab4-95515f687a05')) { Plotly.newPlot( - 'ea249ed4-3a72-44c7-bc6a-8a5237199504', + '4b0c27b6-c4f7-43b2-aab4-95515f687a05', [{"zmax":1.3656977,"type":"heatmap","zmin":0.000365114,"colorscale":"Greys","z":[[0.0029520858,0.003026678,0.0031625598,0.0032923261,0.0034932184,0.00371019,0.004006668,0.0043945825,0.0047939937,0.005361468,0.006045357,0.0070042927,0.008377247,0.010959604,0.011619528,0.014220501,0.022897037,0.034335982,0.054799587,0.1880618,0.039971463,0.02469847,0.015860407,0.014904172,0.013079322,0.021413593,0.013571678,0.018115975,0.015553027,0.051983926,0.056123592,0.117990926,0.057560094,0.027396878,0.025132183,0.01732664,0.043274313,0.019554157,0.024480257,0.016194759,0.043063354,0.013860641,0.02114528,0.01190895,0.035708178,0.040978175,0.02595086,0.014077083,0.018160712,0.010914545,0.033492018,0.011932063,0.029385874,0.0132941725,0.014569954,0.03727061,0.05790053,0.06421944,0.00853285,0.042227525,0.023337224,0.041595124,0.029460358,0.016043486,0.040497117,0.04180821,0.09832693,0.075370505,0.07613488,0.017500574,0.0094466265,0.012455075,0.013818016,0.025868012,0.006736952,0.008932527,0.011055865,0.011336601,0.007654851,0.0234165,0.018311156,0.022118745,0.058349654,0.07526433,0.016469311,0.013088964,0.001232782,0.0029859154,0.0047148773,0.003248736,0.002915953,0.0027255767,0.0026317805,0.0026073346,0.0025962612,0.002568908,0.0026366874,0.0026246964,0.0027297009,0.0027453564],[0.0040531927,0.003959018,0.0039130556,0.0038419054,0.003838667,0.00387224,0.003868966,0.0039304476,0.0040181167,0.0041057654,0.004267585,0.0044682766,0.004596375,0.003870969,0.006057005,0.010393139,0.011862171,0.050723016,0.1323742,0.160003,0.031574734,0.016178714,0.025054023,0.015026908,0.014830521,0.022747356,0.035442267,0.035821967,0.015511257,0.03032528,0.02161596,0.03317013,0.028050201,0.020978728,0.035276186,0.017845236,0.041593857,0.027872289,0.017048448,0.017476516,0.04488083,0.009741607,0.022252064,0.016187856,0.03817328,0.040954016,0.032079026,0.006131023,0.017036136,0.014367837,0.025292892,0.014578743,0.02472512,0.014044811,0.011131299,0.044713642,0.056106467,0.06604074,0.007817228,0.039335873,0.027585264,0.034366205,0.026305355,0.024105677,0.043809414,0.034584712,0.03368263,0.07052723,0.07000622,0.025359305,0.05654687,0.021007065,0.025841681,0.032682,0.004260148,0.0080199875,0.012085047,0.009659447,0.009017414,0.024333846,0.027309757,0.01771067,0.24190739,0.07871014,0.024203844,0.008861754,0.014591744,0.012226003,0.0072791176,0.0069691115,0.006464259,0.0059754937,0.0056105563,0.0052621174,0.0050437166,0.0047544404,0.0045481813,0.0044086156,0.004212354,0.0041647544],[0.00597601,0.0059350342,0.005905671,0.0059381532,0.0058889384,0.00592353,0.0059751365,0.0061200582,0.0062136296,0.0064150207,0.0066418266,0.006955279,0.007429271,0.008537986,0.007450313,0.00715963,0.015255853,0.041831672,0.05277845,0.037286036,0.07517568,0.023816798,0.034449127,0.017310096,0.018259246,0.019962141,0.042354014,0.049473066,0.05407427,0.057185892,0.08173869,0.033855148,0.016445255,0.020180875,0.032133155,0.01549393,0.045779537,0.02756856,0.011182834,0.025292112,0.04440099,0.006372068,0.022072047,0.021209922,0.04387291,0.0413064,0.040361103,0.0031277593,0.021518877,0.011619034,0.017142171,0.012314456,0.026532125,0.008431539,0.018111132,0.04599743,0.06195335,0.061322723,0.010248541,0.048020188,0.020612208,0.044836424,0.035631258,0.013371347,0.03218374,0.047441565,0.03807492,0.05759333,0.06453036,0.013271568,0.050699927,0.061838966,0.021579947,0.026920633,0.007079243,0.015006311,0.017824905,0.009048362,0.005242441,0.020276979,0.018842053,0.024432812,0.15622815,0.07307423,0.019913342,0.017984126,0.014179718,0.008189542,0.011736449,0.00970096,0.008757973,0.008078004,0.0076172915,0.007221882,0.0069596423,0.006673688,0.0064875144,0.0062974193,0.006128585,0.0061136526],[0.009704816,0.00982255,0.00999936,0.0102967005,0.010432765,0.010790347,0.011250145,0.011729136,0.012330377,0.013056371,0.013939319,0.015056009,0.016625792,0.019684128,0.020287098,0.021697775,0.030030413,0.024511786,0.0288539,0.20050286,0.20018828,0.04068831,0.012762676,0.007511636,0.002877975,0.006697707,0.030176057,0.042519785,0.079914704,0.11511651,0.050384145,0.033847746,0.022781452,0.017913505,0.024705827,0.015285485,0.049604613,0.026807992,0.009936761,0.034574464,0.041810513,0.0036136738,0.021998418,0.028259315,0.05102094,0.043681752,0.04990757,0.0070596384,0.028921356,0.011113351,0.013122433,0.014030847,0.031299982,0.008487586,0.025595864,0.053138692,0.06756557,0.06231729,0.009778658,0.052367665,0.0185971,0.04908936,0.03950235,0.017963674,0.023832176,0.050423514,0.039266236,0.04957076,0.054344554,0.014808746,0.008705051,0.07684156,0.076436035,0.03471839,0.04233302,0.03190759,0.02330023,0.023349363,0.017489977,0.029647427,0.031027324,0.020599924,0.027331881,0.035838056,0.015875585,0.02008579,0.01165616,0.009091464,0.0130977165,0.0114060715,0.010693611,0.0102674235,0.010004256,0.0097733205,0.009635352,0.0095276795,0.009452343,0.009476229,0.009480327,0.00958862],[0.004723468,0.0048113675,0.004877172,0.004992668,0.0050698896,0.0051857843,0.0054376675,0.0056134094,0.0058953883,0.0061762617,0.0065458873,0.006978373,0.0075859707,0.008603748,0.009147066,0.012329296,0.009779331,0.018423999,0.056087874,0.08892858,0.06713241,0.024181824,0.035770066,0.018846698,0.019481871,0.016822333,0.046655886,0.05479764,0.09375965,0.071289666,0.03578903,0.02504928,0.025303673,0.008362682,0.016519431,0.011325812,0.05169239,0.02566471,0.014966826,0.042804852,0.03729805,0.009625011,0.024638686,0.032684732,0.060661417,0.052977804,0.063579656,0.02245605,0.03843457,0.0082212975,0.013791175,0.016491048,0.03827242,0.018325992,0.035024017,0.06514969,0.07458516,0.06573433,0.00851662,0.056468867,0.023299491,0.0524118,0.040802274,0.029160872,0.023421606,0.050013736,0.032101624,0.03855872,0.03943759,0.007993308,0.018532114,0.050626893,0.119756944,0.08317785,0.061095614,0.02958472,0.015445228,0.016439337,0.019572362,0.021622742,0.03867159,0.018645158,0.012916283,0.020797724,0.011290472,0.015494951,0.004876194,0.003826512,0.007301242,0.0059792674,0.0055297534,0.0052346424,0.0050540557,0.0049304175,0.0047976947,0.0047407956,0.0046900637,0.004662163,0.0047047823,0.0047030644],[0.0036016463,0.003756174,0.0038630483,0.0039617303,0.0041209008,0.004246969,0.004475291,0.004660111,0.00494801,0.005190845,0.0055090003,0.0058955504,0.0063668285,0.007176523,0.008129553,0.0102521265,0.0073105604,0.018607413,0.04504521,0.048862208,0.021536281,0.01591261,0.03929555,0.01544971,0.024911808,0.0302826,0.06520694,0.0888014,0.047183897,0.05661995,0.027982214,0.023939336,0.02485517,0.008113374,0.017448016,0.011068196,0.05433153,0.031163251,0.015318797,0.053503644,0.039806474,0.01082328,0.032821365,0.041479047,0.07757247,0.069065295,0.086125195,0.043359324,0.049986817,0.021475999,0.024210658,0.031669192,0.05093959,0.03976482,0.04891492,0.08595559,0.08577303,0.07126317,0.009097915,0.06277177,0.033255078,0.054036055,0.042183075,0.03748522,0.02762875,0.05241851,0.02370857,0.029343305,0.029934598,0.004790341,0.02515863,0.043968916,0.05877603,0.054151542,0.0701779,0.041401397,0.009731434,0.011380778,0.01805909,0.016295522,0.046101704,0.02247609,0.011403229,0.01339667,0.007027669,0.013335221,0.0016092336,0.0031814256,0.004623509,0.003625191,0.0034075647,0.0033407556,0.0032835242,0.0033125035,0.0032829642,0.0033464094,0.0033821843,0.0034034534,0.003519457,0.0035371485],[0.0037945784,0.004034699,0.0041950797,0.0043400186,0.004590055,0.0047586667,0.0050674146,0.0052861725,0.005701812,0.005994829,0.006431727,0.0069216057,0.007503715,0.008247006,0.00933555,0.0133195305,0.009129618,0.018271673,0.04703491,0.04961787,0.050077893,0.030638492,0.04586623,0.019000107,0.04086539,0.084844194,0.096532546,0.061250616,0.034478404,0.049077712,0.027033001,0.023631101,0.029564422,0.0069569717,0.017656254,0.011515992,0.06266105,0.037480626,0.016117038,0.07291407,0.045835502,0.020883981,0.04492572,0.056188744,0.12486454,0.1105402,0.14464584,0.09701389,0.08444443,0.061594076,0.06894386,0.0698445,0.096211776,0.09321418,0.09228482,0.13204007,0.12108074,0.07528007,0.01917266,0.07662085,0.047789823,0.06157115,0.049908187,0.048890293,0.032437276,0.059383877,0.01905516,0.028025182,0.031376563,0.00631564,0.023315933,0.038771026,0.023330726,0.023812812,0.071164355,0.067202136,0.027199967,0.013649432,0.01833594,0.012435055,0.06645519,0.030805003,0.011841369,0.00872949,0.0047024176,0.011119944,0.0009842742,0.004646595,0.0024708488,0.0023968327,0.002580398,0.0027795355,0.0028664388,0.0030492821,0.0030866633,0.003286981,0.003341459,0.0034523574,0.0036349297,0.0037013246],[0.0067104474,0.006787855,0.0069070584,0.0069247116,0.0070734043,0.007229159,0.0074181072,0.0076036113,0.008004908,0.008199429,0.008697039,0.009055328,0.009669405,0.009186172,0.012825365,0.017593177,0.014390856,0.03638735,0.058477167,0.03950722,0.15311103,0.1306201,0.09120497,0.04514141,0.0693007,0.111566365,0.060993895,0.054062348,0.026182266,0.043251157,0.025244808,0.024503635,0.03425753,0.004948409,0.018948544,0.012747357,0.07541875,0.048237067,0.01995291,0.120918326,0.06901848,0.05809486,0.08330613,0.09049018,0.42668325,0.39967805,0.47516006,0.4160319,0.3687175,0.35640875,0.37351218,0.3605458,0.4117502,0.4162574,0.39267108,0.4344119,0.40513223,0.07615383,0.058700245,0.112294935,0.08982514,0.075854436,0.06485707,0.061885945,0.041999098,0.0730682,0.011507591,0.030306863,0.039671846,0.018176224,0.02923158,0.038839165,0.018443422,0.017396696,0.031275235,0.075889766,0.10884894,0.054661207,0.0396013,0.042984087,0.11479861,0.06662098,0.028874367,0.018296618,0.010619031,0.00413764,0.0140829515,0.012531851,0.008234761,0.008277623,0.008188327,0.007822461,0.007702316,0.0073450333,0.007281742,0.0070542297,0.0068940134,0.0068567735,0.006814532,0.0067096],[0.002815634,0.002694473,0.0025733316,0.0026383102,0.0026466358,0.0027919183,0.0028959175,0.0029403376,0.0033347693,0.0033927225,0.003797414,0.0041929246,0.0045541995,0.00515351,0.005889318,0.010117129,0.0040964726,0.019057626,0.037677098,0.026647434,0.04595728,0.08077314,0.09805939,0.06035909,0.09077349,0.07483683,0.051589727,0.050759763,0.020690843,0.034563214,0.022473106,0.020640422,0.038040273,0.00690953,0.02897139,0.010576046,0.09312552,0.10249797,0.07726451,0.5552329,0.4244221,0.45977658,0.45876202,0.501119,0.7162886,0.67542255,0.24368942,0.36169225,0.5025086,0.4834779,0.4458961,0.49282607,0.38691464,0.3526547,0.4430785,0.4057913,0.4718373,0.06257031,0.46562394,0.46932775,0.5311463,0.19710615,0.13247018,0.085010365,0.05839826,0.100129634,0.017067442,0.043455236,0.05744071,0.01867298,0.014263194,0.020988764,0.011720874,0.02713991,0.016954912,0.024805985,0.10442211,0.069943085,0.07669719,0.12582858,0.28118116,0.09179063,0.02144021,0.023609634,0.015837817,0.016122645,0.011260581,0.005187093,0.009534283,0.007153532,0.006226778,0.005267215,0.004951968,0.0042348765,0.0040302644,0.0036053755,0.003397758,0.0031105888,0.0030054152,0.0027939307],[0.0017622362,0.001969302,0.0018824798,0.0017612507,0.002133647,0.002245658,0.0024512426,0.0028910418,0.003167621,0.0036314712,0.004079548,0.0048210267,0.0053915954,0.00500152,0.008336488,0.013362981,0.00844488,0.028880712,0.046242997,0.021203777,0.043746036,0.056672864,0.03606276,0.028556475,0.048054136,0.044835392,0.049058735,0.05693299,0.026932728,0.02516782,0.026629986,0.02249436,0.054348767,0.014480996,0.031336945,0.02170969,0.54324394,0.6050829,0.43551356,0.3895809,0.3421492,0.71119,0.5019933,0.30424714,0.4238777,0.606319,0.08716525,0.35922286,0.081339166,0.09661039,0.45451346,0.36394086,0.47624296,0.2178321,0.08823117,0.025505451,0.08005684,0.6788593,0.4219154,0.3612675,0.37483382,0.4390728,0.58878344,0.61125016,0.05973186,0.1121107,0.022942184,0.040035095,0.06355623,0.013925625,0.009780317,0.030409416,0.018721534,0.023782913,0.008180446,0.029542798,0.06956794,0.07140157,0.050626777,0.11606461,0.12245261,0.058427304,0.023053851,0.023273662,0.018451197,0.020890133,0.009618567,0.0055542905,0.009394118,0.007124584,0.005869042,0.0050727716,0.004486252,0.00390782,0.0034500198,0.0031499802,0.0026814474,0.0024001098,0.0021137418,0.002142578],[0.002991684,0.0028003526,0.0027645694,0.0024250946,0.0021446226,0.0019860044,0.0017179955,0.0015920539,0.001429137,0.0011096934,0.0008497164,0.0005533347,0.00036847775,0.000495183,0.0018422871,0.007557006,0.0011462187,0.021536352,0.034746457,0.0212057,0.028964685,0.019849416,0.2714193,0.02609105,0.05293269,0.050372586,0.030493833,0.03675271,0.0051876726,0.016563935,0.014094735,0.019644689,0.058336332,0.06640027,0.40675914,0.64040124,0.5631069,0.35608897,0.38631156,0.629835,0.41492748,0.54531103,0.52707535,0.5574042,0.52401763,0.64679855,0.56106865,0.8225309,0.4429089,0.3243817,0.43910155,0.43617794,0.44974047,0.47443694,0.22819972,0.5015008,0.57829136,0.54226494,0.39079952,0.6709311,0.12021331,0.4958596,0.5508538,0.13951826,0.61326873,0.51664716,0.054054704,0.044584483,0.082798235,0.004231108,0.014105974,0.05385477,0.03949915,0.02989737,0.026248258,0.06726116,0.078620955,0.08393682,0.1653844,0.14037515,0.09351812,0.0073491707,0.0033137798,0.009017701,0.007869213,0.009842208,0.008589078,0.003817058,0.007693114,0.0061380705,0.0055928733,0.0050409045,0.00481088,0.004471943,0.004373173,0.0040484658,0.003921903,0.0034871157,0.0034112602,0.0031141536],[0.004870709,0.004741208,0.005116719,0.005018026,0.0055153575,0.005462684,0.005949945,0.0061086537,0.0065406216,0.007017942,0.00747338,0.0081130415,0.008566065,0.008412026,0.011548443,0.017502286,0.013277316,0.03315806,0.047983527,0.016023578,0.052170213,0.06644056,0.21350376,0.055528935,0.013042709,0.032805514,0.025916766,0.040462464,0.025881136,0.015364242,0.0050028428,0.019738004,0.12263318,0.39294273,0.41024175,0.11296929,0.22866438,0.4999894,0.60608685,0.4736553,0.29474247,0.3955561,0.07576558,0.0925836,0.13416168,0.06592919,0.11324629,0.17575505,0.086850636,0.15403298,0.15521711,0.17236009,0.1739684,0.21405548,0.06408752,0.09192952,0.101159945,0.16584727,0.23556931,0.196294,0.54063433,0.53385705,0.58237755,0.28365502,0.34243715,0.19285786,0.7001109,0.28984988,0.13926627,0.018764447,0.030110035,0.08007791,0.051846776,0.025448855,0.03093942,0.06231439,0.08079956,0.07634477,0.25944564,0.22412851,0.13278112,0.021325374,0.014923241,0.011856176,0.007658584,0.0030549325,0.011516292,0.008358946,0.007155481,0.0063487403,0.005976883,0.005747901,0.0052955816,0.005267045,0.0049483743,0.004976989,0.0047560222,0.004783802,0.0047869934,0.00457952],[0.0077659287,0.0074686734,0.0073119504,0.006972606,0.00689443,0.006566717,0.0064172437,0.0063101472,0.006167629,0.0058656437,0.0057135317,0.0056430786,0.005495918,0.0056501525,0.0048107593,0.005851745,0.0073215854,0.02416823,0.026394747,0.02314812,0.04295481,0.07661042,0.17827882,0.02797722,0.035654314,0.062592395,0.03360676,0.036659833,0.0067327553,0.019152097,0.08641029,0.3062076,0.6143792,0.35979962,0.03355901,0.55304766,0.61373043,0.13289693,0.07918244,0.10404337,0.03566718,0.14955993,0.32177672,0.38863644,0.18783441,0.24755092,0.27305406,0.51100457,0.40933666,0.50562507,0.4612002,0.495907,0.47672042,0.55799216,0.26465547,0.20409168,0.18375297,0.13021612,0.058547888,0.16932297,0.16601837,0.10685102,0.10064975,0.45929515,0.4077898,0.24412529,0.095997706,0.3956405,0.64959764,0.20811391,0.0077585294,0.1133132,0.0700859,0.031194504,0.04049676,0.07190855,0.07879767,0.11093542,0.16709362,0.1269247,0.083767064,0.026392125,0.016278163,0.020017648,0.017705834,0.011757339,0.01827551,0.012309971,0.014676107,0.012816092,0.011937384,0.011345382,0.010586456,0.010137006,0.009740895,0.009337612,0.008961569,0.008574721,0.008335785,0.007885064],[0.009055574,0.009167496,0.009196711,0.008908209,0.008974467,0.008701852,0.008742108,0.008647732,0.00882317,0.008585705,0.008566135,0.0086470675,0.008708942,0.008545228,0.008744014,0.008723594,0.010593518,0.02730552,0.027441567,0.022874085,0.07378432,0.058517255,0.088587575,0.017476128,0.08099469,0.10154784,0.062331546,0.060932156,0.0053838487,0.11157066,0.46035516,0.304012,0.06003408,0.41491628,0.60085857,0.3195678,0.2069414,0.15524669,0.19082922,0.45610556,0.33021852,0.45042905,0.11923459,0.15526107,0.56671494,0.6237365,0.36754388,0.19186728,0.15248094,0.2078003,0.14750001,0.09511478,0.16438726,0.21426687,0.17384931,0.18575002,0.07958925,0.47225586,0.38234055,0.071354195,0.09141852,0.17383932,0.20793688,0.1068677,0.023797292,0.5715532,0.56688774,0.12541522,0.26601565,0.59607303,0.14902131,0.2726635,0.106519885,0.038993884,0.042598885,0.08506507,0.08447294,0.11315677,0.056057014,0.112771735,0.1030669,0.027948696,0.015124646,0.018755166,0.017559905,0.011604613,0.01837139,0.012633637,0.014800772,0.013178332,0.012372548,0.0119908685,0.011292766,0.010964755,0.010608128,0.010496476,0.009990761,0.00996181,0.009631027,0.00940511],[0.0013235159,0.001190339,0.0014023419,0.0015563556,0.0017268297,0.0021554546,0.0021099064,0.0027638867,0.002784318,0.0033883739,0.0034298715,0.0040270123,0.0041933223,0.0037556184,0.0067538484,0.01353063,0.0051843715,0.022272434,0.04133931,0.035725232,0.097608656,0.08145279,0.07192833,0.034982156,0.20312044,0.12890892,0.043036643,0.05777721,0.19113109,0.6447653,0.4375344,0.41209126,0.45874035,0.5959508,0.17288242,0.09269612,0.12267276,0.21900128,0.20832807,0.10069066,0.10140234,0.17318706,0.45705366,0.31392884,0.6460847,0.8170403,0.47786853,0.36624202,0.6584855,0.52761346,0.70185506,0.76579154,0.7398902,0.5116702,1.0706172,0.73705804,0.29927564,0.77221715,0.6631357,0.43051267,0.15230712,0.539178,0.27060494,0.120154746,0.059860628,0.23525544,0.32786968,0.5862364,0.3808928,0.10277339,0.15670446,0.5462014,0.26104528,0.05332721,0.037395716,0.11616147,0.13320684,0.24067584,0.080646135,0.09409344,0.12076657,0.025810132,0.0028322344,0.0084022,0.011080074,0.012096857,0.008029496,0.0017096245,0.0060151056,0.0034638122,0.003115406,0.0023157867,0.0019764923,0.0015851455,0.0013349436,0.00094047264,0.00093212596,0.0010068093,0.0008073742,0.0010228106],[0.010405915,0.01077971,0.010179249,0.010330952,0.010661968,0.010519428,0.0105609335,0.010328318,0.010658118,0.010302491,0.010879303,0.010548172,0.010889236,0.010562538,0.011436343,0.013329537,0.0124676125,0.027012609,0.038630534,0.085003585,0.045976073,0.048004042,0.07777799,0.060376953,0.101432934,0.22161253,0.085932955,0.15357222,0.64472693,0.20691472,0.415109,0.7360642,0.3655688,0.103114516,0.17998512,0.07447322,0.10030714,0.20167518,0.090451375,0.9508126,0.7123894,0.72058725,0.66330326,0.44045094,0.1144745,0.15583402,0.14745773,0.7842264,1.1867791,1.0312532,1.0602273,0.22812133,0.6519058,0.8883915,0.38963893,0.31152678,0.20588352,0.071463734,0.26865825,0.723536,0.3084653,0.64302486,0.60104966,0.60104275,0.11963064,0.11995663,0.12305091,0.25903547,0.55506426,0.41805682,0.18990457,0.3738244,0.3924649,0.2509902,0.115339845,0.23664838,0.21830317,0.05874794,0.06372271,0.05507943,0.044849195,0.062190436,0.0052668797,0.014657591,0.017632253,0.0128623685,0.018649625,0.012122584,0.01532035,0.013618495,0.012829181,0.0126186395,0.011803573,0.011974214,0.011189499,0.011226943,0.011132545,0.010886722,0.010883779,0.010460174],[0.0029922568,0.0032643296,0.002868642,0.0032032027,0.0029961485,0.0035125322,0.0036129719,0.004134361,0.004125299,0.0050574266,0.0054097036,0.0061747087,0.0069983085,0.0071187536,0.011015396,0.018336704,0.01459973,0.033160023,0.06524108,0.061949,0.036994103,0.029415881,0.06417345,0.098972045,0.11631806,0.23072623,0.73932683,0.5256017,0.19622432,0.4831057,0.8958772,0.14786972,0.24230008,0.0872154,0.22645298,0.11468694,0.8324753,0.7928336,0.42560992,0.39304644,0.77682114,1.1443049,0.7851666,0.36419988,0.3825257,0.32215807,0.32866007,0.3568033,0.40290055,0.7596587,1.0443859,0.32510546,0.35017857,0.71402663,0.16972575,0.49148172,0.37811074,0.4020151,0.30345863,0.13167241,0.23653266,0.10384914,0.8934348,1.2676135,0.7161649,0.088668086,0.10235513,0.09588342,0.2127539,0.7445374,0.7205272,0.6008769,0.12698133,0.6694164,0.21857041,0.1861753,0.022656651,0.043848448,0.049529225,0.05224831,0.03297444,0.0627155,0.038461,0.011478895,0.0092250565,0.017244885,0.00037342968,0.0065774093,0.0038113568,0.0036363765,0.003582217,0.003738853,0.0034043335,0.0039089476,0.0030648452,0.0035323896,0.003449185,0.0034144935,0.0032016372,0.003513434],[0.014629825,0.015519339,0.015398523,0.016104842,0.016613038,0.016740104,0.017522413,0.018093891,0.019059535,0.019621244,0.020923797,0.022036765,0.023580609,0.025157396,0.028366577,0.030543221,0.041487567,0.06676616,0.10476638,0.051335644,0.024381284,0.010995418,0.020305878,0.12474709,0.18406218,0.6284458,0.65858907,0.27397487,0.41415066,0.71649045,0.17490444,0.19000293,0.17703073,0.18305406,0.62350273,0.9025097,0.49260154,0.31656784,0.3906693,0.17850728,0.6857557,0.5049364,0.81267256,0.9863535,0.22259529,0.27671468,0.15486024,0.27698058,0.28243512,0.41777095,0.83548725,1.0275304,0.98341733,0.7142327,0.21090211,0.25870976,0.710274,0.23330885,0.22099459,0.4394412,0.26256284,0.51434046,0.7929427,0.35444838,0.3264211,1.1101536,0.47971284,0.17159832,0.064624146,0.11038441,0.46899658,0.74774474,0.47527462,0.20503993,0.69178474,0.7596308,0.012982474,0.07672794,0.032160494,0.051949363,0.001025593,0.08085307,0.09551095,0.02984823,0.01371431,0.0031192955,0.018834518,0.013840369,0.0143455565,0.013333431,0.013412441,0.013278156,0.013092989,0.013456258,0.013281343,0.014006251,0.013403954,0.014010566,0.014245037,0.014055835],[0.02731049,0.025783325,0.026310077,0.026533838,0.026609374,0.027027389,0.027360642,0.02786819,0.028414125,0.029392462,0.030312432,0.031644963,0.033206318,0.035774145,0.03795062,0.03656325,0.058631238,0.08388201,0.040345367,0.025222542,0.0211432,0.014431622,0.0108740395,0.22261912,0.68482167,0.5976593,0.2964858,0.49694362,0.4265256,0.079912655,0.24008481,0.16038205,0.084005915,0.66836214,0.6177648,0.2830733,0.3510689,0.19854188,0.39031813,0.3265213,0.34481773,0.3519619,0.23846553,0.2681864,0.4092433,0.3860615,0.28951842,0.23080963,0.3051719,0.33157957,0.35494712,1.018119,0.7799125,0.23740864,0.3705749,0.38951665,0.35894337,0.30356473,0.2324307,0.21174827,0.28089577,0.5580662,0.95692647,0.6376065,0.32189813,0.31560668,0.2910542,0.23860401,0.033290073,0.15962915,0.09580798,0.2774109,0.47692582,0.1812032,0.16433778,0.47897732,0.34581682,0.06471235,0.04953305,0.10638566,0.044288933,0.06109386,0.0738087,0.04787824,0.04589857,0.034037862,0.04160522,0.03222007,0.0355329,0.03256417,0.030873101,0.029859943,0.029016541,0.028183647,0.027830629,0.027017862,0.027033571,0.026314558,0.026392015,0.026392668],[0.020897478,0.021885246,0.022262093,0.022307782,0.022256158,0.022844248,0.023149073,0.023502199,0.02433681,0.025155367,0.02600575,0.027267594,0.02897188,0.03224815,0.03327244,0.029846631,0.06360144,0.09682573,0.061151057,0.013560019,0.01329414,0.027849674,0.08048203,0.6025579,0.5698618,0.2232707,0.67647934,0.58179307,0.20470889,0.12414751,0.19004585,0.31961885,0.3928809,0.6713662,0.17256066,0.3741688,0.1988767,0.3159408,0.3040028,0.31459573,0.19173086,0.2236663,0.2864767,0.2994813,0.23782267,0.2723839,0.2479245,0.22886133,0.30388147,0.35836446,0.3419623,1.0669441,0.6020651,0.33533326,0.34446242,0.26255354,0.2308816,0.20243064,0.44983557,0.64409,0.31009293,0.42008474,0.20085517,0.65362465,0.3702235,0.34393927,0.50572264,0.99336416,0.5180694,0.20040502,0.1318088,0.09988527,0.37178576,0.75600713,0.25061533,0.0527278,0.49021888,0.7156083,0.0774652,0.11502196,0.044548776,0.042928055,0.054874822,0.038669173,0.04512078,0.034834705,0.03540085,0.025936961,0.030792104,0.02789515,0.026083434,0.025117693,0.024371386,0.02375905,0.022989469,0.022917794,0.022090469,0.022390634,0.021783082,0.021929905],[0.010302054,0.010245496,0.01048464,0.010276656,0.010525974,0.010588148,0.011075076,0.010956419,0.011610147,0.011918018,0.012672638,0.0136527745,0.014930348,0.01755211,0.018630316,0.024558533,0.065619834,0.024269752,0.09240471,0.02260585,0.027230151,0.087682985,0.27217168,0.48974347,0.079019636,0.5113879,0.6385694,0.13030721,0.07839929,0.349929,0.50728256,0.69168407,0.32505158,0.2941841,0.2885644,0.21066028,0.26435408,0.3224794,0.37763894,0.29910108,0.25321192,0.267744,0.1939878,0.19475412,0.2907095,0.25692195,0.27897665,0.23437019,0.35981232,0.29398772,0.43970004,0.54453504,0.25133243,0.3005308,0.35586828,0.25276792,0.2963277,0.3217877,0.4538639,0.51886594,0.21676043,0.273562,0.40611157,0.3386249,0.29970908,0.3004716,0.34422216,0.13101622,0.67074096,0.3168007,0.38901696,0.060522698,0.20665972,0.43236074,0.28437552,0.048426073,0.31980407,0.43730876,0.18514597,0.11044827,0.020858098,0.011326505,0.064823344,0.031162726,0.0474829,0.034369532,0.013392764,0.0125837065,0.01469362,0.0130747855,0.012319057,0.0117621245,0.011471762,0.011142755,0.010960314,0.010728931,0.010614713,0.0105900895,0.010323708,0.010156781],[0.00059960823,0.000365114,0.00060267694,0.00041549138,0.0003773667,0.001180436,0.0006476453,0.0014250962,0.0012634957,0.0019973423,0.002291874,0.0028387746,0.0035658008,0.0053356034,0.0054940414,0.01689053,0.045320936,0.0028250068,0.06183221,0.029213833,0.051866338,0.23958944,0.5218918,0.086959034,0.17353265,0.7444715,0.2294285,0.1954042,0.4948614,1.2426646,1.063505,0.24032149,0.35114956,0.25158113,0.22555828,0.24237421,0.23645563,0.32749778,0.3344996,0.29703265,0.2220693,0.21649718,0.2942941,0.281127,0.20258886,0.20686913,0.22649561,0.3382672,0.34214312,0.33874375,0.29678082,0.6369311,0.2928612,0.26295996,0.23384455,0.20042504,0.26989365,0.31005484,0.34050977,0.30226922,0.24914512,0.26144457,0.23154598,0.33409154,0.21137555,0.35196847,0.30570334,0.42309746,0.25034854,0.36347985,0.714869,0.5326916,0.09025158,0.08268854,0.21009882,0.37321883,0.32058966,0.08292366,0.58454907,0.29385918,0.06952521,0.03502908,0.080711745,0.053687938,0.01800119,0.008272635,0.01529197,0.0086197285,0.0062049003,0.004458713,0.0034284045,0.0028968572,0.0022397337,0.0018142359,0.0014313528,0.0014680265,0.0010397629,0.000683186,0.0008976343,0.00037411004],[0.007625755,0.006464173,0.0066989027,0.006703358,0.0064047384,0.007258275,0.0067709764,0.0073108026,0.007315757,0.0077564074,0.008186848,0.008634949,0.009369279,0.010787308,0.014364393,0.021688463,0.07894093,0.046615936,0.06329067,0.025899207,0.16764937,0.8074086,0.22283843,0.0065163425,0.57455367,0.32918197,0.19050623,0.49559087,0.6086439,0.8592631,0.65040237,0.31361112,0.33991674,0.19036914,0.29791728,0.20476334,0.33896464,0.31007555,0.36923566,0.23604204,0.27458876,0.24353722,0.2653979,0.19498236,0.30141044,0.26135603,0.39906278,0.3094882,0.3791375,0.2774379,0.90259343,0.96362936,0.24839328,0.3372857,0.26968202,0.2673833,0.3546239,0.36880842,0.31581116,0.22765476,0.22401574,0.20476675,0.39360172,0.36461836,0.3187519,0.24662547,0.28795278,0.22763324,0.42306745,0.24234296,0.27176026,0.70702356,0.27752307,0.14619915,0.19294342,0.6479773,0.48549998,0.021287624,0.2095923,0.7126556,0.19821356,0.026367221,0.053718008,0.057550736,0.0023185515,0.027453352,0.0346084,0.019972622,0.017093664,0.013748921,0.011585265,0.010198774,0.00932085,0.008515804,0.0081614265,0.0072848806,0.0072472314,0.007104377,0.006461349,0.007253965],[0.026208455,0.02580274,0.02625669,0.02678197,0.026657421,0.027930884,0.028304815,0.029524108,0.03068752,0.03228052,0.034186024,0.03686369,0.0402444,0.045608062,0.053525593,0.08467352,0.072082244,0.09919851,0.11584537,0.19183129,0.75741845,0.4387276,0.08316207,0.11443332,0.16883467,0.1297736,0.16821007,0.63948625,0.6650706,0.22877705,0.5935888,0.41983932,0.42871743,0.23824833,0.27154106,0.19432493,0.3562775,0.31849378,0.24970995,0.19684425,0.26424226,0.16517392,0.43946236,0.36928877,0.20180972,0.21364138,0.23541684,0.23136772,0.32492644,0.2767982,0.33186054,0.3109093,0.28419513,0.37064797,0.31413695,0.24494557,0.21028721,0.25465998,0.25685468,0.27595872,0.25948358,0.2772814,0.1683802,0.31355038,0.3439884,0.3957867,0.28848383,0.45576444,0.25727287,0.30447572,0.30881846,0.43848324,0.6135283,0.1793997,0.11378457,0.113536626,0.7552076,0.03530678,0.08022452,0.60382056,0.45560363,0.13683556,0.07169531,0.06942297,0.045596678,0.09801892,0.045150656,0.041709177,0.03690926,0.033976775,0.031633217,0.030125769,0.02902888,0.027819276,0.027394438,0.02641844,0.026305165,0.02609592,0.025681227,0.025960077],[0.01845746,0.018173104,0.017939147,0.01768331,0.017937845,0.01797845,0.018540379,0.01856536,0.019323034,0.02038709,0.02156642,0.02331171,0.026201373,0.029090246,0.04057467,0.06624283,0.008197541,0.035780046,0.05286141,0.3374496,0.57564145,0.21027842,0.52874583,0.57558465,0.10873862,0.15810668,0.32143176,1.1979762,0.46044993,0.34416553,0.7309285,0.98016095,0.8569951,0.28247347,0.33909428,0.21116076,0.28170684,0.18543254,0.29069194,0.23306723,0.2752341,0.33789077,0.7755376,0.34811872,0.28475395,0.25978956,0.28235883,0.24261051,0.25403956,0.20309666,0.36501402,0.44844148,0.21606596,0.22701475,0.25979665,0.25851867,0.26986206,0.23270975,0.21258257,0.19839875,0.21496752,0.20706448,0.3162222,0.26112938,0.33114323,0.28128317,0.38567585,0.25766438,0.3170341,0.38621968,0.2548791,0.3445646,0.48110342,0.29198876,0.07015335,0.09314034,0.26847145,0.082247265,0.15652682,0.18555975,0.2538887,0.46806774,0.15036681,0.08236384,0.07572088,0.095057935,0.041019265,0.04567186,0.03546602,0.033130325,0.030566245,0.028116716,0.026204674,0.024755038,0.023041142,0.022251159,0.021053476,0.020474773,0.019697953,0.019065846],[0.007993123,0.008136143,0.008534686,0.0086369775,0.009602473,0.00997165,0.010946361,0.011777213,0.012917298,0.014324668,0.016407317,0.018514847,0.021655655,0.025660127,0.035485044,0.038160544,0.022233589,0.07496127,0.11283142,0.76056147,0.35687613,0.16307479,0.11069774,0.21135812,0.033288423,0.16261616,0.49720123,1.0431361,0.414223,0.331207,0.32118383,0.22883132,0.34393567,0.5182017,0.2249581,0.25554314,0.19744284,0.31932294,0.17227362,0.27390066,0.19738463,0.72175145,0.5286476,0.21248598,0.22031276,0.19439498,0.253249,0.35170895,0.31152934,0.24990544,0.36069405,0.74873537,0.28664395,0.2712854,0.21337548,0.24942626,0.31518346,0.28717896,0.29176915,0.2986223,0.27537298,0.27789268,0.15927546,0.23250769,0.34205067,0.39796484,0.27909803,0.3452781,0.3500884,0.34317088,0.20077696,0.31436732,0.17325592,0.6439279,0.6463944,0.12123942,0.034135625,0.62597257,0.16646582,0.2514243,0.529665,0.7143295,0.22476357,0.07840603,0.07856605,0.07773703,0.0071122036,0.017723536,0.009616021,0.010624969,0.010217482,0.009687678,0.009124537,0.008679395,0.008511428,0.007991295,0.008066039,0.007607032,0.0077976035,0.007874505],[0.014361941,0.013144576,0.012797809,0.01263408,0.011660494,0.011565008,0.010824843,0.010483117,0.009973858,0.009774136,0.009389411,0.009304447,0.009496515,0.010583771,0.015604428,0.0072681885,0.051224314,0.033604454,0.43106613,0.5359204,0.047343563,0.43499318,0.33934763,0.029460702,0.056650504,0.49680978,1.2310218,0.57878673,0.22503132,0.41381288,0.21077646,0.37479454,0.19566926,0.3210526,0.32260397,0.29540387,0.24843298,0.18885744,0.25335088,0.32736522,0.37750694,0.27888024,0.26300883,0.28726983,0.2970892,0.29451817,0.24159016,0.26744628,0.29611123,0.3190058,0.36193484,0.3069896,0.24682966,0.23881596,0.23285851,0.3344477,0.30175856,0.3522766,0.23554078,0.19822632,0.1720879,0.24944222,0.31842747,0.28104296,0.15346897,0.30093905,0.33957455,0.32488576,0.3083058,0.19743077,0.24702409,0.3157497,0.2974864,0.2580914,0.5576121,0.7154548,0.18159446,0.30163905,0.48670575,0.29005262,0.17776111,0.4542986,0.20652494,0.14520174,0.13438289,0.059020694,0.06779987,0.04247149,0.042318583,0.035177115,0.030661501,0.027354125,0.024820022,0.022596542,0.020893909,0.019373208,0.01818946,0.016828299,0.016016444,0.015445283],[0.008704368,0.008339782,0.00896756,0.009697205,0.009574437,0.010302942,0.010526857,0.011312025,0.011657262,0.012826913,0.0136912055,0.014675809,0.016249064,0.017942397,0.014254867,0.0873992,0.122496754,0.09985549,0.6953298,0.3888423,0.07149602,0.22241795,0.31619582,0.19747654,0.10897733,1.1578642,0.7871341,0.48254398,0.34142923,0.32482877,0.361746,0.30288056,0.38138777,0.31818625,0.16049664,0.37328255,0.26909867,0.37009752,0.19658823,0.20465778,0.3075943,0.3893477,0.43125597,0.36919263,0.29759303,0.19445081,0.21926248,0.26346004,0.2807543,0.2540145,0.2701971,0.34842533,0.27548677,0.251099,0.23511258,0.20246273,0.24715541,0.37344638,0.7507781,0.7229032,0.791439,0.5201534,0.13253306,0.23122603,0.367476,0.3661469,0.48737755,0.30376807,0.17594728,0.30424684,0.20867452,0.24348283,0.14707683,0.36259297,0.1994258,0.8507811,0.3660375,0.08948153,0.6432366,0.11277026,0.25332385,0.53625447,0.35810232,0.063627,0.06571994,0.016334433,0.018551188,0.009097728,0.010960498,0.008519717,0.007818255,0.0074805133,0.0075653787,0.007609276,0.007575787,0.007773625,0.0077990238,0.007719702,0.008006137,0.008785062],[0.018289665,0.019182332,0.018391754,0.01755772,0.01751621,0.016925689,0.01684344,0.016521795,0.017049786,0.017176183,0.01792875,0.019813567,0.022734977,0.030124675,0.04215571,0.049650714,0.090448245,0.47704878,0.5723098,0.09147378,0.21875614,0.42204815,0.06800119,0.6043613,0.7004337,0.9960698,0.7386148,0.17408928,0.38117662,0.31468865,0.36803615,0.34027278,0.34164873,0.31497124,0.42114252,0.13983701,0.2526185,0.38081762,0.326685,0.48940822,0.43234405,0.2513071,0.26605836,0.29358208,0.39741358,0.336692,0.33848855,0.30320278,0.39434746,0.35274994,0.77569604,0.30802736,0.35783312,0.23558612,0.31077808,0.21826005,0.41355178,0.27646044,0.7842254,0.8175052,0.6075403,0.41617483,0.45758227,0.31580225,0.4421602,0.30080307,0.09390984,0.17856431,0.32698664,0.26146388,0.31319654,0.30689505,0.2878454,0.31291804,0.34364897,0.78866714,0.88628745,0.18447383,0.31155312,0.5989304,0.11110877,0.10393672,0.6120192,0.13154787,0.059410386,0.071990386,0.067231804,0.061737206,0.04765336,0.041918308,0.037353024,0.034061696,0.030967237,0.028611261,0.02681254,0.025191301,0.02352508,0.022526206,0.021266783,0.01979742],[0.0037641611,0.005715673,0.006278045,0.0067676734,0.007910866,0.008729756,0.009769741,0.010816681,0.01245034,0.014101901,0.0164095,0.019375836,0.023006592,0.02860398,0.04417206,0.016916774,0.08703699,0.6364575,0.45580706,0.39744177,0.44624177,0.4975586,0.21169114,1.0920682,0.47587955,0.7463986,0.7252062,0.30818763,0.40250632,0.23313345,0.27210233,0.23818113,0.36996564,0.33039746,0.26419553,0.28799033,0.2553357,0.16162513,0.2660851,0.4990236,0.3304076,0.49487457,0.6743975,0.38671055,0.2944197,0.27932504,0.34210783,0.33431977,0.33053145,0.28323373,0.5141169,0.2974113,0.47892094,0.94132674,0.5222821,0.2002515,0.38700247,0.24124344,0.5115236,0.91065836,0.10179137,0.40594718,0.34599972,0.28159827,0.12684123,0.24676275,0.30787376,0.30511907,0.262486,0.42872897,0.32433495,0.35023493,0.26560298,0.39663315,0.2699757,0.44441804,0.56926495,0.74457127,0.066611126,0.51606286,0.3306264,0.14362037,0.25426933,0.46895346,0.035758995,0.04116654,0.008179719,0.015419348,0.00916878,0.006789283,0.0050412533,0.003766263,0.0027402446,0.0019640736,0.0016357092,0.0019782935,0.0021729758,0.0029544097,0.00325373,0.0036361595],[0.006556769,0.006543496,0.005990708,0.0058580604,0.005696979,0.005645707,0.005792796,0.0058263573,0.0060289335,0.0066005997,0.007345248,0.008667052,0.010275016,0.012675862,0.013647695,0.10164457,0.54778165,0.56427705,0.062273756,0.26232842,0.5707397,0.17775173,0.72665834,0.46400958,0.16675623,0.33406696,0.36988074,0.2960156,0.28386307,0.3779407,0.21567328,0.28947654,0.20789568,0.2870465,0.24498658,0.23042284,0.19818182,0.34278315,0.17974906,0.2798342,0.21620777,0.7544712,0.31382677,0.6539895,0.6706445,0.5419822,0.46701384,0.28721294,0.33061543,0.32094267,0.8402024,0.30250648,0.3865125,0.4434199,0.40008163,0.46721715,0.41438758,0.26248002,0.50195736,0.45210192,0.36851576,0.28082892,0.34315434,0.22595309,0.3458468,0.22445919,0.20547889,0.16277657,0.3531341,0.26089516,0.3482657,0.3328344,0.40154925,0.2916607,0.4147657,0.2753334,0.3217007,0.87232155,0.0414092,0.40610623,0.81072533,0.17015566,0.019362811,0.7441444,0.091040626,0.030998394,0.030471846,0.030792546,0.02259928,0.01892469,0.016353508,0.014313968,0.012845363,0.011557586,0.010483642,0.009711491,0.0086439205,0.008274713,0.0076854834,0.0070587886],[0.0068665487,0.00549998,0.005659503,0.0053109457,0.004809793,0.00489511,0.00446252,0.0045694183,0.004544213,0.0045881784,0.0049913134,0.0060642804,0.007879941,0.011731167,0.036084667,0.12383516,0.56414974,0.35817936,0.13593075,0.40415227,0.6179847,0.1100999,0.7899802,0.4703171,0.3593948,0.41851485,0.2733078,0.4837666,0.41070476,0.3011648,0.24580477,0.20626141,0.25673828,0.22105995,0.21178454,0.27294677,0.250002,0.19985087,0.24448366,0.28641498,0.29588345,0.36242783,0.42672417,0.37021646,0.31205305,0.31064174,0.21307412,0.3294964,0.3253833,0.2941914,0.9147196,0.34098542,0.3266266,0.28379324,0.306362,0.2951024,0.37902972,0.5564702,0.9830815,0.60743564,0.24574089,0.30724454,0.22558993,0.25645977,0.16191989,0.2553725,0.28025216,0.3024484,0.19970118,0.32279435,0.31733495,0.33202943,0.27130482,0.35976243,0.27393577,0.3760106,1.0092082,1.0099155,0.23176552,0.18655774,0.760638,0.34807485,0.17791948,0.5265715,0.53282195,0.09370208,0.028479407,0.037381865,0.019216795,0.01733007,0.0149011025,0.013200552,0.011660842,0.010288504,0.00974944,0.008646891,0.008036196,0.007354235,0.0067609292,0.006591558],[0.024276378,0.024933139,0.02699894,0.028734434,0.030185526,0.032697205,0.034965508,0.037923276,0.041919354,0.04630362,0.052549183,0.0608335,0.07401849,0.09902921,0.17887203,0.56541836,0.5654969,0.174458,0.18567918,0.62596935,0.01824852,0.45735154,0.5656953,0.16209047,0.25295582,0.28243876,0.31887552,0.5884442,0.5734346,0.2546663,0.3836447,0.21524121,0.3129479,0.22464697,0.33277628,0.16389519,0.28039497,0.22886734,0.29012558,0.15755172,0.3221546,0.32812685,0.35144147,0.30109888,0.39193365,0.2270163,0.29933777,0.28718808,0.35617226,0.3797843,0.9020342,0.3246036,0.33459046,0.20085514,0.36107653,0.314043,0.97332937,0.87039834,0.69725543,0.30378675,0.40842986,0.34713125,0.2903257,0.22610429,0.3131511,0.22515227,0.20965102,0.17765482,0.28621173,0.23850338,0.26898617,0.34147078,0.26906443,0.28229064,0.44296405,0.98043567,0.7609874,0.82011235,0.8708736,0.26056632,0.627701,0.42939606,0.5121339,0.33531636,0.679161,0.12592265,0.03160347,0.013966242,0.013715906,0.013401031,0.01395142,0.014897095,0.015930276,0.016605966,0.017856603,0.018660486,0.019489214,0.020461006,0.021470279,0.023100842],[0.014272227,0.015237394,0.014867834,0.015099976,0.015661366,0.016058795,0.016544167,0.017378904,0.018223142,0.019530777,0.021116657,0.023741398,0.028232696,0.04193059,0.16172048,0.6384148,0.22157589,0.14460665,0.54198664,0.50357807,0.3455105,0.3702736,0.28751057,0.43029043,0.27377805,0.3724229,0.3306327,0.30438983,0.29960617,0.30442363,0.26630175,0.3591968,0.34481505,0.37159654,0.24307814,0.26459044,0.24596454,0.22148961,0.23001423,0.2731283,0.2623668,0.34117365,0.37456876,0.3606728,0.27794075,0.24642375,0.28165054,0.2555508,0.30943885,0.25867656,0.8783173,0.34012437,0.32725623,0.23598716,0.25483903,0.31587824,0.599295,0.2948145,0.24282467,0.32392412,0.24483049,0.3061464,0.2310191,0.23897406,0.18822256,0.24944904,0.27683845,0.31342366,0.29675162,0.63672405,0.4059473,0.2891529,0.3754411,0.30087116,0.59420514,0.77179384,0.35681114,0.31353298,0.72446156,0.20427397,0.13591367,0.7622983,0.17849082,0.12885787,0.5251057,0.57519156,0.15427743,0.05072435,0.042856634,0.03132791,0.02580446,0.022406844,0.019900808,0.018447703,0.017131118,0.016392747,0.015694056,0.0154420305,0.015190568,0.014303342],[0.025591811,0.027281782,0.028377378,0.030238137,0.032388084,0.034538064,0.037789237,0.041502856,0.04622943,0.052863516,0.06171488,0.0758295,0.100550346,0.15987499,0.5595975,0.537989,0.23887171,0.83075327,0.826578,0.38013935,0.59528786,0.8206471,0.16383336,0.36538878,0.08342485,0.28020817,0.23835394,0.45320842,0.26884437,0.7220552,0.688913,0.35763246,0.29032725,0.3674356,0.29172176,0.227726,0.21978194,0.2775826,0.23397739,0.23973963,0.20976144,0.27978697,0.25504446,0.29284182,0.22440103,0.30062073,0.35254535,0.3827808,0.31775984,0.69888073,0.9472331,0.3232055,0.35194725,0.34407184,0.2518781,0.26957342,0.3166554,0.3831522,0.325817,0.20022972,0.27060753,0.22993308,0.25969264,0.250759,0.2824383,0.24580629,0.18798336,0.23905331,0.3242914,0.60172445,0.3887948,0.32357487,0.378456,0.27957144,0.24811465,0.18453398,0.39910963,0.20509703,0.5317667,0.7866194,0.17861152,0.69398445,0.362021,0.18945895,0.40411577,0.42785022,0.22165146,0.0070748394,0.0072863195,0.011936566,0.015607736,0.017584255,0.018935218,0.019859875,0.020633155,0.021409377,0.02221041,0.022694515,0.024075428,0.024374347],[0.0017879317,0.004034348,0.005538737,0.008104277,0.010448122,0.012974265,0.016204827,0.019720199,0.023817714,0.029235568,0.03589861,0.0462884,0.06345079,0.105420455,0.40069982,0.5563322,0.13277152,0.023557834,0.85648394,0.23291977,0.3773256,0.7105917,0.1529972,0.4637683,0.2580968,0.4124673,0.15134116,0.3327083,0.16869178,0.60752106,0.5586221,0.3639401,0.3335473,0.3530864,0.17914203,0.29755712,0.21357764,0.26138508,0.18929948,0.2882473,0.20906782,0.2780714,0.22860506,0.27054745,0.19409412,0.27600324,0.24331316,0.3906897,0.22723354,0.8987634,0.9313373,0.32112956,0.3366709,0.3338535,0.33032498,0.2446264,0.25525683,0.25407985,0.16398987,0.29909956,0.18937387,0.2625234,0.19516121,0.25338432,0.18070954,0.25958276,0.27105874,0.2802693,0.22724035,0.23467226,0.23550116,0.28586587,0.25016677,0.37139437,0.27275577,0.4397885,0.3044431,0.8206801,0.7773869,0.98481566,0.24893627,0.4820984,0.8163065,0.6354225,0.14477207,0.38080052,0.52648795,0.1569388,0.07842704,0.055272132,0.04093626,0.031813905,0.02488615,0.019730307,0.015599429,0.011996883,0.009136396,0.006555872,0.0038725329,0.0024032732],[0.02210117,0.019520527,0.01873452,0.017038586,0.015547783,0.014408762,0.012569883,0.011081064,0.009059852,0.0072677187,0.0075888247,0.014080142,0.030469438,0.0799428,0.43823725,0.5740092,0.11042181,0.66582817,0.5417244,0.5236085,0.9922869,0.89938736,0.82986915,0.8043904,0.30334258,0.31647947,0.31462708,0.3011468,0.22032969,0.19258825,0.1403221,0.28691143,0.22269304,0.25999507,0.24464035,0.24739428,0.20945308,0.2785679,0.33251595,0.32593977,0.23280406,0.26875752,0.17661382,0.28175703,0.22283888,0.2888136,0.19822685,0.37108788,0.27263024,0.94515413,0.98447984,0.3166193,0.34414756,0.34958267,0.29144508,0.26260126,0.22529969,0.26265326,0.28258207,0.20914273,0.26484662,0.2648095,0.26087493,0.27210596,0.25849804,0.26803672,0.16758002,0.24517983,0.2141107,0.2987412,0.27385017,0.3576122,0.27470568,0.39947402,0.2755712,0.37000945,0.22762504,0.6587257,0.8676787,1.2156615,0.39452535,0.23572744,0.7628505,0.5750289,0.09086981,0.31016225,0.49217597,0.12081174,0.091771156,0.06919906,0.056408245,0.048602384,0.042342484,0.037885353,0.034410756,0.031046279,0.028807621,0.026731966,0.024354259,0.023197234],[0.027528651,0.026632432,0.027950404,0.028738542,0.029883064,0.031734888,0.03392794,0.036750995,0.04056627,0.04605496,0.054313328,0.06887224,0.10500493,0.32216898,0.72123533,0.2837848,0.07684002,0.8394512,0.37341553,0.3320121,0.8481171,0.21013926,0.52216595,0.35862696,0.42218667,0.31696945,0.35686523,0.17391554,0.27887648,0.26516443,0.35017833,0.18292475,0.28893903,0.20937489,0.25209698,0.21036741,0.30440742,0.16579159,0.49379092,0.9580131,0.979887,0.5634554,0.22863676,0.27744943,0.18306391,0.2871083,0.3165805,0.3452474,0.31719983,0.7482807,0.9106432,0.36460698,0.31985566,0.22626945,0.25987226,0.21587272,0.25563362,0.22590564,0.19669636,0.2947731,0.19876918,0.21017778,0.19209157,0.22163293,0.21070646,0.2313096,0.29712814,0.2627389,0.24028727,0.28771442,0.36628294,0.33830246,0.35879007,0.319727,0.35065982,0.36640495,0.36446133,0.25390035,0.39524767,0.31087267,0.36097753,0.34077272,0.5998621,0.7698854,0.14804216,0.38228583,0.4072797,0.1464408,0.06834617,0.051685687,0.042026825,0.036425278,0.032815207,0.030315137,0.028642528,0.027421264,0.026723208,0.026349328,0.025847914,0.026317785],[0.008173722,0.007935822,0.006150745,0.0053930064,0.0044950508,0.004151446,0.004721426,0.0061539216,0.008868129,0.012833709,0.018927874,0.030559158,0.06169961,0.27493393,0.89007187,0.31590715,0.5774947,0.8470756,0.3757793,0.38196746,0.79665166,0.17600037,0.33186,0.08018642,0.27910474,0.13169564,0.28272173,0.22987604,0.3022304,0.23812379,0.33806235,0.22531417,0.2910446,0.18244813,0.32739982,0.17689568,0.2911448,0.16438419,0.43699604,1.0289574,0.95051926,1.0394996,0.3739635,0.15102935,0.35554144,0.1697924,0.45460692,0.15474044,0.9636894,0.34701574,0.97127056,0.96893626,0.25921836,0.40007803,0.3210907,0.29465973,0.21980894,0.25400794,0.2928343,0.14182861,0.34761336,0.46044973,0.5629526,0.27895677,0.2744664,0.24466014,0.19575223,0.20681293,0.25512683,0.2333844,0.31963438,0.3027882,0.33333132,0.32769623,0.3603888,0.272738,0.36209008,0.33669528,0.40193477,0.23367849,0.79229784,0.48285016,0.43314904,0.75593936,0.20836017,0.2230893,0.12847257,0.1143928,0.04400072,0.035594363,0.030432185,0.026361996,0.023130652,0.02061273,0.018396161,0.016440924,0.014828374,0.013140479,0.011842926,0.0100469],[0.0064544687,0.004972387,0.002378209,0.002533921,0.004969029,0.008543425,0.012450085,0.01739975,0.023382176,0.031682886,0.04328976,0.063309304,0.10878,0.35045812,0.5933092,0.20199439,0.35732102,0.7656467,0.44710946,0.2995338,0.85623395,0.1375344,0.44977757,0.19013327,0.3777003,0.22115721,0.39751446,0.2696176,0.4082198,0.32180077,0.43387634,0.28317696,0.36782363,0.1864592,0.2602766,0.17907302,0.32754338,0.14790691,0.422037,1.0095136,0.968143,0.9806435,0.6687409,0.15042038,0.2599687,0.1797858,0.28268653,0.13241114,0.5703115,0.83142865,0.7485311,0.6055257,0.30176508,0.29151386,0.27898738,0.1788862,0.29774705,0.18563542,0.25782612,0.5051963,0.784772,1.0777566,0.8191789,0.26443765,0.20304437,0.22378516,0.3140145,0.24555746,0.26918977,0.20499781,0.2764805,0.17785943,0.33669478,0.2826934,0.39342833,0.3047146,0.43110853,0.19608377,0.4835515,0.116834745,0.8160422,0.3330779,0.40817556,0.844634,0.566683,0.1431966,0.5196642,0.40977824,0.14609551,0.08747462,0.06346548,0.049498405,0.039884232,0.03320808,0.027593033,0.02318056,0.019411152,0.016064685,0.013153068,0.009806608],[0.0058908765,0.00446876,0.0030520437,0.00464353,0.0071742916,0.010874361,0.014881696,0.020123625,0.026173403,0.034782562,0.046706527,0.06706832,0.11317546,0.3590529,0.6099078,0.2274848,0.10235412,0.671318,0.29063424,0.34630904,0.84026265,0.13476166,0.48218,0.07858597,0.33528683,0.24538517,0.38539666,0.2923742,0.39790696,0.24254328,0.35842684,0.27434286,0.27481872,0.19893524,0.38287985,0.2215573,0.2986649,0.13931882,0.47245687,1.0289387,0.9667155,0.9596757,1.0439582,0.61694443,0.27570438,0.24679327,0.26401064,0.25192416,0.23252517,0.07923764,0.18994214,0.1693179,0.24362375,0.21494415,0.26475415,0.24074264,0.25148392,0.19476634,0.749968,1.066769,0.9888228,0.98766387,0.34754655,0.14776693,0.35488486,0.18935841,0.24040224,0.1619299,0.29303935,0.19414447,0.29109296,0.264554,0.41669047,0.28907624,0.41274515,0.23553689,0.41477957,0.27650762,0.41943514,0.17348532,0.86639035,0.30174074,0.425258,0.7275645,0.6576536,0.19177814,0.3423178,0.41247445,0.13792911,0.089596055,0.06617028,0.051933873,0.041774854,0.034474883,0.028412519,0.0237863,0.019353485,0.015973285,0.012713152,0.009271208],[0.010504931,0.009682473,0.0071306387,0.0052235452,0.003135233,0.0005316351,0.0018164825,0.0053197104,0.009146209,0.014796998,0.022996422,0.03814032,0.076261945,0.30629703,0.65949,0.056229115,0.478165,0.7704686,0.050873034,0.39735958,0.79051566,0.1949017,0.3957177,0.28605562,0.47202876,0.3046288,0.43086064,0.2314666,0.3292476,0.31473824,0.43885976,0.2552762,0.5921875,0.6053215,0.26038313,0.37282664,0.31172836,0.25206682,0.2430897,0.7316352,1.0349934,0.9413527,0.99265975,1.0044127,0.20780732,0.21628866,0.24481876,0.21005258,0.25856686,0.32922244,0.2820813,0.26236552,0.26433313,0.23639423,0.24077554,0.22872154,0.24102855,0.7090684,1.0289197,0.92754805,0.9361142,1.0568185,0.49204627,0.15586378,0.25503206,0.1757062,0.35127276,0.21530697,0.29324266,0.18158261,0.30559286,0.22525713,0.33571038,0.2057239,0.35372135,0.2332765,0.39630988,0.12213622,0.39789838,0.13145663,0.8101966,0.36128798,0.43360457,0.8243082,0.60325783,0.1357847,0.4852742,0.38740328,0.14470437,0.08740521,0.06369758,0.04997379,0.040838264,0.03443542,0.029107736,0.025212428,0.02161151,0.018726764,0.016263178,0.0135604665],[0.002201408,0.0033163964,0.005945491,0.008520871,0.011677347,0.015426883,0.0193647,0.024737567,0.031201247,0.040070824,0.053362153,0.07589777,0.12736137,0.39096448,0.42489532,0.10402078,0.57388765,0.6974802,0.1094924,0.38345575,0.8162428,0.11346288,0.34476033,0.11069807,0.28178993,0.18156394,0.36257827,0.28109512,0.3305745,0.2500801,0.36161867,0.2626191,0.40362749,0.4881942,0.29387656,0.6819075,0.42758444,0.18879275,0.27401775,0.16919334,0.8292541,0.97520435,0.9794787,0.9161524,0.77075166,0.18882746,0.29558387,0.21763034,0.28022024,0.122169495,0.26476315,0.17691284,0.2630332,0.20370701,0.28703603,0.19824575,0.344061,0.97247845,1.0197881,0.93292767,1.0987364,0.59696245,0.2260762,0.2204208,0.32877678,0.2954936,0.27162167,0.25671127,0.3314068,0.2817117,0.2714767,0.1906671,0.2678847,0.19270532,0.27582327,0.135366,0.27234662,0.18452483,0.3589393,0.20050877,0.8372523,0.32683617,0.124102294,0.7267962,0.5759898,0.1303814,0.41004598,0.39106992,0.11085929,0.06971291,0.050020766,0.038127825,0.030149637,0.02411925,0.019108066,0.015371905,0.011762082,0.00873053,0.0062634926,0.003593824],[0.0026312766,0.0014247342,0.003013816,0.0054319794,0.008289026,0.012044026,0.015500819,0.020747319,0.026817149,0.035076536,0.047463983,0.06863113,0.11729137,0.3714246,0.46279517,0.069114536,0.68628824,0.6975243,0.03548919,0.38683257,0.81624436,0.17512771,0.36225563,0.30860525,0.44003835,0.31052974,0.4977906,0.30263165,0.38331988,0.77039653,0.47624558,0.291644,0.41996038,0.2126681,0.3663682,0.39756083,0.50198764,0.13975744,0.3618656,0.13433158,0.5951174,1.0178236,0.9970956,0.9969909,1.0331278,0.6689213,0.22154468,0.22867009,0.24951689,0.30695793,0.26175258,0.2535496,0.28630534,0.21605925,0.26535982,0.27297235,0.8578323,0.94162464,0.9690032,0.99001265,0.6612505,0.12722404,0.32859766,0.16978408,0.3459758,0.22601864,0.73002857,0.64394575,0.30527362,0.37147748,0.34014273,0.30328006,0.27234435,0.21584703,0.28831893,0.24279946,0.33477095,0.13127004,0.3711831,0.17890432,0.71521175,0.62264365,0.11255503,0.70535344,0.63933194,0.12687205,0.49725136,0.3615686,0.1367603,0.07781564,0.054507356,0.041189343,0.03288172,0.026387326,0.02140582,0.017556408,0.013987828,0.011033948,0.008444936,0.005391304],[0.014402616,0.01303797,0.011123187,0.009092595,0.007456703,0.0055573964,0.0037370748,0.0033815159,0.006041383,0.011163312,0.02020335,0.037412286,0.081214435,0.333474,0.51366436,0.17609431,0.660331,0.59609497,0.4046752,1.124143,0.5642454,0.28380588,0.37393463,0.21269533,0.2794459,0.44681275,0.92114127,0.5913679,0.23867476,0.33789983,0.28904313,0.21216403,0.29306972,0.38427618,0.37919512,0.26645666,0.21423446,0.37767863,0.27674493,0.24856319,0.20781845,0.6520106,0.9901113,0.89839953,1.0047611,1.093418,0.68916243,0.15413211,0.30757234,0.09757726,0.2859511,0.15357785,0.2285262,0.23031336,0.27068755,0.76632565,1.0692394,0.9196445,1.0768923,0.66604847,0.2878486,0.2309698,0.2597133,0.20879008,0.38900065,0.2832341,0.28985062,0.2830613,0.3327775,0.29087317,0.36142117,0.31021896,0.35221636,0.3146998,0.32317457,0.13722104,0.27746227,0.20673127,0.3339272,0.24776861,0.9039483,0.30533212,0.14491054,0.66551423,0.71458817,0.4643149,0.34042707,0.43942922,0.12435325,0.08491108,0.0641551,0.051242407,0.042887945,0.036271583,0.03143299,0.027356373,0.02424551,0.021336146,0.019175861,0.016742503],[0.023656232,0.024083057,0.02263129,0.021582235,0.020641813,0.019805208,0.018798692,0.01733954,0.015364038,0.012597985,0.00853121,0.013090498,0.049424622,0.2880801,0.56425923,0.22467965,0.760682,0.51819444,0.44355068,0.71024275,0.22657003,0.400875,0.3042176,0.5794814,0.6665851,1.0170974,0.35091883,0.27688888,0.39749968,0.32762793,0.3627078,0.5692111,0.5111832,0.36645225,0.22574888,0.5208888,0.60385466,0.33782813,0.3328164,0.2429805,0.2444099,0.21788612,0.8639393,1.1254319,0.74104387,0.85550827,0.8736784,0.4010616,0.23609988,0.48340994,0.23151958,0.45727867,0.43727466,0.37232217,0.21560386,0.8370356,1.0122348,0.9853197,0.70751643,0.2015094,0.23162082,0.20484464,0.27682322,0.3357088,0.21569103,0.2752064,0.502743,0.36583492,0.41319442,0.34184057,0.37860754,0.3037597,0.39103737,0.2941238,0.38493896,0.3760909,0.43994138,0.15871082,0.30998436,0.4139807,1.1095619,0.3681507,0.14543839,0.6431955,0.802335,0.4147143,0.45274726,0.37181905,0.18421736,0.105439,0.076283015,0.060284298,0.05064075,0.043464303,0.03888137,0.034898072,0.031841822,0.029652372,0.027791945,0.025874278],[0.0060114404,0.006297724,0.004983366,0.0038122623,0.0033260016,0.0033059092,0.004704836,0.0068541123,0.010715989,0.015702365,0.024788365,0.04200155,0.086184606,0.33927208,0.51047826,0.11374713,0.68385047,0.5846713,0.45624858,1.0538884,0.33472443,0.33329597,0.31611243,0.687965,0.7461494,0.6841745,0.78014255,0.48614007,0.24301673,0.25015295,0.32976174,0.824906,1.0861636,0.97993964,0.3703205,0.8392931,0.8065264,0.31659454,0.31489116,0.18832926,0.29495054,0.18412271,0.5923408,0.6833677,0.25102472,0.47866654,1.1693423,0.56413,0.32218707,0.99579734,0.61643124,1.1316493,0.7348327,0.118406676,0.27295431,0.89882433,1.3656977,0.64369744,0.29183343,0.20567074,0.35416335,0.23504575,0.35445535,0.31889632,0.71507066,0.2734273,0.14797853,0.23209783,0.27906412,0.25932366,0.3277295,0.32025826,0.3312587,0.32167345,0.3657825,0.19669363,0.2950822,0.3915612,0.32335034,0.17426848,0.60516596,0.27810013,0.07397966,0.60636294,0.7121633,0.540353,0.18325621,0.4907968,0.013114141,0.026792597,0.026894398,0.02381625,0.021040482,0.018502586,0.016273849,0.014155961,0.01255683,0.010822617,0.00977977,0.008049375],[0.031959236,0.030725816,0.030919395,0.03114387,0.031233523,0.032354377,0.033491865,0.03528102,0.03865775,0.04330386,0.051725723,0.067797154,0.10982508,0.3534799,0.48770174,0.16502704,0.620744,0.6700213,0.20374829,0.6753442,0.982113,0.3899298,0.3564198,0.2776074,0.31343365,0.23970246,0.4500943,0.5344465,0.49960122,0.8889863,0.24839853,0.39979368,0.5716067,0.72144824,0.37134278,0.6115007,0.46570534,0.23742864,0.24816068,0.25564235,0.22181907,0.260592,0.16487288,0.20418276,0.28602183,0.38301829,0.69182324,0.44576687,0.088849224,0.8712817,1.0131501,0.98219246,0.7438609,0.22479372,0.29411727,0.42765835,0.5087693,0.16434012,0.28816947,0.19655089,0.38267365,0.32809374,0.25558734,0.5941673,0.60613185,0.24421802,0.65450895,0.7878603,0.7065259,0.7113679,0.61473274,0.3251498,0.39714295,0.33021635,0.3114184,0.6722874,0.73418504,0.114216074,0.37774563,0.3047048,0.36524442,0.11057112,0.067634575,0.63088965,0.7299561,0.5969938,0.018314682,0.5622648,0.31687254,0.12491974,0.08182942,0.063344665,0.052888885,0.046252713,0.041879043,0.03862531,0.036245566,0.034641214,0.03277834,0.03255933],[0.030580284,0.030154226,0.03206208,0.033105593,0.035037607,0.03770378,0.040708687,0.044756178,0.05045756,0.058240123,0.070554376,0.09198868,0.1423987,0.40504637,0.43440706,0.07270176,0.5962775,0.744197,0.08507446,0.2530464,0.9806135,0.32835847,0.33977705,0.23989823,0.3408829,0.27628347,0.39549896,0.22440125,0.57991445,0.57172495,0.3881607,0.33079955,0.2855656,0.25624537,0.419707,0.4456997,0.43585,0.27122715,0.22565141,0.24096926,0.24232501,0.2480165,0.2613788,0.2842357,0.18549442,0.26229,0.25322413,0.30833054,0.20398763,0.88208836,0.9575348,1.060046,0.77976567,0.19578275,0.44096914,0.2594872,0.2578258,0.26643476,0.24010557,0.26122224,0.18576333,0.17478722,0.25252149,0.37324345,0.31526518,0.6538419,0.74894786,0.5047537,0.6630502,0.91068256,1.1725119,0.5578302,0.14138915,0.3843366,0.31382343,0.45280904,0.9975959,0.58468825,0.30532944,0.3041283,0.3727857,0.12807138,0.053241108,0.6197908,0.6866859,0.58855903,0.02427649,0.53359634,0.24715242,0.08975529,0.05693547,0.044005934,0.037428748,0.033542067,0.031527054,0.02972439,0.029032571,0.029005634,0.02868004,0.029504713],[0.021105753,0.02130218,0.02327958,0.024458542,0.026758166,0.02923359,0.032492682,0.036424804,0.042346712,0.049796063,0.061834294,0.082526974,0.13115606,0.38425905,0.4255883,0.053677723,0.64903253,0.70552,0.12550141,0.41827133,0.71418446,0.13423958,0.36721325,0.14364626,0.2805256,0.17477968,0.3040235,0.25001633,0.2776697,0.2547689,0.34164444,0.24670552,0.43592295,0.32452685,0.45439094,0.3041538,0.19186917,0.19602215,0.26922828,0.23242722,0.2488747,0.22942618,0.23405786,0.21457805,0.2733734,0.24992241,0.3424428,0.35819334,0.1711147,0.8184358,1.0265688,0.9307151,0.8340016,0.26279768,0.34833768,0.15276928,0.30095956,0.14559466,0.30970925,0.1616682,0.33246925,0.21720968,0.2960419,0.17605504,0.39047903,0.37244743,0.48665833,0.3208687,0.2362193,0.3506673,0.5560757,0.84678334,0.27503124,0.31462583,0.38564673,0.25541282,0.91099435,1.0311748,0.37771088,0.31146,0.6403234,0.39612642,0.18642928,0.71204484,0.6396157,0.6526807,0.050252933,0.5655779,0.24755892,0.07943801,0.04493384,0.03209289,0.025589565,0.022121275,0.02052676,0.0192311,0.01894426,0.019005664,0.018974256,0.019949408],[0.035472967,0.035559982,0.03712564,0.038598564,0.040969446,0.043592338,0.047220867,0.051604293,0.057894163,0.066015214,0.0790487,0.10117876,0.15207697,0.41476542,0.4581361,0.15317728,0.5539315,0.7845435,0.39312354,0.34416947,0.86643004,0.22278652,0.36306068,0.23336385,0.42107734,0.27043432,0.3878335,0.21272543,0.3221747,0.26737565,0.28040743,0.36456904,0.5134877,0.3638683,0.281766,0.3186048,0.35107365,0.23733051,0.25364444,0.21855217,0.26415333,0.22558238,0.2688892,0.24215436,0.23167254,0.2204848,0.220659,0.38608116,0.28876597,0.37379354,0.92099875,1.0856026,0.7898172,0.17712179,0.30119544,0.2237095,0.27298298,0.25270092,0.24988815,0.24595241,0.23097579,0.20927975,0.24942054,0.3325825,0.44072127,0.3719237,0.29449898,0.5149288,0.52528363,0.2741665,0.3605863,0.3559615,0.41840386,0.31892824,0.37457708,0.24033481,0.9005711,0.37025848,0.26100534,0.28057098,0.3033475,0.029089237,0.15947627,0.6331811,0.7154197,0.5761251,0.035490006,0.59254575,0.26323485,0.09664744,0.06233736,0.04890627,0.041909263,0.03799751,0.035751317,0.034263246,0.033509895,0.033487566,0.033223372,0.034152508],[0.011746971,0.01146525,0.009984484,0.008949678,0.0077558835,0.0063124793,0.005042738,0.0040140194,0.0041294745,0.006382302,0.011633888,0.022275811,0.052145097,0.25846088,0.8264423,0.0973526,0.5372647,0.8489092,0.40567654,0.26187432,0.75788206,0.17074163,0.3626252,0.2529834,0.3893334,0.28721708,0.39329222,0.30365142,0.36549702,0.26622888,0.41594166,0.22922629,0.68982613,0.6363324,0.3264326,0.37430176,0.27428132,0.23457204,0.24452512,0.24742202,0.23749629,0.23712261,0.23945047,0.22291182,0.2714462,0.2329889,0.34832612,0.31723112,0.25637606,0.18514019,0.91602826,0.9324425,0.7426414,0.27084827,0.24848874,0.20176099,0.26243246,0.18400031,0.2775156,0.19386928,0.28889728,0.22642921,0.27285436,0.2778699,0.9009368,0.7184751,0.34820503,0.28272012,0.27699885,0.4086632,0.38971424,0.28435856,0.3407076,0.26853642,0.3923935,0.37160805,1.0233898,0.954858,0.61264694,0.26642865,0.47157258,0.44443813,0.05252562,0.6857035,0.69341207,0.546059,0.2620512,0.80627996,0.0959306,0.015072139,0.023408843,0.024185233,0.023590619,0.022117779,0.020412264,0.019117184,0.017608864,0.016211277,0.015268815,0.013417679],[0.010107032,0.010242665,0.0093963845,0.0095568085,0.009158932,0.008637704,0.008417307,0.008026121,0.006798534,0.005574405,0.0024914276,0.008474834,0.038033605,0.258337,0.8851292,0.15454094,0.4371742,0.6652095,0.64764696,0.21878962,0.56630766,0.9361391,0.2155353,0.31190872,0.17147835,0.37420547,0.29470956,0.37665564,0.3089648,0.6115571,0.2907453,0.51361716,0.6483831,0.24009833,0.3452917,0.29907444,0.40374196,0.2403929,0.25140455,0.22067244,0.26382065,0.22354944,0.266796,0.22992457,0.24467267,0.20075397,0.20935765,0.35855827,0.41755167,0.26492465,0.9955323,0.96970654,0.18418218,0.2719315,0.23395999,0.29160368,0.21239674,0.29969755,0.20629548,0.28436288,0.20220323,0.2546095,0.21794546,0.26007333,0.3030798,0.30987808,0.23068583,0.36861974,0.29974857,0.25808358,0.1627909,0.4327301,0.4817015,0.4037648,0.2721966,0.70453393,0.80626214,0.7439261,0.7214788,1.0083102,0.57994246,0.16782925,0.5256333,0.48521367,0.8775068,0.39919826,0.40654823,0.32612985,0.14670882,0.07440867,0.04875141,0.035150696,0.027363125,0.022235133,0.018573994,0.016390754,0.014329611,0.012759859,0.0121472515,0.010526398],[0.0030550011,0.0032660146,0.0044140266,0.0051084673,0.0063801575,0.0077093598,0.009232267,0.011110955,0.013854796,0.017255418,0.023432603,0.034682654,0.065265276,0.2684206,0.7900303,0.31279388,0.1116869,0.68224657,0.61526626,0.19595222,0.1672152,0.9208529,0.73388284,0.37380353,0.29672545,0.23055056,0.3270411,0.30587584,0.5716017,0.28788534,0.30221647,0.24447413,0.30869713,0.37629366,0.35278273,0.35780302,0.292896,0.2384639,0.23761937,0.25814077,0.22237755,0.25693673,0.21850863,0.2621148,0.24763525,0.34820056,0.5047295,0.15752172,0.33418795,0.12903409,0.72124064,0.5369073,0.47375798,0.72964126,0.42011455,0.27588385,0.24261265,0.21017207,0.25174728,0.22221133,0.25468397,0.25019723,0.23487861,0.28178948,0.29410973,0.44246513,0.74299896,0.4580056,0.29774702,0.38543618,0.28949046,0.25941944,0.42201725,0.26088247,0.2997662,0.26799053,0.19124776,0.39332476,0.18579872,0.56253517,0.60013336,0.27047727,0.6384088,0.6913221,0.7038206,0.33725342,0.6268318,0.3631006,0.068113886,0.037710786,0.023863178,0.015937809,0.011595422,0.007997428,0.0059056706,0.0041721123,0.002789878,0.0018939972,0.0015970351,0.002038693],[0.035053723,0.034624103,0.03543248,0.036214963,0.037472274,0.038701262,0.040706486,0.04323397,0.04721675,0.052362114,0.061522312,0.07803879,0.120139174,0.37584075,0.7879117,0.47611338,0.19726872,0.64396673,0.6812585,0.2757012,0.23926479,0.5782286,1.1650578,0.3041025,0.33295,0.2775159,0.20192009,0.50311154,0.2700414,0.30288246,0.24072568,0.3020768,0.23942861,0.31964406,0.3093812,0.33788836,0.36328363,0.27585575,0.21409656,0.26338288,0.21726386,0.2773776,0.1973877,0.31926987,0.23261581,0.5468796,0.9583638,0.6685044,0.75120556,0.6823471,0.21963823,0.21378848,0.2970421,0.9533354,0.692764,0.25122288,0.3319361,0.2136667,0.2742632,0.22608025,0.25519118,0.21694033,0.28794444,0.365563,0.6712277,0.34689397,0.7843851,0.46531054,0.33566776,0.3279106,0.35133097,0.29446268,0.3052051,0.59748226,0.23079816,0.33648923,0.22728957,0.3241705,0.2540021,0.7077741,0.63352686,0.24450454,0.6075175,0.6730119,0.567213,0.105409235,0.93844634,0.1607781,0.0043864134,0.026028983,0.03302968,0.03524951,0.035253145,0.035591148,0.03492005,0.03462814,0.03449735,0.034264814,0.03401262,0.03437193],[0.010083938,0.009132071,0.009151388,0.009154064,0.009317407,0.009085404,0.0091804005,0.00882087,0.008844147,0.00805903,0.007882709,0.006735581,0.0066817203,0.04407673,0.48277923,0.82993,0.31311426,0.6860212,0.68476206,0.65806574,0.08067656,0.67384976,1.0116681,0.7831249,0.37457097,0.3309094,0.4843857,0.20696723,0.24655011,0.24318288,0.22523028,0.41384143,0.8930247,0.58515555,0.28784075,0.39570877,0.2135007,0.25747535,0.21787013,0.2759693,0.20312145,0.2761538,0.20069173,0.27765545,0.27786162,0.5164098,1.0397341,1.0260252,1.0010867,1.079365,0.3495964,0.38265726,0.84635085,0.5704676,0.3783471,0.313077,0.251522,0.20716272,0.25094375,0.22615772,0.24710381,0.24995536,0.26461002,0.3577169,0.5696231,0.32718676,0.20933218,0.29533866,0.33430704,0.3533676,0.31977347,0.36149678,0.3468009,0.43881145,0.5532276,0.40370134,0.23863862,0.40120882,0.21522218,0.6339656,0.536418,0.12596616,0.6713182,0.6979021,0.64551896,0.24786957,0.88424593,0.29445606,0.034255303,0.008369732,0.0023221148,0.005593836,0.007168421,0.008478606,0.008747141,0.009327202,0.009418107,0.009722926,0.009262168,0.009750454],[0.024784036,0.022352885,0.02160715,0.020134404,0.019306546,0.017836137,0.016757159,0.015004795,0.013437151,0.010465361,0.006708847,0.0005342721,0.01593465,0.073021054,0.3050051,0.8030736,0.06972909,0.67489356,0.6724622,0.6064751,0.02239565,0.58866894,1.1710695,0.45516092,0.3569164,0.50235677,0.21524295,0.28609872,0.26827535,0.21143691,0.2894873,0.2861575,0.7397946,0.8014726,0.21715865,0.39652,0.28788146,0.2988143,0.1959844,0.2773677,0.20894839,0.28119835,0.19707277,0.3795133,0.25341752,0.5299558,0.9977868,0.93302184,0.9612235,0.9358131,0.8403195,0.9025992,1.0248574,1.0562713,0.5152493,0.31990096,0.34263584,0.26458272,0.2356866,0.25764757,0.22951335,0.24647115,0.21282534,0.32295048,0.24461901,0.35002163,0.41426873,0.33814076,0.23940827,0.32682052,0.37721145,0.78932136,0.2226744,0.4105699,0.24636284,0.5260313,0.19680856,0.37021804,0.14592467,0.77871275,0.52076316,0.27632833,0.81641746,0.5774114,0.70087314,0.5044284,0.5285617,0.1132501,0.07189653,0.06277584,0.054055672,0.048084687,0.042811185,0.03912778,0.035630077,0.032962322,0.03066336,0.028764337,0.026707951,0.02572975],[0.03940071,0.036649164,0.036141362,0.035046775,0.034462746,0.033533495,0.033106755,0.031965714,0.031382635,0.02980643,0.027900947,0.023952782,0.016077975,0.017343763,0.38327798,0.90372574,0.22369869,0.2069461,0.5897576,0.84451747,0.231275,0.5007692,0.98060006,0.31807494,0.5870153,0.28981107,0.28027326,0.21608564,0.21714634,0.29594442,0.17659499,0.4767245,0.90613484,0.9336635,0.55661076,0.3023439,0.3425829,0.23082191,0.23974867,0.2564448,0.21844926,0.26025462,0.27078137,0.3830584,0.27413544,0.52688426,1.06717,0.96901864,0.982915,1.0170698,1.0057049,1.0170724,0.9036418,0.98824614,0.5842881,0.25348076,0.37383312,0.1927574,0.25959063,0.22012138,0.25062925,0.24380799,0.25358582,0.34175673,0.39917997,0.33814114,0.28614998,0.27449062,0.20304687,0.26888096,0.29643616,0.43936634,0.30859798,0.36251643,0.23688106,0.47463238,0.20468292,0.5243547,0.23702087,0.7277242,0.3598614,0.31675935,0.79183453,0.6853311,0.59230113,0.46545318,0.517239,0.17379211,0.12536445,0.09429409,0.078026615,0.06833224,0.060833957,0.055694737,0.051300894,0.04814725,0.04533134,0.043194894,0.04098515,0.03997288],[0.00345887,0.003981001,0.0035195642,0.003637077,0.0035022898,0.0038129413,0.0038260282,0.0044636847,0.004922694,0.0065558297,0.008737472,0.013620923,0.02439739,0.061786767,0.27952567,0.6888514,0.5932709,0.2948656,0.6004334,0.7510059,0.35916135,0.13925564,0.3963917,0.5645483,0.2519222,0.2211456,0.2019237,0.35353443,0.20740232,0.26241115,0.19300064,0.37716076,0.75484246,0.20349157,0.38228667,0.2740533,0.39452624,0.21476878,0.27175596,0.20689917,0.27792886,0.21264547,0.2712186,0.31838077,0.33231083,0.4192506,0.9557492,0.9168386,1.0236253,0.88622385,1.0070775,0.899228,1.0986731,0.68238294,0.2536227,0.38556227,0.32229668,0.2969799,0.23240249,0.25258547,0.24067679,0.2353596,0.22887433,0.30255926,0.31020886,0.3232858,0.40330577,0.2761989,0.26368487,0.22120081,0.2652133,0.16869642,0.25241497,0.21365723,0.24332133,0.15837167,0.50966024,0.47859532,0.5341374,0.7683835,0.1190816,0.6384917,0.673975,0.61904013,0.06376116,0.7097982,0.28816503,0.033619914,0.002729016,0.003928502,0.0054603964,0.005517967,0.0059310817,0.005609987,0.005607431,0.0050739655,0.0050774547,0.0045257555,0.0045396364,0.003969625],[0.033018064,0.033525467,0.03224942,0.032089576,0.031585075,0.03099947,0.030607607,0.02989865,0.029046962,0.027955834,0.025604079,0.022105308,0.013995849,0.009378567,0.0646361,0.47502628,0.8540568,0.20427577,0.2901129,0.6617849,0.72474235,0.014445483,0.8617143,0.64898133,0.3675172,0.31469822,0.3559882,0.2125492,0.52647233,0.44364437,0.2537542,0.23713525,0.17084214,0.25414494,0.30325696,0.3731851,0.3131883,0.2411645,0.24319836,0.24073474,0.24379973,0.2215618,0.3492991,0.31519064,0.38523903,0.24994117,0.5908894,1.0619973,0.93395805,1.0304351,0.98054177,0.95081896,1.0175186,0.68616515,0.26706076,0.36695004,0.30636197,0.31487477,0.22031851,0.24963833,0.22744928,0.2552942,0.26246458,0.36067638,0.3646549,0.34865373,0.2540091,0.20482925,0.24568702,0.23413007,0.24717546,0.2871257,0.30516768,0.18705954,0.35134104,0.24574032,0.2423423,0.39779723,0.61353177,0.75904787,0.095241465,0.6517882,0.6846026,0.7057632,0.20791787,0.60691565,0.20429847,0.10860164,0.07168944,0.063032314,0.0562537,0.05070169,0.047266606,0.043895982,0.041618705,0.039569184,0.038069647,0.03658103,0.03570206,0.034324817],[0.03869057,0.039207563,0.038605746,0.038956434,0.039468776,0.039935388,0.040799618,0.04163142,0.042689953,0.044564825,0.0462923,0.049080256,0.05277969,0.061789695,0.058096256,0.16997427,0.760342,0.36998466,0.28674412,0.62983644,0.79625076,0.17266108,0.910264,0.4957227,0.19921792,0.28718987,0.36454377,0.74451154,0.7189702,0.41859013,0.2638887,0.27508178,0.26962072,0.22622426,0.25861898,0.31042603,0.359202,0.23939188,0.2534675,0.21792983,0.27572545,0.20441847,0.3365436,0.30798092,0.38031656,0.25450358,0.5835994,1.0367048,0.9520214,0.930805,1.0056311,0.9746417,1.0403293,0.7132394,0.23017989,0.40922788,0.29828382,0.2768574,0.21580705,0.267753,0.22922018,0.24373676,0.30545172,0.33897045,0.2924273,0.36287686,0.33964825,0.24219929,0.2636929,0.21542704,0.31155306,0.29997918,0.42274687,0.70492995,0.420389,0.19965486,0.3698543,0.43423298,0.84051305,0.5747621,0.3328183,0.8495664,0.60662454,0.4443713,0.45490336,0.5456323,0.09689372,0.07954195,0.07719442,0.064318426,0.057700865,0.0526536,0.049618285,0.046706617,0.044656213,0.04308849,0.04197085,0.04089531,0.0402672,0.03928869],[0.041755736,0.043806084,0.043543596,0.04384687,0.044710875,0.04594746,0.047254547,0.04889257,0.051088624,0.05397833,0.05736053,0.062115975,0.06793271,0.07328114,0.09403382,0.20562382,0.6668572,0.54647243,0.24505943,0.72546166,0.76773,0.39250436,0.65696573,0.7673461,0.74897224,0.76432776,0.90897834,0.9291235,0.2581278,0.32368273,0.20066884,0.2552045,0.1890195,0.28646255,0.21280502,0.34115806,0.32627767,0.24389173,0.23598672,0.25230443,0.22706033,0.24360801,0.31915477,0.3533886,0.32399306,0.40339416,0.86235976,0.988582,0.97700775,1.050268,0.6364597,0.62129706,1.0973357,0.64861345,0.29199806,0.34665555,0.3254415,0.2381339,0.2411306,0.23080297,0.24592015,0.22986017,0.3277694,0.36431345,0.36687052,0.26987135,0.25072992,0.20182596,0.26188734,0.25482953,0.39810565,0.26279458,0.59642607,1.1263945,0.93624717,0.4349823,0.29947013,0.40860143,0.7142726,0.8719161,0.46120864,0.7451113,0.64809746,0.3183743,0.70333976,0.63033956,0.16774759,0.10470441,0.074194156,0.06657064,0.0605761,0.05584022,0.05288215,0.049800396,0.048117537,0.046375036,0.045197316,0.044662677,0.043668482,0.043085504],[0.01434055,0.015630018,0.015643235,0.015913786,0.016434621,0.01720411,0.017869713,0.018681103,0.019845268,0.02157136,0.023500301,0.026692316,0.031079005,0.041760497,0.046639685,0.031008404,0.66438174,0.63559437,0.105007306,0.3316603,0.81928235,0.2180099,0.83938086,1.1494988,0.48290345,0.6029543,0.49164543,0.38288188,0.2767092,0.2551057,0.21419579,0.28109744,0.2389229,0.2421847,0.21625045,0.26518282,0.2652343,0.2632174,0.22449408,0.25319907,0.23551105,0.2533615,0.27380785,0.3905885,0.25110266,0.55747396,1.0805943,0.97363406,0.66296625,0.3082133,0.2774764,0.12592174,0.7895797,0.7171622,0.24267018,0.39337188,0.3128125,0.33493462,0.22206488,0.2619087,0.23375818,0.24810705,0.24875799,0.26003423,0.23066716,0.23390627,0.25462505,0.2625932,0.23354344,0.3365014,0.33870044,0.331056,0.31138363,0.7016183,0.78689677,0.2783237,0.44541606,0.1398976,0.6334329,0.8640702,0.4321485,0.8007751,0.6291607,0.10087945,0.5366855,0.12149025,0.018751174,0.018554652,0.027251482,0.022039924,0.019946922,0.018375862,0.017737482,0.01660097,0.016415842,0.015949301,0.015475156,0.015743658,0.015056124,0.014934126],[0.02298095,0.022142546,0.022367815,0.022799393,0.023110744,0.023793,0.024710903,0.025411312,0.026887644,0.028260352,0.030448511,0.03296479,0.037153427,0.045090493,0.046330202,0.0212626,0.021382514,0.8018042,0.43230185,0.09984149,0.8838071,0.751775,0.19524091,0.30321634,0.32094836,0.12803003,0.24399406,0.22003546,0.23859,0.24592216,0.26928872,0.20949599,0.24193212,0.24612513,0.26337636,0.2327942,0.22952048,0.22565158,0.25197253,0.23725957,0.2395749,0.23196702,0.33324197,0.3480282,0.32762402,0.43465683,1.0332031,0.604175,0.16501045,0.20511149,0.29702023,0.25410864,0.22890759,0.35501686,0.3365841,0.33321154,0.33297962,0.33325985,0.23017335,0.24437936,0.2288402,0.25149685,0.22837034,0.26293117,0.24372837,0.26211685,0.20894209,0.24475569,0.22165927,0.26408708,0.30793527,0.3771788,0.32537362,0.37128577,0.6570068,0.91666347,0.7875018,0.6113674,0.57275194,0.41697064,0.96440256,0.54664975,0.7543816,0.282759,0.633996,0.107391335,0.040372413,0.037441213,0.041502144,0.034994856,0.031238144,0.028928544,0.027147235,0.025742192,0.024624143,0.023790844,0.023380565,0.022535875,0.022658648,0.022627465],[0.029066185,0.027581155,0.027667232,0.027844101,0.027835682,0.028516058,0.028931612,0.029750986,0.030827288,0.031991594,0.033832625,0.03579444,0.038641542,0.039339636,0.048881784,0.08390625,0.08970307,0.6676172,0.45056605,0.35060316,0.81163263,0.78292453,0.15929638,0.84940773,0.44652915,0.2903648,0.29117665,0.26079914,0.29672408,0.24787204,0.35471776,0.32551908,0.2657963,0.21225166,0.23888429,0.22802973,0.26736563,0.24026054,0.24662,0.23068455,0.2611179,0.22576256,0.29452723,0.33719677,0.3198172,0.32786378,0.28725222,0.22049323,0.26737592,0.28280056,0.18018174,0.24018845,0.2506543,0.21867488,0.2798705,0.3659125,0.32510546,0.25877303,0.22912818,0.25984392,0.23434667,0.25301594,0.23052585,0.24069582,0.21527289,0.24928333,0.2450551,0.26386815,0.22826038,0.2583271,0.22227715,0.25218958,0.2980585,0.32376722,0.26952353,0.4304827,0.79203284,1.0696119,0.72078013,0.38772336,0.81314814,0.74085546,0.14736536,0.50070894,0.6157974,0.10021767,0.09038478,0.06945668,0.050045293,0.04679774,0.042495944,0.039424796,0.03676153,0.034623306,0.03303592,0.031571757,0.030585648,0.029491104,0.028966043,0.028614769],[0.019009322,0.017773721,0.01802781,0.018567363,0.018642144,0.019481078,0.019790303,0.0206511,0.021634553,0.022753552,0.024536902,0.02642205,0.029797094,0.036269654,0.03593693,0.025481297,0.058520768,0.10342132,0.707341,0.74408007,0.66552454,0.72544223,0.17171933,0.57501495,0.5638259,0.2703687,0.33283228,0.24792711,0.3129092,0.52374214,0.37001595,0.3127627,0.3080387,0.24193713,0.26953322,0.2363433,0.23394516,0.22763361,0.24965063,0.23967205,0.23497815,0.2404386,0.2730183,0.32796904,0.24866417,0.21541932,0.22270276,0.26637995,0.20737089,0.19360854,0.31041768,0.24279572,0.23205467,0.26053008,0.2365098,0.27966467,0.3487933,0.238915,0.24287017,0.23436266,0.2360324,0.24231292,0.23913547,0.2635054,0.24936028,0.25177112,0.21878694,0.24669848,0.22919033,0.25556326,0.2379576,0.30132505,0.24987714,0.2928964,0.2710459,0.37215206,0.18389857,1.0267512,0.6046793,0.31951204,0.8686547,0.75805235,0.28577578,0.57314926,0.02806218,0.047081012,0.023762522,0.02299366,0.029733447,0.025461324,0.023064142,0.021747336,0.020659612,0.019664409,0.019287294,0.01868425,0.018540578,0.018016186,0.01790556,0.018084344],[0.014479325,0.016739743,0.016505055,0.016520943,0.017240249,0.017381748,0.018458577,0.019316124,0.020602273,0.021859933,0.023762913,0.026177455,0.029320216,0.035830684,0.03771989,0.025333803,0.04238417,0.037675086,0.85365164,0.27441004,0.088233225,0.90340394,0.25944304,0.056568522,0.8571986,0.6166279,0.32925403,0.75276196,0.3720283,0.69068766,0.4025225,0.27726814,0.23612194,0.2120455,0.22944567,0.23066635,0.2623986,0.24284244,0.24417394,0.23470373,0.25953627,0.22712031,0.29385024,0.31124166,0.23316321,0.26383474,0.25218776,0.21916021,0.2797148,0.4729897,0.21832891,0.24413992,0.2512145,0.21599747,0.24746507,0.23322167,0.29492378,0.24634449,0.2426555,0.24464777,0.2515547,0.23960601,0.24757233,0.21292768,0.23949224,0.23148417,0.26740953,0.22492431,0.25710475,0.21751252,0.3829547,0.3063085,0.3694259,0.31827217,0.33788085,0.245753,0.64578843,0.79244685,0.15291142,0.61946934,0.5851097,0.5745595,0.70693576,0.6942197,0.031148111,0.042064067,0.025502222,0.022460854,0.028665403,0.023976972,0.021998953,0.020402832,0.019238016,0.018411145,0.017688254,0.017090045,0.016445832,0.016381694,0.016030494,0.01604487],[0.013901473,0.016675612,0.016131448,0.015395135,0.01607672,0.015867185,0.01625631,0.016711155,0.01710163,0.017726755,0.018273836,0.019427722,0.019985745,0.019362595,0.02719706,0.04063946,0.022938285,0.03997797,0.88524467,0.64402187,0.5534691,0.7236264,0.51515293,0.061014317,1.1376071,0.7802439,0.48460633,0.7967907,0.40025917,0.2770304,0.2897706,0.23916407,0.23725215,0.2891041,0.24596792,0.26626313,0.2108136,0.25125173,0.22749577,0.26151603,0.21237916,0.26500812,0.2165555,0.23740354,0.22825742,0.24706839,0.20140201,0.32342952,0.2233504,1.0058028,0.102393135,0.16838972,0.33942625,0.24774039,0.26983353,0.21642347,0.25290832,0.21615632,0.26218802,0.21584293,0.2543368,0.22042665,0.26243284,0.24563567,0.27147034,0.2213894,0.26652932,0.27034447,0.3078103,0.22644927,0.28490657,0.3357781,0.37788385,0.28417686,0.6334209,0.5679048,1.0443184,0.9514371,0.3413005,0.73056924,0.78650016,0.41533768,0.4841105,0.79574585,0.07485811,0.05901327,0.052222148,0.04108888,0.029906103,0.027621876,0.025729507,0.02352985,0.022001691,0.020838903,0.019618561,0.018713336,0.01776007,0.0172984,0.016703084,0.016390461],[0.014132427,0.01537145,0.014467604,0.013900866,0.01420614,0.01382921,0.01390919,0.014031499,0.014100035,0.014139906,0.01433664,0.015058132,0.015392605,0.017962426,0.016872495,0.007755127,0.011204164,0.048495356,0.375202,0.6067536,0.7504004,0.6066693,0.8174253,0.012596569,0.4244854,0.86102694,0.16077763,0.29828516,0.24485558,0.39337346,0.3001372,0.26105285,0.21898167,0.20275131,0.21008807,0.23135026,0.25770888,0.24568179,0.24063672,0.23889211,0.254943,0.23549509,0.24188116,0.26266342,0.22718212,0.2707135,0.22587885,0.29995152,0.37206927,0.46463156,0.047738988,0.093363374,0.43986773,0.24423733,0.25102994,0.22585557,0.26613227,0.22583064,0.26086017,0.2267558,0.27028635,0.22327627,0.2648818,0.18767565,0.26679042,0.20206815,0.33264726,0.33891854,0.3931448,0.27457196,0.34384823,0.2098073,0.4041483,0.21309115,0.7442931,1.1494486,0.94706064,0.32478723,0.31315225,0.7104978,0.6321143,0.5097483,0.6072843,0.36695993,0.04808781,0.039497152,0.029256275,0.027725223,0.032389402,0.027282534,0.02488186,0.022904728,0.021107633,0.020003859,0.018865677,0.018020522,0.016979305,0.016767247,0.015844725,0.014871105],[0.006126405,0.0077853175,0.008059431,0.008664526,0.01012649,0.010993871,0.01227558,0.013617487,0.015122167,0.016928023,0.018820439,0.021632576,0.024177749,0.026618173,0.034736488,0.058065902,0.082076006,0.15349643,0.42923346,0.76825595,0.6717846,0.6931931,0.6932702,0.18381707,0.10193298,0.9134513,0.29852626,0.5103712,0.14533973,0.29431137,0.14191109,0.33731613,0.29532328,0.4035472,0.3220394,0.30924937,0.18436298,0.273919,0.20852874,0.27761346,0.19665614,0.27753374,0.21491471,0.25271615,0.22396603,0.24786054,0.2178957,0.2790694,0.24777862,0.3830547,0.08039929,0.3811579,0.29412794,0.37307248,0.25735396,0.2524004,0.22076157,0.25721654,0.22124866,0.25735942,0.21072629,0.26002872,0.21765444,0.2992745,0.21489201,0.2732383,0.18999001,0.33044612,0.28269175,0.3920136,0.29446915,0.38355637,0.28786954,0.6513358,0.8954721,0.92339027,0.9432467,0.06365331,0.6020864,0.7699552,0.5018223,0.5237904,0.78960603,0.16090053,0.005344509,0.01648711,0.010192218,0.0066642384,0.012106494,0.008592731,0.006941917,0.0054948847,0.005002302,0.0042208764,0.0041440804,0.004057948,0.0040204073,0.004986491,0.00483944,0.0053743552],[0.009099679,0.00804878,0.008468695,0.008438577,0.008131169,0.008121681,0.00806446,0.008203635,0.008163213,0.00835804,0.008584012,0.008451061,0.008603541,0.0074183014,0.009744379,0.023610568,0.05919595,0.2763043,0.08982037,0.8045947,0.28138244,0.30424127,0.88475716,0.2485949,0.2468136,0.8090284,0.21564461,0.23811583,0.2694808,0.32593957,0.40479138,0.4305261,0.31246662,0.27006897,0.28677738,0.32094672,0.27567312,0.23741727,0.24650887,0.2342005,0.26066926,0.2299265,0.24399085,0.25286692,0.23874432,0.25135982,0.24863923,0.21263136,0.36065328,0.2977509,0.3217075,0.32143024,0.24646963,0.2536766,0.22747764,0.25116175,0.23521818,0.25312164,0.23294327,0.25520375,0.24177304,0.25833905,0.22965561,0.22034924,0.22954413,0.28573543,0.31598803,0.23883852,0.2942277,0.28704098,0.36856645,0.28293803,0.48963386,0.9287483,0.944581,1.1504645,0.1661432,0.31125236,0.6721081,0.7138099,0.32376248,0.38673744,0.9139454,0.31779957,0.03754124,0.039209597,0.029240051,0.02273366,0.015839312,0.015231331,0.013988559,0.013025908,0.012272663,0.011484796,0.011001887,0.010173327,0.010199331,0.009078786,0.009268038,0.009521972],[0.0133227585,0.014017922,0.015097905,0.01602412,0.016537491,0.018103492,0.019097134,0.020729963,0.022338755,0.024251614,0.026682429,0.029565634,0.03347985,0.039879154,0.042941693,0.04050821,0.10500283,0.17389697,0.1164739,0.34017152,0.46427083,0.5358096,0.71409154,0.6093522,0.15149689,0.30259374,1.0089636,0.19050871,0.45819953,0.1958753,0.37948734,0.6989627,0.38972175,0.5324044,0.52319616,0.37902924,0.32753694,0.23996018,0.24464785,0.24129143,0.23074181,0.24398805,0.24996929,0.22163141,0.25019556,0.2371255,0.2479741,0.31708646,0.29194498,0.47673815,0.40587896,0.31804773,0.25160724,0.25140435,0.27823284,0.23108396,0.2524179,0.22702453,0.25299492,0.22519962,0.24125215,0.22293589,0.25215822,0.27362087,0.33755702,0.3316429,0.32914865,0.34791583,0.23286174,0.24208316,0.33625683,0.35602677,0.37224996,0.3086742,0.67191035,0.94131035,0.071578346,0.2821384,0.80508465,0.45969465,0.05613057,0.4685077,0.77046496,0.1865289,0.033823945,0.022858283,0.008103467,0.002378457,0.009905077,0.00881683,0.008831187,0.009350156,0.0097801015,0.00998476,0.010725882,0.010780892,0.011535384,0.011833866,0.012548574,0.013678113],[0.014253266,0.014198225,0.013076446,0.011957999,0.011479837,0.0099381395,0.009369399,0.00817628,0.007306831,0.006556123,0.005509324,0.0049599754,0.0052555623,0.007404933,0.0065378314,0.022785496,0.25256804,0.31494656,0.09013915,0.24725989,0.850595,0.49082205,0.58610463,0.73763543,0.36069784,0.11173462,0.6258842,0.3289058,0.6082528,0.52485657,0.6391186,0.19394399,0.544711,0.76852244,0.88534635,0.44744244,0.30818024,0.24554548,0.24801674,0.22672623,0.27072397,0.2179821,0.2532029,0.24065094,0.28157154,0.36611006,0.3605145,0.3269752,0.38141936,0.6958185,0.39012876,0.2629689,0.41587117,0.29130694,0.39018452,0.23356506,0.26834452,0.21188359,0.27662393,0.20866406,0.2942765,0.21007435,0.28765875,0.14496924,0.29685202,0.2927119,0.42066157,0.23409365,0.6119021,0.31713524,0.43070608,0.26374263,0.4016935,0.10782469,0.94306135,0.24913718,0.12133062,0.718863,0.65185225,0.2610959,0.21185,0.9492842,0.43175063,0.18318747,0.12209686,0.030425206,0.039163373,0.037392776,0.039661232,0.034572616,0.03144332,0.02869941,0.02656613,0.024581134,0.022497712,0.021288808,0.019537156,0.01837116,0.01712365,0.015836196],[0.00700124,0.008313001,0.0084181465,0.007981247,0.008857569,0.008034626,0.008865382,0.008406029,0.008836679,0.008772541,0.008886734,0.008609506,0.008530717,0.006552171,0.009558218,0.017991526,0.26170033,0.11511194,0.021572005,0.117339306,0.5808643,0.5131095,0.14858717,0.54178005,0.7043999,0.1602059,0.58561563,1.3031058,0.9484503,1.0979005,0.766417,0.3509446,0.32000065,0.28217217,0.1909993,0.29131866,0.23001225,0.23504637,0.24490592,0.24411386,0.22723186,0.24769047,0.24875419,0.22370559,0.36909562,0.2890138,0.31910193,0.34540948,0.26333067,0.28639373,0.37651414,0.3647027,0.314365,0.3383119,0.3562897,0.25933045,0.2462048,0.23441653,0.24958836,0.22783376,0.23763573,0.20631824,0.2611393,0.2717597,0.28364632,0.2658621,0.3495222,0.28800392,0.65995944,0.47333062,0.33468965,0.34297836,0.4344735,0.6398586,0.5602032,0.2506164,0.123941824,0.773996,0.60381037,0.11374432,0.51282966,0.5564422,0.03582655,0.10500362,0.3002117,0.040282547,0.0149809,0.012215435,0.005970841,0.0074485024,0.0077490387,0.007980074,0.008263919,0.008306206,0.008043812,0.008278787,0.008065729,0.008307975,0.008398878,0.008184033],[0.004873392,0.003638189,0.0035881954,0.0033656703,0.003169347,0.0032088014,0.0028980698,0.0031383482,0.0028296842,0.0031911072,0.0037635565,0.0045199734,0.0062568244,0.009937199,0.009347549,0.01842031,0.20452802,0.03689088,0.037908494,0.12952448,0.28928944,0.9085399,0.37810162,0.72410893,0.61657995,0.28985208,0.16839428,0.5923559,1.0379246,0.6368629,0.22622779,0.38958403,0.25293842,0.2798476,0.27416536,0.24997905,0.23597479,0.2581128,0.21857038,0.25306088,0.2374031,0.2551232,0.20689411,0.2993802,0.2590854,0.5084961,0.5617299,0.27956337,0.513547,0.32397202,0.29269728,0.27369672,0.3865009,0.30875883,0.34474492,0.26204762,0.22354923,0.24867222,0.2378632,0.24683198,0.2736935,0.32636315,0.23743507,0.18258017,0.22777423,0.23239878,0.24154575,0.29005077,0.21487446,0.27716386,0.24637282,0.34733254,0.43622062,1.3469197,0.3336341,0.28411025,0.47517765,0.6564492,0.11615173,0.10031013,1.0139112,0.112321876,0.037662033,0.051248133,0.09861529,0.059140068,0.012351288,0.008905237,0.0045266612,0.004642409,0.004983225,0.004925276,0.0046833684,0.004687271,0.0046796794,0.0041588307,0.004637886,0.0038680807,0.004136047,0.0038430095],[0.0016074445,0.0010737004,0.0014512695,0.0019285594,0.0019998532,0.0030439636,0.003062004,0.004088036,0.004634085,0.005486717,0.006467718,0.007618593,0.009166743,0.012373603,0.012424511,0.021042837,0.10825494,0.0333826,0.019136084,0.054896835,0.061190467,0.50157446,0.7627117,0.66922504,0.6782686,0.4060717,0.19244368,0.7265191,0.8347091,0.2500887,0.4430414,0.26645237,0.39003214,0.2724866,0.24621592,0.21313481,0.25738275,0.27829975,0.32605594,0.2758564,0.22543909,0.25293326,0.2414353,0.24057329,0.31996536,0.47788453,1.1229185,0.3267146,0.11734226,0.61581534,0.89222383,0.68839335,0.29020825,0.35457966,0.3875436,0.2875934,0.34000936,0.21326134,0.27302352,0.20010059,0.30473822,0.3315293,0.33765447,0.3506807,0.27245373,0.23077326,0.3391535,0.2699477,0.4147914,0.22605684,0.40886804,0.21638009,0.65579766,0.6264543,0.13386598,0.33610892,0.6037378,0.7387942,0.3293264,0.66347575,0.40131357,0.07445962,0.013905086,0.04547149,0.07961875,0.1532228,0.025119644,0.015731227,0.0073829396,0.006668964,0.0056337197,0.004649926,0.004025351,0.0033746345,0.002644518,0.0025237587,0.0014286608,0.0015460337,0.0010997459,0.0009498478],[0.0059971428,0.0061558657,0.00535664,0.0049531395,0.004789538,0.003990739,0.0042311857,0.003705232,0.0033618715,0.0031479895,0.0030609895,0.0029969655,0.0036461286,0.005450744,0.0044695437,0.039251756,0.14856069,0.07076617,0.04204632,0.021680383,0.1425745,0.42324206,0.7686537,0.61794233,0.23990598,0.77193356,0.15566601,0.66862947,0.54350924,0.20259666,0.395167,0.27350077,0.3788786,0.3410146,0.3006593,0.20688324,0.34435526,0.3186178,0.40905312,0.26920104,0.2854051,0.18794897,0.2850504,0.20050943,0.3253768,0.26374364,0.7470674,0.67797124,0.21984982,0.95232236,1.0145075,0.9881519,0.7918456,0.16267034,0.20935565,0.38506606,0.32331184,0.25702584,0.23509651,0.24111596,0.2997212,0.3521826,0.34364218,0.2818228,0.23197536,0.26905242,0.39298737,0.34378403,0.30045,0.3176287,0.4194082,0.20040464,0.64156425,0.70858747,0.061868016,0.3398099,0.51661175,0.71276736,0.3979109,0.9085219,0.26599562,0.10919567,0.023958517,0.055974595,0.082887754,0.2706864,0.035463184,0.019244784,0.01966788,0.015164054,0.013246553,0.011605488,0.0105399545,0.009846778,0.008872177,0.008552083,0.007679438,0.0074944114,0.007136361,0.0060982276],[0.008040023,0.0090312185,0.009352036,0.010331852,0.011080993,0.011349897,0.012591954,0.012905409,0.013902549,0.014495263,0.015190022,0.01562567,0.015643744,0.013656248,0.010638853,0.11709015,0.1875439,0.087006345,0.064944774,0.043546755,0.121093065,0.10239097,0.5750794,0.57583565,0.12800686,0.4320719,0.304687,0.09745288,0.7681326,0.601138,0.21991327,0.42546946,0.26843902,0.21088487,0.26900256,0.38196194,0.29727355,0.3612989,0.2671854,0.3356933,0.18837515,0.2923086,0.2168527,0.24497439,0.22639047,0.25460416,0.3267114,0.36904976,0.36429307,0.30393514,0.95251745,0.95712996,0.98310256,0.45529014,0.101866014,0.46401584,0.24900654,0.31610775,0.18075742,0.29083145,0.20670266,0.41336012,0.2355397,1.0461044,0.29865637,0.31236655,0.20015201,0.35021216,0.3236996,0.43866098,0.1849019,0.6971653,0.64249605,0.099325076,0.17104997,0.4574592,0.40515515,0.013649273,0.6560771,0.33885056,0.028210234,0.060822915,0.015445383,0.03874866,0.042312946,0.15219258,0.017573304,0.0072514005,0.00837381,0.0051012,0.0035342218,0.0031548934,0.0033553382,0.0040062806,0.004237074,0.0054965657,0.0054533244,0.006381178,0.007134505,0.007254582],[0.021032061,0.019669827,0.019967062,0.019743958,0.01980706,0.020574696,0.020512952,0.021324363,0.02175315,0.022729922,0.023773972,0.025662856,0.028129745,0.031906128,0.04826133,0.303621,0.029580792,0.05846687,0.038721845,0.034630373,0.08123775,0.05609601,0.12002275,0.7424405,0.6678041,0.2623287,0.5927723,0.047203884,0.6484958,0.462688,0.43453506,0.30952513,0.20064685,0.33533797,0.36723566,0.30890366,0.40787634,0.3337022,0.36141774,0.23138124,0.2384589,0.21164025,0.2454721,0.26370192,0.23997205,0.26918456,0.26487023,0.21330594,0.3343892,0.3749705,0.9284516,0.77770936,0.24017847,0.4221993,0.34140095,0.35739,0.28590667,0.28080192,0.1999453,0.28204277,0.26550314,0.41279262,0.30050498,0.6806953,0.36107874,0.29381654,0.20395456,0.37652558,0.23910171,0.36925837,0.30959857,1.0724996,0.43804199,0.1686038,0.10956724,0.35480428,0.18837239,0.6463541,0.72156966,0.15896407,0.09144417,0.119293466,0.07734059,0.0667234,0.09474852,0.21595427,0.035008438,0.029545592,0.025854085,0.025158966,0.024389032,0.02356555,0.022968479,0.022034205,0.021908445,0.020760097,0.020978045,0.02050072,0.020143468,0.020249294],[0.0160938,0.017347917,0.016811531,0.016617188,0.016741248,0.016349776,0.016686352,0.016862689,0.01711313,0.017420659,0.01819822,0.019215902,0.02093898,0.025065431,0.032004572,0.19434957,0.09376729,0.027030427,0.014285261,0.01381443,0.044044856,0.01414924,0.028051712,0.36493546,0.69140595,0.49813616,0.29319313,0.41571373,0.05834667,0.9618904,1.1110667,0.27181697,0.37624082,0.30072728,0.3335102,0.3385,0.2997184,0.31196025,0.3442747,0.21104716,0.24601083,0.28649607,0.24761401,0.16278836,0.2904108,0.31976786,0.37684065,0.3592392,0.32347667,0.23246817,0.93178827,0.2585119,0.41097674,0.26774395,0.3292679,0.21192741,0.27299216,0.18961489,0.33118677,0.16215715,0.29714966,0.30857325,0.37957665,0.48826742,0.38023764,0.30862457,0.29201445,0.14743726,0.44867587,0.26975745,0.6352463,0.7432627,0.022117294,0.26564386,0.4705391,0.18665445,0.5608758,0.8658544,0.207232,0.07127299,0.0539852,0.08606745,0.05808082,0.030146098,0.045952074,0.025147134,0.03008565,0.027690921,0.024902051,0.024080126,0.02322456,0.022565898,0.021372527,0.020986892,0.019833652,0.019738827,0.018866073,0.018685073,0.018151004,0.017697236],[0.013236649,0.013922939,0.013530557,0.012926966,0.013016876,0.012574897,0.0126512805,0.012120889,0.012483075,0.011917853,0.011938411,0.011918986,0.012132196,0.013118963,0.009920255,0.0044618105,0.019139864,0.015182242,0.010582146,0.03252804,0.031385746,0.014971631,0.013298094,0.058556452,0.8023248,0.6068863,0.33955616,0.076319076,0.20439066,0.39122146,0.82636285,0.2918882,0.2858781,0.32165375,0.38201654,0.30609486,0.40154758,0.33347297,0.20768653,0.23677854,0.2921981,0.21415813,0.24326803,0.27619502,0.2911675,0.31827357,0.3188295,0.25578296,0.5919725,0.6917327,0.8824195,0.36283377,0.31645665,0.31430057,0.25727755,0.26170757,0.21062514,0.25656798,0.23512724,0.24033155,0.31189317,0.3721656,0.29042765,0.93566215,0.3848497,0.25803047,0.32806095,0.408431,0.28693026,0.2418179,1.1474899,0.5390028,0.12052951,0.06981102,0.1098631,0.5184844,0.5767837,0.35572255,0.080653,0.05789037,0.03751337,0.02755976,0.019344935,0.018239932,0.03343101,0.22712584,0.04373244,0.03040916,0.031178178,0.026025366,0.023225224,0.02152524,0.019847535,0.018492736,0.017649744,0.016847558,0.01611391,0.015461146,0.015103745,0.014227486],[0.023872213,0.02269818,0.022843592,0.023043811,0.022865761,0.022973996,0.02310689,0.023770137,0.023948267,0.02520571,0.025975844,0.027686942,0.030256582,0.03608109,0.043167606,0.20675156,0.06841029,0.010406246,0.015127692,0.037478212,0.01354124,0.028224245,0.025733294,0.075330816,0.20815197,0.82385004,0.3490478,0.13538875,0.038306434,0.098308235,1.0721996,0.6758781,0.8051693,0.5265913,0.26437598,0.37700298,0.27440745,0.27916008,0.25903276,0.24982125,0.21352284,0.32692432,0.25676337,0.2421624,0.23476039,0.3125953,0.3620936,0.3666606,0.49470198,1.0493236,0.9548426,0.31432858,0.35437164,0.36995822,0.28032237,0.2275697,0.25098243,0.24227697,0.29181582,0.2932551,0.20643725,0.33175656,0.32387483,0.9122291,0.33258325,0.3932283,0.33070195,0.26105946,0.600087,0.8621697,0.15354548,0.30870378,0.07016396,0.29838905,0.39793006,0.33466935,0.9204506,0.16622913,0.089125425,0.07776448,0.06382334,0.02803027,0.039451264,0.03836247,0.025964445,0.13972531,0.042888377,0.036771894,0.037796225,0.034067687,0.03178651,0.02978808,0.02878735,0.027322978,0.02647297,0.025717936,0.024961695,0.024289528,0.02392478,0.023858724],[0.018363792,0.019193135,0.019032622,0.018809957,0.019434474,0.019580228,0.01999507,0.020400163,0.021106401,0.02150689,0.022715462,0.023548674,0.025278041,0.028172357,0.035712875,0.20781195,0.059472486,0.03651015,0.039529264,0.05945091,0.03188221,0.053398576,0.06097367,0.111421645,0.11291504,0.6887176,0.77625763,0.29817772,0.22279756,0.17851809,0.25572297,1.0764855,1.0698484,0.76402926,0.27639464,0.38215843,0.3440608,0.2791672,0.18643141,0.25946054,0.3140139,0.39645413,0.22040604,0.27247787,0.1985438,0.25702366,0.2734115,0.35179937,0.23557267,0.43125123,0.87604064,0.35521454,0.3108374,0.32711264,0.31442,0.25951517,0.23460022,0.31924224,0.36611506,0.34143806,0.2817195,0.3071799,0.33987758,0.45548865,0.3942683,0.22601263,0.34959993,0.33937815,0.7668245,1.0872954,0.24785526,0.2406594,0.075183995,0.22843266,0.28218788,0.834814,0.1453805,0.083273925,0.03726926,0.04268315,0.03366848,0.011853378,0.01931885,0.026624147,0.016343987,0.08811968,0.02508833,0.022787597,0.024912657,0.022564555,0.021373838,0.020879714,0.019846957,0.019883845,0.019297559,0.019049628,0.018911218,0.01895495,0.018577877,0.01822514],[0.008548181,0.008088896,0.008021382,0.008393579,0.007772693,0.008073055,0.008198554,0.00833615,0.008394667,0.008845594,0.009293547,0.010355253,0.01163283,0.015866373,0.020532828,0.14940245,0.068680875,0.02368511,0.016785076,0.019277997,0.010839319,0.018968895,0.023849783,0.04135962,0.027165057,0.21019687,0.7215175,0.5180427,0.5587097,0.0999306,0.14759842,0.24687614,1.0217228,0.861293,0.8738926,0.532868,0.22746466,0.34862342,0.3147554,0.24479386,0.22115518,0.35694084,0.26524866,0.3067843,0.35307816,0.23054679,0.25674954,0.2705267,0.3531127,0.37177828,0.9214012,0.31844923,0.36440736,0.35386643,0.36150035,0.28025734,0.2898409,0.3730996,0.28374335,0.37786388,0.24882035,0.27550676,0.35645217,0.74642205,0.36838385,0.36253938,0.30452606,0.21516797,0.80461365,1.0425292,0.25144824,0.11007699,0.17240083,0.18512757,0.77730465,0.6457313,0.0992749,0.10225258,0.048618726,0.039730247,0.033201054,0.006296998,0.014277095,0.024612103,0.0115413405,0.06649826,0.016955456,0.014946929,0.016502162,0.014132093,0.01305077,0.011906632,0.011390029,0.010410934,0.010337286,0.009726945,0.009425949,0.009016752,0.00893684,0.008741144],[0.0070869448,0.007385968,0.007278551,0.007800182,0.007606123,0.008325662,0.008267099,0.008983631,0.009643882,0.010479969,0.011526341,0.013739107,0.01598377,0.02043212,0.03507423,0.24441007,0.05394191,0.020583952,0.0147006465,0.029281551,0.010354904,0.01741664,0.024131974,0.043190043,0.034980796,0.10417064,0.35577083,0.66236424,0.06616707,0.5735007,0.15674374,0.10855593,0.26675326,1.1035016,1.0453296,1.0305798,0.52130055,0.36373457,0.28746653,0.24958524,0.28650358,0.2596995,0.26621667,0.40513694,0.2380727,0.39835525,0.24384627,0.30667716,0.24471954,0.8796999,0.9078542,0.40549034,0.30298042,0.32146963,0.3192576,0.26741898,0.30059654,0.36252257,0.33093,0.3707911,0.27269527,0.38267568,0.26963502,0.4482278,0.884922,0.34858525,0.40717793,0.85467184,0.94644004,0.38981396,0.08382255,0.19256717,0.50391763,0.40551913,0.7868995,0.11492054,0.031626157,0.023763124,0.020696523,0.021451967,0.0080701895,0.03776273,0.020667225,0.0154383145,0.023079572,0.034562144,0.008422095,0.010075174,0.005356111,0.006711056,0.0072021824,0.007434234,0.0072673936,0.0071056425,0.007302641,0.007224953,0.0072744153,0.0073728715,0.0070619676,0.007166458],[0.003962685,0.0039909077,0.003991536,0.0035393375,0.0031964087,0.0032165889,0.002792667,0.0029197466,0.0024962649,0.002153295,0.002030403,0.0012227967,0.0008564438,0.001366006,0.002804798,0.053752385,0.037759546,0.011311437,0.008902293,0.015328905,0.014251818,0.01044654,0.013965151,0.011003466,0.02782212,0.03498145,0.14957294,0.6656109,0.6883969,0.22262882,0.08219947,0.20206648,0.18046531,0.2792294,0.76411444,0.9032311,0.97706234,0.4062196,0.36199343,0.33220127,0.18851286,0.2532482,0.34489083,0.30771855,0.53350466,0.31567335,0.35738924,0.3777253,0.33724996,0.7154133,1.1643742,0.8620805,0.34231773,0.3727131,0.3588449,0.28177348,0.31099,0.36491227,0.28917307,0.3744396,0.2943329,0.27380088,0.35817614,0.38877824,0.8939123,1.2106937,0.8803103,0.74717706,0.28708753,0.18792748,0.11016158,0.13413917,0.22415376,0.83570236,0.2523825,0.111290075,0.04967232,0.06100994,0.03262093,0.023592042,0.021765307,0.010829111,0.0070003383,0.020547219,0.0069688824,0.047963984,0.009741792,0.009225701,0.010397393,0.008526351,0.0076558883,0.0071498957,0.0063958876,0.006157534,0.005893945,0.0051063015,0.005326634,0.0045230896,0.004490349,0.004307246],[0.010851547,0.011460124,0.011428343,0.011212844,0.011321455,0.011945347,0.011420696,0.01205404,0.011912597,0.012205964,0.012257641,0.012530427,0.012408148,0.011732063,0.012670333,0.0075148046,0.030700684,0.016716985,0.0144778825,0.010514933,0.033172518,0.021740032,0.023477122,0.022028392,0.04063523,0.049335588,0.08147417,0.19154988,0.7079464,0.8182454,0.24922995,0.17089255,0.023356272,0.054405805,0.20443696,0.48489237,1.1269484,1.102376,0.44914907,0.27649862,0.46706453,0.36693874,0.27977416,0.58010423,0.735098,0.2957166,0.36115384,0.26356053,0.37645686,0.20314315,0.56198883,0.86221814,0.19915028,0.350827,0.29038802,0.27716166,0.24975258,0.36481497,0.34573743,0.31151524,0.4085861,0.7277222,0.22738917,0.36398643,0.9765908,0.57373774,0.41177228,0.2005879,0.17608064,0.21679753,0.2144026,0.2817231,0.8541976,0.6140073,0.18832016,0.032163695,0.043024704,0.0036991313,0.025883518,0.030767437,0.014687842,0.04179395,0.025619805,0.015824601,0.02814724,0.021541815,0.013850876,0.013568301,0.011009176,0.011374168,0.011760416,0.011600633,0.011572621,0.011471503,0.011628723,0.011082087,0.011749753,0.011153625,0.011152179,0.011356512],[0.011461143,0.01136484,0.011238573,0.011643358,0.011143086,0.011070453,0.011514838,0.011052476,0.011546085,0.011081347,0.011299391,0.010989437,0.01076547,0.009312937,0.010029144,0.040868472,0.034905687,0.014751859,0.014481075,0.014823728,0.032469653,0.019104632,0.019078607,0.019211752,0.032934543,0.041917223,0.057060026,0.09505117,0.14482477,0.6404783,0.7405091,0.1123579,0.04300427,0.05456669,0.083338186,0.100971915,0.36267307,0.47757837,1.1239415,0.5326986,0.18407291,0.26659426,0.59567875,0.98822147,0.26426852,0.33355832,0.3563813,0.3783032,0.2956449,0.61577636,0.46699527,0.923279,0.6105027,0.32527372,0.40893742,0.27974436,0.31801918,0.2903127,0.37647897,0.62112015,0.80701876,1.0856116,0.82911175,0.6976023,0.3680031,0.07726037,0.41189966,0.17106904,0.08220006,0.13499144,0.40653077,0.82391244,0.57961744,0.13485275,0.11288148,0.03399042,0.040467225,0.010826098,0.025081234,0.03519737,0.016515242,0.04326068,0.027685849,0.015142118,0.03127695,0.022192739,0.015292905,0.014123021,0.01225704,0.012643671,0.01237571,0.012441745,0.012047946,0.0122938305,0.011769355,0.012243566,0.011389969,0.0116223795,0.011631964,0.011351305],[0.026366372,0.026108107,0.026956515,0.026617972,0.027329566,0.027721757,0.027825223,0.028909376,0.02916068,0.030621162,0.031430315,0.03335713,0.035730176,0.039499406,0.05245939,0.26283303,0.0422627,0.024931718,0.027268367,0.030578643,0.045990966,0.033806656,0.033340205,0.03919419,0.052010495,0.06541979,0.07546861,0.10568562,0.09757047,0.25726178,0.60915387,0.6590157,0.24345967,0.11529575,0.034874078,0.047566883,0.0827,0.13210422,0.4122584,0.5355946,0.9997396,0.72117084,0.97086287,0.9806358,0.3316833,0.40139735,0.23331621,0.5355814,0.71720016,1.0184562,1.2245148,1.0835088,0.7795393,0.19626378,0.33984298,0.30745757,0.36013463,0.33528712,0.8787026,1.1834255,1.0224047,1.0150062,0.50399673,0.53233045,0.10670321,0.243314,0.09530154,0.23523156,0.33249888,0.24652751,0.7870873,0.57934976,0.16596334,0.10465349,0.10567604,0.053299513,0.057047952,0.03111383,0.04113355,0.051668096,0.03345596,0.0586701,0.044095322,0.028758137,0.048450053,0.017391989,0.02972402,0.028941646,0.026970891,0.027213674,0.027112335,0.026672097,0.02699413,0.02620292,0.026691461,0.025911415,0.026183778,0.026248029,0.025897408,0.026414724],[0.010914325,0.0112683615,0.011231896,0.011511324,0.011549983,0.012170591,0.012330742,0.012779297,0.013051198,0.014081931,0.014691535,0.01605572,0.018108208,0.021857398,0.027561162,0.15829867,0.09935597,0.022897338,0.0040004966,0.013441196,0.021776335,0.0105148265,0.008875719,0.014814814,0.024855942,0.037393223,0.04930045,0.06480401,0.044227097,0.12591971,0.18452764,0.6867686,0.76464665,0.22466205,0.35810417,0.2401555,0.11814364,0.51801616,0.06961286,0.030888516,0.0824434,0.76389694,1.0642881,0.9134453,0.8172864,0.22074687,0.5855655,1.013661,1.179172,0.3607532,0.021652902,0.32028237,1.0844146,0.63710314,0.3750458,0.37040773,0.7212386,0.9451015,0.79648757,0.0058848388,0.2831782,0.49146485,0.022886472,0.19212283,0.23349103,0.25899312,0.26994157,0.44369882,0.26030225,0.79547584,0.6675071,0.10552405,0.08598889,0.057941064,0.059266895,0.026700962,0.02828118,0.015219976,0.0153244175,0.035255663,0.013942526,0.03704607,0.02568945,0.0094707385,0.0347498,0.053392217,0.013321398,0.011248154,0.012764541,0.0121027315,0.0114370445,0.01138467,0.011042306,0.011474998,0.010848956,0.010973722,0.010989066,0.010893395,0.010781168,0.011114605],[0.01300812,0.01284902,0.013095917,0.01281536,0.012985921,0.013269721,0.012931133,0.013299975,0.013441359,0.013634974,0.014049318,0.014378844,0.015371843,0.01722625,0.01756428,0.043408733,0.25907877,0.04692065,0.016147219,0.018563855,0.0019788411,0.014004992,0.018099189,0.012022825,0.00586805,0.005543779,0.029084863,0.02404271,0.0060331826,0.05475731,0.043256693,0.12256986,0.7586665,0.6737903,0.4327172,0.06312372,0.22537488,0.17414603,0.10727768,0.14298443,0.30504677,0.06965846,0.34082606,0.06919435,0.33508685,0.7255022,0.22733672,0.13988426,0.09320803,0.1049954,0.22592258,0.09785092,0.24805237,0.99623966,0.6649007,0.9552965,0.19901702,0.1610084,0.3232852,0.19296136,0.24476598,0.13737783,0.07461556,0.10078122,0.034911312,0.62057114,0.05595296,0.34113777,0.74251324,0.70118165,0.01954944,0.021422593,0.026365403,0.033286177,0.017192598,0.01433965,0.004914788,0.024216607,0.014764018,0.020274237,0.015076694,0.015159036,0.007113388,0.0144683765,0.04865173,0.18527617,0.030218199,0.022568692,0.021940034,0.018990109,0.017331325,0.016386574,0.015708068,0.014962636,0.014579381,0.014078011,0.013780098,0.013752844,0.013369947,0.013416905],[0.0072800233,0.0067819715,0.0069605433,0.006660633,0.006805273,0.0066880123,0.0066766627,0.0068020253,0.0066934917,0.0068331864,0.0070047453,0.0068679415,0.007145712,0.006067915,0.008564531,0.0046768896,0.15059493,0.014049424,0.009388259,0.011063758,0.012266044,0.008936308,0.010297348,0.007352609,0.00878452,0.017926214,0.022263836,0.027866552,0.010393029,0.060281515,0.038726788,0.057406116,0.12227621,0.73063487,0.7152908,0.69981045,0.32717562,0.2467722,0.54620665,0.10141966,0.089438304,0.06407677,0.058623824,0.11871031,0.09813204,0.24976468,0.24847451,0.35228834,0.38727573,0.37941435,0.29818028,0.35038507,0.32619035,0.32454503,0.37576678,0.27153322,0.16965336,0.15876368,0.18296084,0.0697249,0.06853457,0.11244894,0.0786978,0.5587757,0.14615567,0.15215264,0.74056655,0.77443594,0.66661173,0.0590138,0.004499427,0.020625755,0.029979045,0.03285895,0.019290406,0.008602253,0.003922468,0.018730396,0.007684444,0.025818452,0.01781782,0.020219449,0.027323196,0.031248061,0.1130114,0.33401123,0.04420872,0.028909886,0.017233936,0.014730327,0.013032313,0.011392009,0.010391067,0.009633863,0.008908724,0.008447637,0.0081467135,0.0076876497,0.0076351,0.007100372],[0.0067384047,0.0068206354,0.006738887,0.0068423976,0.006676375,0.00699189,0.0067025092,0.006904409,0.0068407846,0.0069399937,0.007167739,0.006984687,0.007099647,0.0063152527,0.007563079,0.008727248,0.104286075,0.028891476,0.018167645,0.017801125,0.021361988,0.010538102,0.006110967,0.013741422,0.019091424,0.0306326,0.03458298,0.042129185,0.021362022,0.069619596,0.05041034,0.06148237,0.07642079,0.19294088,0.5104122,0.6472902,0.7800761,0.60809153,0.26239496,0.14862336,0.3063116,0.034624934,0.07283674,0.27055034,0.16048467,0.099545926,0.24765258,0.1553401,0.20222363,0.14964986,0.16461922,0.12606108,0.21391694,0.15497297,0.19779402,0.08928236,0.01993717,0.20040186,0.099219605,0.09261321,0.5875346,0.5979611,0.12190753,0.31152374,0.64961815,0.9248202,0.6120719,0.48388606,0.13005307,0.051916864,0.022309808,0.039835643,0.044184804,0.037074953,0.028762143,0.0135114305,0.016706144,0.007723294,0.009266496,0.023243288,0.0042263693,0.023456259,0.0089438055,0.022254199,0.0028717502,0.08585908,0.02059958,0.013688893,0.011416359,0.010028139,0.009210843,0.008670156,0.008225131,0.007872558,0.007610758,0.0072340546,0.007449017,0.006977815,0.007076822,0.0068790093],[0.0024349382,0.0026405423,0.0022348075,0.0023641651,0.0021273235,0.0022501932,0.001834785,0.002102589,0.0017442993,0.0018624795,0.0017370441,0.0018834621,0.0019621174,0.0014362271,0.004767517,0.0020141117,0.22589979,0.10271743,0.041957185,0.028740581,0.009818241,0.007894149,0.013977032,0.0064800787,0.0066319713,0.013584073,0.031098044,0.026912399,0.010580748,0.031843204,0.0045944834,0.0056434413,0.016164968,0.009718129,0.15517236,0.27920416,0.4356786,0.7445298,0.818988,0.83813274,0.5658645,0.26099348,0.27585435,0.4310951,0.13862662,0.14905162,0.024550527,0.31300667,0.27112752,0.27331424,0.22630952,0.26723793,0.24788183,0.24643597,0.3010998,0.067740336,0.17487209,0.6271716,0.6954219,0.21622594,0.5013914,0.6650993,0.78525305,0.85708934,0.67338467,0.35164768,0.2048549,0.14108394,0.023244057,0.024628667,0.028987471,0.019403066,0.0122493,0.024674296,0.005337247,0.012364739,0.0022447538,0.019242583,0.011124912,0.021092435,0.015420585,0.013213392,0.009033674,0.025857551,0.02835844,0.021878304,0.006247243,0.0024765264,0.006664045,0.004954809,0.0043803505,0.0038813434,0.0037974357,0.0034066497,0.0033464434,0.003187199,0.0029705833,0.0029480888,0.002739524,0.0027192822],[0.0020889267,0.0019310627,0.0020457567,0.0018227878,0.0019601039,0.0016776338,0.0018831783,0.0016352005,0.001871755,0.0016313308,0.0019257702,0.0018088201,0.0021785481,0.0031876531,0.0024291945,0.006513812,0.06925909,0.19413741,0.04646177,0.022239188,0.007085377,0.003970301,0.010238159,0.001975675,0.0047864686,0.015109916,0.027729584,0.026305553,0.0045452365,0.03527319,0.011241082,0.011782937,0.009329126,0.0041028946,0.0672949,0.06787181,0.12494279,0.28126177,0.23732851,0.3913792,0.8204053,0.77165323,0.9257641,0.3866784,0.3446167,0.3585306,0.589552,0.83218104,0.76353765,0.8099618,0.815572,0.7915763,0.8233895,0.78976834,0.8326967,0.46923432,0.36634025,0.3984613,0.62702924,0.8997802,0.7471427,0.81987816,0.33572808,0.2524078,0.24269958,0.081212796,0.032069746,0.04439811,0.0037669686,0.0068521635,0.014079315,0.018769044,0.019342301,0.02418501,0.00810803,0.008994368,0.0059012854,0.014467717,0.008375741,0.021390323,0.013348776,0.015949978,0.008012936,0.03246201,0.091166675,0.0138910115,0.0073557105,0.0028413795,0.0060210754,0.0043103956,0.0037999307,0.0031806992,0.0031583721,0.002710765,0.0027282084,0.0023728386,0.0025846239,0.002129219,0.0022735798,0.0020533274],[0.007002732,0.0070022405,0.0069835708,0.0068052006,0.0069608856,0.006710892,0.0068893693,0.0065483833,0.006840012,0.006630793,0.006737786,0.006614978,0.0065210513,0.006884895,0.0066525363,0.0059407647,0.030193062,0.04846963,0.07501931,0.02963411,0.008504455,0.012163469,0.020446245,0.008980831,0.008235565,0.008126105,0.028110575,0.023368793,0.015929136,0.022271259,0.008274833,0.009868099,0.018993642,0.012830739,0.06673583,0.070222504,0.04399732,0.040252425,0.11645162,0.052482277,0.23834313,0.16616103,0.10795008,0.7368548,0.8590128,0.7656851,0.7376662,0.5733755,0.6448737,0.6008188,0.59730244,0.6152132,0.6262773,0.5985718,0.58537066,0.81212777,0.7790485,0.8581025,0.64009917,0.1331284,0.19571036,0.21014436,0.03661913,0.1036512,0.03666461,0.028370867,0.043653354,0.050437592,0.018346164,0.022994004,0.022757621,0.011955103,0.013639191,0.02975318,0.008535659,0.0089072175,0.0021074591,0.016428288,0.015301725,0.014380933,0.014706589,0.016561855,0.008662984,0.060908612,0.33107895,0.022028793,0.011744334,0.009947978,0.012406697,0.010545503,0.009506583,0.009129016,0.008465314,0.008407844,0.0077704815,0.007878489,0.0074715847,0.007509768,0.0072015645,0.0072002467],[0.003463963,0.003619647,0.0035707538,0.0035694456,0.0034903765,0.0036460236,0.0033816292,0.0036163286,0.003459,0.0035948264,0.003356537,0.0034674758,0.0031339256,0.0029567247,0.0032338547,0.002554838,0.022927355,0.23441686,0.16277868,0.03255808,0.007765215,0.011702862,0.018188635,0.0064608227,0.004559979,0.008111938,0.024261937,0.020507256,0.011043142,0.026179673,0.011040374,0.012509238,0.0104908245,0.007969253,0.05070915,0.060979273,0.03179549,0.024683645,0.059356686,0.015113784,0.100373946,0.051174395,0.03295969,0.054287363,0.11910916,0.66051096,0.6322205,0.76870006,0.73252386,0.69738454,0.76065713,0.712909,0.74191344,0.7170746,0.796586,0.28538892,0.07771205,0.07239585,0.068400756,0.0779732,0.05243137,0.09525284,0.02746487,0.040528897,0.022593083,0.032938745,0.034644134,0.035201438,0.013384457,0.015407479,0.015169852,0.0106285885,0.01649608,0.027308311,0.0065386533,0.0060443473,0.0034060392,0.012841635,0.011319906,0.020045578,0.014495366,0.018077971,0.016188977,0.013107774,0.14100255,0.010499148,0.0026519683,0.0061400346,0.0045727897,0.004221989,0.004062772,0.003976197,0.0039789136,0.0037093644,0.0038980723,0.0036747342,0.0038027903,0.0036119693,0.0037119614,0.0035496387],[0.0012000425,0.0011662645,0.0011298459,0.0011535836,0.0011297263,0.0011073737,0.001160412,0.0012014346,0.001233601,0.0013660017,0.0015469844,0.0018300087,0.002396722,0.004419043,0.002624469,0.0036089774,0.014862191,0.09094263,0.11632723,0.019601533,0.004842957,0.0050604697,0.010731137,0.0037524877,0.0035392293,0.016750809,0.022494288,0.023979623,0.004614244,0.032848537,0.014366524,0.014025108,0.00352659,0.008260644,0.038922645,0.066850096,0.020679882,0.026017109,0.031267907,0.008290264,0.07700362,0.016423814,0.021248834,0.024808334,0.04128122,0.07043743,0.049798656,0.059637267,0.027209962,0.028132036,0.062356103,0.041221637,0.017482452,0.04606737,0.031679362,0.02986276,0.07755842,0.08107112,0.014801483,0.043158002,0.122650154,0.052593343,0.04610391,0.015864618,0.0759045,0.03417177,0.02151278,0.020448048,0.002090645,0.0074448935,0.0027595612,0.014531635,0.021840572,0.026491564,0.0064630224,0.007306193,0.01134265,0.008969373,0.005605206,0.021064313,0.010806509,0.020847823,0.017398167,0.03801023,0.023147695,0.0070281904,0.005006456,0.0026017218,0.0031504293,0.0022297981,0.0019306398,0.0017460847,0.0015967882,0.0015206042,0.0014648767,0.0013976988,0.0013134005,0.001307814,0.0012057357,0.0012027005],[0.0016124726,0.001435594,0.001333665,0.001254117,0.0010738414,0.0009513808,0.0008546664,0.00078035746,0.0007370546,0.00077565666,0.00094351824,0.0011834508,0.0014549589,0.0013080896,0.0035742412,0.0066165077,0.015644621,0.10149175,0.13315737,0.0583588,0.013448377,0.0089648925,0.016689839,0.00731778,0.008415721,0.016294137,0.029046543,0.027480787,0.007711867,0.02655615,0.009743189,0.00920731,0.0090554105,0.007929944,0.056952864,0.07193449,0.049791336,0.02392688,0.04224769,0.01610433,0.049650807,0.02155274,0.013298044,0.008405396,0.040930398,0.051004753,0.025689062,0.036097478,0.019322092,0.0151706105,0.043661114,0.02473714,0.03514699,0.02940118,0.01984102,0.018930605,0.076792024,0.06375861,0.026227128,0.059249755,0.031697348,0.06517788,0.08317777,0.019020703,0.08505122,0.040884517,0.07338526,0.05043376,0.023655491,0.011883381,0.012409028,0.020161582,0.01259425,0.018456012,0.0034034883,0.0122331055,0.010117643,0.014638445,0.0074391407,0.024115695,0.015747923,0.01978542,0.020969836,0.06905137,0.0047532115,0.01161823,0.005603241,0.0015922388,0.0062245424,0.0043470887,0.0036876516,0.003277919,0.0029735933,0.0027567837,0.0025522406,0.002327525,0.0021977553,0.002012422,0.0018487178,0.0017393766],[0.0014881997,0.0014644386,0.0014104106,0.001454146,0.0015147133,0.0015041986,0.001626223,0.0017756528,0.0019405852,0.0021581226,0.0024895356,0.0029045003,0.0034845597,0.0045796726,0.0051112454,0.0075551737,0.0184584,0.0745679,0.17763676,0.1654382,0.03020228,0.019800318,0.026440887,0.010997645,0.009549659,0.012359528,0.028805487,0.028388679,0.015803877,0.01842288,0.01633936,0.028102336,0.022468733,0.011604911,0.07287512,0.08247493,0.055186357,0.024054827,0.0242495,0.00924579,0.052250568,0.013943929,0.020960074,0.009861674,0.035081614,0.043109454,0.024078898,0.020894134,0.016375296,0.011555904,0.03993401,0.0146622965,0.030226316,0.018087434,0.015619443,0.033212166,0.059562344,0.067675896,0.008862429,0.041184027,0.028698878,0.03985875,0.027859757,0.029931974,0.08581592,0.061352964,0.090932466,0.07930794,0.030426236,0.010773168,0.006713502,0.012866712,0.015560521,0.025264937,0.0027072115,0.0073405104,0.009980884,0.009302972,0.006950163,0.020826321,0.013923513,0.021442467,0.02835651,0.20757028,0.021121945,0.015301794,0.005294482,0.0015549953,0.005204174,0.0036949725,0.003040645,0.0026057456,0.0023316846,0.0021342968,0.0019656024,0.0018384901,0.0017011749,0.0016400021,0.0015448233,0.0014759542]],"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 359d8b744..dee417280 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('cac2c0a4-22c5-4481-93f8-8012f73d05b6')) { + if (document.getElementById('af1ebf25-a075-4ddc-a0a0-bf37209b0a6b')) { Plotly.newPlot( - 'cac2c0a4-22c5-4481-93f8-8012f73d05b6', + 'af1ebf25-a075-4ddc-a0a0-bf37209b0a6b', [{"showlegend":true,"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],"xaxis":"x","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","yaxis":"y","legendgroup":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#636EFA"}},{"showlegend":true,"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],"xaxis":"x","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","yaxis":"y","legendgroup":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#EF553B"}},{"showlegend":true,"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],"xaxis":"x","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","yaxis":"y","legendgroup":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#00CC96"}},{"showlegend":true,"x":[0.0,0.0005,0.0005,0.0015,0.0015,0.0024999999999999996,0.0024999999999999996,0.0035,0.0035,0.0045000000000000005,0.0045000000000000005,0.0055,0.0055,0.0065,0.0065,0.0075,0.0075,0.0085,0.0085,0.0095,0.0095,0.0105,0.0105,0.011500000000000002,0.011500000000000002,0.012500000000000002,0.012500000000000002,0.013500000000000003,0.013500000000000003,0.014500000000000004,0.014500000000000004,0.015500000000000003,0.015500000000000003,0.0165,0.0165,0.0175,0.0175,0.018500000000000003,0.018500000000000003,0.019500000000000003,0.019500000000000003,0.020500000000000004,0.020500000000000004,0.021500000000000005,0.021500000000000005,0.022500000000000006,0.022500000000000006,0.023500000000000007,0.023500000000000007,0.024500000000000004,0.024500000000000004,0.025500000000000005,0.025500000000000005,0.026500000000000006,0.026500000000000006,0.027500000000000007,0.027500000000000007,0.028500000000000008,0.028500000000000008,0.02950000000000001,0.02950000000000001,0.03050000000000001,0.03050000000000001,0.03150000000000001,0.03150000000000001,0.0325,0.0325,0.0335,0.0335,0.034499999999999996,0.034499999999999996,0.0355,0.0355,0.03649999999999999,0.03649999999999999,0.03749999999999999,0.03749999999999999,0.038499999999999986,0.038499999999999986,0.039499999999999987,0.039499999999999987,0.04049999999999998,0.04049999999999998,0.04149999999999998,0.04149999999999998,0.042499999999999975,0.042499999999999975,0.043499999999999976,0.043499999999999976,0.04449999999999997,0.04449999999999997,0.04549999999999997,0.04549999999999997,0.046499999999999965,0.046499999999999965,0.04749999999999996,0.04749999999999996,0.04849999999999996,0.04849999999999996,0.049499999999999954,0.049499999999999954,0.050499999999999955,0.050499999999999955,0.05149999999999995,0.05149999999999995,0.05249999999999995,0.05249999999999995,0.05349999999999994,0.05349999999999994,0.054499999999999944,0.054499999999999944,0.05549999999999994,0.05549999999999994,0.05649999999999994,0.05649999999999994,0.05749999999999993,0.05749999999999993,0.058499999999999934,0.058499999999999934,0.05949999999999993,0.05949999999999993,0.06049999999999993,0.06049999999999993,0.06149999999999992,0.06149999999999992,0.06249999999999992,0.06249999999999992,0.06349999999999992,0.06349999999999992,0.06449999999999992,0.06449999999999992,0.0654999999999999,0.0654999999999999,0.0664999999999999,0.0664999999999999,0.06749999999999991,0.06749999999999991,0.06849999999999991,0.06849999999999991,0.0694999999999999,0.0694999999999999,0.0704999999999999,0.0704999999999999,0.0714999999999999,0.0714999999999999,0.0724999999999999,0.0724999999999999,0.07349999999999988,0.07349999999999988,0.07449999999999989,0.07449999999999989,0.07549999999999989,0.07549999999999989,0.07649999999999989,0.07649999999999989,0.07749999999999987,0.07749999999999987,0.07849999999999988,0.07849999999999988,0.07949999999999988,0.07949999999999988,0.08049999999999986,0.08049999999999986,0.08149999999999986,0.08149999999999986,0.08249999999999987,0.08249999999999987,0.08349999999999987,0.08349999999999987,0.08449999999999985,0.08449999999999985,0.08549999999999985,0.08549999999999985,0.08649999999999985,0.08649999999999985,0.08749999999999986,0.08749999999999986,0.08849999999999984,0.08849999999999984,0.08949999999999984,0.08949999999999984,0.09049999999999984,0.09049999999999984,0.09149999999999985,0.09149999999999985,0.09249999999999983,0.09249999999999983,0.09349999999999983,0.09349999999999983,0.09449999999999983,0.09449999999999983,0.09549999999999982,0.09549999999999982,0.09649999999999982,0.09649999999999982,0.09749999999999982,0.09749999999999982,0.09849999999999982,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],"xaxis":"x","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,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":"|B1|","yaxis":"y","legendgroup":"|B1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","marker":{"color":"#AB63FA"}},{"showlegend":true,"xaxis":"x","visible":"legendonly","name":"
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('7b2e833e-5f22-4c48-b8a7-7f79a27a5092')) { + if (document.getElementById('79b5cc24-2422-413e-a0b6-dec2fa54f3e8')) { Plotly.newPlot( - '7b2e833e-5f22-4c48-b8a7-7f79a27a5092', + '79b5cc24-2422-413e-a0b6-dec2fa54f3e8', [{"y":[7.2796626,19.101593,2.5638268,7.70709,24.905962,9.592567,28.790777,18.061718,23.812374,7.975454,22.212423,2.0021625,14.60792,16.616793,9.430867,17.411015,6.8710365,27.55273,8.204311,10.156168,11.676548,11.324496,17.064611,10.209571,18.262629,10.696435,32.011444,12.661462,27.944263,10.895315,24.445822,21.884897,6.8492064,10.145713,2.794961,19.782686,4.0683823,16.811745,1.9356318,2.2317162,17.301832,12.750349,21.263453,1.8230306,11.614035,9.774548,9.5954075,22.889154,14.506242,5.671273,26.52124,25.694235,18.723991,20.05326,22.538366,8.024183,7.0123534,8.251195,12.530634,8.105418,18.90977,10.561301,15.78385,13.105583,12.994886,11.998602,14.9886875,9.808588,10.710442,11.425116,23.463762,26.248753,13.447744,3.360121,10.463995,5.497524,11.650084,7.960488,9.816675,10.482901,6.551671,6.0395894,18.202667,19.177124,23.744085,32.90445,1.9962027,7.777249,0.8840094,3.0535882,7.8371344,16.403307,5.216496,3.1812327,8.862841,9.760229,14.577576,14.751793,15.387029,14.8209915,null,10.265658,7.8020797,6.7375565,3.532761,8.152736,8.591205,11.640825,12.590016,7.3940725,11.9522915,4.42943,14.896839,4.7394886,11.033534,2.7538357,3.2301931,1.7510537,7.809875,14.824061,9.256327,15.973315,16.061115,7.9349217,4.2985454,9.639104,8.959945,8.9427805,7.388438,6.958242,13.322781,11.03205,4.1608887,8.957499,21.310757,20.207624,14.172952,17.290386,24.307829,32.437843,16.256245,19.191034,21.578707,2.1355624,3.9689994,19.166174,24.610634,19.493351,17.509619,20.939676,18.062874,26.923653,14.626762,15.988085,21.877392,17.92715,11.416133,7.9734592,9.598897,9.522074,9.591541,16.53698,17.888977,13.036176,2.7816298,12.3282175,16.053606,26.445139,20.896572,11.806096,18.308426,8.313937,11.33374,18.885225,7.1015935,8.565998,5.4820623,13.35065,15.133138,7.616678,7.6629224,3.6142473,7.4609485,6.7557545,7.4877667,6.0985503,15.100786,19.844557,16.072325,5.1176195,1.6416447,8.991205,13.993509,5.3494897,9.479367,22.119276,9.954364,10.296862,13.623129,3.7686107,17.112595,null,7.669723,8.884778,17.40703,15.359196,16.164545,5.714652,10.441361,20.736435,14.364916,22.90467,25.482752,15.87897,21.798895,11.607014,26.375164,15.362285,4.603774,12.521335,12.816909,7.2561593,6.952114,22.100843,6.0694156,8.860728,7.077782,18.32361,8.294935,17.063976,10.538533,25.530912,16.758953,6.114188,27.053013,10.196803,24.443256,20.703226,5.430373,31.233368,22.198492,17.442535,17.614767,16.935266,4.9756594,5.085331,14.966979,17.842215,2.7545989,21.591846,31.065166,10.815263,7.273135,19.506128,9.406035,13.936149,18.680073,9.295236,14.481411,14.205067,31.23637,15.345061,13.252738,6.5773864,18.276863,23.900864,21.71805,43.817863,22.043932,14.120879,11.671425,9.909601,30.91152,24.963215,9.635025,18.621038,8.118181,11.426284,11.758256,14.39229,9.501253,32.29467,10.44974,9.54311,7.194061,7.168181,14.071969,0.8984723,21.071945,24.16149,14.749353,23.676739,17.377922,26.52062,8.343727,17.840933,25.379385,6.8206367,19.90105,13.447384,18.000729,32.27551,null,14.249379,4.486692,8.405139,10.1729965,24.216667,15.451295,13.743289,15.33481,9.386247,13.854306,6.330036,25.067308,6.5699058,4.670455,7.4559937,8.627027,9.08853,10.805252,21.749138,12.903579,12.340944,17.057564,6.3663745,15.581938,3.704712,10.492526,7.3951244,22.17436,19.123363,12.829291,12.170391,6.6049657,9.480272,27.752188,17.397106,7.492633,9.808115,13.751153,10.08047,7.2100663,15.456485,22.17132,4.2932177,21.412315,12.123735,10.276978,27.235739,12.70163,5.020297,8.81322,17.483343,12.776733,12.083296,2.7951741,5.708462,3.813771,4.346553,17.86129,16.653881,10.826569,11.734098,3.9025471,15.33666,27.570955,10.290169,20.161963,5.8363214,14.679829,21.902815,16.57867,14.344398,22.061153,31.722225,15.696369,4.700457,7.399745,5.669398,12.727609,7.2282825,5.708443,19.114624,12.333269,21.671535,9.012012,12.880632,2.1373622,9.057421,10.074907,9.414428,10.36678,5.6888666,8.458512,15.391282,12.074334,11.660467,21.204422,12.64227,2.2145948,8.256613,5.715488,null,7.704539,8.136828,13.670141,11.126422,5.338598,7.0659394,19.436487,8.604569,11.85448,5.7733727,15.641787,21.634834,5.3271127,16.011723,12.444782,8.310357,11.043768,8.41288,4.478033,13.716377,16.495575,14.076845,12.790757,5.7648716,7.7720895,12.323076,12.175048,21.390453,13.350256,11.512703,3.4030495,17.124094,11.572579,7.863412,4.593501,14.302878,8.1877775,11.151244,8.2194,9.474057,17.184713,11.194449,8.668879,9.417783,5.3734703,4.9992986,7.7464814,9.655066,9.4351225,10.189242,9.775227,3.0605624,12.105609,14.8770685,13.061327,1.5282341,10.445551,20.396112,12.4570875,11.049281,8.398393,12.551054,25.568888,21.947884,9.344928,3.738522,10.9524765,21.986868,3.8336735,8.381261,2.036167,28.000362,41.05097,1.8762808,24.396454,31.802914,10.310035,22.958035,20.073416,13.443575,4.9040823,8.747935,9.76418,2.2992024,20.311642,16.848276,15.016366,17.564959,17.98834,15.427897,22.820269,10.9847355,17.053865,1.4659581,16.442228,6.2241993,17.479055,13.347586,24.76409,21.50108,null,17.53442,6.981481,14.160871,19.11889,12.915948,19.257227,14.452705,9.471401,9.944818,4.562254,11.2851925,12.202134,18.486181,22.204842,3.6711693,19.5154,9.731806,9.596714,2.9570353,27.618713,24.170124,18.84693,21.454721,4.5678797,32.623287,19.727646,21.690302,1.4620103,15.011671,29.192608,16.591122,10.364849,8.506603,11.655528,17.849226,10.386415,21.874413,6.902533,17.640602,14.12772,13.091262,1.8338342,6.129595,25.514044,17.048378,21.051826,23.954433,29.183718,21.747652,23.720201,31.896568,16.332321,11.289814,30.694525,18.118807,7.6314507,19.229935,6.334353,17.212027,16.210821,7.209962,40.68234,9.090945,20.887972,9.031697,10.427706,7.467592,21.461645,8.462079,13.689102,35.599606,15.324348,21.324001,12.383113,12.952909,12.16224,13.256514,16.17236,13.187561,4.1156836,23.409517,18.209625,30.37674,8.7543745,11.553553,7.4612465,10.359549,7.2441926,10.068392,5.5947995,15.179872,16.738071,18.688984,13.013049,20.576246,17.130548,11.458423,22.025211,21.795145,18.092295,null,12.653403,3.0860016,5.906957,16.69158,11.151206,19.30236,6.6541986,10.767407,7.622714,5.372591,20.27751,13.110841,5.7601037,8.043074,9.894878,8.355125,20.895172,19.238224,15.279654,14.287238,6.0430536,3.0943043,12.892289,20.18689,11.52146,18.495415,23.821318,3.2741723,5.8154755,7.3197007,17.161621,20.841167,5.6912794,8.089384,22.053936,22.324059,5.75512,13.70732,5.3070474,9.356949,8.594571,7.4865193,7.8230386,6.6832943,23.79562,22.914785,11.2727585,16.695196,27.861195,28.228817,21.724127,19.976376,26.472757,29.037281,30.53438,26.668089,14.060537,7.457766,2.8527427,17.89461,21.926165,25.767773,21.191772,8.2451515,23.868355,20.038313,15.246641,13.041864,9.567631,20.160862,24.51741,9.889437,4.469671,15.480043,12.530661,10.243525,15.318899,9.886133,10.406791,15.553881,9.746313,3.8621283,9.953508,3.6336477,7.954411,6.433378,11.101521,10.625264,7.0123444,10.140603,5.257011,12.254205,3.6690948,18.900484,3.5782442,14.937307,4.0034347,17.689644,11.977668,3.8311353,null,13.700262,14.736203,9.271333,9.585103,9.975737,9.290848,15.952289,9.56362,10.007984,12.160265,20.342323,8.1275835,17.123566,17.719933,9.15466,13.557237,2.951523,21.351414,15.613517,9.835368,23.34633,19.876867,24.33797,9.44569,24.497002,25.864216,9.97924,28.032639,16.137564,22.796041,15.847162,10.802613,4.9221377,29.351442,23.957767,4.9158,11.013556,24.508533,22.0053,14.0860815,5.887782,3.92464,6.1026673,5.5282817,22.28963,42.347187,24.691938,16.360088,23.392061,31.508043,17.62057,19.847843,23.122528,16.894917,19.808048,14.339303,13.491773,13.135727,7.0819073,6.1745677,8.890482,21.657688,1.9313979,7.22174,10.666469,14.831886,7.271302,19.006687,26.3226,10.594866,6.1551,12.475337,9.029508,11.606937,28.39724,7.1103187,16.081476,13.851484,17.630201,11.412663,11.103013,4.746146,4.6671653,1.9778565,15.355017,19.407825,21.540272,17.03801,10.412546,0.95736957,7.258683,2.0587385,13.363441,7.0174923,17.85135,17.732578,15.857459,19.647732,10.524697,28.097403,null,12.494431,20.980284,23.917112,8.865091,20.598143,13.324587,11.840704,1.6441758,8.724129,13.420131,1.7648327,22.167362,13.4720745,3.9634418,8.600819,8.414297,13.47865,7.1759276,14.91697,7.501105,4.7757564,3.8026721,5.3527646,7.1489935,8.091438,17.347914,21.228502,12.557982,11.109023,16.527075,17.696888,14.218041,24.146023,8.970436,13.346978,18.65472,8.65752,25.503635,10.775682,3.7443023,9.482563,7.005392,6.2059393,20.939215,16.13266,18.472383,30.603004,9.814408,18.308796,41.84952,32.12361,13.058638,35.406662,26.589901,20.84025,30.106749,25.115177,8.229593,6.703444,6.3922606,9.155938,11.2023325,12.543527,13.861295,14.285216,15.568614,11.918644,13.7626095,10.02812,17.202066,13.48316,12.631343,10.727761,14.551484,9.955079,15.721706,22.02969,11.506599,9.757525,17.888695,23.506834,14.935086,18.865862,19.186468,9.497851,13.495878,16.597178,16.935741,4.2910852,19.643305,15.465746,23.219673,7.4485545,8.86241,10.017393,5.681331,6.8962708,11.627863,6.8617415,10.927438,null,12.6876,12.790833,13.587316,5.0615673,8.222908,5.6697655,12.337548,12.79421,9.311716,6.2756944,4.1620717,5.564953,7.6357203,5.476534,7.976257,11.438047,14.269026,16.233053,5.145251,11.702033,15.38155,10.1337,12.518673,17.795216,11.609476,8.4359865,16.295725,12.182319,19.071033,26.99258,16.174238,14.622759,8.491027,3.6588707,6.3447104,5.3658347,19.01623,28.24987,13.971509,5.4797034,6.374212,17.073465,10.795143,7.9562426,10.758588,8.4106,23.351976,34.430088,24.998924,13.890099,16.580368,12.5588455,4.587245,5.418879,13.610236,5.3940797,7.215861,6.3207974,2.8950195,5.6115828,9.081828,13.326633,7.6110735,6.576782,8.604599,11.380429,11.5714445,10.394644,8.543628,7.00722,7.759965,8.343607,8.718737,8.694366,17.194288,12.222017,4.5730987,15.896097,15.990008,5.7634835,4.2754335,11.612962,8.236256,4.278912,18.248592,7.2985106,13.437903,12.823242,5.108005,14.978825,8.702545,13.791634,7.0386915,7.9426246,7.642912,10.05037,11.590487,2.1001213,14.668432,24.025648,null,2.6725087,8.842081,9.135167,1.9272764,6.7932477,6.1640773,6.4816346,6.5982723,10.920915,18.140484,12.395311,7.783368,13.059116,5.128527,18.843842,9.353096,14.004753,24.037498,16.70124,20.646854,15.216558,22.185034,14.407605,12.1833935,6.8473773,20.598133,6.481638,4.7702045,1.4576001,16.291567,21.362738,5.9239497,8.456135,12.506656,7.7865396,4.5953703,15.41992,16.097788,1.2359657,17.129015,17.50881,4.246318,3.9212725,6.823515,6.4297214,11.596387,11.120597,11.843099,14.249386,20.67122,3.8951569,3.596107,20.293236,10.664992,11.712506,17.086908,1.9485102,15.001166,14.122983,13.767233,6.0130415,8.885924,12.540976,15.048838,7.5118766,15.571117,18.965117,11.922179,10.949937,32.50247,28.476627,5.3935556,8.589283,8.330902,18.93674,27.654177,5.6380553,12.403567,10.639266,19.699306,12.138035,22.439522,28.583164,12.545622,17.246862,10.24517,6.195463,6.174374,19.557617,3.950811,26.69659,16.26177,7.3136244,6.4802957,10.073591,20.621973,15.873971,18.749939,18.017948,21.365908,null,14.708068,16.907257,11.705553,8.0197115,2.2557158,4.221609,2.037153,15.160692,8.004033,7.412308,8.658117,13.4493065,9.775441,4.285629,25.576214,4.279082,21.406445,10.604693,5.6308184,4.258885,11.21781,14.125858,5.535333,10.789976,9.426977,11.978606,9.114715,12.609586,4.2285633,20.878714,26.202341,15.930062,18.41307,10.024996,16.226807,8.254172,18.627674,22.621016,7.861353,17.41323,10.230423,14.965053,6.8836994,9.203329,19.02374,24.879501,11.550805,11.718375,29.786427,17.682096,13.897947,22.985674,27.401875,13.026796,17.337034,17.23952,11.759743,4.0654025,12.799201,11.8641205,4.7711596,5.508833,10.12745,14.106742,10.509306,8.687044,5.164192,5.7872176,21.08313,14.354113,7.3190093,14.429309,23.856121,21.396051,16.510464,16.834791,5.737306,10.757848,7.701036,9.9114,15.840859,9.125761,14.683899,8.691098,6.158775,10.357131,3.7253995,11.203822,5.6764555,6.098671,1.8988788,13.342211,7.299042,10.843945,9.286823,5.2282,6.9635267,7.1959743,9.878194,4.29827,null,10.926847,4.9342284,12.9628315,5.3648458,4.2117705,5.3380466,2.5213637,5.7686086,3.8894775,8.004969,6.638333,5.50649,4.813504,4.672901,3.5456762,14.853141,1.0569624,15.40586,4.0366993,14.291595,10.39786,15.009206,13.559938,10.70462,12.585472,5.201519,2.925401,16.367107,7.6721,9.404473,7.524083,8.06203,1.5833453,3.7742136,13.345621,12.231285,10.5526,5.0837355,9.013946,4.3467894,1.6102732,9.469618,10.832837,8.042554,10.570073,11.19548,14.201608,15.753656,11.149962,15.9111595,26.272661,25.472673,29.050306,39.195354,21.343523,2.3314602,30.710476,37.734543,12.399532,10.806188,25.835348,3.3153672,13.059386,9.532495,14.531087,17.005558,9.205725,3.0057752,12.085369,12.23542,5.159929,5.854763,16.840824,15.730224,10.90936,8.318673,12.86833,7.781498,7.1769185,12.952124,6.090084,6.7784314,11.212267,10.031225,12.171129,13.057526,12.798507,10.967265,7.663921,14.795033,12.069918,15.444414,14.190995,17.941196,7.2613583,13.350274,6.883903,18.315693,15.439391,19.218441,null,4.8893237,22.038305,15.258296,11.460414,15.73119,10.405794,23.860443,8.418154,21.419123,19.44777,8.957509,21.901554,34.998535,14.42394,35.916878,9.841353,16.742458,12.09964,15.107062,4.327468,18.305504,24.72247,31.840351,15.379054,20.423944,10.967708,16.141466,19.165527,17.21872,5.881317,7.5378838,12.43586,10.270042,9.387451,2.4377785,3.5254762,12.760557,9.376122,11.878153,3.8525932,19.736727,23.776598,8.167542,7.343903,22.867416,13.15428,12.649911,31.124342,17.722445,6.118004,13.64979,6.7637935,16.320196,11.814394,16.670723,6.8156447,37.25915,22.878447,7.050786,16.933588,7.745097,4.361272,10.53448,12.660813,21.959229,3.4537613,22.223228,28.76413,8.48206,21.633818,3.745325,5.6698966,15.326747,8.931001,18.162964,15.339736,1.9858443,24.803783,3.3467503,24.22679,7.083768,16.245674,6.281322,11.411452,9.077803,15.823337,7.641162,13.325985,3.6708553,8.962647,14.982103,14.146479,8.177848,8.885036,8.367892,29.215303,4.3014846,30.483599,5.124963,11.040534,null,10.193285,6.6574197,9.856287,10.216963,9.320906,6.6446476,17.804314,6.2240887,3.6315987,16.056076,10.366668,11.17232,6.54895,12.78585,15.698472,8.670403,6.4423704,14.818441,16.10482,9.168168,8.580424,4.5255027,16.947842,15.059471,7.128226,5.274561,5.7192388,12.863235,21.933292,12.192553,5.3198123,10.512062,7.1736984,5.978925,0.6713094,4.433823,14.060993,22.602922,10.552368,3.6229236,8.092448,1.1717784,9.172859,12.895387,11.128514,10.214685,2.7518933,9.359687,13.223604,8.700351,5.3871713,16.031317,12.94471,1.0434301,6.8622327,12.6756315,11.979572,8.156008,12.461856,13.958028,4.6492095,15.296228,11.391655,6.9963818,9.614113,10.276489,24.41599,13.471955,3.7817302,3.8570883,6.7840796,3.533068,8.838743,16.49504,9.588953,11.501826,8.294079,10.783182,9.941068,14.194063,16.293737,7.2699237,13.028513,9.423692,14.493902,8.843902,1.9676507,10.533374,3.9001966,9.098987,6.219763,6.763402,6.289331,1.8225662,8.659152,8.318529,6.1858544,4.349961,13.722783,5.9012585,null,20.655708,8.802477,10.247516,4.9106755,15.062309,3.629055,24.942692,11.746796,9.691516,2.1867888,11.877504,11.241549,7.4883347,17.307686,9.483253,9.433922,8.8920145,7.2539186,4.886094,7.4884396,4.5891356,5.280166,12.360376,11.566,12.533524,9.821896,3.140269,4.57295,11.431204,12.646724,4.3517447,14.121364,11.61288,3.5156374,6.3301306,7.122304,12.62597,9.769627,5.1195936,14.359956,5.433766,4.4747696,16.425209,6.0246468,10.512037,11.925982,5.2639604,17.722868,13.753724,1.4918696,4.062696,9.127855,9.833458,8.11376,11.178902,1.9548652,12.311788,19.292265,4.956895,8.132318,20.887459,19.50094,13.757355,8.047563,13.25923,14.141263,7.7123575,15.323319,9.588399,17.799046,22.702942,16.225302,11.420729,5.511012,11.4765835,19.266914,18.923277,13.1974945,29.73313,4.796082,23.865097,7.038792,4.1886,2.1305754,14.8732195,29.26251,15.040263,25.642097,3.7362037,25.058496,2.777494,8.79235,4.862778,6.051865,8.177514,10.968953,7.5818133,24.872625,8.44516,14.28,null,6.03591,13.466571,4.3174863,13.394705,20.59507,13.192147,18.662312,12.524293,9.721484,15.150548,24.626638,8.650055,13.555737,19.852337,12.800798,26.76457,18.365303,17.64251,14.290276,12.631793,7.239574,14.307138,14.958734,10.107905,33.21507,22.200373,4.631128,2.6658332,4.620809,4.365033,18.735209,24.854181,5.9365997,8.504243,18.427437,24.31856,9.6324415,23.347086,24.84463,29.876657,21.962658,17.232666,4.3217006,1.1280286,12.663997,9.766128,22.341286,10.982999,17.6097,15.378904,13.26554,21.46234,9.185712,9.638434,28.130823,4.128579,8.448306,11.731875,15.854583,8.379061,8.725415,14.067092,7.5036645,9.966473,2.4056566,6.526075,13.464651,23.338163,7.4865003,3.1382384,11.048803,16.306694,11.768773,27.689684,6.5443335,8.723678,6.52633,7.2479053,4.538072,9.92892,18.738798,28.13835,12.681487,17.15932,3.829229,16.02567,16.574135,7.911529,13.251566,8.267399,15.570387,8.205991,7.956283,0.6760973,7.4877605,9.566988,26.81554,10.743495,12.585525,7.3683248,null,12.914311,9.324223,9.2391405,6.891187,13.0040655,9.653904,3.1693661,2.20542,5.2709465,14.269761,13.839505,8.047943,11.596401,12.5888605,7.2463317,20.41459,16.07327,12.514423,10.70363,11.913795,6.2099037,21.455067,12.367194,4.125983,6.1617165,9.384908,5.0536966,8.368848,8.865657,1.0526344,11.634752,10.885309,5.8912463,6.9399767,5.740885,7.494694,6.341915,14.456557,26.975275,25.952454,24.788704,23.129805,10.018846,19.028652,19.164465,10.241643,13.284736,10.350978,11.316721,19.56244,9.474233,12.396293,10.678761,7.797073,7.885544,4.635869,7.5147824,7.862167,5.1135387,4.3230987,12.013632,11.115526,8.381249,15.341293,7.752073,8.36533,8.634489,6.1296897,14.429431,9.47628,5.4376016,16.016487,12.571278,19.139221,21.27178,7.451247,8.678116,5.608984,5.912142,7.320944,14.057335,6.1314173,3.2338634,9.874102,8.373765,11.532448,9.899575,26.77554,5.390562,9.856792,10.039137,11.205185,2.9435818,7.5759797,18.72506,8.746701,8.933263,16.587425,15.298046,10.697243,null,10.775589,5.9325333,7.0465574,5.1201105,11.602953,11.443007,8.00597,11.028513,7.9673696,11.783553,13.165022,4.5168424,10.890649,9.448352,7.5087037,32.757595,4.8260083,30.83445,13.080854,36.01703,11.305822,17.13838,6.739351,18.26708,18.957073,6.6277785,25.993717,20.75696,25.460722,20.52747,3.5716727,9.938593,15.475519,18.557638,4.5900717,17.41359,8.56083,12.975325,7.6310134,15.849058,25.252274,14.914688,12.983334,10.670658,2.809813,11.630055,10.772271,12.4299135,8.431762,25.12094,15.880321,6.0872345,15.114158,11.332288,16.961184,6.9264374,15.527572,6.7690477,12.798451,26.323038,25.467995,10.041971,12.733224,9.178333,10.073584,10.819223,14.260169,17.254335,15.256083,17.082954,9.934888,6.2230234,22.084341,25.67209,31.938082,22.68829,9.598417,12.73719,20.45828,8.843715,8.271617,18.474197,5.3377323,18.708046,31.136288,15.730198,24.65457,12.59323,18.00785,9.844025,11.734947,7.8468366,12.801844,9.306072,15.2941885,20.019186,18.9509,16.308172,15.652688,6.727846,null,15.633833,19.84096,6.34013,8.875146,4.8749557,13.30783,5.8616138,7.6181355,16.914333,19.056078,16.301353,24.440994,17.646389,13.096259,24.664461,13.650088,27.319242,13.854673,4.5502214,29.126663,7.6488996,14.342936,21.512877,25.665348,16.333717,9.980766,3.9256325,11.968026,18.945194,9.605687,27.11469,20.934528,13.140331,17.60549,10.182856,9.256404,10.315392,8.281554,10.719672,6.584324,13.482163,16.967926,22.606482,5.74379,15.279128,9.23822,10.74645,8.113303,15.543528,6.013595,9.409512,8.47265,10.118069,7.838502,6.74215,10.341111,7.4623365,14.581765,18.623882,11.431163,3.2554555,5.100592,16.263823,13.878404,10.8383875,3.8130696,7.0974913,10.614768,15.367879,16.613972,23.544313,11.060992,3.886729,2.4819922,14.803162,21.208876,2.8234012,25.52276,14.219304,11.866832,8.319922,13.346509,16.459934,4.903812,10.83245,8.270691,6.461511,9.319438,5.7955527,11.594059,4.7605095,8.0844965,9.519962,10.346515,16.489405,3.731109,3.054787,13.196046,7.852429,7.017021,null,6.0413127,17.453356,1.8073719,10.833578,11.579613,19.440042,10.553328,12.546138,13.442731,2.305855,18.059933,4.148529,17.485271,12.080969,5.789674,7.6025515,5.0809293,13.477484,9.399,8.972473,4.060062,1.8515486,10.304109,10.518749,6.717728,20.79705,14.953514,1.8015954,14.143566,5.261829,24.328798,19.164585,3.6289036,11.745281,16.509457,5.196362,6.402,13.992344,25.911783,14.305906,3.1066785,6.2725763,8.254974,16.944332,7.8941154,9.955544,11.122066,6.134375,6.537579,10.762791,15.057876,19.799839,26.871078,26.541485,11.185603,18.474718,12.072945,5.2059226,11.394789,9.975358,12.253258,21.185051,17.449106,3.2546096,7.8088927,4.255179,8.521738,2.5455604,18.396666,16.283604,17.548395,16.094587,4.8816566,17.812477,17.144535,12.488261,7.999801,11.231799,1.1929648,15.041409,15.365981,15.147601,6.1673856,4.7720327,16.503948,14.630775,8.000923,7.2603,6.761084,2.953234,14.1996,3.673497,19.630201,10.558548,16.052914,18.487823,13.132006,17.03065,9.987587,13.886805,null,16.4631,25.281116,15.952137,20.187538,8.852332,10.922342,11.127275,1.4120654,8.885886,7.6854444,12.400503,7.573793,10.554175,7.987005,5.8598294,28.695219,22.318224,20.42276,12.952517,25.587393,7.57094,24.21144,21.635221,3.6311388,20.871866,12.257355,24.709473,29.795849,15.499664,7.1225624,8.950956,12.886966,30.248638,8.761924,22.379034,20.159208,10.005221,12.250922,15.49326,23.985653,11.470337,13.4478445,18.528662,8.414808,0.5527591,32.345535,30.921705,11.287613,21.656628,18.441954,7.7343607,11.609554,18.18366,19.390024,15.011758,8.881282,7.2591243,7.136072,11.877799,29.786455,19.424305,15.062724,18.983976,15.826581,15.599067,7.74763,12.737915,11.466269,28.162539,13.430893,24.44826,34.358006,15.266282,21.02786,30.67319,19.389711,26.133053,8.56602,10.534095,25.155666,11.824502,2.645085,17.098755,18.069181,17.429785,12.305355,14.0681305,3.8870132,12.8869,7.072185,19.8432,2.3923914,30.232712,14.750018,16.112139,13.76449,29.880232,17.021368,23.384817,25.957333,null,17.789038,14.100651,4.1107655,5.587131,8.011522,8.68918,7.3681397,7.1036973,3.1865926,7.4447813,16.633629,11.427264,9.26145,5.6754994,12.828335,4.5551376,5.984943,17.810778,3.045508,26.617666,10.210232,3.9202442,4.1926603,8.2156315,8.320139,7.2115135,14.273278,12.329736,3.4735837,21.43723,18.908012,7.6278334,15.2644615,10.028354,16.900648,25.298105,14.955769,9.451079,5.9579296,3.2532356,11.165323,1.8477076,13.699717,12.842,9.79443,12.244507,12.882534,6.444138,3.6454713,6.4511757,5.5112762,17.35275,7.1980853,21.709356,13.30278,9.311081,6.638397,11.54876,6.2414546,10.289413,4.8956146,13.235182,11.031102,14.835573,18.902355,10.51462,9.180802,5.8185368,16.379229,19.580057,2.2902143,21.501482,21.776844,6.908917,12.9400425,5.1603,2.3771167,16.324211,6.1139245,10.149652,14.716804,7.4899054,11.297264,5.267429,13.233581,12.902548,11.837576,12.698692,14.892217,8.909711,2.3571444,8.805488,12.571198,6.502364,17.887459,11.303854,22.59188,10.759633,18.619768,9.909399,null,22.210783,6.6938257,15.564743,14.720125,7.3936157,20.965137,11.671118,14.52037,6.222296,17.756369,11.751471,8.160817,5.726684,17.31766,5.6178102,1.9620517,5.8829412,8.794652,8.338117,23.568722,13.245902,6.7625546,11.38027,20.057714,4.100274,12.093044,1.6645819,14.938415,15.640278,12.570929,19.555294,24.12678,10.088631,0.9070969,12.992653,2.8669515,15.734079,10.469437,7.1924996,7.6345277,9.9848385,8.446968,4.6908574,3.826089,9.870998,15.151796,17.290695,15.102138,5.9300637,11.686152,18.477417,11.049827,5.215822,9.650629,18.772825,6.947001,4.3003163,12.535493,5.427133,9.639187,10.511637,14.54636,3.8389544,16.060255,6.0381756,2.8828735,13.877782,15.7193575,11.1968155,20.672583,9.221902,22.369736,27.870718,2.7672293,21.40101,25.865326,18.635298,26.34232,13.685196,12.556046,9.751098,5.8261743,6.953678,6.7750397,8.24807,7.6061597,9.911677,6.9773707,8.859367,6.580363,13.70698,8.4147215,6.255237,10.827297,21.874039,6.656469,5.8108687,2.4099495,3.7880547,6.772618,null,10.211202,3.445311,12.188443,8.826403,7.7034183,4.3974385,8.917424,4.986249,2.4015248,8.804689,12.4307785,8.031673,21.345839,4.3847,16.008818,7.5514812,24.273518,9.570512,20.38071,16.221453,7.6092844,2.9974236,10.573838,18.131186,8.453979,39.118,32.39016,24.201607,41.9348,10.210046,26.851414,26.833784,15.765054,17.591278,28.100613,11.647335,7.35954,18.112915,5.4472265,2.7995996,15.695049,13.519845,14.667322,19.453388,14.399921,7.633209,21.476646,27.629938,12.665839,3.92363,14.724511,22.436573,17.412325,27.18126,16.994421,40.420998,41.31061,8.141462,12.322848,5.3871403,2.77432,10.09151,23.282213,5.458718,13.681184,4.6919913,11.273067,29.239359,24.088804,22.32299,4.065319,22.011833,3.7135265,19.345284,12.86604,10.687235,10.218191,9.578718,14.753568,24.288988,22.757774,22.419874,22.440083,3.7830791,4.6846585,11.619953,13.786921,14.754833,16.31645,2.313795,9.801274,14.021294,7.4022903,18.47799,15.711935,10.81451,17.76331,7.4051256,12.300912,4.870914,null,18.06638,5.160899,16.205484,5.7445083,10.82282,5.752083,13.576652,4.042281,9.562751,12.530764,9.212164,3.559393,8.072617,1.8642844,9.514913,13.952581,4.556603,8.789606,7.208082,17.11795,9.14635,0.51465935,20.218555,14.613247,13.512499,12.816877,7.5141287,20.319418,21.535536,4.5057383,8.293562,34.175457,20.23241,10.515511,2.649328,7.2594543,8.300771,19.7966,13.663901,14.167621,4.7230744,1.866301,12.876374,16.543316,15.948876,12.319319,18.30285,13.148802,10.066119,24.688566,4.669028,18.28613,14.519112,3.8048468,1.728996,5.1633835,28.172106,23.500443,2.3788025,11.319566,29.338676,18.966415,5.196069,17.64053,22.578384,8.379958,1.7118881,8.207917,5.9357605,3.0564036,12.66421,9.770672,7.1326685,18.273735,6.4078054,14.267152,9.6942005,7.740711,8.730961,10.932717,6.7407775,7.37836,3.6941173,3.0582092,12.874027,12.1220455,4.1956434,12.436935,16.93246,13.184146,6.7903895,9.772784,9.20804,10.451847,7.5435705,13.842066,10.719509,3.7351656,7.835151,8.54588,null,7.8564982,7.3649216,19.41003,2.9728446,13.969168,11.434187,12.749193,10.464727,10.249085,14.861954,14.326626,10.574799,18.33554,18.490496,23.575657,10.428941,14.432781,4.901462,15.679607,10.557952,35.19692,16.85566,13.959191,11.0084095,18.31144,17.894926,9.6345005,28.180632,19.390316,11.92912,21.406565,5.3431787,16.586658,19.235247,14.884619,17.937122,14.423795,20.228193,5.5590143,20.190582,13.522445,19.539867,16.850624,24.148005,11.67599,4.836816,18.112612,8.336553,17.124146,18.22058,2.3590899,17.418736,9.089074,20.316122,24.26927,14.100096,25.148954,13.855165,8.8241,1.3669932,17.034138,7.8632774,10.541473,18.761488,22.23676,15.127053,15.998249,19.788902,19.036098,14.09901,11.197787,14.77598,24.679708,9.388042,22.863956,16.300531,16.44025,7.7738543,5.7712045,6.194674,12.887149,6.4700255,4.0975237,10.5625305,3.6162395,9.905724,19.89256,12.348012,4.1796565,1.3636724,21.436844,15.406664,14.271144,12.155566,24.597443,5.6113014,19.661057,10.647009,19.002861,4.013288,null,8.259647,8.84504,15.845325,9.220961,11.274273,7.862115,20.325506,11.762488,12.891809,17.093304,12.529468,4.6920624,12.5859375,10.476867,10.867293,27.69053,14.216714,40.63821,18.343178,36.569145,15.596229,7.6621222,31.203058,17.049797,11.355763,15.3306265,20.210196,5.163623,18.413723,19.588766,23.421644,34.555813,18.071531,6.4434295,11.708509,11.239204,16.428186,21.066113,26.113981,9.336826,14.16587,23.715115,26.941072,5.4250364,32.95939,19.054287,7.607366,10.440985,17.514923,9.829132,16.671715,5.6065745,1.0807732,19.189358,25.009453,25.269,14.79746,12.3839,14.530783,8.422774,5.2315125,23.41603,20.577961,31.916874,24.352777,9.40013,9.339717,2.8387408,12.259092,22.121384,16.363543,17.742949,14.525053,7.682239,34.26019,17.701284,22.87013,7.7759356,7.200286,21.889128,0.6952661,14.069076,33.40859,32.99011,13.918748,9.696361,16.714708,14.624212,10.043201,8.604809,11.611637,11.232939,6.5034914,8.206996,9.339978,11.097416,11.30412,14.087543,1.6727314,22.17472,null,7.7038364,13.6768465,6.854108,16.039957,15.1504135,11.236979,9.254661,16.402193,12.128948,12.270953,13.145283,9.668599,1.5853598,13.5527525,6.180279,23.9539,11.677335,17.490221,3.7596846,17.072071,3.2053638,12.362659,11.456613,17.973635,13.97299,29.563354,16.170177,20.212847,13.14843,22.67218,13.483178,7.7243347,1.8131818,4.8417945,9.097064,16.478706,20.249464,15.066623,7.0768466,21.752567,28.969494,23.114634,16.166796,6.3390846,8.526916,16.826487,32.768364,34.243427,11.819189,9.405475,2.5324001,8.325559,14.68398,12.664463,7.004879,19.063023,4.2703605,18.877329,14.270586,31.75938,20.556738,6.6887913,5.990137,2.1740472,1.2451869,13.10665,13.84787,0.7850553,6.52721,8.232159,12.561341,11.221788,18.542826,1.9692464,17.08093,25.07454,13.480919,22.984482,8.813445,32.259663,14.03105,11.654106,16.8246,30.213697,11.588737,10.14396,4.0398836,9.757194,12.800582,6.6345477,2.945604,9.139836,17.522196,3.899164,21.152199,7.3657465,11.889598,20.619902,18.341303,13.940738,null,14.69204,6.194159,7.7627597,8.322113,6.679199,13.177559,14.102335,12.81588,16.69972,6.603753,26.621025,6.730996,13.671192,14.988553,8.362738,20.512388,26.810514,38.377888,16.025759,21.86536,16.502995,13.409643,18.762062,20.88888,13.355122,5.7809305,9.933363,17.766579,19.292671,5.6058917,5.813118,15.255013,18.309889,7.6396384,2.9704864,5.6522956,12.683169,14.531906,19.76545,4.246248,11.414703,15.033357,17.767023,16.37911,31.03988,23.523073,25.532661,15.328902,21.311285,34.269547,27.563921,25.83851,20.234348,16.319582,13.584266,21.616749,6.817887,9.792536,6.3153324,25.499065,14.796096,18.806252,24.004393,18.258186,17.697592,23.566105,11.966521,3.2446108,10.329853,11.914869,10.101535,13.052204,17.660809,8.318381,7.639211,15.229383,4.022958,18.322136,23.644102,26.274961,17.535786,17.1271,17.084848,26.531948,7.593163,32.853043,16.091766,29.641586,15.70834,14.709933,7.3223653,3.633151,4.654011,6.332112,6.4010444,11.115796,7.7151494,15.4235735,11.434871,14.80994,null,14.076255,5.823763,6.122567,24.00106,8.586303,13.68767,12.571902,13.663544,9.0158825,11.551197,13.7875805,5.2075505,10.053694,7.9107575,7.004941,18.590998,7.7985916,34.73673,17.323753,25.298222,19.660536,41.344418,12.18742,21.550611,21.363901,17.379713,15.279569,20.924118,30.468563,26.784882,7.262092,18.00159,0.41821358,23.863876,12.515187,7.0621424,16.849943,18.125952,16.881393,15.414901,13.75237,38.308807,44.51892,23.046024,17.235895,20.317707,35.654064,24.363337,18.038664,10.529661,11.81123,35.69229,35.799,13.983804,10.12912,11.092841,31.184443,25.876408,14.510553,8.030233,17.401432,15.801519,11.498676,3.5434349,23.823498,10.718835,19.4124,13.040241,2.0439446,26.457521,20.302586,18.417412,14.962895,18.09092,14.434266,23.455454,29.465725,23.30286,30.657404,29.260077,15.505513,27.562378,6.143799,24.239193,14.014928,22.229162,23.236467,10.475542,2.1588488,3.5788813,4.8533335,9.860438,4.825492,6.375224,10.97654,4.502392,4.745314,7.945507,17.093975,15.770539,null,15.0986595,16.330652,8.688633,10.965797,5.4685555,6.340551,12.712811,6.247538,10.678964,11.288824,9.909679,15.968452,4.665676,5.0044684,11.055667,2.5876644,15.8536215,7.0221496,22.480547,14.303061,17.892658,20.090694,5.068061,10.3276,13.355328,14.845525,10.77336,6.3664875,10.916653,10.642994,20.706694,12.510824,11.9040985,11.8066025,12.000955,16.122646,15.689699,13.358381,31.046293,45.86654,24.382313,21.47463,27.815023,21.89173,24.309143,21.012035,13.789317,12.15445,4.861508,31.252394,45.287323,23.274973,3.3613124,18.90988,4.1979885,13.887452,12.766194,8.35615,6.1132426,16.424524,10.169709,11.300743,15.328233,29.500172,31.32911,18.125156,12.193241,11.157669,8.696616,29.13133,25.079918,0.5436488,11.285669,12.369385,24.404747,1.3222164,15.414837,9.616535,7.830781,25.420082,15.004515,22.033243,8.608091,18.262384,16.54099,15.138353,17.729488,20.631536,9.489812,25.657272,11.690452,14.5505295,17.172863,26.188456,15.996823,13.747505,1.1938093,16.676804,10.188439,21.449574,null,19.157467,6.9203014,7.470262,16.116596,4.3972006,12.255111,16.733261,15.624624,14.823854,13.2105,6.529048,28.881126,10.919279,24.331095,15.155219,30.618351,9.6545105,32.524677,10.762206,34.66751,19.688845,14.7457695,35.04688,28.693113,22.11526,17.947906,19.066671,26.086378,16.81215,15.768301,28.707237,23.322588,5.8606486,8.599555,14.202027,2.3635917,26.08448,19.363783,30.471508,39.26102,47.76906,33.56521,33.193596,24.819607,23.984325,28.959522,23.000385,5.505883,7.2592425,31.302917,42.208843,33.480854,17.19826,25.27191,18.272806,19.660547,31.638842,7.344419,39.77336,46.512093,26.873411,5.323058,8.105093,28.356228,35.18168,21.126453,11.185534,24.892908,31.75106,4.0451756,8.601817,22.204254,37.47492,15.598564,25.958937,18.008709,30.5108,7.4579377,41.113186,17.639812,26.629473,44.863327,40.44609,23.306786,10.12081,20.148804,6.6446466,19.783281,6.687962,13.660438,2.3926356,2.744629,5.0968657,4.419455,2.9317415,15.871292,8.734488,11.683109,15.258033,9.665596,null,18.330248,2.0750484,19.730844,12.909844,14.497706,19.156826,9.709801,10.04471,3.5250924,11.61757,7.4361296,12.763501,4.375647,26.695782,13.794171,34.32168,7.619608,16.01435,28.511862,22.942944,34.036728,15.831956,47.665253,6.94774,37.634357,13.648767,20.36571,21.307995,37.46887,17.475399,13.446117,13.328751,13.8297,13.821725,22.553123,26.081966,2.803729,27.362528,29.754637,29.344248,24.39153,33.708496,23.925886,14.335438,36.902557,43.52164,36.991447,22.623932,9.264517,11.102867,10.755468,12.576086,17.432135,23.579567,37.05952,35.300243,26.67908,24.093521,44.244347,45.151146,39.76511,25.05178,21.994379,15.960017,7.781332,28.313484,20.826815,31.80094,22.74445,29.115849,28.772629,5.5988245,2.7908456,12.567558,23.110115,8.486823,11.399222,26.026522,29.113424,20.54546,18.130186,32.63602,7.1703978,25.758812,4.8260717,21.38703,1.7705637,13.482433,14.627172,20.588858,4.788588,12.151197,11.251158,16.10549,5.2223635,13.712134,13.0447035,16.430126,8.638144,2.6290183,null,15.775341,3.5721426,19.160173,18.804728,6.4880476,8.678803,8.065552,12.776394,10.30859,15.497666,8.354706,23.953358,21.985733,32.42987,11.869996,30.668186,7.4769187,28.598703,10.081984,42.26715,10.610924,24.260025,19.646578,22.608603,16.397259,7.4834976,20.990757,12.643014,7.309071,15.675894,14.072102,2.063381,18.592848,34.026794,23.304995,35.46133,44.14144,16.228994,42.5141,8.088216,16.300367,21.115042,27.929302,26.101824,16.999859,31.968643,59.411263,48.065125,16.839191,11.546345,31.707752,46.379,44.17215,20.715681,35.68732,34.197666,16.49292,38.06488,26.830572,5.933112,25.043133,23.801725,14.232232,20.056236,8.888621,22.757229,39.945965,14.3877735,18.513178,11.062464,29.447508,22.867691,4.237473,8.330534,34.651375,10.374127,24.984497,19.029467,41.708656,13.577432,33.092365,22.655146,19.942032,34.79585,13.642455,14.1585245,15.742473,21.194187,21.70004,1.6009012,14.881362,15.27996,5.7803,12.562885,19.644001,10.261872,12.183245,8.8206415,10.711352,16.441374,null,7.4688916,23.323074,5.8668795,22.959808,2.514726,10.091831,3.873026,21.020157,14.0309,14.892233,18.294386,3.6207278,17.236254,15.128618,17.022928,21.414143,4.651753,30.687853,19.256191,30.034666,38.100555,13.633461,40.497055,5.610339,30.888996,25.75259,24.384552,25.141134,11.9974,11.182473,31.782873,41.643017,31.244368,14.688543,13.331517,11.144069,26.211191,22.86012,13.558127,30.276834,31.590197,40.567604,33.421295,43.593105,27.787716,31.444641,65.78905,57.92624,41.26996,52.72037,59.008583,37.852737,22.872944,35.72067,39.21792,14.766163,32.92093,36.452564,22.776384,41.179104,61.556286,28.557974,30.297615,43.76001,25.320501,11.560657,28.84731,11.34259,44.87602,13.751818,31.817862,13.544576,39.748398,20.999748,33.528027,6.525621,28.855284,13.781402,11.455474,31.019028,14.0238495,26.86942,24.51347,51.55511,11.8708105,14.634466,29.680819,21.15744,12.081353,12.304175,32.19016,22.549356,20.661701,10.285256,4.72161,7.152992,13.165347,8.574779,16.317312,11.4089985,null,22.041767,13.281729,8.418499,3.219113,7.2012105,5.9791594,8.939387,12.094554,10.088718,5.5939503,8.110041,14.808417,32.156433,7.9962463,22.131557,26.692396,27.904776,24.241428,10.666924,23.646805,10.954842,37.09892,2.7723067,16.933453,15.15054,17.109882,11.13184,7.0030203,18.22818,17.233715,34.468327,18.901443,33.527996,29.117508,29.758953,34.935974,8.241026,37.45674,16.908339,37.04717,49.942745,10.745972,23.609514,24.690105,29.493332,18.731285,27.786037,49.257225,55.004677,60.19526,59.5311,57.10705,47.244293,37.153976,10.618315,29.131193,40.356594,29.876068,26.307863,43.814507,23.99053,20.51306,21.082716,28.531183,65.604866,36.736385,16.40899,23.884073,19.831398,14.3244295,30.078896,28.951544,14.009786,13.734221,28.805283,4.93506,30.720095,4.433607,23.6389,25.823235,20.907707,12.523197,10.848969,26.139631,11.630671,12.818999,19.060734,3.0906587,5.631672,18.917625,6.4824295,9.566525,5.980561,16.646673,22.948074,19.231943,19.453114,19.208193,21.71345,23.829922,null,29.379793,16.976553,10.868389,30.09658,12.004379,12.489293,28.280205,5.1843605,17.418959,5.19064,1.3550862,8.988047,16.667421,14.930022,24.625072,2.4059696,23.961006,11.8939495,15.410236,22.340082,25.679092,14.253448,37.322968,7.4622426,32.051727,8.767784,17.454702,25.817368,0.21596916,10.104317,23.522255,10.260995,30.158548,17.813395,21.517052,10.906021,16.887814,14.953637,39.28125,34.297802,40.49189,42.346325,35.205616,11.155196,13.736095,38.104076,37.50779,12.603567,47.83259,48.68796,56.090965,42.52666,24.526896,15.322234,26.608814,26.258068,28.00254,16.223927,53.800415,37.660316,17.627928,33.596184,4.266672,23.72139,25.506971,27.157248,19.854956,34.377197,3.3845904,19.931517,31.783897,32.99462,12.782513,7.5546083,25.59958,8.610516,24.397879,21.56239,8.636474,48.091846,9.957146,32.122356,21.166225,15.831535,31.809618,20.18092,27.49461,9.6623,16.457245,4.898685,11.817002,18.376738,2.8411171,4.202862,15.9769745,5.697683,11.640203,19.968544,0.11717863,25.177912,null,26.828434,14.785463,15.047155,21.280342,6.7044263,22.839703,3.2275696,12.085841,16.64241,13.017263,7.034883,7.8234997,9.094196,3.8921387,24.670155,3.502537,23.39854,22.128584,30.514343,21.449966,18.755243,28.016447,10.425632,33.12854,15.637495,31.507715,20.241444,37.637814,9.715269,16.220901,13.601357,23.581758,21.660574,21.564238,16.25419,41.991524,69.56172,39.759018,39.63534,39.081013,3.7758727,25.907398,31.311865,13.598275,46.47928,46.155895,28.73751,16.84705,14.472473,22.70578,33.140915,18.429052,20.796621,23.564877,26.803905,48.1687,8.295886,53.913605,56.278843,20.690128,46.40995,10.20239,50.657528,42.531784,32.591103,30.387186,23.08238,15.398185,19.111536,16.909567,6.2782035,11.739567,10.669546,23.075066,32.22955,5.1018972,36.549686,8.282155,20.741768,18.572489,9.182294,20.844545,9.417578,7.11294,24.159304,4.270554,15.353311,14.94808,12.219889,20.55939,10.146378,2.681268,12.198412,0.6038765,18.111155,12.861073,14.913259,10.49454,21.872211,2.9312873,null,17.83569,2.4581861,25.475523,22.521036,18.085152,16.63255,11.91252,11.509803,14.49385,1.2834193,7.398291,30.137426,2.5598147,13.992799,27.104763,8.402043,31.261824,17.705833,23.742147,5.7645216,15.91913,26.948126,28.594555,28.821583,30.265522,17.295372,23.111265,12.576085,14.291902,13.626673,2.9924972,42.288445,22.504915,20.582584,10.755807,39.704567,33.349144,13.534685,14.208219,30.8288,38.772003,16.966043,44.987965,44.493942,11.784164,28.117002,29.108873,31.234798,17.22419,10.24553,21.663252,28.733746,21.52005,27.56824,14.671226,3.2323754,28.492828,53.306187,40.044838,54.624107,48.962116,14.56358,27.32952,7.302374,34.409286,5.2891536,38.489193,10.967527,31.269491,22.31272,10.08803,24.588888,26.082756,18.798653,18.358,2.8259594,23.856133,35.447754,9.042057,26.176134,28.905754,9.107072,27.988394,14.022234,13.210833,25.03189,12.82739,15.299001,13.315417,11.116948,22.407677,23.907558,12.995429,14.120836,22.26795,12.945703,21.438314,14.8701725,5.4476533,22.673843,null,6.807217,14.677965,7.703617,18.422424,10.292369,15.17462,9.192993,6.0522375,15.423086,5.184008,18.599726,12.114664,10.184451,14.737672,21.98541,20.837566,32.30291,35.019707,37.222336,22.344109,34.02403,32.194202,22.668709,18.256472,29.487516,12.540472,14.916874,29.62052,28.247988,19.826788,36.625996,24.29496,25.770248,10.438453,29.379333,21.367123,24.184366,16.248756,28.768877,19.117645,42.4524,49.545597,29.151728,9.376545,21.935377,36.904636,40.870377,40.321915,50.276165,48.03668,25.852089,20.726715,53.37655,60.64146,30.050106,9.230782,10.665428,35.71636,47.55308,34.088806,39.758392,58.374264,17.157845,49.069645,12.421604,32.402256,25.003235,30.78614,21.278664,14.904503,13.2055645,4.3639097,29.49,11.596679,21.564077,15.203287,37.7019,8.113957,16.18514,43.61856,19.27989,1.4850892,39.489277,21.25465,12.606511,37.247364,10.240068,14.284911,22.837946,1.675085,9.785306,16.126108,8.887527,14.146393,29.214165,10.578138,28.18113,26.946402,4.342459,36.306778,null,30.55992,6.490521,21.097235,22.887527,12.104219,16.50491,15.485942,13.320773,10.538222,3.6105745,14.506348,14.634853,21.363127,14.422212,26.973797,23.091446,12.746116,34.35483,41.511337,23.291088,39.434593,33.10843,28.00999,41.546326,20.858183,16.405558,26.77902,12.141729,21.773214,26.487482,13.093779,22.265533,12.546297,23.263227,30.143478,61.125526,24.378912,19.612526,15.300679,18.514328,36.99173,65.549385,29.279245,54.72298,62.202972,30.379236,4.4830885,16.532473,31.146318,25.187506,29.378214,27.394794,26.643982,15.412571,31.103662,66.97722,59.708477,38.975735,54.30533,35.750298,17.02687,9.080473,52.90359,48.71586,36.05468,32.630875,44.056606,22.56816,27.756094,6.56172,28.939608,29.176216,7.279935,13.333748,9.494733,23.605701,29.521025,28.476665,41.121086,26.060425,49.56577,20.037962,25.459803,43.681526,12.624538,24.646124,30.3716,16.523249,8.782921,12.692098,12.610398,10.94261,7.143724,5.101562,10.15033,10.158363,9.062065,4.9508295,9.895302,5.0192676,null,4.5340886,9.651963,6.8875513,11.017713,3.1040812,15.610588,3.9747386,11.669555,10.341222,13.042408,8.709612,9.945078,19.087029,14.577937,25.031954,9.235521,26.306889,41.489746,16.486826,38.269196,43.086433,31.645697,37.5029,38.59109,24.22013,25.005966,10.9622345,24.877445,13.788902,22.58431,1.247502,15.659449,36.641415,21.202143,24.488344,32.973965,40.226776,33.898125,22.97869,53.899883,49.955086,17.623224,33.493557,48.32469,41.858116,29.614254,15.86885,11.237539,17.89865,40.985912,50.759586,41.356365,31.08811,47.66777,48.988674,49.35723,43.78479,9.3481655,28.96786,37.795815,14.771961,43.180416,17.25192,44.458385,20.3261,30.661085,16.179731,51.072327,31.272997,20.131853,7.821394,22.91238,32.691444,17.88648,29.196123,27.819931,33.314476,22.981293,26.607792,23.02514,29.114037,30.79249,10.550959,18.406252,24.511793,14.6325445,24.883293,7.1491137,12.454408,10.802716,8.813219,20.267082,9.413849,21.452961,19.882769,4.330777,27.274021,20.590834,14.772946,12.706179,null,9.667151,6.467375,5.5431027,15.743894,12.856757,22.495241,14.137218,15.83331,15.742182,24.489414,8.200011,8.740496,13.935323,14.668445,10.01495,9.223966,27.783127,16.290375,6.4114475,28.67857,13.9257145,20.156975,41.501743,31.642767,12.06939,38.384445,36.683556,21.596405,25.587866,23.609135,39.049904,31.033802,26.948011,23.125534,20.927608,62.535427,21.895142,43.65431,21.405828,31.66014,12.025189,29.938723,45.740257,43.753704,20.434671,35.639297,43.37491,12.17755,21.077488,42.036808,59.85524,46.73401,15.286945,26.211231,56.53073,32.256207,22.749397,43.22466,25.353817,9.351923,28.102833,12.427988,39.92067,24.017008,51.097713,39.215992,10.2681265,28.817053,22.041937,12.336727,7.767917,23.16897,18.850353,36.004814,23.589943,21.747671,45.602093,39.38215,24.08198,46.765118,41.686787,18.156599,36.898857,26.181246,32.855427,15.820394,7.681148,14.541181,9.163878,7.9313602,6.716293,7.0902486,9.691486,7.793976,21.980215,10.4065485,12.623843,5.971785,17.298023,16.727125,null,16.136402,12.659889,10.034976,10.393183,13.253297,14.051741,9.995258,16.079145,18.69668,5.7840705,8.324821,10.532136,22.195667,2.9453533,9.689144,24.019835,14.626947,22.474125,31.282946,18.34588,30.85618,29.558449,16.310099,35.72115,23.59893,22.588043,35.68746,4.0399866,24.562931,10.487117,14.416743,8.717473,29.866352,31.80106,58.233917,24.634184,34.435123,41.461105,12.01651,45.61344,17.731098,32.78786,30.18564,23.91026,37.400944,49.06411,13.046,62.120075,91.87245,67.94739,48.05606,62.895557,41.545563,26.746342,33.66963,49.528763,21.90577,15.916444,41.474354,39.721867,28.321894,34.69835,21.891516,26.642044,29.233967,71.48997,24.362133,12.374098,18.200062,23.44274,32.09349,7.2389674,14.167863,31.975048,21.25308,11.454927,26.97625,26.119864,10.188217,28.083296,10.943973,8.409741,28.168901,7.667896,7.3702908,17.802856,7.0893426,3.727137,22.296734,10.097377,12.59153,17.566353,14.393695,16.20749,10.915323,16.197357,10.554629,15.144499,9.91369,2.3842905,null,9.862134,7.685845,3.1004343,8.500805,11.264943,16.69339,8.425996,12.586793,3.3974745,17.572649,16.758358,12.283468,27.025911,9.5608,11.927379,9.028033,7.942697,16.755163,28.99056,24.188078,10.78174,24.730001,18.049534,19.674923,13.2078905,16.996479,22.936897,10.2532835,16.000769,20.223892,14.051538,4.193819,15.490075,24.29334,20.514313,25.485947,19.402304,42.403934,28.47027,26.020338,34.80998,47.820595,30.500608,40.082764,62.086246,36.127197,43.121506,50.393963,40.19807,42.428864,17.868532,5.7357965,50.428684,47.499542,14.951754,17.724304,30.407282,46.28677,32.790207,15.654836,40.000088,21.89671,79.95993,35.60826,27.400688,33.10016,42.116154,29.984825,35.441055,5.079953,27.434996,6.9418054,24.040617,29.71846,12.566735,47.394814,23.816612,8.109072,32.746914,29.788834,8.03875,26.203281,16.521963,10.457212,15.817617,16.099392,12.916146,5.487225,8.791171,22.88859,9.3704815,12.981748,12.031236,12.782521,27.626612,14.032719,30.28313,22.55404,27.103565,8.858631,null,3.3232107,21.20095,18.85547,18.154057,16.800661,15.89812,9.547691,11.8833685,4.7366004,6.7215786,9.505957,11.950676,19.339611,22.954382,9.9355755,22.868261,14.135346,4.278553,30.050476,4.668019,9.330081,40.051823,13.698796,15.201393,25.833982,21.155087,21.06736,26.428102,13.195682,13.344786,13.070834,4.670427,12.477117,35.223515,21.041267,29.605476,27.75074,42.95126,10.170912,8.313106,55.986717,20.873405,32.82469,49.49253,48.57519,84.409645,17.575542,60.85446,77.82424,90.29046,96.7689,87.69558,62.43933,65.47876,80.008896,51.230583,38.37927,47.874836,44.19306,33.07067,17.750906,30.804785,9.955366,23.31802,41.126648,19.247921,4.832261,20.639116,16.339605,16.06431,21.75002,31.384823,22.54266,24.798729,18.353584,23.8325,21.46516,12.233139,31.809582,22.104822,12.717122,44.84554,4.6095347,11.868449,34.736202,1.9765629,13.525752,26.96617,9.735242,17.973776,18.948345,8.1909685,21.085564,14.4189625,26.755207,10.472576,8.952017,18.050625,8.658305,14.529301,null,12.29154,16.534124,20.192749,14.064422,8.220359,11.544897,9.960115,17.053083,4.8127384,12.864585,11.1771965,11.014509,16.791403,24.252052,4.297446,25.088058,14.473403,10.750918,38.736927,5.7006226,18.248827,33.900547,10.66258,19.313543,27.084515,18.353777,20.704449,10.194087,9.8609085,10.177717,28.0787,15.030582,14.883368,22.944693,11.358416,34.03068,30.193613,18.68314,41.624775,11.771006,35.81838,44.443512,19.48918,58.74348,116.24777,34.782173,120.56935,55.848576,127.851685,165.07353,175.54086,146.42543,21.95531,103.77288,48.377327,110.52552,53.94467,21.720867,42.345844,30.926407,35.05683,61.298164,13.176635,15.067157,59.470333,30.594124,25.458199,25.342785,33.467953,32.197468,31.783918,27.95675,4.850299,31.76869,33.139465,24.286486,15.300225,28.478104,28.21949,8.734287,12.010452,23.29968,20.624866,10.073592,17.385036,19.765871,5.545728,5.7240543,24.193949,3.2751083,12.398518,10.4531975,16.699558,13.443754,4.8859544,7.247782,14.328855,14.78271,4.7899575,9.415879,null,20.373737,8.044616,23.23659,18.714119,9.713884,10.72401,6.460261,11.845546,13.70659,18.143875,14.360829,11.880609,20.151611,9.620547,16.534315,32.72098,6.1732984,21.964169,39.82348,22.420004,13.7934475,23.981642,41.48635,20.038305,22.52689,19.043087,19.779354,18.88842,35.61516,26.82834,18.201357,17.870018,12.20013,10.99392,40.206387,33.22236,10.800999,35.735542,48.876938,24.628431,26.788591,15.036159,69.9945,36.519207,38.88124,122.08811,78.16487,131.7538,55.6561,152.7048,153.16685,44.24769,161.0487,52.881847,91.35896,65.89114,54.724667,43.944096,26.451015,39.603973,41.74007,52.917053,22.916098,34.51357,4.981043,24.81524,33.083008,9.647848,3.140602,30.025864,9.00958,14.758345,21.857523,12.961781,4.1770296,38.195614,17.938374,28.942942,22.683174,34.31679,23.847305,46.059105,14.052267,29.434011,41.683506,5.8981495,25.700888,20.694445,8.455826,27.68642,4.972132,9.576131,10.396924,2.387603,19.053267,17.734018,12.048314,15.720159,10.190173,15.153872,null,14.77483,6.1807275,15.062015,7.1590314,10.581023,7.5633907,14.418105,9.031127,7.399676,10.939969,15.5116005,12.544044,23.060564,37.442165,25.98602,19.229124,49.24098,23.407768,37.849846,24.180168,29.41014,11.327584,34.753414,9.916257,19.059744,18.006554,9.380155,24.232372,27.3431,14.660254,14.490312,8.927556,4.1083417,6.8315377,16.077158,17.943655,18.466232,18.964672,65.2505,33.52955,15.305321,30.400196,36.127064,82.50188,28.675518,83.946304,227.2468,48.876865,252.03928,414.29788,442.25452,233.52722,47.486893,217.09073,89.2791,31.870443,84.30404,87.96312,14.8135195,28.06369,5.7909355,40.51788,18.035542,16.979273,19.126335,36.588142,18.802843,16.485765,12.003994,20.895397,19.498182,27.91973,15.239757,1.5542436,23.499958,17.695452,6.0851917,15.490269,44.9846,25.068626,23.170813,36.05649,12.707121,8.296841,25.705284,18.166605,15.766738,28.105469,13.000126,6.9686146,13.167401,9.882121,7.0744863,8.142628,9.889503,4.3376565,14.967211,14.269472,1.2923297,17.046051,null,11.6192,5.961357,2.4832008,17.90367,5.306271,5.5859923,21.636597,9.445473,12.3272,9.148731,12.530513,28.23476,10.125376,31.360407,19.202164,16.463358,32.147808,11.338161,34.646137,29.927982,31.308025,10.312048,38.54171,15.6525135,13.725688,29.20274,20.057718,8.740548,21.425707,13.680393,14.520741,22.269619,17.163624,29.040096,21.051601,34.961132,27.323177,45.853085,71.27658,33.610855,69.10421,41.113777,12.897868,120.46793,28.006372,22.105639,289.76508,125.26263,92.22371,1674.71,1673.0201,92.31483,122.58935,283.38425,23.821733,26.328098,114.25437,6.912698,46.33247,65.80356,34.96407,72.95365,43.24955,25.434603,39.074345,25.12853,33.044827,8.2436495,23.873821,19.227303,8.29548,23.691551,10.061055,18.154737,35.022453,11.85568,14.005369,41.98669,10.801743,25.329893,26.992023,33.839924,9.345375,32.596302,18.315317,18.480137,31.435982,15.680479,30.736761,13.671319,12.388002,8.229508,8.481426,20.175272,6.9419394,4.5288754,14.469,4.2979503,7.053815,11.694461,null,16.79608,3.8376126,11.0044775,14.876045,3.9846773,9.714757,12.178281,11.06933,10.903562,17.199808,7.1026564,14.798281,28.58384,8.522986,21.58246,31.240896,14.588725,13.030604,40.62715,27.136322,24.876022,49.45686,18.306734,4.8175187,20.178862,27.502897,4.0125113,18.283579,28.614561,23.40997,20.246439,8.974149,11.045024,19.912699,38.3505,9.578703,23.48514,23.217184,30.870352,4.9585776,35.706295,20.630594,89.98252,75.76846,32.4466,89.28639,202.84854,57.66365,211.68861,435.56274,401.85556,235.09242,63.165398,212.83638,82.84862,18.177376,77.35908,42.261997,28.100061,17.271524,28.858791,64.506004,21.014496,13.764886,11.393141,17.401775,1.4806938,4.359243,15.209914,17.533592,10.248597,34.542732,23.786581,15.141306,24.03315,19.241539,4.261346,38.992607,9.45036,30.408983,24.869509,37.09935,20.096962,47.2515,18.332144,27.728592,35.886227,25.111513,17.087252,13.606538,12.035499,7.4968877,12.461196,10.871381,10.010248,8.732269,7.987656,13.997648,9.451152,15.141552,null,16.31219,12.186253,15.884716,14.964049,12.901785,21.88179,2.4334013,10.66703,7.569099,3.2154562,25.616123,8.213633,18.851288,22.394388,6.174433,34.06714,25.998468,11.813785,44.419163,17.043085,36.16219,19.779835,23.381561,19.345573,35.57772,6.636146,18.95825,18.360172,16.29928,10.87471,27.56997,9.010795,13.10525,29.150541,25.654486,11.590287,28.994904,23.543621,60.47196,41.96186,40.013332,33.49274,53.993633,55.96031,80.782166,98.72818,50.476494,169.36911,41.842987,152.16492,142.78828,43.193516,143.5326,82.85539,132.10089,57.23762,38.030567,86.278336,16.082258,25.582127,34.039886,50.697308,31.461926,15.461661,35.43043,37.527466,17.233335,15.981122,12.303863,18.993088,31.770159,33.324207,18.862589,17.160006,19.961634,18.576025,20.58511,36.457035,22.915504,13.958468,18.742239,35.978508,19.093252,0.7325598,28.43208,17.837769,12.883348,16.729433,8.680677,15.79181,16.469778,13.57753,15.732628,7.0641227,18.34058,11.672276,20.689192,24.374254,6.6649833,22.08885,null,12.0044775,5.7408113,12.630316,15.003437,7.1401324,10.187538,10.886346,17.916414,5.7042356,12.0309305,6.5982056,24.236858,10.620898,5.3485613,19.63774,19.453053,9.693859,19.340601,20.955112,14.306733,6.0234704,31.223824,28.390057,12.481227,23.72485,36.400352,31.983755,3.0548916,27.844906,33.122345,33.28486,40.946667,20.192343,26.961264,31.221302,54.47527,18.664074,13.826416,53.436497,41.69439,31.158655,38.102943,23.606531,41.352932,115.99368,58.84824,96.82691,15.474607,144.11327,156.9581,147.0808,122.85655,44.967422,116.91042,33.478397,120.948074,48.68776,21.379341,48.44125,22.652374,10.3857,40.941498,9.82314,28.905018,32.866924,15.079396,20.932278,14.047968,18.069384,26.843306,7.116355,7.065608,9.734561,21.821892,14.1723,31.508081,21.202208,9.498376,38.450993,22.254425,8.331002,46.94854,10.250427,19.31853,27.214508,6.665172,28.96709,18.47995,12.241213,13.639678,14.738724,7.5117416,18.788631,10.7514925,4.7696114,7.0092983,10.073097,15.975514,18.01154,8.4639845,null,10.4449215,9.5205145,19.763735,8.463141,8.354241,22.585173,18.180769,23.567736,5.677167,18.480936,16.15405,3.210431,26.89367,15.561842,5.2268724,32.29513,11.921946,8.330766,44.221268,11.149138,25.606207,28.822771,10.813037,19.352123,23.299774,16.788225,25.588236,19.749456,32.993374,23.485584,14.25656,18.776184,21.49367,8.498604,20.96991,36.94128,24.697844,1.1024444,29.257515,28.792559,28.205786,47.506985,33.968716,42.179718,69.68873,79.3916,55.474846,59.213966,82.27815,93.67989,91.85367,73.8964,47.877373,11.220306,75.17611,66.519966,47.817078,16.995121,22.19788,44.354523,3.9348984,4.5971303,33.91874,23.648493,24.971457,21.431406,31.230026,8.34697,6.5682154,13.908749,19.76535,15.609612,24.965841,25.22531,22.916523,26.08828,18.282423,9.928101,42.94589,10.06127,4.7688446,31.732946,5.945256,14.80418,21.346588,9.201142,25.094204,21.386713,9.38629,6.8058248,9.4558,1.3194784,13.155558,8.490196,17.34295,16.510998,17.830364,22.04147,18.61183,0.66678506,null,7.810907,20.95754,24.57778,22.34249,11.564401,27.078114,9.613642,7.162127,10.951994,6.3696895,21.112497,5.001611,3.5905924,14.169834,11.006093,11.542954,8.510548,11.836455,23.714956,7.530327,30.075144,26.939785,7.055146,20.639986,36.888916,15.025475,21.78394,21.626759,7.7073183,20.994143,7.3019743,32.933495,32.99999,42.309975,32.182613,23.760563,36.095867,73.584984,27.215979,34.36771,17.308075,41.407413,39.161457,37.862953,23.587416,16.054647,37.925793,51.3446,14.409355,22.608416,46.769512,50.28466,53.539017,29.988281,30.4032,67.005974,46.342033,26.418352,50.370213,34.383114,16.299175,17.16135,38.329014,16.80966,19.029238,22.64784,19.812386,13.192182,2.8396661,10.942436,16.20656,14.632797,10.520037,20.644112,16.879843,9.613114,20.424395,21.68359,19.14573,17.053701,25.4944,26.820015,18.096695,6.041269,10.769342,14.915649,10.757229,28.670607,13.397312,13.335836,18.858408,7.0914464,14.465881,6.943218,16.40065,10.137053,6.823323,4.0031023,5.4720116,13.523027,null,5.014848,8.27676,14.1254,13.1614275,11.047308,12.950396,15.246641,9.615594,18.68595,16.070965,6.7546716,20.498121,8.350903,11.185259,18.815023,10.900391,10.1886,30.016485,7.7759495,13.7582445,34.585426,8.544813,28.79376,29.929884,11.491972,23.07638,37.184944,13.356849,4.1243877,39.179638,23.505478,14.783862,11.190062,25.2721,64.77554,44.196316,24.2783,5.9413943,36.882668,17.691448,50.96932,40.351246,25.92498,27.467066,44.692352,25.78223,29.907381,40.18772,56.91663,38.162643,67.557686,88.51739,52.42411,13.59556,41.22309,29.35767,33.641926,36.5024,23.544619,17.170902,39.873302,12.825334,26.372412,41.17892,15.201452,56.758457,24.44217,23.038557,7.514483,15.851296,12.5086775,24.400076,5.2160625,39.669777,25.830217,25.353256,42.51223,16.834652,32.761406,36.059204,21.512945,34.83254,24.587753,18.312645,24.073545,13.0437975,7.523186,20.952631,10.11779,7.293325,6.6809106,17.483765,18.316545,9.773331,10.249501,11.327185,11.268243,14.844216,12.659398,17.486334,null,16.372383,19.713547,7.7323484,11.947051,9.324185,17.200611,8.196444,5.966448,1.7832831,11.158427,7.420121,11.946658,16.811615,11.355616,19.382711,26.906118,27.920124,35.31898,15.935496,42.914246,47.199734,25.838041,42.515484,43.242897,21.453508,22.15503,31.367706,22.099043,23.00494,5.108078,10.22794,24.988596,18.602556,10.147574,40.87714,46.295353,21.246096,45.88786,12.068223,35.345505,14.317174,29.224586,47.65379,19.395527,21.47936,54.901417,32.43173,10.492491,46.005276,59.222164,41.735397,19.843355,15.833178,46.70197,35.909,10.182717,40.658997,49.47464,26.212723,18.93064,24.981216,21.40283,39.42609,21.44042,61.993114,26.195692,27.470781,21.835918,35.277515,43.214954,25.662798,19.371622,22.444633,31.994267,30.650732,9.902815,25.049368,34.050426,19.526665,9.770985,24.081617,8.15178,17.30459,23.254805,5.9778633,6.1924715,7.214919,7.855437,8.033769,8.24365,16.916735,17.06076,14.79889,17.169857,14.984274,8.462439,15.708618,5.4453926,9.137548,7.873462,null,13.037118,13.189951,15.285384,24.887644,4.525569,12.699415,17.673887,6.392353,15.2058,11.265185,7.7559333,8.774726,10.4709215,18.568142,9.976322,26.181505,15.603467,11.2746,30.049562,26.767803,23.416145,26.51862,22.31039,30.330423,22.814688,28.520023,18.822124,27.299885,30.686058,7.0654125,15.356448,38.104897,50.162773,23.136806,25.247128,17.790009,38.53395,17.85407,42.63276,22.592972,33.840916,16.269583,4.9615507,33.34208,44.278824,49.345825,49.60697,32.01438,43.674126,47.7531,36.845966,18.298199,9.364913,20.444754,41.133564,39.72524,31.341152,32.277954,26.264677,46.398216,55.79948,22.851168,36.1039,36.43859,25.595633,17.293398,33.640625,35.762028,24.783268,2.4422817,25.418356,12.071934,24.91858,11.938688,21.23825,23.608475,35.431038,37.906593,31.79855,39.913605,39.585033,17.474834,36.482117,27.599203,7.2415094,26.8204,12.633445,21.406939,11.516275,4.4048367,11.699328,10.290467,13.717481,3.2482634,17.13877,7.7499986,15.075717,11.399824,14.815983,2.6706133,null,0.62449825,11.014255,6.6758385,7.282237,11.395377,11.307191,5.455499,6.273088,10.452354,7.105256,13.410383,8.2862625,16.153168,35.64326,22.445316,15.335369,46.80203,23.93718,25.312275,48.913204,26.952297,43.507893,28.381432,30.3987,24.456944,12.994591,11.462859,7.828369,30.342888,27.219797,10.87708,26.86117,13.55984,47.468475,22.414907,40.35396,34.344685,52.752766,19.72982,12.458369,26.468071,54.10886,45.716763,51.29614,67.5633,37.581207,5.688321,16.175806,23.241362,30.992998,25.25489,27.27074,12.888546,11.401973,36.194515,57.802204,45.235252,33.304512,60.225258,27.302134,16.082844,5.1996846,15.634641,32.709476,56.171066,23.422829,24.605318,13.072795,23.394955,12.796856,23.62964,20.855343,7.5813055,32.315475,17.743832,22.532911,39.196545,31.524593,27.409122,41.221306,24.876472,40.255264,32.5758,10.967163,22.910093,23.660248,12.2802305,22.31171,14.083233,10.112011,8.1169815,15.343641,17.430893,15.578478,21.566225,13.738572,25.295992,25.510181,3.438943,34.504936,null,37.039085,3.0040755,28.628271,27.298763,15.014569,26.09949,13.478989,5.458006,15.815148,13.380298,7.1061044,19.091722,10.799175,8.266181,33.38107,7.8593445,18.251293,33.508717,5.712985,20.711166,33.749035,13.644526,11.452871,34.31006,20.918137,15.133981,7.0629683,24.814762,10.108758,12.18749,23.563864,17.189629,36.076645,15.473059,37.4222,12.2093115,50.007908,12.958843,58.70117,37.231068,33.258,48.1409,40.838337,14.448448,7.1654367,36.66274,59.409473,45.536606,19.341635,23.879646,43.363777,53.950104,43.086624,38.6617,43.00162,32.744366,16.349352,33.487705,54.406677,44.73219,17.470493,28.998558,23.014734,22.966963,25.138718,28.607676,14.520866,25.606121,23.290737,32.849167,12.015013,32.317543,28.12519,11.144551,12.694154,22.500963,13.709901,20.129475,26.278961,31.843975,13.898261,32.541595,30.4632,29.617449,15.275127,23.815475,16.190174,16.993877,9.501543,19.30445,5.158706,12.36673,5.1046195,11.193713,14.655405,10.60564,17.413338,9.976743,10.976662,8.912873,null,20.23986,2.6237547,10.64914,15.004738,8.701304,20.760477,10.174044,15.823849,21.76662,30.13322,13.712054,12.4956045,18.72733,14.422993,24.51335,18.315811,11.592112,28.955273,11.837306,26.47879,29.3298,7.106507,31.19187,30.7024,2.9575844,21.577822,21.142103,21.625603,28.110594,4.0524545,22.159777,26.111095,16.085741,37.08797,10.860417,35.372925,16.13573,23.61644,3.5772083,42.169155,54.613277,48.223858,43.51994,30.279959,12.180884,8.82355,23.775364,23.77326,34.36806,23.896866,8.057895,27.92515,34.564793,25.308346,25.166666,8.795874,44.32406,39.75443,22.454887,35.40062,21.997076,8.415264,11.100682,35.7166,32.14702,12.383079,12.728829,29.997742,32.40233,8.649537,5.0797873,13.1344,6.7166653,26.563242,18.509653,34.54453,30.080051,30.64716,26.436525,15.279478,8.264274,26.725023,21.368856,34.420742,14.1345,30.63942,19.204248,3.3914423,32.722733,6.943669,4.1114435,15.123212,5.99802,11.411164,13.281755,16.788345,25.86758,21.085417,2.505286,21.456465,null,6.0682044,22.056986,8.5995,16.626673,15.515032,15.810422,2.9675188,9.554487,3.7095745,5.9628325,20.917517,15.219743,11.7134905,16.153357,7.3710656,22.413591,8.038069,5.7369237,18.038559,7.505131,12.359855,28.589296,9.721643,34.178402,8.381364,34.07318,18.086477,9.454269,10.174177,1.9128021,7.786471,22.834824,6.462627,30.0272,20.623167,36.60685,29.62722,50.59913,4.06696,37.345196,23.890839,45.51107,49.22051,3.7237332,39.954533,20.678762,24.519909,20.29867,10.158368,23.419224,15.209714,8.87869,10.890618,24.95973,39.583923,37.73032,7.463195,29.224356,15.435107,16.619953,37.387012,32.280624,41.1723,60.281605,37.365086,7.399457,9.989871,15.436919,11.247804,5.203105,4.402852,1.1985635,27.998083,16.916542,26.656612,10.29028,28.815882,9.203755,24.450895,15.123645,18.055353,33.34216,19.488052,25.815714,6.3398914,22.706589,4.86085,3.3786852,11.368586,5.134132,14.137117,17.380732,13.874437,1.8949467,25.996958,13.409566,24.46039,17.678137,13.467225,30.56404,null,23.090364,2.8080044,20.093134,11.5524235,7.285884,15.5458355,7.4513254,3.9607508,17.155178,5.712168,5.3902936,14.788281,5.09063,25.423445,19.291609,25.968792,12.959103,20.6068,22.579748,3.6297815,36.159336,11.66686,17.97035,11.922013,8.305751,14.336248,5.1008406,7.7736273,26.579622,23.724392,17.754953,6.6903157,33.84851,17.101166,25.612463,17.598625,17.19492,6.7310095,25.994484,13.228936,34.15325,44.920406,15.03333,30.78486,28.821228,17.599915,8.339848,21.737064,41.555767,55.00629,43.39234,40.074306,8.93874,37.39566,35.25032,11.122851,10.847224,36.28237,43.120777,47.41792,33.03989,42.415146,21.465822,16.459343,16.222866,19.640924,19.953657,23.65575,15.780046,22.567055,13.030343,2.6844418,16.772156,15.713068,6.712434,22.821661,13.811304,32.607113,16.455362,17.692106,23.968798,16.496555,12.360782,25.966976,3.8933978,29.215948,9.69789,11.228661,5.7171807,5.7710953,5.9051023,12.529297,9.097791,19.757221,10.115783,10.616841,24.661207,6.6638207,15.366147,26.306606,null,22.739561,19.258575,15.667228,16.412033,19.369085,16.705389,18.697866,3.4758418,8.614635,7.4923596,20.408936,3.8703365,6.966013,20.51513,14.420831,11.955907,28.492052,8.920502,14.39797,23.017776,25.600702,25.855955,3.3287957,34.382633,8.053347,28.817871,18.744022,11.861765,35.526077,28.167555,11.937649,16.603834,28.002394,18.34307,35.88723,61.39312,32.426773,8.955548,12.135614,16.30699,38.678265,28.152067,22.438385,34.140747,24.909721,10.391959,30.755527,43.474895,54.165016,54.401443,56.770428,48.30207,40.668495,23.181396,24.203392,29.639183,18.645742,22.45116,17.237013,44.465477,28.26141,18.806782,26.685297,6.33544,32.37326,22.327805,32.311745,24.884876,19.360456,31.23947,19.937433,9.705783,6.8368807,11.722864,15.857681,13.705416,19.862232,5.486549,39.231003,13.73883,22.427301,10.20322,26.180414,23.770899,27.891075,20.094809,8.2667,31.74964,14.907023,8.099044,9.032017,9.09437,11.180694,12.299567,10.504914,4.991313,4.1036134,10.78924,11.308458,22.859053,null,16.977375,15.9172325,9.677503,20.336664,9.189235,8.985408,9.089432,20.28599,17.965752,26.94546,10.656815,12.631154,19.070782,30.676466,14.557041,11.929768,45.24143,26.06137,25.492739,12.695979,25.209078,6.205209,11.134983,20.402416,7.0050726,27.553972,14.968362,27.538097,12.618021,21.151001,12.410526,30.241327,9.56261,15.774497,7.5557604,15.342381,33.442097,30.917885,18.947393,56.15807,45.235954,12.139938,28.01705,27.364838,10.150983,35.916,29.750671,17.88791,36.229958,54.432953,48.625416,38.852135,53.391953,63.400078,32.556545,26.187918,35.501022,24.474848,37.868305,27.259653,25.640873,5.9089026,19.25844,21.53635,8.721105,19.04193,23.349356,29.544968,32.05437,33.739544,7.1886997,5.213258,12.103849,15.602981,13.3863735,23.609795,3.1993,25.930655,14.079124,26.047527,27.528296,15.3168745,25.28885,4.488946,17.73811,13.947283,6.6500425,18.114853,3.6323683,18.909008,11.759801,8.019934,14.290975,2.5710993,8.693732,2.1869583,15.738489,8.875372,16.199293,7.3951235,null,11.2917385,8.128253,9.175943,7.3824897,6.0880756,15.160213,10.98807,4.9179893,11.704029,19.593887,3.9564476,16.204828,24.03159,24.251974,12.079281,6.1196647,34.198277,12.446689,25.741594,25.250391,20.47155,29.828379,22.83293,19.768267,8.014208,26.594885,12.113989,9.767861,18.155891,28.396421,12.641329,22.977793,12.683943,41.474834,25.858307,14.3747225,25.532509,7.4028916,24.620495,20.488071,5.4288697,27.24992,39.770077,17.299505,36.14058,30.452812,18.593504,43.010006,44.813057,23.254967,8.147451,23.726465,47.49086,49.254204,29.259909,20.00797,30.251219,20.726149,23.241405,17.788961,9.836027,39.478046,20.026747,40.14022,42.205093,23.278687,35.678474,17.503052,3.7072346,15.386602,13.455834,14.235197,12.152647,19.349924,3.3919153,17.917044,26.029999,15.811434,23.113207,18.387735,38.579617,11.12155,25.730787,10.369548,28.560057,13.12818,23.56934,22.905388,15.960978,8.14296,7.4244423,10.921243,10.540555,6.7540154,6.156347,5.041779,15.933739,16.153992,4.6318097,11.977538,null,5.7252364,5.6852956,13.186295,12.419666,12.597345,1.5339645,19.589212,10.263416,10.830314,4.278751,18.811657,18.73884,12.077771,3.5166078,25.571762,2.5757246,28.43385,5.8576574,31.67315,20.787426,23.823374,32.299744,29.494093,12.631038,8.347619,27.238966,15.447298,9.121153,9.327721,30.941353,26.831232,21.692406,24.773369,22.862406,23.296417,9.427428,14.20828,11.452949,20.974056,39.70221,35.00052,39.863052,26.831747,21.974863,24.825895,29.69884,16.674093,14.817566,14.630752,8.670536,6.630761,15.471114,22.497343,34.011707,38.180557,29.290855,6.9282975,23.44368,27.608349,20.08559,36.206863,24.414253,21.246603,2.7609107,17.793308,15.171722,17.987288,5.9194255,13.442943,12.631332,18.495602,32.03504,17.482128,17.43247,13.620916,31.470383,6.709857,47.451378,11.674607,31.04131,22.408735,26.120333,16.700645,5.905862,36.43043,12.859992,25.026285,5.315223,8.4065485,7.0299573,14.134359,4.3610854,9.877949,12.724927,20.764452,16.013603,13.3456545,18.330282,3.1459837,17.007708,null,10.066684,15.940043,14.246811,9.93856,14.640929,3.3969038,2.2245524,5.2183313,2.5553033,8.07489,8.178132,4.3013735,9.565173,6.6755986,14.279937,8.241797,17.185942,30.144646,36.709583,16.118666,11.349999,22.446995,7.163982,18.440023,13.32585,12.1288805,10.174763,26.688036,23.770336,3.483119,1.426804,18.800974,20.039797,6.994402,20.205175,31.131,26.83478,12.560487,4.339171,25.164112,44.23973,34.648254,4.6182675,26.534836,18.290485,12.070726,21.935284,7.6253095,37.23,42.006012,28.494646,13.562909,10.844694,18.145657,26.149578,23.866173,23.976442,18.186634,27.445223,42.030167,41.872185,21.80097,19.276348,18.856638,4.37588,14.753899,8.459452,6.8858457,11.677885,16.97464,8.806466,11.92357,15.230438,11.146708,11.725691,9.881956,23.251171,20.894714,2.0700727,5.895096,19.617567,9.297102,19.12734,10.858844,19.092676,8.192385,17.53257,11.613589,13.9412155,1.6633508,4.6495657,9.384947,10.465647,13.610504,5.891162,5.8497567,12.084082,6.6047215,7.284228,13.471374,null,22.030933,1.2062083,15.065507,6.105688,14.770718,10.983037,19.648104,16.210667,12.210569,9.752423,18.118345,10.862282,14.588258,14.876896,18.810537,12.711455,14.647359,15.624713,23.751127,5.7003145,16.167622,9.506623,10.266734,14.693403,14.787393,22.104836,16.672783,16.652893,8.449481,25.022041,28.409523,15.634933,9.845467,22.030989,18.575743,41.71795,23.475027,15.219408,11.533768,13.623955,16.05118,7.560559,3.2328634,12.299232,7.56833,2.7713778,15.244139,3.9077039,28.947933,43.749878,30.508131,5.4123316,11.671763,21.937374,21.077581,25.085234,18.292528,23.921095,20.56446,27.666359,48.198357,29.293522,11.043805,13.9067745,13.152842,8.773616,7.943477,10.875973,19.097845,27.3656,14.7128,13.958304,3.822672,13.324338,16.293924,15.715395,5.8572583,6.960038,14.779611,19.480291,13.534669,28.258398,5.265973,18.758825,7.264971,8.611361,7.639156,2.5057442,14.961657,3.7350326,13.872472,5.2525177,7.281408,8.119066,3.4256577,2.9943984,10.435899,5.3258915,19.592705,14.808211,null,14.606666,10.562741,5.6908336,8.091513,1.0256906,8.989187,4.7549987,3.9780326,6.066778,8.1217165,2.987556,0.894357,16.547531,19.272043,20.768093,20.469036,26.196983,13.143187,27.73818,15.705688,31.610344,24.070673,29.043716,25.810272,27.287981,14.507406,21.942703,12.219896,13.8032255,20.48123,24.473091,1.0163875,7.026545,13.565171,14.561969,16.830513,9.038932,14.713821,10.861753,14.7165165,8.939065,9.1861315,23.723003,24.012804,8.080787,5.1616263,8.2754,32.92253,34.78635,11.314812,7.8450675,12.403217,18.911604,29.198196,17.698372,13.918781,22.418484,32.05568,25.367119,10.344584,14.384944,17.077322,25.629519,9.519866,5.008318,12.7981615,25.442719,8.386555,11.210183,11.076025,19.269598,31.381456,18.201223,14.904068,13.580833,17.451923,14.741592,9.522251,31.464827,19.710741,17.674763,16.887142,34.410526,8.201888,17.847075,4.8375473,10.040859,9.162339,4.2123094,11.491798,11.825864,5.261963,10.558783,6.80873,11.366216,13.75651,19.225937,5.0451865,2.3784845,12.312035,null,15.924826,8.7699585,10.117024,10.106323,6.308381,9.7432165,2.120848,4.623317,2.6863167,2.4836414,9.607594,7.885965,18.157198,13.987723,17.97835,11.965555,10.825536,7.697376,8.875511,8.801072,14.468162,19.00005,7.9708095,1.193834,15.384702,10.424525,6.9520507,12.032942,8.5420065,3.3632646,5.2538605,8.495918,5.349625,4.9631524,10.804234,17.51147,17.312174,24.41934,16.922327,12.8513155,21.805655,8.74643,11.752175,14.430957,18.090145,16.1794,17.190521,17.376062,23.117088,27.488941,31.01689,18.704477,17.408337,24.31185,26.730675,31.974012,14.188968,14.328108,17.895515,16.009329,2.2960281,20.963867,16.631626,7.1046224,10.088536,11.418076,13.888738,17.518269,7.147376,1.6889002,7.1361294,16.502344,15.525749,5.587289,7.7473984,10.19652,10.90587,14.537619,11.678892,16.189213,20.280556,10.2293825,33.616394,15.086978,16.44274,5.0501685,15.362692,4.9103656,12.139062,16.02894,12.414983,4.433553,11.692131,5.2012396,4.4180126,12.953512,9.790774,2.8801386,3.645358,4.8678794,null,11.290443,11.882195,19.044882,5.5008154,5.4006357,12.280966,7.8251696,11.056326,13.165859,4.605055,3.951238,10.923996,6.78853,5.8874445,12.666931,12.510183,24.946632,8.696488,16.012396,15.521539,32.898678,10.108131,22.760769,9.961017,29.07107,24.363838,5.5791845,14.316029,18.085272,13.302452,11.014194,8.861097,6.3653913,11.959486,8.07549,4.8616295,4.2043214,11.2641735,7.489299,17.554543,33.158897,18.407747,13.019381,2.4941165,20.637188,11.703943,4.5986567,13.146451,7.640671,2.8705454,16.48278,10.002751,27.65948,31.10753,14.242427,3.3761039,8.135379,14.713129,24.02441,26.243107,19.205885,9.25111,13.125303,19.622845,15.876709,11.611023,6.927856,5.819449,11.769098,14.585532,21.556568,9.490362,16.475067,17.185617,29.059057,12.456663,18.86748,16.603735,18.921976,5.592893,14.607551,6.898282,17.729721,9.372596,24.341791,5.7162743,15.109844,0.5973655,3.3079586,14.566935,11.882524,16.427185,17.434309,6.218155,7.1972837,7.465126,11.631606,4.8077755,11.221039,3.1848745,null,25.622543,5.015974,19.267101,10.307253,11.1788645,3.2306857,11.721069,0.8226929,16.225103,9.38634,10.732993,11.210302,15.022246,15.456612,11.55015,11.2387495,30.676682,34.949326,2.9241781,2.208296,16.08201,2.6901433,10.690291,18.849272,18.531061,33.679836,13.031939,18.706999,20.582521,11.145098,14.583617,11.18199,8.859111,7.521303,8.974664,17.971027,23.562998,20.107254,18.963734,0.58616686,10.47676,23.303524,23.183563,15.043551,27.732264,18.783457,15.1660795,8.301331,10.871985,9.30349,14.760998,24.141106,7.7187967,3.1858938,16.522799,27.04196,8.277792,12.183466,26.95466,20.92916,8.145636,28.095335,21.079502,11.84158,5.2849894,8.988846,5.13438,21.61279,20.009924,9.491719,12.609141,11.570396,0.17115486,17.989082,9.655759,7.314229,13.9521675,24.331036,3.4692242,5.541472,21.89097,7.0025673,29.645046,11.0841,15.873258,5.1773925,4.0567937,12.157019,4.6921577,8.561416,12.292248,10.82048,6.819449,24.131056,14.748024,11.463474,4.8566723,18.653015,5.2123923,10.850945,null,2.7260797,15.840676,9.605622,14.815568,3.8090408,11.865352,8.376072,4.607828,9.248299,13.383022,12.621878,4.882841,8.032981,16.948772,5.335147,4.6044297,8.15087,7.641021,8.571212,12.790134,9.122896,8.142791,6.057888,9.185379,12.601422,12.08574,8.433006,11.766733,5.971851,3.954176,11.833385,16.04667,22.235195,17.518557,12.014998,18.557846,9.849654,7.4607654,12.345269,19.946604,6.663331,4.2864203,9.653101,24.607895,16.632462,13.56002,15.960466,2.5976717,5.0616117,7.8579035,20.948483,22.473074,13.534922,17.12552,2.0664444,12.566393,25.068155,15.083711,17.712923,10.669485,21.498697,8.349255,24.807606,17.28591,9.768588,9.416979,9.163827,12.999004,4.0826187,19.440939,12.7218685,20.938688,18.912483,8.654267,16.969707,13.458442,6.31323,9.3929615,18.308674,19.143715,8.148156,2.8928945,8.321616,4.101421,12.268663,15.17837,11.757146,20.832418,13.361333,11.079496,16.281202,3.1019042,12.72525,8.886378,7.5792766,13.197942,2.6669781,18.395348,3.4144394,7.8943477,null,8.329215,4.1220245,4.095944,3.848267,13.048861,15.800435,8.142778,10.885611,13.534547,13.717527,9.694535,7.925278,17.963057,8.777683,11.757621,8.324496,3.5767226,6.937478,7.675201,6.212196,12.090966,14.230676,12.133139,11.225853,12.495161,8.644518,16.946209,7.690904,8.537515,16.944315,5.105816,9.045266,9.644758,1.6393832,11.441269,27.575888,21.653528,4.427237,20.453142,31.99889,14.15423,6.822748,22.573158,26.354961,1.5386863,2.8214524,6.6042423,13.08985,20.192787,11.191681,19.02231,8.811193,14.97911,12.442645,8.016435,13.654346,11.1027565,9.559703,2.5644143,2.5892606,20.232672,16.463884,21.05401,11.796677,8.841488,5.014572,9.860062,24.83045,32.719555,5.620933,6.0736146,18.784155,21.708683,11.816508,15.947451,17.550844,17.990797,25.001776,0.86132216,6.755304,11.8061695,4.275807,9.587981,5.3192854,12.608301,8.523955,1.7520196,12.778735,4.65635,13.757838,6.1488857,12.19618,5.119687,11.1939125,10.139624,13.992313,5.1834564,17.980738,3.6883206,17.36274,null,6.093165,11.271884,4.8334723,19.4353,3.4719222,17.802366,14.029081,11.073479,9.441853,8.971162,7.2145343,17.46176,3.7766974,15.08777,2.6903527,7.070375,2.3375456,13.658544,19.880413,8.5502205,20.220488,14.609498,8.95431,9.229502,6.51418,8.815409,11.040548,2.0689101,10.720541,3.5367637,18.946312,12.419137,19.28603,17.881369,7.36073,15.967976,2.2586715,19.426016,13.808871,13.2621765,12.251831,0.5251362,8.8874235,32.94818,33.642258,16.221037,14.113147,13.263063,19.229105,8.975228,8.04592,17.770365,25.741117,15.639731,3.1827211,11.661408,15.055155,13.71486,17.747488,5.994024,7.3923597,5.420329,10.476974,9.215689,5.542286,16.296957,6.9059143,15.531718,26.078148,15.918856,13.237834,30.816969,15.559114,22.222633,27.5378,7.64384,7.078702,7.40313,3.747074,1.8202864,9.218944,7.1450863,7.961431,12.227449,8.594357,14.5808525,12.97695,13.968087,8.841687,3.1978247,5.6820326,11.35246,2.7984886,8.229184,6.0024605,8.9382925,5.9534698,13.055391,1.635264,9.715297,null,5.2522497,2.2348454,4.2222147,7.559555,10.088963,11.514866,6.4595857,3.1095018,5.1850214,5.5973926,4.33887,4.34368,4.8147535,4.258667,7.712953,10.503912,2.7736952,10.579113,2.661158,6.932229,11.275358,2.960076,23.539423,12.188651,18.941298,14.288755,5.3758225,19.487427,15.828072,2.342309,10.954345,11.421312,3.5934038,4.387862,5.691388,3.0813093,12.456375,9.148619,7.3152514,17.103928,12.839877,7.7657065,7.5154877,4.657079,12.662493,11.530693,9.083829,4.0068874,15.385963,20.068436,8.245918,9.344789,16.966696,20.682339,15.224251,4.974151,3.8880768,2.1622863,6.992172,7.3046455,9.157153,1.8262997,7.3263187,11.952204,0.7795429,12.096876,3.5259118,17.106052,17.211302,20.27571,9.663988,17.161564,13.178444,4.3113923,10.205433,5.7624865,19.756897,10.509984,4.592818,11.614166,16.098082,3.6311128,8.409033,11.518642,8.151272,4.0417175,20.291998,14.46416,6.3212757,12.132761,12.294378,7.786126,10.772679,9.953695,14.610402,1.88669,11.45936,10.572892,4.807781,20.807425,null,11.708278,16.978539,7.4703093,19.331427,14.407968,16.492346,3.804546,3.934174,6.8386326,7.2132545,7.054749,17.832573,16.588974,13.773229,11.350094,8.741911,10.700155,2.7584424,10.940106,7.7836676,9.950223,1.223902,13.986033,7.9926844,2.5817332,13.158287,9.174408,21.635605,16.445396,7.360008,18.134508,15.478746,0.90053225,11.154555,7.2106986,19.240137,13.981591,16.283676,15.182118,7.7292123,19.432508,14.491397,7.449582,5.0788093,3.5333672,16.985138,24.504042,2.2720068,13.471063,16.892767,12.603358,7.808923,14.189556,15.628477,8.715408,7.247922,17.290194,18.831064,2.6174088,14.881258,14.269017,0.40665075,16.880442,21.597597,28.468285,17.194183,11.028144,13.825908,6.9573793,19.468094,26.952951,6.381998,17.100443,12.729725,5.675341,6.3470535,9.829425,9.248263,6.450293,7.0161815,19.93521,2.0578132,15.918365,1.1046441,9.290491,0.93646455,6.5180097,4.730833,9.612505,19.662975,13.95466,3.6264613,3.1566248,11.0241785,9.390708,1.189234,6.2375894,5.9323163,12.126914,12.093032,null,19.04297,7.6620994,8.307377,14.452325,8.845003,6.02499,12.333853,21.288095,2.5317903,11.470268,7.2894874,9.705496,2.7706637,12.518208,10.558419,8.956152,11.886926,2.1873038,7.5867443,4.644252,11.753299,13.081496,6.3820796,15.515958,16.193567,16.681995,17.497927,11.401283,22.048904,12.896788,3.4404562,19.193811,12.598063,7.9320636,4.27018,8.931465,13.305578,11.943909,3.1114368,9.523309,26.917938,19.127344,15.611201,16.933348,0.6431259,17.811758,18.359877,14.579799,11.529984,7.672892,4.9783187,5.7028823,3.1256917,21.114906,24.464848,7.2908096,10.67195,18.122961,14.726463,11.921864,15.443089,14.235482,18.333954,9.08964,12.665639,17.181335,3.9096634,22.174023,13.683187,9.254039,5.641142,14.496684,20.350573,14.68601,7.764341,14.302775,2.954506,19.844011,15.2544365,5.9946675,17.752535,10.312414,7.580171,17.99793,15.720162,9.5699415,15.476761,8.108429,8.101634,7.754035,10.545095,6.9189796,3.5331924,13.032434,8.785226,8.534267,11.540784,11.232803,9.888204,10.294394,null,9.140702,5.7084713,9.179554,8.135969,10.881611,11.652531,13.75779,13.596256,2.0742383,11.420152,4.7980714,6.0282702,6.6610823,6.015081,11.458737,12.568807,18.26822,5.1414237,11.078739,15.069031,14.1616955,6.75882,4.302685,9.611594,11.467466,16.26093,17.56777,1.8182962,9.527233,12.963063,8.684552,14.126606,7.6310296,3.147833,5.8210692,12.134523,2.3562098,16.690517,25.758512,16.850687,13.917594,11.314326,10.507036,8.278052,10.979325,6.945694,17.038727,22.427774,6.3187385,8.36144,17.470053,11.579702,5.550722,13.112402,7.841981,4.30908,24.819115,20.722761,4.0453124,7.429934,18.288078,25.928888,4.6053605,6.9487505,10.027725,12.671835,7.7400885,6.60711,19.445204,25.223482,6.9512787,15.331055,10.037156,11.475168,25.517113,11.614083,12.651995,8.26299,5.062486,4.961651,6.3391623,3.0412405,10.44418,11.68506,9.244582,11.607064,11.884969,16.505474,8.040741,16.665462,2.7414575,8.175171,9.400775,4.795303,16.816963,4.7223587,8.502498,7.655133,12.177911,11.124494,null,10.426209,5.0146413,12.459398,2.9215515,4.974017,14.127781,8.71595,16.716345,8.334396,6.8093553,7.555298,0.8032172,0.6997116,3.1395798,4.945141,6.6647124,5.37462,14.514248,14.474385,12.370599,11.452099,12.054298,16.25133,8.240443,15.639363,14.418354,7.408181,9.220891,7.470696,21.696735,16.02069,12.259283,5.261551,6.0122075,6.707373,10.294358,18.018785,20.45679,2.3191702,6.0662174,7.5493307,17.019909,11.120906,9.642259,12.697751,9.646252,9.372871,10.135374,17.88833,7.8230567,10.754061,20.748226,4.166814,6.044347,4.906246,13.155829,3.3304884,28.47573,29.206465,9.6235075,20.633465,12.592261,9.952652,14.13742,5.5478578,15.823963,16.166,9.218598,12.1137,18.980984,6.5811877,10.865356,11.152473,7.73215,11.853461,10.03935,16.29502,15.032497,8.540954,8.808774,15.722592,1.7232063,17.708088,17.764166,8.976188,18.311777,7.9507365,9.305359,19.603086,10.293629,17.48867,20.707188,8.655427,1.599902,12.325055,10.2055435,6.8580623,6.869756,11.873101,8.698327,null,3.1788633,8.660932,9.221636,10.126519,9.15007,13.650726,7.140679,10.823513,7.000174,4.0256734,3.0076938,9.830045,1.5536653,13.890176,3.8349812,17.31496,7.0233426,1.6450683,4.989341,2.7620425,9.0686455,4.3334866,11.011112,4.933005,13.598191,23.721514,25.164385,15.538122,7.88925,2.020739,11.6766205,10.2058735,10.962536,18.335999,7.4720945,7.777423,12.642626,13.845917,5.8884406,28.642218,25.393574,7.5640945,4.1133695,14.200563,8.15638,8.033338,8.722361,5.7738204,4.2419715,17.719223,15.657589,14.559291,3.6614804,15.435834,10.852324,6.5038047,10.549559,16.371557,13.909456,14.248189,8.763018,13.646817,16.34308,6.7035346,17.353298,2.7531078,15.788615,8.289995,8.351325,15.093861,17.460207,13.193438,17.015247,18.976933,5.853616,9.655077,11.793807,4.370708,5.039951,8.309578,25.411116,4.368302,19.475752,8.570121,21.468342,5.9318237,2.8562474,15.761271,11.057945,10.897023,5.4378557,7.458594,5.975921,1.8407303,3.352383,9.617419,3.3113852,5.649884,11.980233,13.895277,null,5.9370136,12.717871,9.504478,10.337787,9.287439,16.315767,13.252051,4.313275,9.40927,10.611845,4.0330186,8.708369,24.905174,8.774663,9.052501,8.651809,11.590625,3.6247444,6.2743526,8.479664,5.123662,8.986215,6.9567227,16.586252,13.264368,20.809309,16.494541,14.351154,23.323132,10.527861,4.328223,14.088842,6.710358,10.308818,11.225209,8.618605,19.703823,16.487411,12.174418,11.670089,6.657398,10.074055,7.5395656,3.995084,2.8844078,6.665272,8.105845,11.940016,18.049074,6.888091,9.517625,1.9431471,6.1593537,3.7744524,5.2580633,13.221753,22.496426,14.8802595,20.14859,25.36772,34.08268,31.051273,9.004582,3.4632478,14.061919,3.9470706,19.703144,13.419641,14.893534,7.202645,9.268427,11.084468,11.241682,6.2007327,8.907433,4.3746505,4.657855,13.324556,26.405283,5.8112907,20.621027,4.297798,15.003706,12.707402,19.296602,11.76731,9.519359,14.913018,6.694995,17.322468,20.18844,10.696371,8.636989,3.9242697,10.774833,11.676493,7.8929367,3.9116225,9.387768,10.233636,null,6.7635617,8.851417,11.374086,21.498938,12.286029,5.210164,6.5988064,10.993777,7.1883583,10.829528,1.9056071,6.6305785,7.187005,16.035728,13.982342,4.7521234,14.561485,8.228975,18.193329,20.326012,3.6843724,6.8526044,11.037949,7.5596347,2.0446992,1.987239,12.997356,13.241726,13.669536,12.656419,7.543913,5.3739047,13.439638,13.445485,7.7699437,4.338153,13.1540365,6.3357806,13.546353,4.4546695,8.258559,14.409405,2.4596765,10.188448,5.2854724,15.038006,6.962851,6.0568113,6.9245305,17.11596,12.076177,3.640082,8.4916315,14.169295,9.7904625,4.8524075,4.300887,13.280132,20.523891,21.616056,20.89477,13.699533,8.35041,8.120408,14.063058,22.245771,4.274662,15.890688,15.986825,13.699601,11.151665,8.883306,12.585435,10.812229,11.49652,16.170275,8.323903,4.1641436,1.9761106,4.348628,3.9048998,17.911982,14.033958,14.027316,17.699415,9.931405,10.2838125,8.470705,4.7555285,15.5806055,16.923395,4.116065,9.909753,11.234953,12.561094,15.307251,9.078142,2.3115652,5.747304,3.628308,null,7.976143,9.251395,16.06875,4.3895497,4.5789504,10.857602,6.351605,3.4201272,8.020865,4.5166793,11.777898,5.829142,12.211451,16.842007,12.612758,10.63544,5.90078,3.417169,7.233703,11.088455,2.738418,9.670873,2.4558191,13.244754,14.161403,13.873664,9.041188,1.1737026,8.410663,16.648954,15.519494,4.4125338,18.99218,6.9024506,5.0337014,12.882897,14.396245,4.362657,6.6263967,13.487599,8.373809,3.9413269,9.935328,14.05916,2.333665,7.3776426,8.577281,11.060882,7.263977,8.165734,5.6833925,12.578626,8.9427595,7.9038596,19.026535,8.3637085,6.293247,5.5729394,1.1779668,5.928219,9.240959,5.6823893,15.786082,25.399527,8.705573,15.169995,16.022297,7.818941,15.759669,7.0900836,3.555116,3.764512,2.2906601,11.000039,14.298511,8.949992,7.904104,16.552343,3.8958404,10.2594,4.722886,16.372993,8.622108,10.243874,7.589824,10.185946,9.917538,4.993951,3.8269782,4.1731606,2.2982736,7.691911,8.219431,12.1866255,2.5845962,9.227719,3.9598308,8.133527,3.1575682,16.31925,null,10.283385,7.3333054,6.234078,9.354798,11.300414,7.712917,4.003976,2.63214,8.576934,11.084167,9.010924,3.5153508,16.591528,3.3828824,14.078616,11.072866,1.1624768,9.906226,3.4100091,7.5736103,7.64809,10.030819,16.190193,9.005926,9.427933,12.497221,8.960148,5.2292933,5.390388,10.116612,6.0075874,1.1616272,12.4094305,18.29712,5.2999787,11.565796,3.8612711,11.673379,10.362879,3.9319649,13.056007,9.781494,6.877561,16.42221,13.880417,3.5562239,4.588335,12.094149,12.681024,7.3241544,11.99583,12.867863,11.596257,7.0533476,13.897666,3.0206194,6.7043366,8.686448,3.6086965,4.1239147,2.2222376,20.362068,31.538004,17.647478,10.430388,12.573083,7.1653867,9.993548,7.4658413,5.3830843,12.279037,15.341555,9.315714,5.2902613,3.978762,10.797155,6.5361786,12.799868,5.2913337,9.616422,1.4535347,6.782056,8.269345,12.516713,8.450073,9.288514,6.8461094,7.1419315,12.002602,3.9930618,11.83105,9.578339,2.7837827,11.735703,7.9854374,8.2961,11.971873,4.842148,2.146306,4.2298265,null,6.754976,3.529015,17.118593,11.590309,14.350979,14.062657,3.171228,7.422418,2.8771505,10.086272,7.371207,3.1682413,4.204624,4.876119,9.211297,7.106702,5.857391,7.5505157,8.962759,15.443014,19.727053,17.331417,7.0607805,11.356127,10.565148,2.484173,5.839438,9.144387,5.3552356,1.1717068,9.958357,6.1559873,18.535238,21.67538,3.7374306,9.617607,11.912521,9.310917,2.0211682,4.9499197,9.237167,15.542647,18.830591,24.003252,8.001785,13.141282,2.5212681,15.184219,6.4483128,10.526352,8.291307,11.509978,10.221631,10.611267,17.41244,11.6438675,3.0643084,10.451715,18.614017,14.137364,3.6964717,8.073924,6.8610096,12.866451,3.6750252,3.1069229,10.371394,8.184834,3.620693,2.9582577,12.990031,10.660365,10.13566,7.7461014,6.0917087,3.4808085,6.6502137,14.2155,10.408509,18.617094,4.3281937,10.171069,2.4183152,11.2567215,6.795943,14.546756,7.0792904,14.124781,2.7100573,3.5323114,15.259505,12.226509,4.7518744,10.98712,8.642195,6.1714764,16.021687,6.8303857,13.395947,3.4397888,null,8.271757,1.8059963,4.123724,5.8935113,6.5758376,3.1543338,7.5126247,7.6032944,3.1116955,6.9672484,3.829066,8.220786,10.308302,8.693597,11.911377,14.442765,13.772303,16.840576,10.921921,10.51303,9.585644,13.181589,6.0730267,16.080559,6.8142385,7.533533,10.497102,11.518732,12.445541,6.5842996,2.3215818,9.438921,5.5358257,0.42448026,3.6496756,11.738518,19.380138,18.19055,13.114776,20.239075,11.715998,21.040388,36.638557,27.680235,5.722552,12.82936,25.044767,17.136618,13.133937,19.518238,12.645391,4.119152,13.984827,15.13845,5.133693,4.383184,9.27388,8.764631,6.4293666,3.7787187,9.677202,10.994914,4.032719,9.917469,8.992623,8.926353,4.4789367,1.1646396,3.8938112,2.2867653,5.306424,8.668725,17.074425,6.561201,8.722139,14.608651,2.1165688,6.8709745,12.835209,10.318595,14.778024,5.3931594,16.839792,1.8472828,14.469735,1.414664,7.0740466,4.700039,7.107164,8.787634,9.241515,7.2533793,3.6833978,6.0060205,8.784959,10.576646,4.0805626,6.190156,4.899627,8.623138,null,5.4403577,8.201151,9.752391,3.4719408,3.695963,3.0329626,10.520887,14.8606415,7.160052,8.1501875,3.376713,9.213532,9.571575,7.53453,3.9796505,6.601147,3.8331397,6.733144,8.869213,12.689675,11.135,2.3383236,7.3507395,4.059895,12.1584015,17.079878,19.512236,15.32871,8.937178,6.351747,4.7622385,14.131002,15.384927,3.0364347,8.380588,1.7678965,13.477519,8.540301,10.967266,15.6546545,17.823896,11.118302,5.4150033,2.3811855,14.123572,11.997281,8.413446,17.175917,12.271123,3.9789689,10.102762,8.90106,9.598895,4.7151155,9.287493,10.689664,5.3831806,6.338376,14.493901,12.161095,11.851228,7.3655996,24.249031,15.277592,3.0612726,13.968002,13.389263,8.758661,11.983353,16.504702,14.003584,0.5630824,3.5504978,9.485359,10.232568,3.6748934,12.027478,2.3714302,10.423065,2.2472217,5.96008,10.296764,13.63171,10.689255,1.9528311,8.1847515,9.321506,5.150774,12.493315,10.259909,4.954681,5.6762347,7.492657,2.8084922,7.552275,6.3316197,6.2898765,8.953484,16.043242,5.954199,null,5.034046,7.3879695,0.8035702,5.4302974,2.8799822,6.6983237,4.714472,8.953836,12.663208,11.156963,7.475775,9.357336,2.020577,10.943764,5.1442866,6.480465,3.9641416,11.05731,16.689985,7.043435,15.018137,11.533856,8.969803,9.217461,19.730818,9.960884,3.9196005,10.243992,5.2108793,11.355443,20.507027,9.79042,5.408689,4.112022,3.9999495,8.597379,4.72021,12.870542,0.5492127,2.2739162,8.2850685,13.4481,9.964924,11.954488,5.7296786,7.8666444,14.920807,13.905123,9.818846,7.1207323,12.908189,17.443602,4.4724627,10.090809,12.211137,9.637564,8.619254,5.895637,7.0579276,9.620142,7.169511,8.900811,4.532579,11.403867,2.0831363,10.206729,5.824006,8.60553,2.1941652,19.427526,12.252505,6.9267125,7.202828,9.7391615,9.451617,8.674776,19.072294,17.900663,4.255653,10.589474,7.9439926,10.4321165,19.937317,13.28419,10.534045,1.2898784,5.0520654,7.920949,7.043123,6.2869673,11.407652,12.889916,8.007718,10.485765,11.029651,5.914813,1.3883327,3.9024158,3.6535964,7.7175255,null,18.421381,8.724518,5.2996025,7.442923,6.698168,7.575038,9.337504,2.8887594,16.091234,10.4510765,4.222552,4.5601306,10.5796585,16.820572,3.292978,12.021929,5.793012,5.0050936,16.67096,9.745348,4.2517786,8.111746,11.471227,7.831225,5.272514,11.035969,6.956555,1.2054579,4.0903544,2.8292253,5.303265,7.201441,5.111868,10.588057,19.51705,7.5215592,9.123542,3.5476112,10.54493,19.844618,6.2123218,6.4783435,2.7780545,10.0724945,9.299585,16.094666,14.508965,3.4725058,10.115749,19.758633,12.510723,15.499912,28.300285,20.900747,7.487423,15.295552,7.3575373,8.34415,18.016556,8.964942,5.8966236,6.9739623,11.983663,16.040424,15.165002,6.2326374,1.7596794,2.9340532,8.914324,13.538025,23.898067,19.504103,11.590012,17.655817,6.379426,13.572771,16.46565,5.245895,11.59559,4.7006345,12.243002,3.4864018,16.440002,8.9232025,5.9709935,9.248796,6.9829636,6.7574697,1.9283899,4.605493,6.6179767,7.4338536,12.575186,14.64313,4.5764933,6.264176,2.7500875,9.722493,11.756439,11.170147,null,9.0320425,3.6935174,9.565765,4.0091395,6.5176196,6.150691,8.763776,3.9785445,14.5879345,10.869527,9.685102,6.539399,9.912368,12.328473,13.507331,7.72274,11.455124,7.8385606,5.984417,1.6733799,11.984684,2.4189687,16.022985,13.982685,15.008214,5.692604,17.312063,6.3881326,3.481214,10.511333,17.638134,12.0083275,6.8267703,7.383494,11.374835,12.029028,6.9491277,1.336381,9.415101,16.503805,15.434946,8.161241,18.314833,16.536797,9.073373,13.351197,15.56531,15.932457,10.920231,20.488743,23.697283,17.10585,6.1212873,14.398356,11.938334,13.135821,11.690338,4.052532,6.4971614,3.3641176,9.792177,8.879782,8.996629,7.3161244,13.526617,3.7961535,6.341714,9.6446705,4.8347,7.0607257,2.2327313,6.7772274,7.555842,11.8090515,13.491147,6.0865407,3.9422476,7.670312,7.694454,8.564516,4.648824,9.706074,9.987051,10.536288,2.5624757,13.642559,11.779568,10.681595,7.65454,10.678973,4.0330453,11.731768,6.7616,3.2725892,9.032392,8.110335,6.068345,7.0595665,9.849634,6.6764994,null,15.017816,6.534986,11.754948,15.358651,21.833645,1.7987174,8.700523,2.4807172,5.878282,5.7762327,9.219166,12.920282,9.738056,19.10358,10.568682,2.4542787,4.6554074,12.178891,12.014599,7.8235087,19.462366,10.450217,17.429419,10.99173,5.9897017,15.568285,14.092456,11.440145,6.948045,5.581958,3.666078,14.1688,16.22219,7.182563,4.4890175,4.8072577,7.2279906,4.4453125,9.661534,11.586625,11.05044,6.8583407,8.472097,7.916863,8.268696,4.4463353,19.503033,15.553099,8.272652,3.9062238,20.285162,13.616347,8.265518,10.443908,25.269354,19.081663,6.2096715,9.445499,3.3026898,0.5129269,7.7339334,7.825286,4.8622527,6.7903647,5.8609457,12.878959,15.947711,8.993526,7.9405603,1.7772413,6.019779,6.131732,14.242963,5.22013,16.28909,16.275133,11.303976,6.31569,17.427103,10.558471,17.777195,13.232742,8.90701,5.5699587,6.5906315,10.682288,17.461176,17.601393,7.880542,9.439136,7.887933,10.148968,7.003396,12.975181,2.2029362,8.124054,7.167834,9.299155,5.8738036,6.7655206,null,5.1350284,13.952517,8.667514,4.4112167,13.634147,2.5157447,15.831786,9.039555,7.4897923,2.0226793,9.36895,7.132835,7.764301,10.896181,10.186211,5.766091,11.210811,11.133843,6.9501987,7.817862,18.712736,13.846021,7.389543,9.512482,18.846308,13.334643,12.564021,6.725432,16.507774,21.14786,18.522432,9.445108,4.9832892,11.901644,13.894945,8.543567,6.278333,8.063665,10.044249,9.911422,13.179899,9.2759495,3.8188314,8.626382,16.59864,10.717566,12.805184,17.637066,17.166008,9.615621,14.038651,20.185709,8.5043745,5.28626,13.779626,17.043766,5.3185964,4.6357055,8.85024,8.360492,8.502855,6.186994,14.794992,17.053385,9.699069,19.052235,5.237902,12.812215,15.247006,14.777641,2.4066942,8.581856,5.1597505,14.617158,15.756932,1.5444643,13.47059,9.641111,1.4212912,3.1188025,6.4929404,16.174477,12.529286,13.809417,13.504322,8.225963,7.458767,0.7877534,10.701821,10.201148,7.8608527,3.4413376,7.356935,4.577739,2.0377672,5.9435973,5.284639,8.362918,4.725159,17.52857,null,3.627849,15.489725,12.201723,14.616301,16.305414,6.718656,10.318937,7.2793202,7.5914764,11.836642,6.014505,2.2467778,3.0620725,3.71795,7.79532,3.7860198,7.2263155,12.192295,11.863886,11.415101,3.2356327,16.411186,11.885802,4.0183897,1.7346112,8.040332,13.050308,6.4867816,7.7504883,12.994068,14.049484,4.083565,8.409772,11.011832,20.670351,7.274406,12.486537,1.5068153,15.103319,4.11488,8.6474085,1.3602054,8.105023,13.377087,6.201832,6.7196355,16.78784,11.129138,8.086141,13.385893,22.35758,20.742891,12.296937,15.143793,10.266614,7.0907645,15.110509,13.502984,4.4946947,14.8828535,6.983495,10.36061,15.974341,2.061169,6.8802795,3.5426118,5.886376,8.853282,0.73699313,13.547085,12.211486,3.1720772,5.6554527,8.253598,15.841689,15.824807,11.239917,11.367251,3.9307263,10.827209,19.959837,9.024352,14.198737,1.1611111,5.840354,2.3512418,7.5824347,9.467369,5.2569222,7.296644,1.4993054,6.913488,3.228863,12.55745,6.768317,7.059622,1.6192085,4.2844524,7.286482,3.5791552,null,11.757086,12.368859,7.2756543,9.610331,9.24341,4.755821,3.0072854,6.981201,1.5518373,3.4746132,5.2243237,7.0973835,1.2798511,1.6506063,6.931129,14.60032,15.761,7.4759054,14.501145,4.565301,3.9039307,8.106906,17.463858,3.5944078,19.800646,17.499733,6.300741,21.420668,16.971825,3.3739243,4.526473,3.6027985,3.9194417,0.27380192,1.645649,12.915872,13.662091,11.239155,17.44244,13.62167,2.740305,17.187216,17.19009,8.904988,5.338066,1.6651402,7.12115,10.938523,5.6889133,5.0501513,9.7887945,15.503851,9.86675,11.293332,10.433367,6.4355955,4.9799695,11.171997,11.059661,11.437018,11.514726,13.946584,8.446438,9.270812,8.697702,12.502268,17.607628,10.44826,9.222075,2.5874271,7.767143,8.153143,17.468285,4.0591645,9.27169,2.8284354,2.6892366,11.266036,6.1518636,10.425867,5.350001,12.294769,5.0246964,3.1758363,5.9534087,5.203455,9.356978,5.150893,11.371637,12.223765,7.813191,7.247039,12.117936,12.743703,1.8880999,5.6052594,9.947354,9.399908,7.778576,4.6229434,null,10.345247,5.753245,13.108071,7.839804,5.3797393,4.1081557,6.703643,6.6824164,5.408678,2.607142,14.091584,9.470246,13.067049,7.746358,1.7997581,7.3419476,10.644793,17.529833,9.081566,10.518657,1.5536493,6.3203883,11.690803,2.194616,2.7106345,10.474139,13.308145,18.372742,14.870704,7.5903673,8.601576,16.276722,11.070955,11.142365,23.026388,4.1782384,27.70221,13.919368,5.4054384,4.1443567,5.1136785,9.747861,9.963187,0.43533507,14.641148,11.58528,4.0431204,7.0319138,4.51251,3.8297348,3.9765735,4.824847,6.060215,9.872811,8.13337,12.161182,8.213317,12.489928,17.075891,8.775376,10.761949,3.6846666,15.174536,2.2996066,11.604947,3.8059406,8.494986,14.533576,1.4705008,3.992642,12.564037,16.389397,6.600151,10.294283,9.758869,0.64848816,6.1708145,2.5046694,20.434631,18.15604,8.579034,15.504649,9.719718,3.4108021,14.237271,11.290081,7.1426024,8.5919075,16.830862,10.22351,5.9763727,8.867067,12.966436,14.738306,8.570697,12.6629505,7.3260036,1.5679886,7.7777925,8.600882,null,4.00798,10.259785,8.326551,9.833034,3.6027236,14.354905,2.5756922,5.33092,10.119244,5.4006624,3.1906908,5.123996,3.9261694,7.1520224,0.83836126,5.053768,4.2580185,11.142175,11.684863,10.252685,13.303914,8.127982,2.088266,11.2294,13.839892,10.471173,5.4404206,1.3290887,11.620257,10.376422,4.2878337,2.2734425,5.3678865,18.449495,16.556177,3.1023967,4.3157015,11.746202,5.592755,2.4547827,5.367628,11.888564,11.902491,3.5174465,8.367928,1.651607,2.5424347,1.0467387,5.3855386,1.3744893,7.363157,11.937824,4.961816,5.9617486,3.392993,8.0398445,4.237502,10.335217,5.4178495,11.653921,7.9142594,14.450622,9.104443,7.3245053,6.555532,12.704274,9.80697,17.327114,9.394566,4.5601788,10.126666,9.804053,7.315798,7.6239877,3.4904761,8.719189,6.3203287,5.374874,8.923106,5.4175344,4.4105616,5.332711,0.8410756,5.6815367,10.863793,9.814728,5.771468,6.6799526,4.502729,6.2154336,9.401137,11.093093,10.708222,14.446493,2.6208777,8.988978,2.9182653,5.077736,8.187515,11.160671,null,6.543676,6.4810643,7.564467,3.3179162,6.555517,14.188232,8.549186,7.269053,3.4894388,16.873756,12.457314,1.2470716,5.767046,11.467165,7.8461733,4.978234,2.7105718,8.556567,4.397842,2.9113176,5.649627,3.8513315,11.409215,3.790392,8.6136465,8.983724,3.0420268,10.502658,9.92645,8.398493,24.093498,12.737254,13.991416,13.667561,13.016319,12.167485,8.730039,8.46827,13.546225,3.2558064,10.077335,4.725467,12.787938,9.004889,5.179515,4.858249,6.283086,2.909019,13.289856,18.877592,4.017722,10.488857,9.37983,10.763717,8.169445,5.1991115,5.2035594,5.5473094,6.1355095,17.061247,11.4571085,8.509172,3.673707,9.330614,16.468966,11.778139,12.205356,7.6053743,6.680128,9.034234,12.539695,15.703578,10.704451,11.669984,15.017583,10.872893,11.505518,8.951783,12.586893,17.470491,5.5287404,14.453497,9.082034,8.028717,13.0441675,14.393824,11.833835,15.986887,7.648787,15.539606,5.4629,9.632288,5.511498,13.7924795,5.255058,2.63448,2.126738,2.8585467,11.839233,15.808437,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.8983288,-12.644604,2.5210268,-4.3756304,-17.766378,1.8359776,14.627451,-10.463407,-19.154434,6.0856056,14.392153,-2.0003858,-14.54775,-16.118488,-6.898318,5.0034704,1.3423738,-10.718213,-6.9024744,3.8826804,-0.43387508,-9.99471,-8.617825,6.930334,16.271423,-10.68974,-31.851082,-7.3350744,3.8188448,-1.3907166,21.842999,21.872612,-5.583049,-0.47669315,2.4077978,-11.645041,3.4021733,16.5879,1.848501,2.2012773,15.939817,11.599371,3.1491518,1.7935677,-3.9870129,-8.573776,-8.193258,-4.735478,5.1571984,-1.1040864,-21.610037,-13.153818,4.3607254,-4.513398,-7.5514746,4.803041,4.3425455,-6.9070096,-8.214391,7.8930717,18.90934,10.015022,2.648446,0.25161552,-7.7282133,-11.986239,-9.879005,-4.9828634,3.3218522,9.241832,2.8203702,-11.186583,-10.361159,-3.3414192,-9.037209,-3.049462,11.1575165,7.892591,6.4267707,8.462194,4.6309843,0.7305126,-18.197472,-19.10524,23.683645,32.839172,-1.5744433,-7.7752414,0.84239197,-0.2186861,4.684423,2.4251373,-2.1390939,2.979198,-5.3926706,-9.07039,13.955725,13.697435,-15.197919,-14.283182,null,9.166355,3.0485945,-4.2876573,-3.5223763,0.52905893,3.0258245,8.967882,10.001921,1.6314583,-2.4438353,0.653914,2.8297544,-3.785666,-10.6773205,-2.6595325,2.3697276,-1.4005723,7.340589,14.458435,9.249426,6.1191998,-0.39015877,-6.4798512,0.5091695,9.17773,7.005699,-3.062491,-5.576456,1.2461846,2.773742,1.9169731,3.0347626,8.895964,21.27036,19.96837,7.3188357,-4.884418,-24.267166,-27.59143,-14.945371,-17.20324,-13.420185,-1.4300537,-0.15024662,9.869216,14.168734,3.6166406,10.835277,20.918846,14.325628,6.108468,4.3153353,15.960383,20.753538,2.2410038,-3.5586011,6.538095,2.5896049,-4.744816,-3.6926014,-5.159897,-11.295094,-10.52714,2.3143663,11.614807,13.639598,18.034561,9.899818,-11.714666,-17.497005,-8.270528,-4.528163,-2.9901712,2.4013371,5.93797,5.294305,2.2002106,-1.6897838,-5.815548,-7.647262,-3.3491588,-0.7907324,-0.8234825,7.467589,5.2012477,-11.557911,-4.748813,11.188317,4.9909263,-1.6411152,-8.956375,-13.836553,4.7444167,4.604718,-16.620409,-3.6285067,8.916707,-4.9746714,2.881363,15.712774,null,0.8297825,-3.2424583,-15.024382,4.3412585,15.987972,5.5576806,-7.74008,-13.517839,10.2463045,18.413963,-18.49236,-13.964017,15.672458,-11.576084,-26.371296,0.715358,2.9458265,1.8115065,8.317101,-4.089887,-1.1298952,11.408476,5.7698255,5.1169443,-2.9749432,-18.251059,-6.1373487,3.1596727,4.1425185,22.758635,16.503506,-0.67461824,16.832186,9.343475,-24.05965,-13.110622,4.9389668,-5.3399324,-0.83783007,15.940883,8.175166,-10.864768,-4.9746284,3.784369,-14.827005,-15.242025,-0.19075346,-21.567692,-28.67633,-2.399641,-7.2577944,-19.429873,-9.3535795,-9.604082,-11.305668,-8.379779,-9.089004,9.537342,29.79541,15.093912,-4.671296,4.08031,14.76497,4.325776,-11.135771,-19.087006,-12.725939,-1.1234084,-6.321426,1.5095415,29.977406,24.905739,9.599535,17.845314,8.042662,-7.1700797,-1.2757944,1.8447113,6.185961,6.9169817,-5.320745,-2.9671957,6.916651,3.714382,-2.0030391,0.47696018,14.166086,18.939335,5.1405177,-3.2138453,-2.2968607,5.0985827,6.2827168,-17.716572,-22.287107,6.7742386,11.6651125,3.484455,5.2759705,-10.631901,null,-13.127872,3.6276689,4.1681767,9.904987,15.552078,2.124341,-9.4901495,-13.109147,-1.4163132,13.3649645,-4.8249598,-18.502975,-1.6422572,1.2243693,-1.8969643,8.599504,7.472444,-6.9028444,-17.872936,-12.259419,-1.5467086,-3.681526,4.805978,12.750948,-3.703485,-7.7287064,-6.6576223,-21.408688,-19.084877,-10.682044,-9.772283,-2.5486245,-6.492302,-8.479191,3.0756521,1.7987037,4.2804117,13.7374735,4.932916,-5.6651573,-15.025053,-21.590263,-1.3879256,14.658689,4.223522,10.274407,27.226742,12.687832,-4.209697,8.026678,16.506016,12.4652405,11.874221,2.1860743,-5.665292,0.1955483,-4.0116653,-9.176091,-2.0498977,-2.9833364,-8.515638,-2.906497,15.092447,26.669388,8.489083,-6.195183,4.1140385,-3.430488,-20.733074,-16.577005,-14.328419,-14.195249,-3.9424987,-1.6329765,-2.6924887,0.52770686,-5.466982,-12.620212,-5.5620527,5.532777,3.0287344,-9.741079,-13.228613,-6.511933,-2.6572704,1.0887804,4.2501106,-2.1242898,-8.73326,-7.9245224,-4.218605,4.330104,6.8451285,-5.696541,-10.914166,-2.6081991,1.3745694,-0.5831797,-3.7004557,0.70687366,null,6.2315755,6.02841,11.764474,10.760563,-0.2284894,2.8689904,14.718212,7.3801174,-7.7582693,-4.5736327,13.755555,20.43822,2.833483,-10.802266,-4.01142,2.594738,2.5435266,0.23437166,-3.1839452,-0.9727526,0.3571825,-3.1737957,-0.7157029,5.15584,6.2915454,5.310255,9.179807,15.766226,13.200642,5.3473434,-0.5635042,-8.487694,-6.930794,5.182537,3.21521,-8.591379,-3.6241627,10.640347,8.206467,-0.2622819,5.9851317,9.933313,5.052353,3.995501,-1.4021401,-2.771062,7.6824493,7.1267624,0.083247185,-2.4769812,-6.581745,-1.373011,3.329245,-8.123207,-13.04905,-1.493182,9.433451,4.7807007,-7.20563,-1.3654137,5.8530555,-10.703894,-25.506435,-21.577328,-8.857146,-0.062244892,-10.291187,-18.576164,-1.6332622,8.116457,0.39262962,9.0900755,16.517082,-1.7466793,2.5097733,27.56725,7.352129,-22.584564,-9.584439,2.8868275,3.8728218,8.312988,2.847385,2.2772732,0.23652172,-5.877371,13.354363,12.568242,-16.624378,-0.36992812,22.303047,-2.070375,-16.191133,0.4756608,14.338032,5.3579655,-17.471594,-10.282659,18.884262,21.062653,null,-16.52909,-6.509032,10.040421,19.107674,6.489809,-19.22589,-13.227368,8.869075,8.297976,-2.9128141,-8.709534,4.296232,15.111799,-3.7067018,-1.6704187,15.30419,-6.0142407,-9.293993,2.8962946,-27.34834,-23.156242,18.833796,7.700808,-4.390497,10.194034,-9.802952,-21.690067,-0.5031128,-0.111582756,-2.3250709,10.055256,9.592843,7.3135843,-0.12225294,-12.9290495,4.6002045,19.396484,2.3180516,3.104789,13.266436,3.8219972,1.8284602,-6.083003,-23.888762,-13.397535,-3.876235,-22.06706,-25.784958,-9.6203575,-10.683134,-22.265951,-14.146958,-9.235884,-23.15604,-13.02094,-1.2024913,-17.933191,-1.1920061,17.191143,-13.883158,1.0872169,40.569935,3.8810928,-20.843979,8.926223,9.93222,4.0810275,13.909269,6.3747034,13.686737,27.697334,2.8500633,-17.154161,-12.162548,-11.863666,1.2108636,12.649645,-1.4783928,-0.6356392,2.5977526,-10.639063,9.487146,29.534575,3.585137,-11.509211,-7.384925,-9.034433,-2.02218,-0.20646286,2.395319,13.856482,-2.2699933,-18.552464,1.0677512,18.737972,15.851147,-1.2221527,-13.212292,2.9380684,11.84295,null,12.639699,-1.5394083,-5.9030714,9.897674,-2.737979,-16.12527,-2.264614,4.667609,7.1276603,3.8192916,-13.54171,-10.449287,5.567621,6.8320823,8.040762,5.9257436,-7.317297,-15.444439,-12.937323,-3.3871448,2.633078,-2.1776187,-8.442895,-7.949383,2.674984,11.63948,4.91359,-1.3336649,-0.18867302,-7.117044,-14.124515,-8.007635,-0.9620056,0.7762728,8.759867,11.487838,-3.9669514,-7.3635936,2.0870795,-6.578008,-7.8776207,6.6551127,4.127124,6.482267,23.79476,21.266819,10.928226,16.598448,26.22961,27.353977,21.565983,19.943218,22.50639,24.772667,30.532463,26.645819,12.190115,6.4361553,-1.3873863,-17.458544,-21.144585,-12.120413,-5.170413,-7.3288183,-10.521009,-2.5759263,5.383316,7.0448623,9.153024,-0.7711396,-13.875501,-4.302187,3.4608746,-8.9028425,-10.632745,-4.395293,-12.263544,-9.832997,10.333113,13.609874,0.07322681,-2.988787,1.4617896,-1.8198922,-6.832965,-6.3807554,-8.276616,-9.431961,-5.9022193,-8.952295,-4.6393223,12.21063,2.8617647,-18.252562,-3.3400903,14.911476,-1.1535726,-17.511044,-10.6228485,-3.301734,null,13.323272,8.148196,-6.767163,-6.6983604,9.224155,8.037744,-10.976707,-7.787829,6.8294287,9.58243,6.2574615,-6.22756,-4.342018,17.366924,8.829027,-11.1567135,2.6818666,9.068322,-5.591384,1.285964,9.620048,-12.608556,-24.334179,1.4834194,17.245073,-1.3714058,-9.903219,6.3025303,16.033781,17.331192,15.074314,1.8441813,-4.7386494,2.632805,5.1854067,0.43929577,-5.124502,-2.9638076,8.536116,9.705343,3.1093283,3.90608,3.3925157,-2.5105858,-21.568958,-42.231567,-23.749569,-2.5931406,-23.348589,-30.915905,-15.640351,-19.544086,-21.671375,-16.836334,-19.791182,-14.216047,-10.620018,-12.895287,-2.580356,2.2772431,-1.8478699,2.4840336,1.5120564,-1.378386,9.351769,12.325674,7.2656097,18.413013,24.139362,9.239908,5.251545,12.095356,7.119805,-4.6678667,-13.883649,-4.9580784,11.327551,-3.9340668,-17.21325,4.203079,8.469059,-4.74226,1.5036709,1.8689902,-11.035186,-18.021553,-18.023396,-3.6390433,9.748579,0.82486844,-7.1363873,1.5584099,8.302373,0.8291826,-7.125471,0.4248371,6.1151323,-4.270669,-8.738663,-5.4333954,null,11.067567,-0.9142802,-23.708963,-8.748526,19.948654,11.873284,-3.174646,-1.1759157,-6.254823,-8.137739,1.7647514,-0.044935703,-4.38661,-1.8302987,-8.212967,-4.8930206,12.026577,4.013554,-13.017628,-6.905807,-0.738199,-3.205516,-4.7048903,-6.900963,-6.0449595,-14.909883,-20.722939,4.489464,9.814194,-16.524174,-9.734212,-2.2652044,-20.479792,-2.4795287,12.062545,-17.648382,-8.504336,24.751003,10.183213,-1.2552872,4.3975096,-6.818802,5.971458,20.911318,-1.1985226,6.755967,27.730711,8.397257,17.70373,39.994217,12.576469,10.139035,35.346252,16.909554,7.5505238,29.990488,23.802664,0.39852142,-5.1976285,2.339017,9.135357,6.28742,7.3605657,12.168932,2.7567601,-7.223745,-10.886599,-13.436342,-4.398466,-0.8331511,-12.053454,-11.647508,-8.879042,-14.448903,-3.8659306,15.228252,19.61411,9.948799,-6.0347395,-16.3028,-19.82431,-10.315565,15.416683,12.527946,-8.664726,9.276581,13.20557,-16.715889,-1.5691719,16.32486,-11.4932375,-11.606081,6.6190233,-4.506248,-6.809209,4.098824,6.855587,10.905633,6.4445887,-9.46077,null,8.090338,-1.101357,-13.285267,-3.9507508,8.145039,-3.8760614,-6.0326977,12.312002,7.035829,-4.5313897,4.113826,1.8256559,-5.6041737,-1.7730951,-7.4336233,-11.434553,1.3752646,7.8578835,2.3489418,4.533614,14.231504,10.008396,-2.8181,0.7685056,5.154823,-2.5425425,4.32838,12.169874,-6.4309874,-15.345264,4.445974,14.612103,5.128676,-2.6144872,-3.3310847,1.4829545,4.8839207,-1.1259567,-4.6967993,-1.6769323,-6.2997727,-13.183597,-8.07243,2.567925,5.848987,-0.95010185,-11.507954,-18.366737,-14.526876,-0.75258636,4.156731,-3.5765638,-3.8092551,2.2412925,3.3374927,2.0144405,-1.681479,-3.310442,-2.114633,-4.2409363,1.2140698,10.619431,5.448099,0.38194227,7.688329,11.25387,4.233492,-7.053604,-8.509427,4.540909,7.2357817,-6.1842346,-6.5925074,8.66949,15.698351,10.050169,2.2615843,-1.7379408,-0.4845724,1.2528954,-4.223952,-11.472567,-7.8865705,0.17520523,-0.36975956,-1.2791948,4.789939,6.590182,2.305275,2.5204136,8.012325,7.848493,-4.0048695,-7.9331737,6.2696075,6.199341,-8.831089,-0.88576865,14.226242,6.900847,null,1.2616987,-4.868302,-7.0190845,1.4389726,6.7868543,3.1596675,1.6068631,-5.7368746,-10.323388,1.399519,1.0419312,-5.512942,7.007711,4.164597,-13.322941,-5.454798,6.0195236,8.603561,16.689152,5.610771,-15.143473,-8.901297,1.0921617,-4.1172876,-6.2757893,-3.7588902,-1.813539,-2.0751529,0.27583885,14.235006,19.715288,5.7904377,-1.2903159,2.7382555,5.7067957,4.5506716,-6.850729,-12.00902,0.15776348,3.7686503,0.202003,3.5515966,-1.1104715,-5.24199,-1.6126602,-9.742693,-10.598917,1.2461643,-10.933184,-20.665794,-1.3103957,-0.44785357,-14.193467,-8.357777,-10.697035,-17.041874,-1.7923937,7.2064795,7.529929,13.109728,5.6524687,-2.4728973,2.91837,2.579583,2.909586,12.258768,15.185712,11.260761,5.751253,1.7557082,5.4597435,5.372175,-7.674523,-8.326659,16.464182,26.174501,5.5191174,-6.255547,-8.946954,-10.917473,8.015271,7.984683,-22.80077,-12.540701,16.991257,9.400845,2.7959223,-0.7118292,-17.55993,-3.6624832,24.226849,15.7533455,-3.889393,-3.7509286,8.13897,11.692984,-2.0325851,-4.3642807,13.064314,9.737332,null,-13.146882,0.7675686,11.546631,6.742458,1.466583,3.8141136,-1.8125398,-15.156425,-7.766784,5.109946,-8.629407,-10.445557,8.948601,-4.219348,-20.614452,3.1121979,16.34903,5.6564655,5.6193514,1.4065382,-10.096437,-4.435399,5.337708,0.2998619,-9.158083,-11.096349,-9.022935,-8.49277,-3.2393522,8.796501,9.500953,-9.06288,-18.273272,-5.861472,-4.381891,-7.071253,15.917177,22.616297,-5.522621,-16.387478,-9.532377,-4.5523663,6.6411424,8.997785,11.608401,22.612394,11.119439,7.8245487,28.994755,16.857817,0.00858593,21.231571,24.889673,8.626419,11.86348,13.861072,8.508246,3.2398088,-9.525444,-10.459536,0.8208575,0.17293537,-4.4206734,-6.747036,-10.44454,-4.6355467,2.240407,-5.5412645,-14.376619,-11.552456,-7.008924,-8.837084,-10.718178,-11.139826,-15.828181,-14.716157,-1.2713885,5.2039747,-2.7311146,-9.826422,-9.423465,-6.465308,-7.1179404,-5.949601,5.7280574,9.975178,-3.4054513,-9.346169,-4.119231,-2.8431108,1.5779724,6.7989836,5.7041883,9.194468,8.2891865,-4.405855,-6.854933,0.01359272,2.2816503,3.966126,null,0.89436424,1.1682773,-12.72464,-4.6398597,3.1508486,-3.0772562,-0.6732831,1.9843044,1.627319,6.886348,6.2490435,4.9937515,4.498526,-4.474119,1.0421085,13.821146,-0.69291115,-14.40695,-1.1542044,10.108725,6.0829206,-4.8690634,-11.317419,0.57511044,12.575427,4.0391116,-1.8011212,6.7976003,6.9732065,1.5993695,7.2643538,7.581742,-1.5485682,3.7159162,13.159619,6.5579114,1.0586934,4.882431,5.756788,4.3349695,1.2834158,-5.6870284,-9.415754,-6.6151686,-3.534215,-6.047573,-11.304217,-10.725978,-3.5425425,-0.49738598,-7.4618006,-13.070763,-15.586818,-23.616241,-18.136753,-1.7154202,-8.768312,-12.419538,3.8510609,-9.435982,-24.752731,1.5767615,12.307203,-1.4624012,4.2396317,6.368722,-2.729622,1.824336,9.681719,11.790356,4.9562893,-5.6291723,1.4566938,8.110126,-3.1443205,-7.0406213,-4.734634,-6.4913564,0.059485674,3.285475,-4.95168,-5.8036337,-0.79560006,-4.248646,-11.567995,-12.951186,-11.877338,-8.355278,7.548045,13.255929,-10.491903,-15.3753805,13.431564,17.918545,-3.9918118,-12.779081,-4.9076858,12.056338,11.723151,-10.675183,null,-1.0306501,0.5530379,-1.2772875,9.52962,13.486,-10.142054,-22.110687,-8.393709,-2.7654376,-0.4350934,2.8974736,-21.065237,-31.331566,14.355799,34.319916,-6.184166,-16.184217,10.97088,10.0901375,-3.1125288,-9.910013,-22.172846,-12.682192,14.959444,18.344334,6.9955387,-4.282645,-19.121103,-13.981315,1.8378305,-1.9772615,-5.4223547,-4.2462893,-8.999556,-1.3933764,0.54732704,-9.680179,2.5905418,10.815269,-1.2480936,1.9285574,0.8876045,-8.025785,6.1255655,8.5368595,-6.546644,3.431602,15.192387,6.4685388,5.6404605,13.648025,6.586061,-6.8622985,1.717874,13.06275,-2.3237152,-7.7757807,5.9719896,-1.3883905,-8.548084,1.2472267,-4.2816787,-10.046986,2.8735838,9.427553,-0.69192123,-21.96001,-28.741285,-0.4496379,15.671025,-0.13750267,4.3626857,14.659997,-8.681805,-18.02904,-0.13510561,-1.8737774,-7.9722023,-1.2449713,-1.7419124,5.244224,15.973529,6.193316,-3.998114,-9.068686,-11.844677,2.6046295,9.832584,2.8856888,1.770119,-10.000486,-14.061348,4.045734,2.3567426,5.3227115,23.996418,-4.051757,-30.387169,-1.2126188,6.340989,null,9.770599,6.6573133,-9.767051,-10.000431,-1.7046225,-3.6348348,-6.585306,-5.6695457,3.4221036,12.136641,-0.3914659,-10.18119,0.34964418,3.3157039,1.8749745,8.616901,6.440175,-2.1629558,-6.151099,-9.017197,-7.865141,2.385777,15.916059,14.645253,0.1922586,0.19237137,4.6246004,-11.601817,-21.901985,-8.19122,-1.4903994,-9.387547,-4.979401,5.212578,-0.25394607,-4.4191313,-2.432931,-9.452313,-8.637791,-2.8355606,-8.073542,-0.43003726,7.199226,-8.991399,-10.269981,5.039135,1.1302382,-9.341969,-11.033615,-8.69345,-5.372332,-3.0992503,1.0133171,-0.90896165,-4.765938,5.6121144,8.151697,-5.596073,-12.227425,-13.952972,-4.5385666,15.262839,11.35832,0.7127993,9.033431,2.0965528,-15.842644,-7.8563156,3.0961752,-3.8570719,-5.455245,-2.232491,-8.44346,-12.528948,-9.230846,-2.4338846,7.3668776,10.362808,9.717854,10.509169,2.9119854,3.0898962,10.89094,-3.60088,-13.13114,0.47389054,-1.1650648,-6.742835,3.8987148,6.871973,5.7867126,6.6368713,1.7850679,1.8224583,1.2553751,-1.1939042,2.8687453,-4.181679,-12.6943035,-3.2262528,null,8.414135,6.8729477,2.4994774,3.1251407,-12.424088,-3.3540936,23.183523,10.360823,-9.130917,0.2762432,10.895262,10.714506,-1.4489325,-17.101053,-9.136484,9.374731,7.333192,-3.04443,-4.299343,-2.2123837,3.1754298,5.1137347,-8.060047,-10.469414,8.367119,9.680574,-2.014802,1.5829244,0.16547084,-6.775449,3.075274,13.582649,9.935956,-1.1214097,-6.28954,3.178813,5.409193,-4.240591,3.6889553,13.758934,3.133852,3.627652,16.004852,4.357147,-10.50559,-5.288738,-4.7347264,-4.363921,4.3142195,1.4907274,4.0451794,9.110029,-8.766307,-7.4575853,11.128452,-0.4742508,-1.7819057,12.521774,1.7183065,3.3415585,12.886385,-2.7186046,-0.9968815,7.769985,-9.620636,-10.727034,2.4529674,-4.959669,-5.4197145,15.442533,22.678333,5.467833,-4.1127234,5.3672233,11.462782,15.903583,15.579412,-12.743975,-29.510067,1.9419702,23.808983,7.0386934,-4.165493,-2.0042486,2.557119,15.893969,14.997744,-2.0766768,2.621544,12.197134,1.3716516,-0.75629187,3.8983717,-2.9197288,-6.4035573,-6.9086947,1.9039273,20.115952,7.5682015,-14.275915,null,6.031361,-10.386933,-4.300386,10.824916,5.8875356,3.7952952,15.455267,10.884082,-9.452101,-3.728942,14.774332,0.93423843,-9.876813,11.531637,10.549728,-13.741483,-7.6119423,7.549916,1.8076086,-0.9931946,0.35688114,2.5881205,12.453995,-1.2811313,-29.185019,-19.296944,1.2188926,-2.6305778,-2.895554,-2.5918143,-16.159576,-18.250883,-5.8009152,1.6850517,7.8443503,15.666508,4.7844667,-19.780302,-20.473822,-9.97097,-17.290165,-15.671469,-3.4880977,1.0398594,12.545182,6.865921,-19.016191,-7.7213287,12.481348,-6.243084,-13.027016,7.3803263,8.731345,-5.051445,-7.1742897,1.0596609,3.6691215,-6.6455116,-10.730204,-2.2841442,-6.0423794,-13.363146,-0.092546225,9.81491,2.400117,-3.1354103,-10.110646,-14.831429,-6.8819675,-3.0686283,3.0650702,10.573481,-11.448592,-27.183693,-3.2201924,8.444805,-0.81031156,3.324383,0.7315526,-8.269821,10.615087,27.773912,5.065302,-17.084108,-3.7123296,13.567398,9.158141,-6.6623445,-11.109379,5.6126127,10.471367,-6.2841635,-5.677525,0.64169765,-5.070856,9.495231,23.249155,2.845733,-12.316317,-6.068494,null,-0.57680225,-8.728089,-8.616064,1.0358453,0.5724687,-3.2922344,2.8824224,-2.02115,-2.0894222,14.265196,8.803242,-6.1815457,0.4610529,8.920866,2.1116304,-12.752473,-10.271909,12.503714,10.456388,-11.707417,-2.3511286,19.540094,12.323159,-0.3754034,4.944765,8.861271,4.617028,0.08789921,-4.6454396,0.9333174,10.280462,5.0019894,3.4158192,6.5183516,-4.8066044,-7.1031427,2.8568163,0.6337166,-0.5035076,2.6847503,-3.5113451,-5.9389677,4.5469856,18.310959,16.469126,-4.0098515,-8.829797,6.8366785,6.0711756,-6.3268566,-3.4745712,3.4909725,-1.0561497,-7.1398487,-5.739326,-4.6285715,-7.5126762,-5.3162737,-0.10698354,-1.4062998,-2.185307,-0.560771,-7.653552,-12.924463,-7.688669,-8.302786,-8.628594,3.4663057,9.274954,5.1314173,-1.0846971,-10.742321,-3.9035504,19.088953,21.196854,5.5454288,1.5130494,5.560418,3.3644366,-4.403554,-9.559649,-6.0035,1.7190981,2.2394109,-3.646603,-6.3126893,-9.365946,-11.229839,-1.9255304,1.2138771,-9.511151,-7.8180146,1.4914939,-7.475898,-18.708618,-7.834979,1.494447,-13.267016,-15.138366,7.776325,null,0.3383255,-5.3279486,6.839648,4.6024933,-0.8528216,8.66657,1.9997456,-7.3059554,-0.043946266,-3.0484369,-12.391148,-4.4134436,5.2530966,-3.3613434,-6.3887978,5.894959,-4.3050575,-16.825169,13.023455,29.641794,-1.2311122,-16.033377,2.2456257,17.64215,18.639084,-0.28188396,-20.168709,-3.986194,24.416323,20.144028,1.7303741,-5.668355,-15.004349,-18.312664,-1.3071866,10.071304,7.4115906,11.370938,7.449348,-15.061718,-20.435741,-2.6279078,2.166421,-6.4177294,-2.1152554,10.418136,6.856848,-7.1987987,0.8964529,21.222767,12.859183,-4.971243,3.1261373,9.695146,-1.9011607,-0.09576988,12.39077,3.0230334,-11.964983,-7.2872343,-4.55754,-2.8131065,12.385459,8.079264,-9.346975,-1.1745975,12.034116,16.217724,15.177571,2.303687,-1.1912394,-2.9610195,-13.198428,3.6777966,22.239176,14.405097,7.149534,-11.764667,-20.45266,8.456329,8.113212,-17.117472,-4.931471,18.65105,25.173046,6.7598057,-22.799309,-8.267964,16.02983,-3.808939,-10.369341,1.4557619,-12.0959015,-5.9710674,13.790365,-9.853513,-17.437048,16.121414,15.252861,0.82965064,null,-14.824197,-19.24072,2.360175,0.29230118,4.413836,7.7856436,-4.670817,5.781162,9.334244,-11.27794,6.0684786,23.85484,-6.363354,-8.794844,14.741374,2.1986637,-13.537249,-12.965933,3.5622401,29.120943,7.6276536,-13.866791,21.464622,22.678066,-11.700344,-7.976722,1.7149727,9.738222,18.88533,-5.2096925,-24.687717,-17.443464,-9.826841,4.42806,10.071955,1.3982891,6.3868046,6.0810413,-9.178284,-6.5717974,10.075456,12.89428,2.1971264,-5.7359595,-6.9526443,-1.8231897,5.560156,-3.0651765,-15.543527,-5.756615,2.7629354,-5.273424,-9.460077,-5.802399,2.0682812,3.2850826,-4.9247155,4.022684,18.595146,8.92487,-2.7002208,-5.091717,-12.847417,-13.630505,-3.5482616,0.25624585,-4.548606,-9.624324,-11.39735,-16.58123,-22.039658,-10.949683,3.264841,-1.941833,-12.616666,-11.227729,0.3630514,3.427869,-10.735617,-8.473619,7.9370203,-4.3967395,-16.44853,-0.3735392,7.153313,4.0745864,1.4623842,-3.5561168,4.4214725,10.966494,2.1908102,-5.410059,-8.902058,2.4733653,14.3151655,0.44555736,-1.0841455,11.845724,5.469302,2.7694614,null,3.4981701,-13.576578,0.5717001,7.65349,-8.691898,-9.083836,9.275682,9.283944,-10.305126,-2.3017416,15.875822,-4.036719,-16.688246,1.76422,5.48583,-1.8093934,-4.7913113,-10.387923,-9.147562,-4.047022,-0.9134871,-1.1806061,-10.250932,-8.175007,6.710821,10.309498,8.491971,-0.27213955,-14.067944,-0.026706219,23.420582,19.050474,3.3596041,-11.004089,-15.697898,-5.063051,-6.119058,-8.553291,5.0491004,2.514049,-2.8273315,6.225762,-4.7993245,-13.622297,2.3668365,4.8781843,-1.2965951,3.1053536,6.0981035,5.935822,3.1743348,5.8525596,6.598654,-9.909311,-5.521508,18.411661,10.413263,-0.9426694,11.142065,9.956066,1.5792055,11.061334,16.451353,1.3014097,-6.255953,3.238305,-0.32741642,-1.1237531,17.956703,14.011747,-6.2937794,-9.548471,-4.5269237,12.410506,16.322948,-9.213435,-7.824099,10.200437,-1.0095738,-12.741299,-15.149054,-11.005028,5.7939143,0.0053727627,-15.9409485,-2.1530457,7.2096615,0.6837678,6.0918283,0.68371916,-13.890808,2.6655562,15.117577,-10.295266,-14.900394,12.680979,12.231652,-9.645636,-8.888318,9.936205,null,-11.88397,23.505701,2.3768547,-20.073826,8.739869,10.922325,-11.108782,-1.1758176,7.788059,7.503359,12.399952,-1.0178452,-6.898203,7.5331025,-2.8061385,-8.561632,12.42432,1.4894166,-12.828718,10.455944,7.493229,-19.969221,-19.202381,-0.4488721,20.093147,11.431287,-22.483746,-16.366734,5.69808,1.0941443,-1.1180787,-12.674111,-26.442955,-5.8289413,5.2052364,-7.3999596,-2.0561743,2.4258194,-11.778735,-16.906605,-11.190647,-13.348331,-10.632042,5.2271204,-0.505888,-24.18534,-21.772312,-6.4344435,-2.288608,-1.610074,-5.948725,-11.282452,-15.1103115,-13.767361,2.2010841,6.5673485,-1.5085545,2.7980208,-9.218104,-29.441788,-18.979053,-9.6567745,-7.5919237,10.760105,15.261568,7.737244,10.682295,-5.134748,-28.152615,-10.308564,24.17191,30.232246,9.185219,-20.541824,-22.286594,14.067605,26.11298,4.4992213,10.211131,19.080296,-3.1845322,-1.6337013,16.180332,-3.6199408,-15.896913,6.7260146,11.276884,3.3150434,8.163218,-4.37202,-19.827398,1.9901686,27.185493,14.61822,-6.396613,9.420509,25.637642,-9.039833,-19.26762,25.395824,null,10.108414,4.209633,-4.0021276,3.212734,4.4299507,-1.6732249,-0.730265,2.8545358,-1.8806187,-2.1446233,10.381762,9.831499,-6.330742,-3.5482469,10.081459,3.3861115,-4.5006695,0.28968,-3.0117111,-6.486994,0.028740406,0.58059835,-4.1166134,-8.083065,-8.04519,4.172271,14.005438,7.833103,-2.1015825,-8.006843,-11.268511,-6.048557,9.605396,9.940865,-15.063161,-24.155838,-11.842924,-7.806197,-1.4608138,3.2502315,-4.1009755,-1.732234,-1.1615431,-9.878174,-8.624039,-9.997821,-12.882254,-6.421641,-3.6454442,-2.2595484,-5.499332,-9.422205,4.7686296,12.41825,3.6741486,0.22064304,-5.975068,-8.270344,2.300386,4.510103,1.2383014,0.5876796,-5.7456093,-14.685486,-18.726414,-10.486643,1.770045,0.6192217,-7.1486416,-10.28057,-0.18638372,21.452034,21.637177,-3.2879555,-11.212931,1.6466722,-0.39063692,-13.969183,-6.0449467,10.149638,5.239956,-3.2994595,-0.6012111,4.515478,8.84954,7.092374,6.790349,11.505161,1.881795,-8.2721,1.5644467,3.9084556,-11.082001,-6.380412,17.731857,8.931187,-19.331387,-6.847284,8.3975525,-9.767161,null,-5.9049854,-5.9842653,-0.611166,10.1416025,6.535612,-17.930655,-10.575151,14.431342,3.5347939,-17.498974,-10.996615,4.29392,-0.3430829,-10.295771,-3.201652,1.745975,0.15635443,5.167248,-5.0202065,-23.25819,-11.250765,5.137691,-10.624412,-19.546005,3.059621,12.062769,-1.6596785,-9.007046,-15.607947,-9.0573845,18.945602,22.413427,4.21343,-0.5375004,-4.2201686,-2.8207707,10.494772,10.427671,-0.35094213,-5.278865,-3.3761768,2.9364014,4.6893797,3.7937949,9.100237,15.117511,13.583722,4.221714,-1.1176405,6.0827518,14.489033,9.541123,-3.6395037,-1.7059822,8.977571,3.8260913,3.1747794,12.204083,4.0166545,-6.209526,-10.06208,-12.5087805,3.4611359,14.61692,4.130252,-1.8046165,-9.059614,-13.139746,7.0616837,20.382046,3.274582,-20.188908,-21.960108,-0.21006584,15.78685,8.828518,-8.130806,-14.304299,-1.94135,4.1966248,-3.1934443,-3.3367968,-5.883042,-6.772541,8.113466,7.16671,-5.8867464,-0.79704666,0.03753829,-5.012187,2.7291803,0.7390661,-5.0645323,9.958461,17.185785,1.8693786,-5.1749682,2.3498468,3.4806125,-6.45049,null,8.696672,0.51553166,4.508175,6.769497,-1.0454984,-4.086649,-6.698284,-4.9576626,1.020709,-8.082701,-12.386049,7.3628144,16.248009,4.384093,-0.022104263,7.5513687,15.195898,7.0240397,-9.158958,-2.7606673,7.5769396,2.777675,10.4657135,17.732891,0.27187443,-20.296072,-18.702307,16.409979,38.83946,4.748929,-23.879932,-19.467876,-15.051594,10.251562,27.626007,0.63069296,-2.0275764,17.562183,2.9373367,-2.763534,12.812908,5.5598645,-6.4052315,-5.0346622,-4.328128,-7.2481914,-20.819614,-27.304634,-8.358362,-3.8830218,-14.589734,-4.5394783,-7.7008734,-23.857714,-15.362202,-24.089157,-38.312847,-6.930631,8.975351,-4.4754972,2.265014,-3.2967818,-17.504345,-3.3155546,7.4142165,2.6383362,-11.046988,-29.092363,-22.941654,-8.385238,-2.0891151,10.317291,2.2228346,-14.057402,3.3918505,9.871638,-8.640261,-0.55279016,6.059808,-13.556241,-4.6846876,18.33757,8.843182,1.5981569,0.44017994,-10.798982,4.191186,14.670299,-5.4302826,1.9699531,8.536721,-11.199918,5.8587055,16.948065,-14.9072695,-10.495932,14.1196575,0.95444083,-11.870219,-4.0704637,null,16.316212,5.155514,-11.08132,5.709352,7.8375263,5.2899103,13.323822,-0.67404306,-2.8642645,12.416517,0.36845693,-3.311213,7.997698,-1.7479794,0.6690403,12.783456,-0.7391994,-8.591661,7.208042,16.854893,7.0592103,0.4283476,10.414476,9.009289,-5.6463356,-4.6055255,7.4601173,19.572998,19.867985,4.118695,7.7959194,27.32204,18.786255,-3.0853662,-2.3544972,5.3183084,-6.519678,-13.132667,7.257613,13.201835,-3.4337728,-0.64427876,12.815347,16.524216,14.928198,9.7973385,13.46356,12.331616,-8.258626,-10.6618,3.9343615,1.4164963,-1.4010692,2.283296,-1.202878,1.6783781,9.769445,8.129349,2.10113,-4.4439964,-6.7946315,1.2808547,0.03360939,-16.894417,-18.215435,-3.8530054,0.2266562,0.11176592,0.8157692,-2.8335915,-2.9124916,-0.987236,6.4930744,18.247986,6.2464294,-13.783587,-7.8020906,-2.1423328,-8.383347,-4.177004,-1.8163402,-6.6145263,-3.2782025,-2.672465,-5.2810383,2.7433314,2.873003,-12.155285,-16.158508,-7.0240498,-0.96911335,-2.364119,-7.8541837,-7.428858,-7.4770947,-13.791803,-8.101627,-2.332109,-6.665996,3.914868,null,-3.0351005,-2.1489735,9.632623,2.7713027,-1.0410593,8.171747,3.070307,-7.501277,-9.257441,-3.4704423,2.3592017,-10.211916,-17.491714,2.926327,6.128523,-8.684243,0.56484795,4.110912,-9.435198,-0.2651062,10.800248,5.8308697,4.67418,-7.305958,-10.719915,15.612713,8.097605,-28.14553,-19.167639,8.6488495,11.120518,-0.34018564,-16.44912,-11.568365,13.339585,16.946888,14.260486,18.664534,0.8779292,-11.201083,6.261845,14.991476,16.123735,18.812672,2.9228792,-3.2319927,9.513795,6.583341,9.14188,18.183475,-0.36865044,-11.544725,-6.346451,-20.284962,-23.398714,1.8181032,19.360004,13.545532,-3.5688848,-0.3918625,17.034115,5.7747493,-6.29515,14.688468,21.503342,-2.5553749,-8.640768,11.223259,18.318527,14.004358,11.195944,-11.74807,-22.979162,7.799483,12.792096,-13.733439,-11.270196,-1.7955284,-4.6036825,-6.1456447,-10.492811,-3.0107641,3.0861683,-7.095726,-2.1753988,-1.0610347,-18.337906,-11.491342,4.1520596,0.8802929,2.3427224,9.279095,4.03759,-12.155525,-17.718262,3.9533439,15.728555,-8.404083,-17.577808,4.0009675,null,-3.366421,-6.432314,3.918685,6.5062346,-1.3789127,-7.135354,3.6545155,5.819068,-12.884298,-14.51675,0.9685278,-3.0340915,-8.576921,10.394804,6.544315,-22.324142,0.3595724,26.375385,-18.01942,-31.228434,10.815476,-0.25442028,-29.19383,-16.144705,-8.33449,-5.792113,4.6571856,3.4996881,10.633274,19.064638,-4.0897236,-24.840683,-11.516637,2.7751255,-2.5382614,-9.067822,-12.47496,-20.208305,-21.40259,-6.1490207,6.0895853,-10.355456,-25.563734,3.6493328,30.233513,13.339649,4.001199,9.004269,-0.77818036,3.144436,15.073349,5.354065,-0.23757792,7.1141944,15.283721,24.930916,14.735366,-6.5376225,-0.5962641,8.391985,-2.6523356,1.9110589,20.033585,17.741634,8.106926,8.824666,8.192862,-0.26404428,-8.08728,-1.1989384,12.852758,13.423275,7.6817036,-4.299703,-23.344845,-15.332993,4.8466988,-0.055295944,4.2174864,16.793028,-0.6636915,-2.6327298,30.571466,32.38094,1.6546345,-4.419881,9.639221,10.322151,2.6037903,1.4662142,5.9291887,11.117274,6.097652,-8.161743,-8.690531,0.6408956,-1.8791938,-4.8155518,-0.8066969,-3.5085227,null,7.3017387,1.2840576,-6.829962,12.198444,11.155564,-5.1954575,5.070033,16.144272,10.650948,1.5889745,-8.92291,-8.507964,-1.136097,1.5671058,5.3499737,-0.26169825,-7.940632,-2.3056517,-1.2705221,0.68190575,2.4244194,-12.017813,-4.81709,12.744386,-12.668007,-29.22493,1.6354487,17.543362,-2.5685396,-18.76498,-12.582627,-0.25579524,1.2150767,-1.6559567,-6.7991796,-16.413784,-17.894604,-10.046688,3.7274656,20.527641,25.47563,21.242065,15.923091,4.127238,-7.0353956,-16.787157,-29.847942,-28.241405,-11.400638,-2.232879,-2.4635725,-6.714447,-14.525041,-11.376044,5.5001984,11.135634,1.1382194,0.9399142,13.493038,18.041107,11.303156,6.5359106,5.835808,0.98262584,-0.0135576725,11.456576,13.480827,0.72135425,-0.9503186,-1.49332,-12.050653,-0.5069976,17.912998,1.2958319,-11.094346,8.506933,11.942583,-1.4619968,5.4320555,13.899215,2.2176962,-9.604528,-0.18855333,14.546724,3.992569,-8.686597,-1.8035872,-7.1180983,-10.4106045,6.4691343,2.2087317,-8.868874,-0.11287975,1.0819511,1.0632544,0.8491249,-4.286294,13.949898,15.866379,-13.762158,null,-12.993917,5.0583353,7.692422,-6.6875687,-5.2951536,-5.3884373,-12.005575,-9.30334,-1.7840996,6.228973,6.9209104,3.342269,-0.25793862,-11.400577,-3.0842962,9.424998,-24.429867,-35.56559,11.66478,15.35944,-15.858833,-1.3090806,17.004408,0.80219626,-12.321164,-5.466442,6.1609106,5.9003754,-0.18190515,2.2308922,5.1616335,2.8981383,-2.822248,-6.2307434,-0.45749092,-1.8619785,-4.287238,14.257764,18.853333,-4.180502,-11.292265,-1.6597147,-0.45835686,-7.9845104,-10.55647,5.5211945,18.33505,13.33554,19.936932,31.006874,23.238268,14.557115,14.388147,15.959422,8.868439,-7.4837775,-5.214689,6.4512606,-4.149412,-13.546788,-1.3196087,16.11461,23.6168,17.070587,12.710646,13.062231,4.4601846,1.0023832,7.9559903,11.837601,4.991643,-12.681757,-12.24894,3.1474376,-6.548786,-14.738932,3.1009417,17.705397,17.254383,-5.6831517,-17.109478,15.133187,11.283293,-26.448765,3.5297008,32.772682,-13.219053,-29.630178,9.400305,14.708937,-5.84093,-3.162765,2.2425842,-6.064617,-6.2892785,3.00799,7.7148743,8.998882,11.197506,12.069408,null,-9.8474655,2.0809884,-0.40991688,-14.956602,-8.501832,-7.242731,-7.516096,4.121946,3.2887836,4.972665,12.987043,-0.16824365,-8.5866375,3.5852487,-2.501992,-17.94059,5.784735,33.24552,3.4078984,-21.200764,19.48222,40.66966,-1.1756048,-20.038742,8.99758,16.82588,-8.5383,-10.846984,17.63202,26.690157,1.6101367,-17.527672,0.25850534,23.534868,11.91053,0.67998934,14.436548,12.0682125,-6.0897098,-13.591001,-4.281472,27.928299,43.1042,22.937521,16.70228,14.616778,-6.572514,-18.413912,-18.017054,-6.2882066,-3.0590773,-31.021637,-28.234657,7.11407,7.670842,10.172216,31.114368,25.713095,13.984568,1.8594013,-16.372517,-15.797851,-10.755695,2.008437,23.439674,5.7392387,-19.249079,-6.8726363,0.6491375,1.1794777,11.659344,2.36693,-11.669924,3.6719713,13.109488,-17.635801,-29.041063,18.209572,30.638716,-15.482341,-9.9475,23.853748,-2.465167,-22.399885,4.9777203,6.8333626,-15.465714,-10.103338,1.4030004,-2.8027396,3.0979156,8.416342,-4.019814,-2.549407,4.4823637,-3.4411082,0.11558676,-3.5716176,-16.673922,4.40455,null,-2.9842372,-14.125372,7.3304205,8.323465,5.379698,3.039541,-12.259899,-0.51762915,8.863977,-7.8917418,-2.987249,8.175328,4.537978,0.07090378,-9.43284,-2.1774447,13.893093,-2.411619,-22.479342,-13.6757555,6.8175125,12.35298,-4.892793,-6.448436,12.48391,5.481466,-7.1242757,6.366127,10.796867,-8.978813,-20.70036,-8.849373,-1.2145841,-4.3632,11.734945,15.889464,-15.051676,-11.869725,30.426367,44.076603,24.243586,-4.0873103,-19.227428,-17.08582,-23.412788,-18.996807,9.166485,12.153494,4.2950068,30.790497,45.194435,16.878693,-1.3962917,4.51768,-1.6887412,-13.875389,-12.665215,-7.2885585,3.6794877,13.398407,8.14064,9.559835,9.592565,-17.784945,-31.329002,-9.360659,9.45914,9.910574,-7.290347,-28.964405,-24.184803,-0.28892136,8.124982,-10.813482,-24.383932,0.15030622,15.250995,-9.602461,-7.3932357,22.114685,7.1387296,-21.945192,-7.3722267,7.7160664,-11.360095,-14.210801,15.757202,20.542242,-9.052306,-17.91653,4.4327807,14.486609,-0.2357359,-0.1817751,15.641122,6.6963673,-1.078609,10.167782,-6.938798,-21.04647,null,-11.733376,0.7026801,7.390745,3.0526612,2.1226254,-7.7986155,-16.539488,-7.7881746,4.0920696,8.942749,4.9032226,1.598526,-2.2718601,-21.567291,-11.722632,28.945026,8.649584,-28.81178,8.466804,25.431915,-19.674759,-13.395552,33.26413,23.713547,-18.22179,-17.898155,18.991634,21.319775,-16.52337,-15.122002,21.111828,18.201742,-5.066491,-8.591642,-10.941404,-1.8293865,22.330744,13.010399,-22.250145,-39.220253,-43.32009,-32.452614,-0.70285845,18.574306,22.236803,28.03735,18.383762,-2.99094,-7.1619997,-6.314843,-21.24225,-25.080923,3.304347,24.944319,18.262918,19.43788,26.084028,0.5483613,-38.26107,-46.3952,-22.81198,-1.9741807,-7.7501225,-24.95234,-30.566322,-20.723877,-2.5275383,11.214571,13.764961,3.4624548,-8.522726,6.26096,31.68797,15.281177,-24.880724,-17.00846,23.323639,4.6723185,-37.360523,-0.54618835,22.997833,-39.22493,-39.840595,22.00219,7.249064,-20.057196,6.3577156,11.27641,-6.6810007,-6.3779535,0.50813293,-0.494214,-4.086054,3.9890242,1.8002495,-15.136841,-2.1240602,8.873919,-7.346937,3.9964802,null,-0.116041124,1.7171831,1.7148486,-11.144092,-4.6730065,17.249863,8.556274,-7.487315,3.4132311,6.9820533,-4.537873,-4.3073707,-3.8106728,-6.0566993,12.642851,23.953176,-6.861024,-15.179501,28.360664,22.624378,-23.72971,5.8681927,44.96409,-4.7521896,-37.6179,6.550115,20.348282,-20.919132,-25.814676,10.02082,12.895808,-12.172989,-13.823543,4.956015,22.553116,23.431376,-2.690029,-27.29626,-25.112192,-7.6253486,16.802364,33.611362,20.372065,-12.2394705,-36.90247,-43.192757,-35.760902,-22.472912,-4.8018746,11.100599,10.370239,-4.0345325,-15.11643,-23.31819,-34.653748,-35.28561,-12.674178,19.796082,41.3751,44.98809,29.158688,0.46675682,-17.875957,-13.523531,7.026764,28.18953,13.383543,-27.774979,-21.791393,18.689016,22.373394,5.147639,-2.4655576,3.464566,21.771856,8.425858,-10.796873,24.169518,28.394156,-20.486904,-7.9222927,25.712824,-4.2631655,-25.014889,-4.1975307,4.3155446,-0.82316923,-1.6328931,0.39920807,2.647008,-2.3245764,-9.939858,-6.7008734,2.7343664,4.761854,-1.9816053,-6.2869396,0.14947987,6.55725,-0.7187774,null,15.732995,0.49337864,1.6171803,18.32767,-0.7136724,-4.6559296,4.6643777,-11.443833,-3.5921955,15.486839,-4.56831,-17.617876,8.2351465,30.013798,10.703209,-22.723225,-7.3361373,25.586435,-7.068847,-42.12643,-0.43037987,20.274014,-19.433365,-13.492343,16.171347,-4.7807436,-12.97214,10.414473,4.063047,-15.555296,-13.779279,1.0372448,17.117037,20.76215,1.5496712,-32.58506,-34.7826,16.151047,41.388756,7.948977,-16.22551,-20.605686,-23.177525,-7.513768,10.740991,26.246885,48.776237,44.94674,16.793581,11.520643,31.618818,46.28122,34.656868,14.505593,18.685373,17.838684,-16.23354,-37.947388,-25.943771,-0.78432775,25.030512,20.456083,-10.996193,-19.32138,-2.6322217,22.656906,39.495697,14.265635,-12.159953,9.291495,27.777493,13.454409,-4.1640115,-5.573703,12.826357,9.90598,-17.69681,4.692792,33.462753,-13.555213,-33.080128,20.513237,15.644613,-30.48992,-9.780786,13.295738,-2.2504158,10.408816,21.141117,-1.4533973,-1.5339332,8.835141,-4.9255667,-8.577987,6.539936,9.530537,2.965359,7.4688797,3.4830337,-16.41148,null,0.3977573,22.615204,-5.7834706,-11.61921,0.012399673,-9.102467,-3.5783355,17.497898,12.710104,-11.83445,-11.260231,-0.6968317,-10.194059,1.9614813,15.568457,-12.286341,-4.64913,23.377554,-16.846254,-26.884207,30.575483,10.883235,-40.19541,3.294858,28.32056,-25.714874,-24.341642,23.450775,11.72747,-11.020284,11.794577,33.83957,29.663885,14.577898,4.2451677,10.902662,25.735514,22.507357,-7.549296,-30.215961,-15.376628,11.375269,28.362223,41.776894,27.761923,-26.020256,-65.788895,-56.33895,-40.842007,-52.718727,-58.89128,-37.768982,-21.685871,-31.252895,-36.633854,-10.312805,23.991882,33.627926,13.330958,-31.60788,-60.381824,-28.125927,26.277357,43.66172,24.434471,-11.513994,-28.38699,6.762676,43.82272,13.701852,-31.797037,-6.706668,31.40513,-2.2707186,-33.528027,6.5234637,26.040401,-13.707153,-11.320566,25.053324,-0.5614524,-26.391123,11.236111,20.633038,-10.372826,-9.08309,4.020388,1.0592213,-6.257309,-5.47537,10.549611,5.5909324,-15.5893135,-8.29999,-1.4601617,0.48494816,11.123228,-7.48114,-16.312164,11.373624,null,15.766529,-8.409646,-6.94827,3.2174187,-2.218032,5.8379188,8.269532,4.398441,9.217259,-3.313245,-6.7566233,14.660839,13.423859,-5.150051,-6.0792093,9.457562,10.161178,-15.314988,-10.072091,18.280445,-8.57941,-35.48311,0.7990236,13.999245,-15.070513,-10.754235,6.516098,0.53331137,5.422983,17.198338,10.70216,4.022152,2.916542,4.822769,17.661606,19.410992,-5.649206,-29.133774,-15.205849,30.319658,45.657097,8.722206,-21.82248,-24.669771,-22.086483,-4.86352,27.511076,49.040672,54.211864,57.292934,59.274197,52.593735,45.935852,36.756374,7.4518204,-26.990936,-39.36934,-20.646908,19.960445,41.019375,15.883267,-19.828766,-17.34916,21.441105,46.882195,29.87344,-6.9151855,-22.892584,-2.885172,3.9189024,-28.816391,-28.261215,12.094978,4.9184976,-25.219883,-1.8919892,23.634056,-4.3500986,-14.423191,22.53186,20.90653,-9.619419,5.6802263,19.744753,3.053711,8.669753,15.191753,-1.5316243,3.0069318,18.606915,4.9796553,-8.53397,2.1468425,5.107892,5.0459538,12.7466345,-6.548052,-13.350336,19.365776,10.531086,null,4.419043,5.1396594,-10.847273,1.2809985,-0.19057083,-10.303279,1.1511276,-4.7796664,-13.672514,2.686065,0.36604476,-8.553678,15.694819,14.50988,-16.698753,2.0274644,18.587975,-9.718942,6.1757264,22.024593,-21.77526,-13.879913,29.854393,7.1511126,-22.035038,-7.070319,15.793408,20.276842,0.20779419,-10.051134,-2.4580164,-7.6854515,-3.6017032,17.697811,16.733898,-4.5001483,-9.752476,11.063299,21.69888,-6.065922,-38.65373,-37.49228,-14.844227,-1.3928094,10.832748,38.03206,36.609184,-12.603342,-47.423588,-44.09232,-39.430676,-40.669304,-21.766155,12.542794,25.694538,26.187761,27.422127,-6.0462446,-44.302628,-30.478262,-7.2613726,-6.136298,-3.5633879,-9.959425,-24.996885,-14.454988,19.729294,32.122612,0.7719941,-19.569693,11.425762,23.551888,-12.095554,-6.8919096,24.508823,-4.9433,-20.801395,17.2243,-4.338752,-44.01895,-0.36224747,25.384731,-13.688202,-14.113779,18.811592,9.558538,-13.986599,1.276763,15.352085,-1.6430125,3.9118743,18.36721,-2.43308,-3.4041872,13.827569,-2.5488825,-2.547191,18.69623,0.09403944,-14.255779,null,-26.68955,-3.409863,15.039856,-15.417559,-6.704097,20.18356,-3.1484084,-8.848718,16.485666,13.009866,4.9473653,2.3136127,-8.9314,1.5250468,18.475355,2.4566374,-14.62109,7.497682,20.97313,-13.070303,-15.78266,21.800251,1.2611055,-27.732006,7.834196,16.242739,-19.68589,-14.034559,6.054574,-9.590548,-12.88263,13.675684,11.593086,-17.08298,-8.160221,34.8183,49.26174,9.967829,-38.34003,-38.88693,-3.7296891,23.93207,25.331558,-8.156408,-46.17239,-40.98396,-6.1702485,13.106234,12.872489,22.668697,32.592125,14.71588,3.2995281,6.383933,-22.782415,-48.014847,-7.8209867,52.85022,51.859787,-10.279397,-46.032364,-8.870571,39.131165,34.257084,-0.765316,-6.719595,8.942321,6.0939865,-0.65171623,-2.6507025,-0.11410594,11.343697,-6.275966,-18.09001,13.356112,-3.3434944,-34.83417,7.559628,18.033669,-18.017206,0.47744894,16.49098,-7.9465704,-5.5812225,9.931368,-2.0593271,-12.461159,-4.6986923,-9.594063,-20.410233,-9.079034,1.19729,2.113793,0.01988411,-15.818103,-12.512959,5.838047,-4.1746716,-9.518347,1.1869726,null,17.220657,-1.7278585,3.566299,18.278877,-5.0862865,-6.607245,6.1177177,1.4765458,6.838418,0.5400381,6.455484,30.048542,2.114429,-9.866289,25.503433,4.405671,-21.062748,16.127085,21.334642,-5.63316,15.525055,26.942835,-18.032965,-21.335861,24.24234,15.8622055,-15.5302305,-12.1521635,-2.5189128,12.139872,1.3937759,-39.312984,-21.666908,17.650032,1.4295826,-2.7811618,22.256168,12.524332,-14.026049,-7.7231264,13.176673,-3.9962559,-43.994244,-43.57692,-5.420059,23.114016,19.979393,4.66907,8.658596,6.9093456,-21.658875,-23.082611,12.274585,22.370834,5.6403875,-2.894105,-23.242918,-51.869797,-35.244164,5.1302605,7.0403957,-14.15789,-15.89967,1.0999136,6.6053076,0.47346687,10.50679,3.8198147,-30.736048,-21.297918,10.042432,-6.00069,-25.62144,-12.001259,4.2670135,1.8448515,-18.929478,-26.81754,-8.569518,-4.5628796,-17.660723,-5.7392187,14.303671,0.8001261,-9.983333,8.273437,12.82217,7.883832,10.477515,7.622842,20.816996,22.028454,-9.656744,0.37029266,20.753685,-10.852484,-14.07044,14.661459,1.9654369,-10.0969925,null,-3.2011328,-6.149236,7.397194,4.562588,1.7567782,14.056324,-0.05088806,-3.2563734,14.703226,4.972704,-2.1867995,2.4752607,6.5803986,9.147696,-18.46405,-14.75547,25.464111,-6.3442955,-28.17158,20.40509,3.6877656,-30.336098,12.683098,17.097939,-16.543978,2.7850614,3.5946507,-17.289263,16.639544,17.951523,-35.944023,-17.585651,23.782173,-9.528243,-29.37827,-1.8205514,3.1912308,-4.932167,-4.397957,-18.044,-42.38039,-49.081818,-27.816055,-6.372511,-14.446872,-35.89614,-40.165154,-36.72506,-46.547134,-43.45642,-15.857365,-17.481003,-50.137383,-46.3453,-7.4495096,8.436116,-7.776911,-31.033205,-44.946877,-32.86011,-6.3958254,4.8125887,16.719454,21.437555,-11.573416,-17.81391,19.93194,11.078533,-21.254675,-11.419001,-0.9794295,0.22117901,16.548553,8.952757,-13.333832,14.973674,37.530727,-0.18554306,8.648552,43.419426,1.164331,0.60981274,37.864754,-11.209959,-12.593872,32.705654,-9.889447,-14.237588,22.757193,-1.6726635,1.391084,14.3196335,-1.0766943,10.334849,-0.40824866,-8.717089,15.866138,-2.2096877,-3.5153484,27.902506,null,16.340445,-6.471617,-10.766829,7.906888,-5.701438,6.4400396,11.791496,-11.8573,3.561695,3.5910206,-13.691527,-12.241357,-19.539839,14.198593,26.052885,-19.319614,12.00408,19.083452,-35.912224,13.5687275,31.064892,-30.69131,11.442724,39.826176,-18.101896,-14.479389,15.434189,5.760828,-11.178387,-25.63836,-9.664951,22.238571,11.986132,-21.263073,-19.384945,14.232699,18.020782,-6.282057,-3.6144867,5.7380276,5.775297,17.013872,-2.8715801,-54.55773,-62.131786,-28.731672,-3.8831751,15.839735,29.089964,17.603327,4.9293184,15.323835,25.97712,10.785242,-29.091593,-65.28099,-58.997196,-18.800303,2.0563836,-9.768385,-16.732428,-8.967966,-3.0537457,15.589789,31.953434,-5.9449406,-44.036198,-5.7489185,27.701366,0.20363808,-1.783081,18.260025,2.0758095,3.0017955,8.495601,-19.733578,1.8483114,19.873112,-36.914497,-16.554699,42.299477,-9.133573,-24.156067,31.703878,8.853989,-24.364231,0.0014076233,9.721674,-5.618725,-11.904538,4.516584,8.844632,-7.1437225,4.20382,7.757183,-9.184107,1.5880272,4.7025986,-3.1808107,-0.6307864,null,4.0296836,-5.6639013,4.6602354,4.12017,-2.8307638,10.464686,-2.1782308,-10.576602,9.160769,11.951632,8.265149,8.270042,14.958986,8.673004,-20.342443,3.4985719,18.398153,-29.417679,-0.1882019,24.093708,-42.664963,-14.662805,30.25911,-30.786242,-20.877163,25.005455,-10.318297,-20.563217,-11.934453,-22.53723,-0.2143569,-4.42441,-35.690376,-11.372755,3.8231354,-32.64821,-39.24363,-4.8504515,16.502981,13.962826,4.8059244,-7.8576097,-31.143307,-47.580612,-41.320534,-28.948912,-14.965296,-0.6801081,-7.941391,-27.960857,-27.100643,-12.970601,-23.209238,-47.15616,-48.787777,-48.045868,-43.777622,-1.0680676,26.937277,6.4523497,3.2365608,22.96158,8.779175,-28.896187,-19.617128,15.659967,-16.15646,-41.312546,10.458844,19.319614,-6.8866186,1.1303678,-1.1065245,17.869608,23.22794,-19.521523,6.817422,19.957436,-24.724848,17.449368,26.98163,-28.01823,9.200463,16.497835,-24.276161,13.343728,24.872038,-7.14795,-3.4231157,5.8896456,7.396038,-8.246742,-8.570441,18.590528,6.0709367,3.6522188,22.853674,0.64210224,1.1926775,10.706368,null,-0.44709373,-6.3531923,-4.528149,10.198307,-8.292749,-12.851513,13.66135,12.92919,-9.84677,-14.57259,1.7559834,-4.1865435,-13.824324,10.155788,0.82962227,-8.724834,20.640274,-3.3901978,-6.382757,27.737595,-13.866846,-1.9756813,41.38853,-19.821413,-11.756757,38.196854,-8.774639,-5.401998,24.679768,6.7484217,21.184803,2.2424438,-22.673777,23.067303,3.4590898,-52.387947,-14.693676,26.698078,5.3195324,-15.385914,5.1048126,29.49181,14.904993,0.89974594,-5.0183907,-34.223915,-37.789787,-6.3459644,2.660429,-16.83498,-36.705154,-25.090567,-2.425869,-25.361588,-53.93611,-30.375267,-1.6107445,-11.9233055,-19.640938,9.031799,23.169914,6.590522,11.593994,-3.3073301,-50.389442,-26.66885,9.457777,-22.830616,-21.100885,3.8187816,0.3810196,16.600012,-9.007608,-35.854076,22.180962,2.9735963,-45.157433,28.528288,24.05785,-46.64624,-0.14731121,13.947336,-27.893036,-1.9086056,10.148099,-3.2503557,6.169881,7.0884,4.0933447,-4.370939,-3.291369,7.000206,-7.619316,2.0644197,19.02747,-0.47915173,4.2310076,2.2908425,-17.28072,4.4655647,null,6.585548,-11.159848,2.3950868,-5.302611,-3.0510225,11.058893,-3.444553,0.031686783,3.9378235,-3.2320054,4.762128,-8.55101,-12.43552,-1.8671522,-8.617031,8.088007,-3.1025863,-22.368553,24.209614,5.9150424,-30.825153,27.252205,9.650873,-34.718594,23.413336,15.339642,-34.056896,2.3645947,23.62767,4.819246,-3.6868396,6.9976816,25.024624,-19.681318,-48.47825,24.567867,29.703882,-36.02574,-0.13476372,44.569016,7.276025,-7.150379,16.763887,19.150452,-10.54644,-29.4627,-5.0300064,-13.953445,-62.712906,-48.986618,-12.112657,-9.113508,-12.189838,-26.118818,-5.671278,39.04271,20.604427,8.110477,36.08812,33.107735,19.61395,-1.6193352,-14.596993,3.5400105,-23.81475,-43.999367,0.9134474,10.921541,-0.6629462,-6.999271,-24.873222,-6.969757,-9.234636,-23.992989,13.027907,-4.1785517,-26.61467,24.128704,5.674864,-26.703058,10.819929,-5.78903,-28.165115,7.5509157,5.9378824,-11.401338,0.3584814,-0.9739902,-11.400568,-7.8204474,-4.270342,-12.829712,-13.959761,-5.120922,-10.263824,-13.578707,-8.804781,-13.409013,-9.60301,-0.2614255,null,-9.003641,-3.6718936,-0.28091264,-4.89802,3.7919235,14.164416,4.3978558,-9.427553,1.5931993,12.753984,-7.816987,-10.387029,19.570007,9.538734,-11.925041,8.971485,0.22756767,-13.788188,28.844093,22.368896,-10.778032,23.712072,17.795538,-16.338505,11.998302,9.767185,-11.772745,9.783484,7.650707,-11.44124,-12.725669,4.036684,15.469346,-23.461136,-19.99394,25.428047,-18.96983,-32.69941,23.926395,4.6109734,2.520121,44.444218,29.866817,39.797134,60.1839,34.837326,41.619705,50.38939,38.72142,41.15076,13.498451,5.7146664,50.37272,47.337425,14.328615,14.504154,29.807354,46.285744,26.357996,4.4248,39.975388,9.194386,-79.13179,-35.464783,25.164116,-33.06047,-38.63407,27.652578,33.497665,-3.9936838,-25.162386,6.808465,20.637619,-24.485369,12.046259,47.287643,-23.707363,-5.6481156,32.685616,-28.804623,-7.197548,26.200481,-14.003177,9.671042,14.100634,-16.008001,12.915953,5.485919,-6.757616,22.545328,8.559273,1.1210763,11.997923,6.414791,21.329494,13.269962,-0.9118366,22.01019,16.258678,7.151766,null,-0.44934177,7.7770834,18.85262,0.6155038,16.624933,15.452326,-0.25060225,11.160653,-1.5905089,1.294929,8.876017,-11.593777,15.676715,18.509298,-9.712906,22.826385,13.091191,-3.7828999,29.519932,-4.5604763,-4.0745273,39.907757,-11.738918,-14.997164,24.813463,-19.485285,-17.006262,22.749748,3.3332174,-13.283004,-12.885867,4.474675,8.315204,-30.783455,-18.203766,10.813636,-25.248072,-27.67338,9.279344,4.366684,-3.459033,13.878983,29.107876,39.78251,42.280293,30.09528,16.09103,0.8542671,-19.410263,-29.804028,-36.747665,-22.05941,36.657875,59.774513,38.749912,44.590225,38.376522,33.950584,43.714706,-6.906658,-17.749947,30.157661,-5.793039,-18.035583,37.67973,19.175018,-0.44115925,20.391327,0.7877064,-5.7981706,19.77309,30.380024,18.18356,-0.89487314,18.032288,22.76373,-12.970308,11.607462,28.109344,-16.064486,12.302221,44.66612,-0.50080967,8.458242,34.61657,1.6791835,7.702451,25.874975,-1.6244116,-1.0781088,14.546822,1.0169878,-2.4808607,14.418026,24.634695,7.2149177,-4.842781,18.047733,8.607305,-14.503023,null,-11.302648,16.183773,17.652555,-12.715855,-6.362061,9.70043,-1.268467,-15.9373665,-1.6425858,12.794679,-0.17436159,10.607861,16.73274,-19.298817,-4.2300425,24.749468,-12.385892,-5.2117314,31.272251,-5.234885,-14.696886,23.17,7.218809,-11.23036,12.903021,18.340916,-3.8512535,-9.415731,7.548848,-4.4579973,-27.744473,-4.189066,-2.0227418,-21.35839,7.6984854,-1.9225836,-29.049988,12.297119,12.024222,-8.99807,22.606075,14.227772,17.27879,58.7381,28.955343,7.6420097,45.69198,51.66987,36.440063,33.785847,39.271706,35.16674,21.92804,36.171745,39.15534,33.468056,53.894936,21.675602,-19.413132,-8.3066025,-35.01635,-46.184715,-3.137929,-6.8394585,-25.068745,-21.138882,-24.506231,-25.309185,-30.26858,-30.845436,-29.020813,-21.310762,-1.2791934,-24.22063,-24.094837,20.02489,-15.119156,-23.140633,28.180012,-5.6938353,-10.913631,20.009735,-20.608997,-9.588736,16.41301,-16.551434,-4.798282,5.7089195,-8.136296,0.38808155,-5.559951,5.6939964,12.036623,-13.3097,-2.9817653,-5.2225904,-13.089213,14.584736,-4.784897,-9.404595,null,-12.581541,3.052979,15.9260235,-17.770302,-9.353071,4.049386,-2.041593,3.8461704,-6.3489194,-0.30383444,4.3545065,-11.870108,2.4284172,-9.321813,-12.872683,30.86906,1.7497973,-18.726974,11.673381,-21.432165,-13.772152,12.963262,-37.00941,-19.644825,13.798665,-18.993523,-2.9379725,1.7400532,-35.473114,-26.826725,-17.70976,-17.729618,-3.0358346,-9.926095,-30.708904,-30.98695,-10.738358,-25.161068,-47.87796,-18.020569,-19.936996,-14.889019,51.093338,20.116823,-18.512527,63.730286,75.16336,3.640091,-42.150375,-80.626274,-70.99759,-39.391235,-9.516443,46.56548,35.336643,9.062208,43.7341,15.589605,-25.296917,-9.843149,-30.186283,-39.025436,-21.876638,-30.061575,-4.978958,6.1816263,-24.677647,-7.917979,-0.39664054,-25.19334,-1.4579353,12.9357815,-12.928303,-11.718806,3.762618,-1.6724596,-17.041155,-12.8406315,-4.0270514,-29.754349,-18.64555,30.654211,-1.6550722,-28.04683,17.956284,-1.486886,-25.69914,18.970676,3.242867,-27.665417,2.5087514,3.7805107,-10.322031,2.3022318,6.065606,-0.15722084,-11.050041,-12.106577,-5.530223,-13.255174,null,-2.8131027,-6.0714803,-11.475849,-1.2751923,-1.5451746,-1.443985,2.5924892,-7.9637012,6.5669327,7.9980373,-15.499679,12.108391,11.97934,-31.214748,-10.280758,-6.847375,-40.125446,-7.598173,13.6239395,-18.20234,-21.448086,-4.5056267,1.008358,0.22836685,0.5950699,1.475977,-7.366764,4.4570427,26.82814,4.9347363,-10.108774,8.906338,3.8213787,2.6917782,14.390583,-5.9290714,-15.575928,-15.881176,-38.78266,-30.738028,-12.020119,-6.2751236,28.455814,35.464523,28.662811,65.22015,30.989403,-44.8789,-18.449554,34.283432,34.137833,-0.24938965,-20.157501,36.10598,66.199036,30.004238,52.374023,59.615738,-6.0748634,-21.208345,-5.771969,-16.852478,-14.424749,2.0800529,1.6367788,-21.427444,-18.36551,4.870905,-10.032931,-20.22182,-19.49442,-23.13426,6.040452,-0.493016,-23.496372,7.836395,-1.9750204,-9.385388,36.821667,23.299675,9.575153,20.120205,-11.947635,-0.51086485,14.952144,-17.57966,-3.530713,4.993288,-12.960244,5.986841,5.9038496,-9.320051,-6.464299,-8.131174,-1.945817,-4.310913,-6.1945295,10.165487,1.2346649,-3.8331728,null,-2.3056402,-3.4601197,2.4365206,-1.8468451,5.2962093,3.78823,-1.5324974,9.404607,-0.03554344,-2.796402,-1.6844025,-23.97925,0.6196213,26.09182,-1.5478129,7.3048553,19.766376,-3.6199427,3.1392384,17.305859,17.609226,9.495228,-8.283138,4.6291294,9.909069,-11.763464,-0.8701,0.9830265,-18.19474,-9.46604,-11.074036,-21.29023,-14.530098,-22.615128,-19.344208,10.775162,8.543182,-17.156761,-10.562256,-0.05620575,-17.189613,-13.893486,12.822609,24.442993,27.697212,5.6154633,-17.941269,15.143677,23.782959,-22.605469,-18.579346,7.138733,-4.0449677,0.7170563,3.7596588,-25.786388,-30.981133,-6.719322,11.147846,19.378784,9.367638,4.833065,18.144608,-3.6600838,-18.444931,23.447533,27.847977,5.7876816,23.357065,14.401068,3.9284134,20.713242,-2.1374283,-3.5633602,18.19487,-9.116207,-7.485677,12.409557,-10.032137,-15.179691,-10.242123,-6.0731945,1.5317488,-18.798725,-10.150278,5.215022,-26.39611,-9.936313,26.347532,5.7158012,-2.460762,1.9830346,-5.63232,-1.1573353,-3.5379696,-4.4305,0.97687244,-4.2014084,-1.3034997,2.9198818,null,7.5610867,-2.400854,-10.229721,9.212818,3.8425598,0.30221176,10.525517,11.008899,10.886925,-8.4103565,-6.705241,14.613721,-7.22221,1.433939,20.552114,-13.7817135,-0.72911376,12.834337,-21.472275,-13.256554,-24.4192,-37.04038,9.315849,1.7843981,-8.387486,27.356146,4.0125113,-9.725481,21.814117,23.24706,20.24144,7.891345,-5.988592,19.82398,25.545849,-3.4886856,-4.7468867,19.153269,14.837422,2.1125145,30.78531,7.939003,-67.536644,-48.01638,-29.486694,-75.88103,-32.927536,26.390251,-3.7965698,-41.66246,-46.41797,16.853333,58.378468,-32.55497,-71.33354,-18.173134,-36.52401,-38.445107,12.628948,15.539249,27.482025,43.448967,16.205494,12.673334,6.9858017,-16.94558,-1.3202972,-1.6504478,-15.171118,12.356888,0.4086628,-33.352516,-4.8663845,11.812719,-3.8474884,2.9676704,2.8989248,-5.673689,6.551073,24.620703,17.568024,-10.468813,6.2777147,37.14995,8.7262,6.364212,28.770868,-8.975637,-17.018963,13.413424,-2.3054,-5.798479,11.020339,0.54094315,-4.278536,0.5010843,2.860756,8.493102,9.134619,5.1334076,null,14.974893,6.2769003,4.6969767,13.269209,4.087386,-9.362154,-0.64424086,10.660747,-7.564436,-2.9175599,25.36855,-3.05517,-16.326157,22.389057,5.0817986,-10.366975,24.845148,0.9192972,-29.657133,12.816233,31.500177,7.6005573,9.558486,18.465727,1.9243355,-4.3706093,18.31239,12.009914,-16.270931,6.779261,23.6935,-1.6627111,12.399029,22.221384,-4.145914,11.065283,23.584038,21.897293,46.75973,26.010378,9.722345,30.020203,-22.87518,-47.635536,-4.620365,-36.36889,-50.462646,7.73129,41.825165,72.308105,73.71781,42.13883,2.6849442,-82.787445,-70.715836,23.416607,-22.844234,-57.856316,15.761106,21.576778,20.55764,49.068604,22.188663,12.936316,32.722137,27.691002,14.782895,6.843942,12.107786,18.760221,31.317205,33.311108,-0.84759235,6.0249314,19.596336,-11.07387,19.97398,34.584785,-12.018082,13.906555,18.738327,-15.146952,16.012161,0.38565183,-27.638565,13.8897915,10.825731,-4.711445,8.45435,-2.5233254,-0.46558714,3.2015843,-1.72187,4.7868214,-2.4291093,11.386795,17.573786,-16.915388,-5.2632833,10.276733,null,11.93602,4.9024215,-11.02273,13.190001,2.4451785,-0.11001468,10.846001,-8.00473,-2.327705,4.228323,3.577858,10.704025,-10.442834,4.4493017,18.708038,-18.077888,8.478593,19.262512,-19.998003,13.485146,3.3403087,-31.20758,23.411608,12.131386,-18.612463,30.7549,22.59518,0.22233295,25.85159,28.00647,33.169792,35.07699,20.182674,24.56328,25.696945,19.908089,6.9151144,4.6751366,39.564148,41.687572,14.217918,4.361824,-23.606436,-41.35228,-42.053734,-52.379955,-27.446804,-8.472343,-33.461098,-41.86843,-34.555008,-34.755974,-43.020256,-41.93345,-22.880604,-36.681778,-48.02337,-21.27131,-23.618813,-13.894319,10.2741375,-18.590332,-7.5829086,28.376804,-0.013137817,0.82604504,19.548609,-2.830595,10.958234,26.841852,-0.26616335,-3.7107058,9.513898,4.1311207,-14.172235,-14.3730345,12.61094,-4.691555,-28.283424,15.459089,7.2384253,-38.688095,5.323765,17.662058,-27.188532,5.553978,23.274586,-18.149923,-11.045499,-1.8924875,-14.724883,5.7453084,15.464815,-0.21929264,-4.615906,3.581914,7.26227,-12.080151,-13.662146,7.458691,null,10.236023,-9.092344,-19.748022,-0.60186434,-3.7701163,-20.706404,-17.552454,2.7490935,0.16783619,-16.50791,-0.97318983,-2.006763,-26.727245,-6.252187,-3.057479,-32.280262,-6.7764297,-4.335663,-43.857994,-8.728069,15.883976,-23.94481,-10.777765,8.498443,-19.365753,-15.891422,-3.1588578,-18.309076,-31.538963,-21.004538,7.9403753,-4.06438,-21.449553,4.709126,-20.574598,-34.696545,23.357557,-0.67688274,-28.320381,27.958502,-0.50809884,-46.515793,-18.73766,-42.167244,-63.04908,-36.87525,-48.253918,-36.155087,15.639492,29.49396,22.209156,12.426538,4.839775,4.1782646,-26.566732,-60.140347,-41.22712,-16.460258,-17.887398,-4.980885,2.9210663,-3.2666874,20.70539,22.71921,-6.140411,15.453848,28.640463,-4.12214,-6.5464506,12.532761,19.274986,-5.507442,-24.543419,21.657349,18.953577,-23.455242,18.113443,6.128957,-42.326183,8.151014,4.6782303,-31.452278,1.5437183,-13.538383,-20.48563,9.001722,-18.766312,-16.492126,6.1170726,-5.9240236,6.3817253,-0.82579255,-12.535724,3.076121,-16.825981,-16.172783,-1.40521,-21.734964,-3.4527187,0.6645241,null,-7.760539,-10.66539,-24.181292,0.2560606,-11.188128,-24.659134,-3.486882,-6.982974,-3.5249114,-6.3550386,-20.513641,3.413416,-2.7948043,-13.947447,10.341305,-9.567369,-7.818414,10.3996525,-23.706898,5.7247415,28.530315,-26.899624,-0.380751,20.629662,-36.20141,-13.991978,16.98257,-14.570066,-5.882834,20.267662,6.787404,-32.326195,-29.773825,37.99922,32.03515,-22.87696,34.40766,71.02446,-7.313279,-33.313038,-7.9426003,-24.483093,-38.95443,-36.602768,-21.198658,-3.7032127,-35.188053,-51.13346,-13.1384945,-17.336678,-45.553898,-49.850075,-53.468945,-29.766174,-27.626465,-66.15403,-45.778515,-25.875307,-38.90806,-6.0616245,-3.9714699,-14.87526,29.841549,12.750818,-18.945255,22.064747,19.80077,-12.088103,-2.5148206,10.907593,11.056646,-10.374268,-10.274536,11.972034,-12.740521,-8.956612,19.063232,-21.331543,-19.065594,17.029205,-25.080147,-26.509998,17.842346,-4.257477,-9.7728405,13.519866,-10.438174,-17.662483,7.289776,1.1039639,-10.120547,2.1432543,9.75313,-1.2423456,-13.710515,-4.920371,4.766864,-3.5414376,3.8619978,11.40749,null,0.66896915,8.198667,13.564941,10.062431,10.530878,12.646435,6.7869925,5.84667,12.247882,8.235542,3.6586304,12.503561,4.8509865,-3.0139942,12.995628,-4.147081,-10.159751,29.956068,4.5171833,-13.628762,33.40565,-3.5594409,-28.141361,29.70279,3.3803291,-17.080555,27.675875,7.6892214,3.0751152,27.381493,0.9086795,-3.503919,-3.8330853,-7.5935545,36.948692,35.779385,-4.733223,1.9345474,7.692631,-12.855217,-39.565315,-39.46389,-6.5256186,-18.322578,-38.07618,4.262516,28.754736,14.041008,3.8644161,10.003077,50.40383,59.32534,11.123735,8.071749,32.51007,7.4265776,-21.395163,-8.823599,10.105593,-16.467857,-39.872353,11.584246,24.281927,-38.217644,-11.8382015,47.14833,9.898592,-18.296734,-6.4873953,-4.3235626,-1.6946192,-22.787437,-4.9205666,38.62139,-16.504896,-25.333904,41.20816,-11.099724,-31.555513,35.853867,-6.419154,-29.239817,24.149366,3.0776827,-8.819994,11.715253,-0.5570111,8.926192,9.452532,-5.914349,5.233793,-0.06512928,-2.835001,4.611121,-5.857227,1.3241348,4.530287,-1.7955146,8.249781,-4.725444,null,-1.5490117,19.650448,3.2566733,-4.1925244,-5.3466997,-15.283429,-1.9396614,0.8450569,-1.6791792,7.601845,0.1547494,-1.7787553,-7.594656,-10.886659,8.851889,-6.811016,-2.3286705,29.94123,-12.845875,-4.453973,47.08271,-25.255463,-37.350163,43.1447,3.7440083,-21.656914,31.162304,9.94532,-16.131968,-4.864604,-1.5873008,24.250517,15.250555,-10.026892,34.865894,43.10743,-6.381399,-2.2404544,0.7152653,-31.132648,-14.142049,25.663576,18.044395,-2.631445,21.445229,52.49086,28.56245,3.8999119,27.570427,40.41941,19.650316,-0.9467983,7.4567146,40.574657,35.60147,0.8702526,-2.7713585,-8.9856205,-25.107864,-9.74683,10.036238,0.06584549,-19.832193,9.943026,50.95249,3.7836447,-27.44631,17.108969,4.144086,-25.468678,-13.754736,-16.712418,4.0514154,2.882619,-30.28193,9.902787,13.159386,-34.04746,2.462266,9.762848,-23.455727,4.9881372,2.1114855,-17.524992,5.530995,1.5857794,-5.3299804,7.741419,3.565759,0.8119798,7.288373,9.883432,-6.4972787,-17.055725,9.2588825,7.668889,-13.82897,5.4334927,8.720814,-2.9538538,null,-12.502283,-3.6292095,-2.3078527,-22.909569,-1.2684131,-1.7048013,-17.043882,5.4775596,5.073549,-8.23493,-6.0534506,2.088784,8.055729,-18.568106,-9.268564,23.957579,-14.693473,-10.116549,23.528519,-26.048573,-15.501825,22.874071,-20.451542,-6.8017855,18.05833,-24.583002,-18.307257,2.0785732,-1.9007168,5.8887396,-15.312115,-9.040367,38.21693,21.643074,-8.1719885,14.3631525,25.803114,-0.807539,-26.126293,-16.042084,-2.3313518,-14.623449,-2.0204163,33.077694,43.425064,49.15281,49.5405,24.433601,9.977636,21.444754,25.292212,10.160365,2.724907,20.43277,40.789875,39.65617,28.061523,24.603897,19.450968,-4.1447406,-26.204842,-19.062296,10.995222,36.38839,23.04476,-5.0125394,16.175537,35.589928,2.6291888,1.9392319,24.757915,12.068232,18.6045,10.567537,-21.23613,20.551514,28.201458,-30.765797,9.439656,39.64682,-18.959763,-2.5953484,22.63135,-14.792457,-1.006279,19.62006,-5.5845194,-17.096611,-10.728857,-2.7558665,-9.70684,-8.998414,13.609402,-0.17143536,-12.147781,5.9801483,-7.3112993,-6.896332,11.84587,-2.2213967,null,0.4964311,8.285383,-6.177371,-4.0647335,9.838734,-8.34787,-5.1385617,5.7111816,-8.781599,-1.3529153,12.562346,5.773286,-8.449135,-4.138473,22.184853,-5.501298,-35.32759,21.449066,16.016838,-41.445534,13.572802,39.593254,-22.083584,-4.7900515,21.936605,-12.813283,-5.277662,3.716796,-21.72927,-1.2552643,10.456079,-26.723888,-4.557177,47.453064,13.141632,-37.646507,-19.440952,5.4181294,4.3784037,11.814958,16.185352,4.8658338,14.182825,51.28562,66.34346,36.995865,-0.8027096,-16.09198,-11.973652,-7.5581055,-17.25028,-26.366152,-12.884881,11.401547,34.719353,57.212875,45.12005,-0.074323654,-11.077379,2.835209,-6.0565796,-4.9087563,5.439781,-11.182842,-12.810306,19.387487,24.558594,-12.181369,-22.92455,11.113808,23.589703,8.711267,-5.649452,-15.418255,14.116272,16.619001,-39.03626,-8.513618,27.212036,-34.949364,-9.891317,37.744274,-20.628204,-10.896238,20.779636,-23.4207,-9.948675,20.79559,10.69472,9.757102,-8.116864,-2.580415,15.7160225,-11.120788,-7.434642,4.008746,-8.107517,13.476646,3.2078857,-22.867027,null,-30.00821,1.377574,5.250823,-17.201159,6.423112,3.309792,-12.150171,-1.2122507,-11.393612,-3.4493198,0.82338476,-18.933626,10.779472,8.23093,-29.568434,7.7444005,10.077522,-32.3796,-3.5159922,-0.3432424,-33.60914,-7.344228,-0.9419246,-34.22574,-20.89376,5.463872,-4.4938927,-14.426882,-7.941711,0.27897644,16.469654,17.15483,-14.701531,-12.605461,20.959824,5.3816137,-21.359634,-9.128136,-0.11659336,7.5024567,32.73582,45.773453,33.666557,10.159291,-0.7444992,17.794031,43.69108,42.4054,17.534548,12.615728,40.0791,52.077576,36.783836,35.91133,41.93421,22.802067,8.898644,29.642319,52.236885,44.36967,17.455563,5.762354,8.42468,-6.195405,-5.023755,28.482983,14.477259,-21.396984,10.705362,32.51599,-9.759621,-19.122364,8.304861,6.354556,2.0659213,4.0117664,-13.123349,-2.956174,23.132895,-3.3476896,-13.588188,25.024006,8.976831,-21.837994,9.986539,21.133272,-8.820019,-15.998687,-1.8345823,6.6915607,-5.100293,-9.995965,3.9048777,-5.1591926,-12.910755,1.1292787,-4.2881026,-9.85793,2.1653824,6.9387803,null,11.446943,1.2300136,-10.020371,10.849187,7.3158817,-19.09181,-2.7885196,8.826683,-19.419586,-25.219734,-8.286402,-3.7375855,-9.983647,-14.062874,1.5551176,12.796959,-5.099824,-13.294485,5.803462,18.658487,10.270956,6.679776,22.3753,23.09207,0.7645149,-4.8268046,12.217947,21.601418,6.8172383,-4.0142307,15.601683,24.72574,4.22336,-7.558959,-10.506136,-10.136955,8.3277445,19.555077,2.886219,-11.096396,6.9991255,38.47362,43.34211,24.12753,9.429253,-3.988635,-20.544832,-10.776587,22.612541,23.171188,-8.054806,-12.339235,-1.475863,-14.800095,-22.007608,8.132002,43.819637,39.72828,6.0909996,-8.978634,2.9220076,7.264883,-11.010835,-17.548931,-2.6204138,-10.6623955,-11.685321,29.591171,30.720913,-6.248233,-4.708928,1.7929585,6.530056,17.803007,-16.095997,-30.174229,22.26265,23.419422,-26.436436,-14.825302,8.263235,-23.652733,-19.043161,21.23133,-7.534642,-27.969532,13.726409,-0.096969604,-32.061764,-6.0039034,0.10265303,-9.307011,-3.397295,-6.2970657,6.002827,3.1494684,-19.804544,-2.1649508,1.972599,-20.90763,null,-3.303544,7.7871723,5.9397044,-3.532276,15.238562,15.204935,-2.9145145,-0.64123416,-1.7481709,3.521487,20.37137,11.744028,1.7764964,12.393288,6.087582,-9.304653,2.4329586,4.6752424,-16.73671,-1.5286016,11.569324,-21.792397,-6.934081,30.665346,-0.43347073,-10.994534,17.189285,3.1984363,-8.49392,-0.043319702,-4.2087183,0.26546144,-2.8776932,-15.107129,-0.47177792,5.031047,-24.442276,-38.09607,-3.5439,36.21097,17.411228,-39.173607,-48.64578,3.7028704,39.94419,17.094852,-6.183349,2.2462916,-4.6856527,-23.038328,-15.0602,-4.345173,-8.462014,3.4075322,34.660698,37.58556,-0.722559,-26.03962,-11.928537,16.435978,37.075375,28.256672,-11.414636,-39.71722,-27.792908,0.7142296,7.6716843,-4.5041885,-5.8740244,4.409748,4.3780985,-0.20996284,11.509384,12.905325,-12.710745,-5.981497,22.10559,-2.583468,-21.59382,13.55505,14.205452,-20.086056,-7.772111,16.87294,-1.5725288,-15.90416,0.9964423,1.9379768,-6.2161827,0.49387383,-13.4142475,-17.346794,13.12919,0.33069515,-22.033691,13.1379795,16.137386,-17.67539,6.0610924,28.710917,null,10.621099,1.4911337,-18.026514,-2.446619,4.8889174,-14.204244,-5.375281,0.45314956,-16.658592,-3.8550634,4.7050366,-14.187321,-2.7147756,13.641333,-9.728739,-18.43922,11.242522,13.259373,-17.134247,-2.3483882,33.6557,11.255948,-14.713108,6.5326824,7.6630673,-13.124058,-1.2167478,5.952098,-16.77742,-11.2491455,15.41483,-1.885603,-32.66723,-16.21203,15.390795,17.564297,6.016736,2.7751722,2.97197,8.170687,28.913168,35.621696,1.3893237,-30.675116,-28.7236,-17.415215,-4.6114235,19.208456,38.777515,39.655807,39.27799,40.03704,7.8292212,-36.758007,-35.173523,-8.563938,-0.59684706,8.967159,36.972874,45.05304,6.2292366,-29.515123,-16.273594,8.417554,5.5894413,-12.530945,-16.90789,1.2324526,12.041357,6.8911037,5.4857264,-1.6867998,-15.79324,-15.426426,6.5052786,19.767775,-13.13335,-28.605114,15.772582,15.178397,-23.144789,-4.8516207,3.1395817,-19.236994,2.6701136,16.608883,-8.587822,-7.249731,5.701397,-5.7617617,-5.6580415,11.102062,7.876049,-0.13309121,6.5218086,4.1512127,2.3600063,6.5363483,-6.339721,-5.913399,null,-11.347611,-15.860251,12.903971,6.5165,-7.387182,-4.932025,-8.923233,-1.0778337,8.614453,-7.444323,-15.181461,2.363433,-0.22784686,-19.06969,-7.667911,-2.86336,-23.638836,-5.363677,13.1262865,-22.828201,-22.916115,19.084446,2.134801,-27.960033,5.2450333,23.915312,-12.500927,-10.126493,35.423996,27.385715,-9.026619,4.2622185,27.719889,6.191982,-34.01872,-45.557407,-20.266449,8.182048,10.870264,-13.045862,-37.54377,-24.161253,14.890525,32.24218,21.02977,-3.3601809,-28.528011,-42.17521,-49.103745,-54.38963,-52.11634,-46.581802,-40.636925,-20.618893,10.365927,23.057093,18.09183,13.218022,-10.337112,-40.762703,-25.958656,13.68434,20.907307,1.1720552,-14.9687605,-18.506447,-11.363527,-1.060749,-2.0455627,-17.608683,-19.896002,0.09087849,1.7072605,-11.185724,5.3912745,13.210859,-15.323737,-3.19169,36.63331,13.090681,-15.995636,10.1460705,16.05657,-9.899913,-10.918592,4.484326,4.7993917,-12.776034,-14.0734005,7.1875668,4.0675344,-9.062964,-4.8933487,-9.760805,-9.289621,1.4396281,-0.37485218,6.602853,7.958229,-12.212027,null,-15.801536,15.80633,9.584488,-17.178204,0.44441938,8.753614,3.2149897,11.863869,-0.523654,-11.777906,4.37652,7.7548285,-6.6945324,-6.558175,12.967476,11.590066,-19.144676,-10.803741,25.44083,7.0462046,-19.77394,5.7820616,11.115213,-19.702831,-5.443,25.63937,-0.19347763,-24.911331,4.875326,19.960213,-12.389347,-29.814157,-6.4816475,14.51804,6.1339674,-15.313966,-32.794693,-26.758915,17.99378,54.938457,37.502174,-0.11049938,-20.73139,-19.524878,8.473522,33.93015,26.45072,17.772863,35.8934,54.388275,48.52552,38.093056,52.14875,63.3171,24.91606,-26.184408,-32.23887,-18.522032,-8.355424,14.25322,24.881865,4.231212,-16.20463,-17.259802,-8.713083,-9.956055,-23.238043,-28.24461,-26.018797,-17.411228,-0.41088152,-4.545336,-10.244719,15.5971,12.324451,-20.120516,1.5377479,25.730362,-11.176809,-16.474457,23.761372,12.022186,-14.904318,2.0835857,3.492955,-11.673536,-0.064888,6.4165254,1.8623476,9.170037,8.124167,-6.8015337,-11.66663,1.7369263,8.179512,0.75238705,9.6732855,7.244941,-16.163105,-0.22749853,null,10.930309,-3.792615,-5.1738377,-0.21644521,-0.92404747,-4.0793366,0.4478922,2.9802763,-6.940167,-1.371524,3.937068,-15.261139,-9.964795,5.2048798,-11.825536,-0.81765556,25.07898,-8.593175,-24.673307,22.24599,20.39029,-25.516876,-11.678282,16.312067,-5.705146,-16.440596,7.039622,9.719321,-16.812803,-28.162777,-3.2014325,14.6175785,-12.55504,-40.594017,-25.316786,10.166989,25.339941,4.108472,-23.6526,-20.480434,2.2448754,26.70566,39.75679,15.743698,-18.16387,-16.446346,-10.806271,-32.69383,-43.807224,-23.236355,-7.4036593,-23.01426,-45.233322,-40.70694,-22.475695,-12.44124,0.20056105,16.38527,23.238586,17.781849,-9.2916765,-38.55077,-19.135872,32.49944,41.761562,0.73446655,-25.54665,-13.868152,2.6345382,14.626394,12.86555,-13.250895,-10.896997,18.754734,2.0564775,-14.5018015,17.843945,12.390856,-20.498014,9.668686,38.557304,0.078440905,-21.230743,10.337426,18.760612,-9.80604,-21.145327,-5.503051,9.70414,4.4471684,-6.9891534,2.842411,8.864528,-2.3033051,1.1139371,-0.45295715,-14.57971,-5.7155085,-0.73422873,-9.360821,null,-0.6299614,-4.4773245,2.2328267,4.4633117,2.5575743,-1.3793602,-3.7614393,4.4393415,9.538934,1.2531333,-3.7092876,-0.9154787,3.0886145,3.4901361,-6.1793737,1.2385569,26.500763,5.1312127,-25.443806,12.2155695,23.767052,-30.79113,-27.266773,11.838055,-7.9392114,-27.206566,-8.109374,4.5868444,-2.4484148,-22.842197,-19.98959,19.11745,24.176212,-14.027678,-23.287424,0.38054085,14.01487,10.122171,-2.6125355,-19.943264,-34.928867,-36.89456,-22.056364,2.7615929,24.717417,27.825848,16.435486,10.389973,3.8401623,-8.631044,-6.2429967,9.998518,22.49513,32.756954,38.14042,29.290443,5.850378,-21.868853,-27.026484,-7.0864162,8.677353,18.068058,20.46577,2.6918736,-12.989972,-15.047231,-12.489023,5.432721,12.396728,-12.585781,-11.67741,22.562069,17.407768,-16.84431,-3.2737508,30.949245,1.0261931,-40.295128,-6.279166,19.065857,-22.383911,-26.059914,16.113556,5.6231937,-27.520367,-12.785111,10.216286,5.198373,1.3121719,-0.5122647,-11.487373,-3.414006,8.302304,-12.599375,-19.10083,8.066006,9.489502,-4.7817283,2.8835897,-0.48825327,null,-2.5933123,8.239832,-7.525887,5.618811,13.948603,-3.2369194,-1.1273495,3.686231,-1.887284,1.9630224,6.7366495,4.2914195,-4.5190253,-0.40534163,13.946593,-6.497099,-16.838398,27.254704,31.833866,-9.314463,-1.5826192,16.905872,-5.1980424,-11.930758,10.159747,11.822239,-9.924247,-17.055946,-5.40433,1.6614332,0.08950341,-9.492394,-15.00058,2.6095035,20.17265,23.124866,24.515392,10.474367,-3.1104927,19.09367,44.075256,33.937584,0.32158065,-24.617153,-18.251135,-11.72127,-21.502232,-0.61276436,31.590761,18.478907,1.2576714,13.151865,10.155468,-11.712796,-21.553347,-22.870283,-17.482555,2.4932103,25.04673,39.772453,41.867096,18.597403,-15.276432,-18.692318,4.1307573,12.823433,8.457935,4.925093,-10.497104,-16.198586,7.849845,11.307939,-14.505005,-10.847047,11.656448,4.5858345,-18.56276,-20.123394,1.446501,4.3836513,-15.645329,-3.4392781,18.517038,-4.931572,-18.932056,8.127473,17.318697,2.9548552,-1.9031732,-0.31010246,-3.102231,-6.7180796,3.5053637,13.507975,-0.0056916475,-5.69239,2.6675014,-6.5685906,-4.8997054,11.561611,null,21.742825,1.2061067,-8.186078,2.1344209,-10.071338,-10.977085,1.8059516,-5.928915,-11.7549925,-3.6562545,6.461254,5.959802,-14.409793,-14.644865,13.315011,8.735512,-12.986066,3.5850775,20.165222,-1.3423777,-14.212324,5.338165,8.878971,-14.317781,-8.868997,22.102425,15.718597,-13.048412,-4.4464927,22.891106,27.956879,15.162062,-9.726549,-20.876024,13.611755,41.709473,17.478794,-8.970615,-11.291635,-11.573935,-8.85293,-3.8557773,2.3848176,11.381457,7.1629953,-1.2942874,3.1766868,1.8339338,-20.384314,-42.931084,-30.497421,-3.0216599,-11.468631,-16.138971,16.505941,23.587833,8.27202,15.030172,6.7489576,-27.61245,-45.13036,-27.495613,7.8497148,11.559215,-12.860836,-8.289716,7.4900355,5.2254224,15.658519,26.892092,6.318549,-13.95634,-3.2213566,6.8054295,-8.505212,-15.0907345,1.8734977,5.656295,-10.825911,-13.126915,13.249188,28.207506,-0.41011143,-17.23868,5.333281,8.592917,-4.273368,-2.3808138,-4.5383034,-1.2729425,5.9692526,-1.018868,1.1302214,5.41411,0.23977184,-0.3530016,-8.808603,-2.6575985,17.70933,-0.4007764,null,-2.1896122,10.549734,4.8560047,3.99227,0.463583,-4.993348,2.7264192,3.420054,-0.332142,1.5721049,-2.640432,0.8681295,16.53866,13.174457,-11.161598,-9.888834,20.46364,10.6683445,-22.22823,1.211976,18.14471,-22.319983,-20.843102,22.637594,15.244186,-9.752501,1.5546935,9.245621,-6.5432014,-8.304731,4.4878483,0.24630451,-0.61804926,11.908588,-1.7712944,-16.628365,2.9190996,14.41707,9.049694,10.820928,5.8486323,-9.163219,-23.714245,-24.003248,-7.1115646,-5.112158,-4.995985,22.25938,28.46302,1.5128136,-3.6457732,12.32369,13.146511,-4.2118864,-15.791687,-13.769154,-21.393589,-30.92477,-15.603192,7.4658737,13.130691,-3.494328,-20.86541,-8.76637,4.2683663,-12.520051,-23.615726,-7.606798,11.210181,5.359069,-19.196106,-19.647469,2.8118105,5.545828,-7.256207,-7.661575,4.4837217,-0.72584534,-27.936306,-19.0178,16.028767,-1.2575588,-29.267387,-3.6452203,16.175863,1.1420424,-1.6886737,7.337793,1.0239946,-11.482752,-11.128239,-0.78388834,4.052536,0.312253,2.543497,13.654343,11.643023,-1.8685193,-0.8544531,4.6509066,null,-14.330022,-8.52677,-5.908213,-9.955063,1.9968143,9.73401,0.54999375,-1.5367861,2.0470223,-2.4330478,-9.567467,-3.469092,17.82148,12.955106,-16.52474,-8.106455,10.735844,-5.0849714,-6.3311687,6.1284685,-4.8075533,-12.038166,-7.9031396,0.043389797,13.720612,10.270718,2.746179,10.788286,8.541496,-1.5101191,-4.800583,-8.229631,-5.1544776,0.83670986,-0.8401687,-5.8189483,-14.822245,-21.920975,-14.872976,4.7392254,18.592371,8.072148,-5.799711,-0.73960495,-0.12357354,-11.267346,-17.098415,-16.152071,-14.078932,-22.708115,-30.341438,-15.54324,-8.397726,-20.14454,-13.776723,3.9322758,6.5263805,3.147626,8.322014,15.428831,1.721216,-20.917168,-16.42957,0.7967013,8.339648,10.981714,2.0812984,-7.336627,-1.890171,1.6847239,0.38319492,-2.4616294,-9.555519,-5.2710624,7.56149,9.36516,-3.2456617,-14.429432,2.8906548,16.186916,-10.880598,-6.838623,32.727066,14.651421,-16.250347,4.334627,13.686207,2.6972084,3.7852316,-5.5456495,-12.189081,3.687976,11.257356,3.5493588,2.8626952,10.911163,9.758898,-2.0398948,-2.8449636,2.9321203,null,11.288836,-9.090786,-15.157168,-2.30298,1.8217206,-1.623023,-5.375473,3.7891614,9.882279,-3.8051605,-2.7667751,7.263593,-0.34285927,3.5654693,11.715349,-5.196633,-14.252174,3.6701243,15.31265,-3.2693677,-23.87621,-7.4522943,8.785976,-9.718708,-10.043926,12.471268,3.8726368,-13.938691,-6.038566,5.5696974,7.860526,3.5943694,-5.947733,-10.433487,-7.309442,-3.2976012,-4.109214,-8.707466,-7.423518,-8.062439,-17.959278,-13.705103,2.7487335,0.78144026,-11.437473,-10.023226,3.2925181,12.99831,7.2516847,-1.1945992,1.9300566,9.729894,22.51718,30.090141,14.22044,-2.9987187,-5.794607,-12.927251,-21.147923,-18.160555,-11.946617,-3.5897517,10.704382,19.393713,15.556593,11.250455,6.923994,-4.113485,-3.1957126,13.862968,19.044626,2.6150537,-13.278823,2.788858,28.953377,8.675949,-15.764557,9.065722,18.252665,-5.1713376,-3.5403955,6.79817,4.3169465,3.399931,-2.784823,-4.278532,3.0436616,-0.48831987,0.5637059,10.971718,2.3929725,-16.027538,-16.892803,-5.5952597,-1.8776653,-7.1415944,-5.713823,0.9703312,-0.42100358,-1.3718243,null,4.965213,-4.395499,-0.06311476,8.39089,1.6548095,1.6899476,10.75312,0.7343857,-13.380484,-7.055067,1.9784865,0.1458993,-7.053951,-10.206539,1.1090307,0.3492589,-30.241877,-33.610798,-1.5676548,-1.8040578,-15.562792,-2.6640546,-2.2550025,-5.3249564,18.494953,24.915398,3.150168,-11.708425,-15.630389,-7.0039577,6.6659575,5.848396,-1.7905052,-7.485691,-8.854678,-4.5215654,-11.013983,-19.963924,-8.179797,-0.46843338,-10.151297,-5.623912,3.8953433,-11.653466,-26.916582,-15.856814,1.059588,2.5869322,-7.1549006,-8.874195,0.38553143,2.013229,0.2913313,0.7899275,-13.918882,-25.5686,-7.4467173,11.708057,5.7483916,-4.0713224,6.411396,23.51034,20.34647,7.9713054,4.3449526,-0.872345,-2.098405,10.991993,16.041645,1.7468805,-11.105957,-9.520311,-0.15335989,8.405442,7.3299274,1.6883686,13.95199,23.762722,1.5114923,-5.181903,17.038555,6.8560185,-15.105465,-1.6328268,8.15132,-0.7446245,4.0052624,11.332629,1.7982368,-1.6106697,11.348152,10.782697,-1.2108908,2.6196089,5.473814,-1.2225547,-2.8252063,-4.4609866,4.419974,10.827542,null,-2.3915625,6.469943,9.388901,1.1248369,-2.6478615,4.8480062,8.19108,0.9952173,-6.8648214,-1.7800512,5.9918995,1.9921308,6.4385123,12.8417425,-0.62229013,-3.844394,7.4729195,7.283249,8.042444,11.472584,8.517832,6.2158213,4.1306868,8.274291,9.216322,-6.011099,-7.2822175,7.0594797,5.9543543,-2.876512,-10.346447,-16.030174,-7.2467837,4.983794,-0.64432716,-13.300002,-9.018686,-0.15686011,-11.712707,-19.873695,-5.785058,1.8098583,-8.137258,-18.977642,-10.820017,13.465961,14.563803,-0.65917575,3.9406514,0.6782968,-19.840145,-21.936268,-13.340504,-6.4025474,-0.32266855,-11.106586,-22.380394,-14.924077,-10.13456,-6.555536,2.2562742,-8.348466,-24.005112,-15.383067,-5.7701616,-5.181672,5.4705954,11.894617,0.59805584,-8.797572,0.89865637,20.62162,17.06516,-7.2435217,-6.392068,8.667974,0.4597696,-8.909466,-5.6334753,-4.3993363,1.0490475,2.8159838,-6.3708005,-3.1580162,2.4744158,-6.9494715,-1.0105433,17.281599,11.944681,1.1577244,3.1604853,2.071412,3.98612,6.5858197,-3.4605541,-5.626612,2.5877094,0.42350495,-3.3932862,-1.7229971,null,-7.683634,3.9889205,3.2365108,3.3482032,13.048823,14.366213,5.4898047,1.8278923,9.182523,8.814472,-0.33179712,7.9173565,17.41794,2.7454453,-7.1846666,-0.023147583,3.18963,6.7968388,7.5610065,-2.2812512,2.2577176,13.566683,7.2756166,7.5742693,10.67018,-7.673589,-16.328438,-5.991181,0.5647907,7.411197,4.475155,-7.2404323,-3.3717606,-1.2859416,-1.1502256,18.63525,20.484943,-4.2794,-8.116934,2.5432653,5.447242,6.807115,-2.1160936,-9.274471,1.4626036,1.2164702,-6.0896454,0.05027485,-6.6336355,-10.732657,10.426425,8.535948,-12.298859,-9.621829,-6.1656027,-9.065488,-7.224642,-9.4837475,-1.0724123,1.8968763,-18.663397,-10.672026,19.217854,9.72164,-8.669139,4.2018905,5.165818,-23.270706,-28.299877,-2.5208588,0.59737635,-17.85138,-21.453022,-11.7436905,3.8239865,9.164987,-7.3738947,-12.92526,-0.82306194,-2.2187765,-10.60525,-3.768362,5.5225735,-5.0248575,-12.608301,3.0264378,1.5928593,-12.222078,2.5745845,8.047717,-6.1477804,0.17228985,2.2402549,-8.778921,-7.832132,-9.762595,-5.1700315,10.137037,-2.6644773,-14.582226,null,-3.0571125,5.421207,1.5231333,-13.726284,3.2556596,14.466957,-10.768942,-10.735793,6.390459,-3.1069915,-7.018021,-1.3214462,-3.7426248,-0.09686351,1.6112843,-0.3609197,1.3564787,-7.7806473,-13.15869,2.0639005,12.756162,8.708084,4.9113135,1.6190624,-3.2168643,2.3541694,11.036495,1.7260824,-8.303577,-0.23614264,6.912216,10.355347,19.286007,17.404785,-1.4509118,-11.823726,2.2586594,14.454425,8.136159,7.257828,8.149288,-0.18136144,8.055072,23.776253,21.655071,15.894083,12.215087,11.186693,15.947264,8.232674,-2.1594007,11.101048,24.964691,13.753883,-0.74171114,2.967564,10.858211,7.0198574,0.21896935,1.4757786,3.4052348,-3.919632,-8.5136175,-1.530911,-4.1696224,-15.15809,-6.7299476,12.45501,21.92397,14.402406,-12.761891,-28.508766,-11.485496,9.466458,14.702297,6.012683,-6.629921,-5.974119,-0.40136957,-1.6833167,-1.2556052,-2.638279,-6.9864144,-5.463066,-6.1071725,-12.014097,-12.294022,-8.1308365,-5.860241,-2.7198138,4.734895,9.650548,2.3476555,-5.1396084,3.4119103,7.5705605,-5.0521894,-6.6426916,-1.5446539,-9.493852,null,-0.8394089,-2.0173545,0.20327568,2.9972262,-2.269945,-9.435701,-5.3926606,0.23398966,-2.5851905,-1.6008316,4.304262,4.289027,4.136141,2.655464,-6.9708176,-7.407812,2.7321353,3.1956878,0.8857255,3.6832132,2.323224,0.41604614,1.8070109,0.2857504,-5.289859,-6.339465,5.3611836,17.716047,14.75869,1.8435746,-7.631304,-5.6475315,1.3742106,4.194936,5.6259737,1.1398263,-7.3353524,-3.9660578,7.255185,14.079963,8.460747,-5.7034626,-6.0148253,-2.0327497,-9.7802925,-4.4327507,8.589772,1.32605,-12.604029,-15.418278,-7.0106125,0.33159733,-8.154221,-18.670738,-15.204674,-4.326108,3.0229955,2.1523652,3.0976985,7.1841264,4.165574,-0.42142224,-7.315134,-11.922199,0.7454202,9.6324005,2.2604127,-5.496192,-16.62397,-16.969933,5.631281,14.963186,3.664389,-1.9825621,-2.300908,5.630006,18.473755,9.674928,-2.6770542,10.491256,15.391541,1.3048213,2.863826,5.1479554,-5.119691,-0.060196877,9.120911,3.7394524,-1.140204,2.677061,12.254364,7.6006513,-8.963187,0.4967792,13.268784,-1.7758522,-9.412215,-1.9645975,4.5634975,4.1605124,null,10.748536,-7.8267756,5.2173843,15.521038,-13.493975,-15.970192,3.6519403,1.5742098,0.103292465,6.777978,5.3272414,-3.757175,-13.307316,-10.801918,-2.9803963,-7.539128,-9.9617405,1.3813515,5.2497964,-4.6354513,-8.744823,0.22403908,9.193451,4.758058,0.7955251,11.3523445,4.923892,-20.45025,-16.136387,4.3090334,7.20557,7.784648,0.4012699,-9.751726,5.8333197,19.119274,13.86453,15.717381,12.562951,-4.510311,-10.220013,-2.1001167,1.1395054,-0.96966505,2.2081966,-0.12453842,-9.91089,-2.2038517,13.164426,12.478058,6.062873,3.726451,9.427179,14.87125,7.9193144,6.031798,4.4364657,-6.915362,-1.3252993,3.7934055,-8.431797,-0.15550828,16.880201,19.564215,25.694633,16.267628,-10.891315,-12.27104,5.2110715,14.327584,16.68179,6.2815804,-11.620663,-12.490889,-0.94698954,5.534014,9.82494,9.245452,1.2076373,1.2225475,5.6283345,1.2725372,-1.0171311,-0.9517422,-4.916434,-0.549036,4.7389584,-3.5408497,-6.563365,2.4667506,2.971815,-2.0182796,0.643307,1.4681726,-1.9075966,0.07859802,2.786218,0.040765285,-4.5198126,-3.9283366,null,-15.9422865,4.24866,1.4210653,-14.418921,-6.992649,1.4301305,-12.327827,-18.907833,1.2383189,10.573459,-2.06875,-3.2577598,-1.2972951,-8.780846,-3.1808524,7.9932823,4.481575,-2.0665984,-1.1915388,-2.428923,-11.388134,-12.845789,-6.083888,-12.241612,-10.968746,14.558395,17.0225,-8.783472,-17.518873,-12.833782,-0.5176039,18.796183,11.408862,-6.119604,-3.9561124,-8.680965,-11.72596,-0.31650257,-0.66563606,7.9318705,26.779543,18.199902,9.03261,11.103152,-0.6420126,-2.709363,10.5613,14.479567,10.393001,3.0948277,-0.111634254,0.6696596,2.957193,18.158,19.93856,-3.955886,-5.4927363,12.306807,12.612968,9.293325,10.42424,3.100296,-3.7688437,0.28723907,2.8665972,-2.3198388,3.7019777,16.88684,12.9840355,1.0967689,-5.378975,-1.6004691,14.862844,14.534484,-7.677468,-12.909479,2.406517,14.361513,10.081212,-0.8694167,5.5620213,9.988419,-7.1732273,-5.890829,12.22721,1.0502186,-15.230337,-2.5000253,5.63206,-5.8750257,-10.439854,-5.9794226,0.6042061,3.1577077,-8.2107725,-6.7189927,10.379913,0.9413941,-9.62862,6.4533386,null,-7.9330297,5.302316,9.076416,-7.707174,-10.332719,11.089467,11.955916,-4.3309975,1.2873316,7.8948307,-4.790348,-3.7106256,6.347263,-5.733636,-7.8414345,12.565874,11.644976,2.387691,10.677629,15.031155,14.160267,6.5192847,-4.0898137,8.692177,11.080346,-15.412779,-17.408419,-0.08582544,4.275977,4.663663,-4.1148243,-13.104529,-4.99198,0.21086931,1.6673284,9.274836,1.8747878,-16.247997,-14.106732,-5.3364596,-13.826031,-11.310318,4.2407155,-4.9090037,-10.606857,6.9448175,1.6138458,-12.46281,-4.365196,-5.54401,-15.28523,-9.025574,2.1779733,3.4139013,-2.841026,4.1608195,18.536518,10.887805,1.6584191,3.8742993,-5.105916,-8.065216,2.416644,5.4604716,9.267958,11.749504,5.7025537,-1.5187302,-18.707718,-23.934341,2.374807,13.096455,-0.11426544,-3.3118534,-8.030923,-11.320207,1.5607593,7.126872,4.024969,4.8684845,2.6336217,2.245914,6.8437624,11.462025,7.9120383,-8.3362875,-5.1990495,16.4926,7.2735004,-11.635027,-2.6329093,4.467758,-2.9142056,-4.7489977,3.3307207,4.3497114,-5.9594617,2.4801838,9.959969,-11.124151,null,-1.8620067,-3.3890936,-12.30698,-0.141994,4.422424,-13.482925,-6.325943,12.380461,7.6973166,-4.834031,-6.9825897,-0.5570095,0.33175063,-2.668736,-1.7527356,-3.1183805,5.3647904,14.260269,-2.535759,-8.414317,10.722926,11.099424,1.4032216,6.8679714,14.075462,13.054375,0.4828596,-7.8881307,6.95685,20.67838,15.956001,7.8595777,1.3891492,-4.224327,-6.302165,1.9806683,17.373896,14.549156,2.3190017,3.275862,-5.8530593,-16.82217,-1.6050472,4.3488116,-9.102975,-6.955432,4.9417534,9.858811,3.6375256,-3.9011378,10.2788725,20.512856,3.1581426,-5.371991,0.8844187,1.9633303,2.196538,-7.04396,-19.645256,-6.480051,16.287537,12.294413,-6.5148654,-9.042158,-5.5160627,-10.656068,-6.3848057,4.8912406,9.844437,13.128342,4.847141,-9.224996,-10.662083,-5.672515,7.4234476,9.179162,-15.760574,-14.962667,8.537539,-1.12444,-14.869431,-1.3766007,13.222881,10.770901,-7.8154883,-11.127857,6.854669,-1.233542,-19.58131,-3.4255576,11.386892,-2.3133507,-8.545816,1.563131,0.42448425,-9.339716,-5.9213295,6.7467766,10.287719,1.3583587,null,-0.49942398,-7.46503,-8.001299,8.8252735,9.105611,-8.454239,-6.5318666,9.299234,6.979432,-0.59299445,-2.4333704,-8.035602,1.14853,13.080113,-2.0797353,-13.681594,-6.1419506,-0.43174267,2.391636,-2.7111473,-9.060183,-0.87120414,3.125874,-3.9346886,-6.367987,-6.293165,-6.0384283,-0.15491056,5.6033535,-1.5952535,-11.669443,-7.8727627,-10.33468,-17.524689,-0.7996769,7.344025,-12.433004,-13.732242,5.000987,11.848099,9.671576,6.476501,2.9544768,-0.43722773,-2.5444784,-3.0087214,-5.912475,-4.9777822,-4.0919375,-14.846941,-15.40763,-0.14358044,3.4041042,-3.4187849,-8.641025,-5.896242,8.035261,10.935993,6.193294,13.900721,6.804225,-13.415789,-10.812524,-6.2066493,-10.468382,2.6917014,15.028133,8.145613,-0.03587866,-8.413899,-17.193218,-11.609029,4.478894,11.702108,2.6836004,-9.527851,-11.764395,-3.6079357,4.736585,-5.6306987,-19.460325,-4.010846,10.553892,-1.1335697,-2.831479,5.786396,0.9257078,-1.3477116,5.879718,8.772108,4.201478,0.69483614,2.3504844,-0.38233018,-0.5752678,6.0038013,-0.21564436,-5.5711355,1.0257335,-3.8338156,null,-5.904773,12.544963,8.159123,-6.2601604,2.5093744,16.277697,10.672619,1.146141,5.437249,6.267429,0.1507287,8.495321,15.482292,5.615156,3.0066357,7.022302,0.55499935,-3.4772844,2.5759704,6.4549084,3.5378757,-2.0339456,-5.317055,-5.312572,-10.271602,-20.289684,-16.207802,2.4987335,10.809038,6.275488,-1.0232695,-10.155425,-5.802866,9.89543,9.534693,6.4328866,18.367506,16.335485,-1.9959083,-5.7532964,-0.9643042,-2.226648,-1.4051945,1.1540306,2.4938982,6.0037603,6.726367,3.7946987,3.8315296,5.8436117,4.160237,-1.9023166,-3.4405274,3.366455,2.8738322,-13.028471,-22.227545,-7.9603825,3.0593286,-7.7128363,-5.4534383,11.489,5.358694,1.200717,13.234755,-1.1185203,-19.646538,-8.662245,-1.8677979,-1.4993656,8.983941,9.067526,-1.1304193,-6.2005687,-5.6998568,2.0058537,4.435416,-13.32413,-23.643557,1.1292233,18.671423,-3.6815453,-11.840168,11.533313,12.822149,-4.806245,-7.761027,0.24734873,5.378061,-7.5390778,-20.17111,-3.6613624,8.396891,-3.922542,-7.403665,0.105105996,1.5679746,3.756854,8.602818,1.0204158,null,4.2815037,8.764878,-0.55856645,-20.413202,-12.257265,4.913279,4.327117,3.2033958,-2.8942008,-9.846397,0.774817,6.362962,-4.0624447,-13.575346,-13.258765,3.5867033,14.232642,-4.4258394,-17.50314,-5.387724,-0.39060545,-6.7007895,-1.6721823,3.9971318,-1.9434114,1.2554394,12.99431,9.983889,0.42665505,-3.1367395,-2.5109415,5.2839136,10.316896,8.312731,6.860634,-4.1213455,-11.827547,3.931254,10.653982,-3.1212795,-1.2058108,9.43375,0.30217934,-10.056995,0.26925242,12.308389,5.532238,-6.0400023,-1.1596427,10.547969,8.144939,1.4990339,8.28958,13.876038,5.4927745,-2.3733087,0.9185004,13.237364,20.514534,11.2007065,5.4879594,12.500978,7.4702883,-6.080536,-7.1852546,-4.5764694,-3.4061337,5.8238783,14.077625,10.058863,6.0562887,8.626779,4.3333626,-0.89799404,8.570624,15.64777,6.8947496,-0.33827972,-0.028981447,0.14821386,-1.559227,-7.654434,-6.4683385,12.440575,17.569122,-4.0241337,-7.875454,7.029149,0.14766884,-7.8458405,3.8286388,2.295705,-8.410208,-2.306148,1.545007,-7.343402,-8.598748,-0.4602996,1.447459,-3.1535215,null,6.4126368,-8.658939,-15.444267,-4.1318965,4.3373823,7.554022,5.8586216,-2.0255103,-4.4462647,-4.0422254,-5.161167,-2.8072705,-6.840602,-14.072608,-8.104433,-0.85090137,-0.22880411,2.9724605,-1.5203391,-10.993429,-2.4973178,8.675125,0.89303446,-7.765973,-9.833685,-13.65519,-8.902967,0.79959345,-4.350167,-15.875371,-11.123346,4.353736,5.9870825,-0.6921334,4.9400105,5.9267817,-4.856345,-4.069508,-3.8957155,-13.476285,-7.9023294,3.8779414,3.5796127,0.98063207,-1.4049897,-0.29721832,6.4224463,5.5797925,-1.390667,-4.572299,-5.5479107,-7.122802,-6.313422,4.302808,14.810576,7.3223953,-4.0906878,-2.9963417,-1.1639695,-5.9023666,-8.976457,-3.9537694,1.9607353,-1.061357,-0.5009079,12.520552,14.890748,-2.0988674,-11.1485195,-4.3899856,-1.533011,-1.9166766,-1.5862784,-11.000011,-14.174095,0.79957104,7.8946276,2.1227098,-1.6990185,-3.7330344,0.8082528,6.6055374,-1.0722322,-9.63553,-3.0858567,9.768747,9.424162,-2.9761257,-3.426083,3.4337072,-1.7847447,-6.901133,-5.822031,-3.4540348,2.5751019,1.961156,-0.64431477,4.1340084,-0.91946316,-6.6598845,null,-0.15614724,7.278805,6.012081,0.017906189,-2.6299176,-5.3581634,-3.069324,-2.1905675,-8.035586,-8.967229,-7.595032,-3.489534,3.7550943,-0.05043888,0.2835195,9.497739,0.01899767,-9.81864,-2.018319,-2.3055873,-7.190606,-8.7207775,-15.636644,-9.005915,9.411081,12.263006,7.2024045,4.9263625,2.436418,5.594615,6.0005307,-0.16905141,5.8611436,11.05016,-4.5201,-10.451259,1.7577246,-1.3242552,-8.104284,3.9177208,13.048391,9.781494,3.0279226,-4.421175,-3.2313032,3.5516634,4.534176,3.2245247,3.634171,7.320795,11.725649,12.782267,10.368865,-3.2237895,-12.974581,0.28657365,3.9166481,-8.565578,-3.263736,3.4276395,1.9531441,13.544464,18.995415,6.8287115,-5.751423,-12.552346,-3.8586025,7.874126,0.87868214,-1.5316153,10.842869,14.94241,9.303614,1.2303362,-1.9477549,1.4694755,-6.137425,-12.799643,1.9478494,8.951006,1.2805243,5.6142087,3.5682945,-12.201689,-8.401289,2.48211,-2.5856278,-1.4556909,7.2619095,3.9384215,-4.0595307,-5.1181536,1.1738015,5.5212584,1.3503551,2.9575148,8.233891,2.7486293,1.3455018,4.1957045,null,-6.2447968,-0.5195619,17.113262,10.195517,-11.398431,-11.237898,1.4218173,6.472961,2.8737698,-3.0391817,-0.1761136,2.8636885,-4.1313763,-1.5792949,7.890733,4.22886,4.0512023,6.9439692,-8.512288,-15.436835,-0.39054728,4.463399,4.1059427,10.705674,6.435926,2.373248,5.836732,-1.1039157,-3.6484919,0.5414107,-8.909485,-5.8574643,18.152578,21.664366,3.6940253,-4.6756263,3.0892599,9.27264,1.2465489,-0.06655121,6.8937454,-3.1492157,-3.1579428,16.27083,6.864366,-11.905175,2.3217103,14.738691,3.8515146,-5.930206,-8.255218,-9.529572,-7.5680704,0.3115692,3.7946153,-1.2735436,1.553724,5.9408727,-0.15405321,1.0998206,2.163703,-7.8190727,-0.6259806,12.325828,1.9581823,-2.2148457,10.171852,8.182954,-1.4247369,-0.25426054,3.9691737,7.902828,10.054472,6.317333,1.465033,-3.2556558,-2.2771485,8.208702,7.101111,-5.1603155,-4.313652,-2.2160158,-2.1610503,10.911318,6.787607,-14.524171,-5.2305236,11.840658,2.2033043,-1.9068016,5.543527,3.9027014,4.7334065,10.379535,8.3942585,0.51627064,-7.3259306,-6.821517,1.3122455,2.74791,null,5.864687,-0.6318145,-1.5146177,4.8993864,3.6959317,1.0671573,-1.5264657,-6.6739635,-2.6834705,4.846741,3.7217493,4.638257,9.073956,8.621708,11.890654,14.422823,2.8189,-2.1280932,10.386277,9.425051,-6.653428,-6.5734034,5.8243284,10.569885,6.1930847,-4.678673,-8.68139,3.3305104,11.475573,5.880209,-0.5413681,-2.8704085,-1.4439712,-0.28024006,-2.7197046,-3.2413788,-7.192849,-10.673211,4.3695297,15.392662,1.8393116,-5.0972633,2.4378793,3.1703014,3.3480272,8.576355,10.745354,9.702541,7.302428,3.8926265,-2.2400541,-2.1315832,11.522603,12.108845,-2.273213,2.2382894,7.700982,-3.8950627,-1.5380816,3.6666555,-9.610289,-10.7167,3.6270838,6.456855,-0.20409608,-4.568549,-2.325292,-0.1759069,-3.7959576,-0.026617765,4.7469134,-3.7570004,-4.6867914,1.559669,-8.516909,-14.4475,-0.74277854,6.480798,-0.06407857,-6.6974525,-6.504055,3.4074183,8.946997,-1.4825315,-8.121578,-1.4129441,0.7525984,-4.3810825,-7.043529,-7.9769263,-8.081909,-7.245537,-3.5706105,5.853165,6.2284164,-4.8608007,-1.2599936,6.1867847,-3.8153362,1.470936,null,-5.4386225,6.346968,9.722852,-2.6526632,-0.9771993,2.9029536,-10.024765,-14.006415,-0.14021397,7.200412,3.1155853,1.6421614,6.2325306,7.1462736,-1.2325517,-6.5315046,0.30532384,6.0622177,5.8519773,9.993874,10.918351,1.2124,-3.556376,2.7037947,11.4359045,16.835316,12.8405485,6.0679374,6.096045,4.154966,3.6995964,13.708578,14.762084,0.5882946,-5.8170857,1.6586928,8.526093,2.3525765,-10.05967,-7.8848586,4.535698,8.449364,5.351353,-2.093982,-9.367066,-5.54064,-3.800314,-12.471923,-11.167293,-2.7039566,-5.2490454,-8.430893,-4.0838985,-4.113221,-8.930922,-5.8904915,2.4803197,-1.1780005,-8.975279,2.2238438,11.844091,-6.1153293,-23.045654,-14.957132,0.85875297,9.583817,10.366157,7.5793324,3.4910944,-3.5208778,-4.9638176,0.33417892,3.3091042,8.578175,10.219179,-1.2645466,-6.8444195,-0.6274252,1.6034671,-0.54945135,-3.9066472,-8.014302,-11.123941,-10.225653,0.9736819,5.25669,-7.408219,-3.9898353,12.452889,7.014291,-2.9133387,1.657811,4.9125404,2.4424336,-3.1212335,-5.8365097,-3.4647272,-8.347111,-8.545558,5.1014557,null,-4.9998894,-6.4703755,-0.74128485,-3.1382525,-2.7151003,6.3685274,2.2144585,-8.8113785,-10.044966,-8.914413,-1.2286766,7.3087955,0.9706211,-1.9788849,0.27489424,-6.450227,-1.8500457,9.562112,2.0391972,-6.695553,-0.6430836,8.642475,8.186838,-8.700997,-19.535835,-8.106339,-3.1282606,-10.243017,-5.2028623,2.256691,-1.5375421,-4.476241,-3.6634293,-4.088059,-2.8678083,-0.039361715,0.941556,-0.30382168,-0.21369338,1.0545257,-5.5203414,-13.380411,-3.9671593,8.683629,5.4915223,5.4108944,13.967854,7.9718018,-5.6118536,-1.5172367,12.714527,13.237652,3.079589,0.8554959,3.5353808,3.9135876,7.5088806,5.398325,-6.218705,-9.513063,-6.2524214,-4.3917017,4.4617896,9.677244,-1.6681094,-10.121651,-0.9087975,8.565063,-0.64599323,-15.050327,-9.102974,6.1536126,4.142962,-5.0169783,-0.6123314,8.480683,8.998602,5.676985,3.8308287,1.5317023,-2.6442919,-5.089009,1.7046685,11.455975,7.8955345,0.72455907,5.0159616,4.4702063,-5.7877464,-4.241689,7.7636867,12.775824,7.9001956,-1.344526,-6.092171,-3.952621,-0.8454447,2.9905434,1.7075483,-7.5659256,null,3.285874,-6.4476624,-2.7003636,3.9129937,-6.5248375,-6.953041,8.638178,2.2824097,-15.422376,-10.106386,1.1675956,-1.8839254,-7.187577,-6.480293,-3.221991,-3.2352593,-4.49643,4.9694543,16.373028,9.649723,-4.0415874,-5.1840005,0.62022924,1.0368681,-4.9586477,-8.92853,-5.1651893,0.23079777,1.1053516,0.1238935,2.1822484,7.198843,5.1118135,-10.433167,-19.436066,-4.694417,8.639597,2.890221,2.2661195,8.795985,4.1075144,-0.98630905,-2.7202475,-8.169761,-8.956871,-10.71327,-13.38065,-3.1604953,2.7403326,-3.7329724,-2.445829,5.7375984,12.923448,12.420566,-2.6592515,-12.46644,-5.47818,3.9749336,9.721063,7.825813,3.163523,5.716295,2.0528207,-9.162281,-10.291127,-3.9202254,1.4416682,-0.558087,-5.2929635,6.881455,15.39872,-3.2592945,-11.585636,-0.4857731,-0.014782906,3.333009,9.593284,-3.8290834,-11.593569,-2.592247,-0.7472756,-1.4880877,-0.33124566,-0.9758549,4.6511874,7.979258,6.11526,6.061818,-1.2790167,-3.6062129,6.483617,0.6526613,-10.880983,-1.6420532,4.5048895,-3.7009277,-1.2819002,9.70714,6.7957144,-3.6340485,null,4.7819476,-3.6192966,-9.489185,-3.731227,5.5549273,6.049892,2.4216428,3.011489,8.27611,2.5347254,-6.7903795,4.3472204,6.8364162,-11.69021,-8.520864,5.311744,-0.28891695,-6.343974,-5.1572323,1.5434196,10.516118,1.8348522,-12.281414,-13.966213,-10.954666,4.3004584,17.294502,5.1518836,0.2302165,10.496248,7.331006,3.4597979,6.782603,7.3270802,10.378179,4.9201784,-5.663783,-1.2702115,-2.903253,-15.010893,-8.425042,4.310401,-1.0277395,-11.7868185,-9.071351,-2.2765982,-10.876216,-15.839367,-4.7711086,-10.28676,-23.688948,-14.612719,-4.8478894,-4.269908,-2.7035644,-6.394451,-4.608727,3.888575,1.5416293,-3.2544613,-5.4592247,-8.791013,-2.5493927,6.1504493,4.760227,2.605441,3.1545036,2.5522566,3.2173429,3.0592341,-1.0477629,-3.817108,1.3304293,11.158915,12.75658,2.8736658,-1.9512467,4.4371862,4.8774815,-0.37768096,4.5301776,8.332923,-2.121647,-10.4390955,-2.2507625,12.4289255,11.664612,-3.60193,-3.0952945,10.56543,3.1765454,-11.722995,-3.779222,3.0784607,-8.396338,-8.018714,6.0093155,6.584127,1.6289629,3.9399648,null,0.43423462,4.5625944,7.749415,-1.3246698,-4.882571,-1.4189148,0.029911995,2.446225,4.7030854,2.7377853,-4.738955,-9.836298,2.2596555,16.501122,9.937979,-0.60507417,3.7146916,11.775117,6.625606,-7.432312,-6.5261297,7.4786005,9.054186,1.5119438,0.8637419,3.7954795,1.6351528,-5.548282,-5.7687483,2.405816,-0.42114067,-14.083895,-16.119373,-7.0543175,-4.011746,-3.56441,2.0539522,4.0335236,1.3526416,-2.6923904,-9.88532,-6.271917,7.145403,6.484,-0.5967083,4.2437396,13.954181,15.174354,4.368168,3.9058728,19.345688,13.614235,-2.914784,9.276459,25.08874,15.300891,-1.6946998,-5.947377,-0.21971345,-0.51194644,-2.770773,2.5309036,0.7476741,-1.3304621,5.822735,-0.29546642,-11.108435,-7.7396536,-3.855317,1.237728,4.3709197,-4.7645698,-4.007596,4.9399285,-1.6663413,-8.618687,-2.7958558,6.1454372,6.1144,-9.216395,-12.059134,6.9544263,8.814072,-2.0907013,-3.4680462,-9.953806,-7.9276743,9.454934,7.8666716,-5.556444,-7.489847,-6.189967,-4.965536,-4.550777,-1.6581819,6.9272933,4.866121,-4.4539347,-5.2000637,-1.0938566,null,5.0263634,12.857884,8.574161,-4.3563414,-12.572894,-1.9680967,11.279457,2.485887,-6.798373,2.0008252,7.893501,4.212059,1.8584204,4.612423,10.030308,3.9474292,-11.164008,-8.761553,4.386118,-0.561728,-13.172178,-9.663921,1.5128179,6.359537,10.325606,13.149651,3.8475409,-5.7705297,1.4560366,6.4411445,-3.4738162,-6.248683,0.60613585,4.3144264,7.540798,4.0505285,-6.0715804,-5.479942,3.4758568,9.790241,9.541328,1.873996,-3.7490683,-8.335669,-14.573025,-10.114605,-6.683472,-16.153248,-16.968483,-9.508629,-13.004977,-16.369556,-6.6632285,-1.8326387,-13.7501135,-17.043682,-4.135803,-4.371863,-8.840092,2.530477,3.3787322,-6.1858716,0.09313917,3.4124005,-8.552559,-9.603073,2.6068106,9.550706,13.672673,14.744106,2.2701023,-7.6278734,-3.1371703,-3.6844156,-7.4447856,-1.5437813,3.4726274,4.241308,1.420951,-2.6918113,5.6644588,15.919852,11.690023,2.7007618,-4.4315567,-8.11011,-6.305213,0.029459238,8.847647,5.582787,-5.272993,-1.327677,5.411762,4.0558434,1.9314014,-4.4855843,-1.7479595,8.148157,-4.5778723,-15.857161,null,-1.9667053,-1.24388,1.2926497,-10.765615,-12.596965,-5.1443033,-3.9132345,-3.4668005,-7.489414,-9.330653,-2.3138208,-1.8517375,-3.0430446,3.6770058,7.5670815,3.4101932,-7.13762,-11.562092,-2.037383,2.6953397,-3.1861038,-5.48948,-2.4427898,-0.77771187,-1.2961848,4.842094,13.032826,6.4810915,-5.2821627,-10.296587,-10.651061,-0.34419346,5.4513597,-10.463284,-18.846355,-0.7919855,12.485922,-1.4581643,-15.095671,-3.4017258,5.8824444,-0.6648257,4.8488173,13.166296,5.902358,6.3039966,14.919573,11.128839,7.0254555,11.252515,9.39114,5.2456207,11.244892,15.038553,7.526336,5.274209,13.344864,12.19598,-4.4807034,-14.615149,-6.4364533,-0.10456467,-2.9522414,-0.26131487,3.7755768,3.5115786,5.293981,3.91605,-0.6731744,-1.1808517,-1.345088,-2.9250855,-0.91799116,7.602482,10.653542,-2.9277625,-11.239692,-4.3493695,0.12126708,9.721452,19.511395,5.411313,-8.229076,-1.0061312,2.8466349,-1.9706751,-5.0240107,-6.9179482,-2.8409152,4.785142,1.4447509,-6.8584027,0.12345803,12.216631,6.767371,-2.3967478,-1.6171064,-4.196053,-4.9662204,3.5069442,null,-11.022308,-12.0809355,2.472389,5.794489,-5.3979936,-4.5878296,2.189391,4.602911,1.5515873,-2.6113653,3.858561,7.0738153,0.34433293,-1.6186142,-6.8276777,-10.476043,-0.100534916,6.937042,7.073728,2.726507,-3.8437989,6.1787825,14.390223,2.0244656,-2.8337326,0.2855525,-6.219277,-12.772909,-11.630936,-2.9510763,3.7903576,3.406127,3.9190497,-0.25520927,-0.8228147,12.178545,13.490242,8.941341,16.672829,12.118371,1.9478574,6.147732,1.2906342,-8.904894,-2.9579663,1.244661,-2.8306565,0.36012983,5.6464024,4.032965,-1.7058668,-7.997881,-9.751726,-8.652112,-9.110714,-5.6672525,-4.186828,-10.872179,-7.772828,4.782793,6.666188,1.5944924,0.10990238,4.8019114,6.382817,-7.629031,-11.723552,5.5538945,7.6128135,-0.020201683,3.5471747,-5.1540966,-16.161285,-3.8103504,4.535219,-2.5044823,0.8627763,9.670373,4.9447136,-2.0770216,0.098501205,3.5558255,5.016094,1.9400313,-5.5953765,-3.1299753,3.1599255,-3.5534945,-8.759979,-2.3121023,2.9439826,-1.5477595,-11.966847,-10.160479,1.8800229,-0.93854475,-9.740577,-8.46117,-4.785959,2.8016896,null,-8.877609,3.672124,12.419529,6.2433643,0.66853,3.7798033,6.644662,4.7023144,-1.2138121,-1.2686677,6.822424,9.396,7.615361,6.264883,-0.34929872,-2.8476987,4.744277,9.263461,7.3532686,3.4981563,0.87377024,5.0887856,7.8642073,0.72490585,-0.1501112,7.427663,2.687776,-4.201738,2.5563335,6.496827,8.533723,14.029839,5.703273,1.1791329,12.491585,1.2849998,-21.69759,-12.666025,5.1671004,4.0449514,1.8673222,1.4680669,-4.533775,-0.42249393,12.888976,10.138191,-3.8662033,-6.7865877,-4.153734,-3.8028827,-1.0777056,-1.251333,-5.6172805,-2.5033755,5.7953706,3.027017,-3.4440622,4.561117,11.590391,8.727648,8.414092,-3.0148675,-15.174141,0.034962654,9.252383,0.79752815,7.7826624,12.190983,1.0916872,0.33816648,6.139797,5.8940263,5.2708244,8.472655,8.6246395,-0.24457014,-2.643557,1.1970654,-5.825438,-7.7799835,2.5809593,9.170047,8.52095,-0.3021636,-1.7420361,4.7680254,-5.631098,-4.666359,16.725409,10.2225685,-4.49647,4.807438,12.9649725,14.169276,5.5223217,-10.539164,-6.634221,1.5625806,-0.3281448,6.5114245,null,1.5643991,-9.780934,-8.013489,-5.2338367,3.5753853,11.145775,0.4405018,-3.4935021,1.5215516,-4.9708066,-3.163506,3.6338098,-2.4699597,-2.9248648,0.8017373,-0.78726125,-2.2179837,-7.886398,-4.3249564,9.356665,6.479575,-1.0468466,1.8879819,-1.7410767,-10.784644,-9.505679,-0.18263388,-0.8660989,-11.062317,-9.7297125,-2.597137,-0.26079524,2.4008527,-2.3239863,-5.40094,2.2746172,-1.5696182,-10.201019,-5.3954954,-1.5210915,-4.741474,-9.714824,-9.959616,-2.4909544,-0.55133045,-1.4680305,2.2425914,-0.71039796,-3.9421837,1.3704183,7.102157,9.600613,3.0408502,-4.3555927,2.3209183,5.5509443,0.58905244,5.789442,5.408668,-8.639759,-4.2746716,14.047424,9.049192,-4.573673,4.3988657,12.096344,-2.153662,-11.89029,-5.7181797,-3.9015727,-9.927135,-6.4435997,5.6140394,7.2637897,3.4829667,7.792493,6.075833,-5.2069635,-7.775621,-2.5347512,2.0116613,4.43645,0.14711899,-3.1364489,4.638747,9.807649,3.039938,-1.0753679,2.9559054,1.8351682,-6.532643,-6.7356315,5.4601555,10.767983,-0.19686437,-7.222254,-0.004408121,5.021435,2.0534768,3.3122153,null,-3.647873,-2.5517552,-5.132471,-0.43043137,6.4884114,8.783548,1.7222748,-6.9969063,2.3569474,16.871666,12.209286,1.2190206,-2.459106,-4.6147933,-4.7164364,-2.1210353,2.2864518,6.869247,2.5093813,-2.072578,3.7938938,2.5344703,-4.034728,0.5567589,1.8965824,-1.8669989,0.0331378,-5.399905,-9.481698,5.795089,18.219164,12.078121,0.35543203,-8.938316,-13.016138,-11.78673,-7.062636,3.524498,10.118561,0.13561583,-9.427914,-2.8212776,2.5489902,0.0047388077,-0.33062458,-3.6009855,-5.900189,-2.6116052,-6.7965117,-9.433744,-3.9299536,-6.3116856,-9.032264,-6.8879366,-7.87606,-3.8505845,-2.238615,-5.54329,5.878561,17.0612,10.872617,4.773373,2.5513234,-3.9848979,-10.314395,-11.759105,-11.069361,-7.595822,2.7338455,3.5872865,-12.113008,-13.758432,0.56960887,1.4900486,-8.894868,-10.8706,1.6375606,6.939234,-8.589929,-11.670205,-1.310667,-7.4258842,-7.8097467,-0.40551233,-12.882432,-14.283135,9.946363,14.645653,-7.09355,-15.362961,1.2737489,9.610871,-5.424939,-13.751026,-5.2413235,-0.6178355,-0.09060192,1.2659323,-6.2896366,-13.910051,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.147887,14.317292,0.46650982,-6.3445325,-17.45459,-9.415229,24.798115,14.722187,-14.146972,5.154927,16.919151,-0.0843277,1.3244863,4.038826,6.430744,16.676592,-6.738633,-25.38253,4.4347014,9.384697,-11.668485,5.32447,14.728682,-7.4970527,-8.292431,0.37838364,-3.2001722,10.320334,27.682093,10.806192,-10.976414,-0.7331667,3.9675179,-10.134508,1.4192662,15.992113,2.230908,-2.7342908,0.57420754,-0.36733603,6.728714,-5.2939577,-21.028963,0.3264284,10.908233,-4.693841,4.994233,22.393942,13.558553,5.562763,15.374737,22.071945,18.209116,19.538744,21.235659,6.427932,-5.5059423,4.513916,9.462587,-1.8431554,0.12730193,3.3526728,-15.560065,-13.103168,10.447095,-0.5445341,-11.272356,8.448637,10.1822815,6.7172766,23.29364,23.745682,8.572527,-0.35402012,-5.274851,-4.5742264,-3.3517554,-1.0374843,7.420494,6.1872826,-4.634477,-5.9952474,0.43484235,1.6588774,-1.6930733,-2.0716195,-1.2271729,-0.17669988,-0.26804566,-3.0457473,6.283061,16.223045,4.757742,1.115626,7.0334234,-3.6041784,-4.2122993,5.4768286,2.4049773,3.9563239,null,4.6218686,7.1818185,5.1971784,0.2706759,8.135551,8.04072,-7.421987,-7.6465735,-7.211841,-11.699784,4.3808956,14.625605,2.8515756,-2.7809536,0.7144909,2.195117,-1.050993,-2.666439,3.2720714,-0.35735095,-14.754735,-16.056376,-4.579794,4.268283,2.9464574,-5.5857663,-8.402052,-4.846871,-6.84574,-13.030842,-10.8642235,-2.8466141,-1.0481501,-1.3115093,3.1003656,12.137018,16.586136,-1.4054232,-17.056572,-6.395419,-8.505547,-16.897905,1.5860558,3.9661546,-16.429874,-20.122879,-19.154911,-13.7544,-0.9337506,-11.001991,-26.22155,-13.975696,0.94075775,-6.921772,-17.78653,-10.847324,-4.56392,-9.242985,-8.255702,-8.852252,-15.71137,-13.872144,-7.689031,-1.5431051,4.1329403,8.466383,19.341663,18.402725,-1.4664545,-5.3901052,0.8484802,-10.389871,-18.647,-6.6832786,6.1738834,1.4224436,-13.168102,-15.0385,-4.9186573,-0.48965794,1.3586464,7.418928,6.705378,-0.5493355,-3.1842332,-9.718458,-19.267984,-11.538681,1.1316738,-0.04169345,-0.7906401,2.0900064,2.471346,8.28583,14.595354,9.269482,-5.1495337,-12.682362,-2.4290276,6.778617,null,-7.624704,-8.271985,8.790486,14.732901,2.382702,1.3302011,-7.0080805,-15.72475,10.067971,13.621671,-17.53292,-7.5596237,15.151433,0.84678936,-0.45166826,15.34562,3.5379148,-12.389603,-9.751871,-5.993719,6.859681,18.928654,1.8833265,-7.233906,6.422205,-1.6289655,-5.5802245,16.768892,9.690212,-11.570311,-2.914928,-6.0768566,-21.178835,-4.083413,4.31347,-16.022957,-2.257335,30.773502,22.182676,7.0802736,15.6027775,12.990769,0.101285934,-3.3969316,2.0421515,9.274983,2.747986,-1.0210166,11.9462385,10.545692,-0.47213745,-1.7230964,-0.9919982,10.098409,14.87034,4.022526,11.27392,10.527252,-9.377865,2.7649074,12.40218,-5.158787,10.772157,23.506147,-18.645866,-39.442253,-17.999596,-14.076121,-9.811306,9.793951,7.5417004,-1.6930082,-0.82621825,-5.31863,-1.104743,8.896624,11.688838,14.273579,-7.211637,-31.545223,-8.993706,9.070099,-1.978497,6.1307573,13.92868,-0.7614207,-15.599644,-15.002638,13.824562,23.457603,-17.225464,-26.025906,5.49047,2.1028519,-12.140759,0.79421425,16.1238,12.988099,-17.210182,-30.474106,null,-5.5410976,2.6401558,7.298813,-2.319715,-18.562862,-15.304564,9.940577,7.9565496,-9.278776,3.6495912,4.097453,-16.911827,-6.3613405,4.5071135,-7.210643,-0.6885514,5.173388,-8.312894,-12.392866,-4.0260367,12.243635,16.655535,-4.1753206,-8.95601,-0.095341206,-7.0964923,-3.219306,5.7767057,1.2126436,7.105256,7.254027,-6.0934463,6.9083705,26.425125,17.123074,7.273528,8.824806,0.6132071,-8.791031,-4.459938,3.6263893,5.042617,-4.062681,-15.608014,-11.364278,-0.22983074,0.699996,0.5918865,2.735294,3.6394076,5.763568,2.8040495,-2.238059,-1.7418604,0.70071936,3.8087544,-1.6730404,-15.324002,-16.52724,-10.407415,-8.072977,-2.6042562,-2.7260218,-6.9929504,5.8157578,19.18657,4.1397266,-14.273371,-7.0620747,0.23497248,-0.6768782,16.887552,31.47628,15.611195,-3.8528953,-7.3809047,-1.5013938,1.6499372,-4.6164527,1.405242,18.873146,7.5644503,-17.165642,-6.2298536,12.603556,-1.8392594,-7.9983387,9.848409,3.515909,-6.683717,3.816618,-7.2661285,-13.785347,10.646077,4.1045666,-21.043404,-12.567321,-2.1364295,-7.3809404,-5.6716075,null,4.530716,5.4650025,6.9620337,2.829762,-5.333706,6.4572744,12.694538,-4.4240804,-8.963143,-3.52331,-7.446489,-7.095439,-4.5110426,-11.818895,-11.7805395,7.8948956,10.746873,-8.409615,3.1488523,13.681841,-16.491707,-13.714394,12.770718,-2.578965,-4.5630946,11.120225,-7.997684,-14.4560585,-1.9930844,-10.195501,-3.3560705,14.8725815,9.267615,5.913929,3.280652,-11.435058,-7.3420124,3.3366556,0.4609151,9.470426,16.108772,5.1618786,7.0443726,8.528224,-5.18731,-4.1610336,0.9939532,-6.5137973,-9.434755,-9.883584,-7.2274256,-2.7353032,-11.63881,-12.463573,0.5661633,0.32543373,4.4854813,19.827917,10.161591,-10.964591,-6.0228515,6.5540543,1.786006,-4.016038,-2.9797044,-3.7380037,3.7480936,11.762163,3.468358,2.0901332,1.9979534,-26.483784,-37.581486,-0.6852305,24.267015,15.857873,7.227933,-4.124175,-17.637476,-13.129963,-3.0085335,2.724076,9.339787,-0.31679463,-20.310265,-15.7899,6.8667483,12.2705765,-6.870984,-15.423462,4.83102,10.787862,-5.3555126,-1.3866434,8.047838,3.167469,0.5106511,-8.510286,-16.020138,-4.319851,null,-5.8519273,2.5245957,9.986,-0.65480614,-11.167099,1.0981531,5.8238654,-3.323695,-5.4811497,-3.5113635,7.1763215,11.420791,-10.647649,-21.893272,-3.269126,12.109196,7.6509447,-2.391364,0.5962682,3.8550835,-6.927003,0.7034788,20.02505,-1.2605785,-30.989683,-17.119642,-0.10094714,-1.3727169,15.011256,29.099869,13.19686,3.9252343,4.3443975,-11.654887,-12.305874,9.312128,10.112682,6.5016613,17.365227,4.857381,-12.520922,0.1402893,0.7543249,-8.960667,10.542925,20.691887,9.319857,13.668406,19.50408,21.178257,22.838968,8.161389,6.492946,20.148241,12.599455,7.5361166,6.941974,-6.2211857,0.84762716,8.369509,-7.1275177,-3.022093,8.220852,1.3549457,1.3762646,3.176167,6.25381,16.344248,5.5650644,-0.2544608,22.364922,15.056985,-12.666797,-2.3267794,5.1991625,-12.101813,-3.9650514,16.104645,13.172234,-3.1922612,-20.852238,-15.542988,7.103186,7.9866056,1.01126,-1.0644646,-5.0694447,6.9562283,10.066275,-5.056108,6.1989036,16.583431,-2.254828,-12.96917,-8.501193,6.4959106,11.393059,-17.622295,-21.596207,13.677562,null,0.58874846,2.6746268,-0.21422577,-13.44042,-10.809851,10.609276,6.2569866,-9.703117,-2.7022634,-3.7785902,-15.093029,-7.9187455,1.476613,4.2442527,5.766695,-5.890135,-19.572056,-11.470771,8.129791,13.879929,5.439246,-2.1983392,-9.743134,-18.555803,-11.206627,14.373687,23.30905,2.990241,-5.812414,1.7104695,-9.747786,-19.241415,-5.6093855,8.052052,20.239586,19.1414,-4.1694965,-11.561493,-4.8794312,-6.6544943,-3.43653,-3.428913,-6.645809,1.6268501,-0.20239544,-8.532864,-2.7656739,-1.7947459,-9.394342,-6.973241,2.6165023,1.1505063,-13.938052,-15.148552,0.34208345,1.0896378,-7.007125,-3.7675161,2.492649,3.9263573,-5.801999,-22.739254,-20.551352,3.777691,21.424442,19.872055,14.264641,10.975433,-2.785987,-20.146109,-20.213211,-8.9046135,2.8284807,12.663773,6.6303997,-9.252631,-9.180096,-1.0236154,1.2361555,7.5295773,9.746038,-2.4460554,-9.845583,-3.1450577,4.072253,0.8211678,-7.3987427,-4.8922753,3.7863941,4.7632174,2.4724183,1.0324905,2.2962055,4.906349,1.2835999,0.8780838,3.8336353,-2.5073628,-5.5334997,-1.9432318,null,3.191802,-12.278542,-6.3374376,6.856105,3.7987208,-4.659886,-11.575294,-5.550905,7.3156443,-7.4865937,-19.35599,5.222558,16.563917,3.5193715,-2.4199343,-7.7023644,-1.2325094,19.329987,14.578009,-9.7509365,-21.272184,-15.366007,0.42955542,9.32848,17.398579,25.827831,-1.2294264,-27.314959,-1.8272407,14.80842,4.8885183,10.644033,-1.3314068,-29.233124,-23.389874,-4.896132,9.748737,24.328667,20.282207,10.209016,4.9998055,-0.38123274,5.0728083,4.9253283,-5.622074,-3.1271534,-6.756463,-16.153269,-1.4254484,6.079768,-8.115654,-3.4591298,8.062432,1.4057186,-0.81723833,-1.8760595,-8.321247,2.5017824,6.595087,-5.73929,8.696323,21.514763,1.2016587,-7.088976,-5.1301026,-8.250007,-0.28766918,-4.7132916,-10.49621,5.1841373,3.2103784,-3.0555534,5.5534124,-10.626947,-24.77191,-5.0964785,11.414923,13.281067,3.8115659,-10.610515,-7.1799674,-0.19202852,-4.4183035,-0.64714146,10.6771345,7.203287,-11.795785,-16.644854,-3.6587338,0.4859512,1.3268211,-1.3452742,-10.471493,6.9683323,16.367601,-17.727488,-14.630932,19.177975,-5.8655806,-27.56705,null,-5.7982545,-20.960354,-3.148536,-1.4328804,-5.131731,-6.0472918,-11.4071865,1.1491458,6.0817432,-10.671322,0.016934395,22.167316,12.737914,-3.5155196,-2.5536737,6.8453445,6.085676,-5.948556,-7.28405,-2.9285498,-4.718359,-2.0457227,2.5526643,1.8667674,-5.3786464,-8.868231,4.6053395,11.72807,5.204998,0.3096528,-14.779208,-14.036436,12.790957,8.620943,-5.712866,6.04427,1.621397,-6.15006,3.5238485,-3.527613,-8.401245,1.6060686,-1.689785,1.0804949,16.088078,17.19261,12.944171,5.0802245,-4.6679707,12.322542,29.55941,8.229701,-2.0674129,20.520473,19.424356,2.6432831,8.012824,8.219938,-4.2332993,-5.948949,0.6135564,9.271494,10.156877,6.6372128,14.016693,13.791274,4.8513966,2.978946,-9.01203,-17.181879,-6.0423384,-4.88737,-6.020589,-1.7247834,-9.173777,-3.9079895,10.02965,5.781282,7.6675434,7.363704,-12.632023,-10.800274,10.8741255,14.531727,3.8899493,-9.802234,-10.053816,2.7199988,-3.993884,-10.925125,10.348661,20.110994,3.416064,-7.631254,-7.347302,-3.934103,0.74798155,4.034149,2.3560076,-5.4683394,null,-9.773517,-12.743329,-2.8490036,3.1640213,1.1289626,4.137921,10.762047,3.4794278,-6.099603,-4.3417563,-0.63188565,5.256965,5.1862764,-5.181559,-2.891698,0.28270245,-14.202597,-14.204425,4.5777807,10.788137,5.8357816,-1.5886784,-12.197355,-17.778614,-10.402295,8.043715,15.710371,-0.5505047,-17.954018,-22.206356,-15.551183,0.5581374,6.7671432,-2.5596468,-5.399928,-5.1568427,-18.378365,-28.227423,-13.158386,5.2168045,-0.9713073,-10.84878,-7.1673555,-7.530442,-9.029759,-8.356764,-20.319492,-29.122051,-20.344927,-13.869696,-16.050863,-12.038803,-2.5558548,-4.9336457,-13.194683,-5.003811,7.017213,5.3845572,1.9772367,3.6748228,9.000313,8.051512,-5.3147583,-6.5656824,3.8637698,-1.6925062,-10.76921,-7.6351347,-0.76369214,5.3367853,2.8036618,-5.6009836,-5.705718,0.6572356,7.0146503,6.9549847,-3.9747286,-15.800806,-15.982664,-5.625655,-0.6614866,-1.8003018,2.3744283,-4.2753234,-18.244846,-7.1855354,12.555227,11.000229,-4.5582256,-14.765253,-3.3966064,11.340649,5.7882814,0.3873465,4.3710556,7.9106336,7.5067472,-1.9041858,3.5744853,23.013258,null,-2.3559327,-7.381194,-5.8466854,1.282089,0.2946558,5.2926693,6.279298,-3.2596726,3.562869,18.086418,12.351442,-5.494387,-11.019642,2.9929786,13.326276,7.597735,12.645096,22.445045,0.63532233,-19.869873,1.4895911,20.32099,14.36615,11.466604,-2.7388036,-20.252254,-6.2227573,4.295182,-1.431262,7.9233665,8.226421,-1.2506051,8.357111,12.203213,5.2974224,-0.63938713,-13.814537,-10.720177,-1.2258556,-16.709291,-17.507645,2.3275256,3.7607489,4.3682833,6.2241983,-6.289366,-3.3660996,11.777353,9.138407,-0.47358727,-3.6681209,3.5681105,14.503824,6.6249256,-4.7703514,1.2397399,-0.76420975,-13.15681,-11.948173,-4.2037773,2.0509186,8.534895,12.196688,14.826101,6.9255037,-9.601162,-11.360888,-3.9158156,9.317951,32.455013,27.948336,-0.47976518,-3.8571339,0.26584864,-9.355793,-8.924625,1.1519594,10.710585,5.7572556,-16.3973,-9.115225,20.97086,17.237232,0.35136414,-2.9582887,-4.072791,5.528705,6.1332045,-8.610994,1.481595,11.2146225,-4.0345116,-6.193684,-5.284389,-5.935858,16.986462,15.743301,-18.234947,-12.408471,19.018053,null,6.594448,16.889824,-1.9223112,-4.3422384,1.713881,-1.8095634,0.92988825,0.3596735,-1.9343255,5.3694286,-0.7045088,-8.471965,3.934692,0.7508106,-15.138926,-2.9367952,13.818288,8.970168,-0.35917044,-4.0199194,4.888885,13.411454,-1.4658747,-10.785809,2.235489,4.5119886,1.2902204,9.32065,2.717967,-18.935211,-24.419144,-13.100805,-2.264668,8.132876,15.623964,4.257786,-9.676453,0.46197748,5.5947766,-5.8882236,3.7142072,14.255833,-1.8112278,-1.9342041,15.071422,10.376378,3.1271663,8.723346,6.821684,5.3357773,13.897944,8.806906,-11.46154,-9.761266,12.642412,10.250448,-8.117961,-2.4558372,8.549004,5.599596,4.7000165,5.506118,9.11169,12.388611,-1.1649423,-7.3468657,4.652898,-1.6692147,-15.421128,-8.519467,2.1078143,11.406616,21.312794,18.267328,4.69724,-8.175876,-5.5946627,9.415409,7.200484,1.2951002,12.733072,6.440443,-12.843357,-6.335411,2.2627115,-2.7867541,1.5104644,6.1785707,3.9056473,5.3954153,-1.0562878,-11.479914,-4.5539274,5.7491655,4.1874194,2.8146963,1.2249904,-7.1959615,-9.611076,1.6567955,null,10.890184,4.793927,2.4735694,2.6931896,-2.7948463,-4.3617926,2.4298077,5.416584,3.5326858,4.08139,2.2398486,-2.3203192,-1.7126255,1.3484303,3.389075,5.4398265,0.79815006,-5.4571333,3.8681717,10.102642,-8.432886,-14.197481,7.4691334,10.68916,-0.5027243,3.277404,-2.305197,-14.888749,-3.1992989,9.267477,1.9598455,-2.7410789,-0.33002806,-0.66079855,2.2203627,10.324637,10.499359,-1.4164159,-6.9361815,-0.32033873,-0.97253466,-7.571748,-5.356672,-4.5740805,-9.961715,-9.421552,-8.59653,-11.538244,-10.57223,-15.903383,-25.190758,-21.863491,-24.514717,-31.281767,-11.251852,-1.5789366,-29.432125,-35.63216,-11.786337,-5.2664924,-7.400505,-2.9164162,-4.368101,-9.419652,-13.8988495,-15.767954,-8.791731,2.3888245,7.2332883,3.270018,1.4352922,-1.609555,-16.777706,-13.478346,10.446405,4.430572,-11.965666,-4.291154,-7.176672,-12.528494,3.5454178,3.5021377,-11.184004,-9.08705,-3.783896,-1.6630538,4.767663,7.104241,1.3276653,-6.5706434,-5.966815,-1.4586344,-4.5801125,-0.9012542,6.065704,-3.8632755,-4.8272915,13.7880125,10.047015,-15.980893,null,4.779461,-22.031364,-15.204741,6.3661156,8.099268,-2.327939,-8.968736,-0.641067,21.23985,19.442902,-8.475944,-5.994483,15.595847,1.400383,-10.590817,7.655607,4.2873087,-5.103046,11.24333,3.0065165,-15.391006,10.934597,29.20565,3.5679584,-8.979027,8.447073,15.562965,-1.3041778,-10.05023,5.5867944,7.273935,-11.191456,-9.351086,2.6706238,2.0003166,3.482731,8.314202,9.011147,4.9112597,3.6448233,19.642277,23.760025,1.5150981,4.0509706,21.214165,11.4094925,12.175564,27.16461,16.499788,2.3696365,0.21952891,1.5403571,14.807352,11.688833,-10.357488,6.4072895,36.438736,22.085258,6.912739,14.617683,7.6440144,0.82940865,3.1675453,-12.330398,-19.832523,-3.3837423,3.4102468,-1.1461539,-8.470135,-14.914458,-3.7428002,3.6214223,-4.471427,2.095004,2.2015846,-15.339141,0.65767455,23.487692,-3.1065712,-24.164087,-4.76213,2.9611373,1.0477791,10.68814,0.40675116,-10.491979,7.183541,8.994562,-2.2689157,8.78611,11.155882,-1.5496304,-7.106985,-8.566775,6.456808,16.664509,-1.4443111,-2.4227686,4.979438,-9.03799,null,-2.9049006,-0.037646294,1.3232937,2.0922952,9.163708,-5.562312,-16.541685,-2.5681767,1.2156136,-10.511875,-10.359274,4.600448,6.53961,-12.348444,-15.5861,0.96171045,0.16817045,-14.659735,-14.883857,-1.6569445,3.4297583,-3.8455484,-5.8230953,-3.5077376,-7.125633,-5.271052,3.364931,5.555238,-1.171484,-9.031182,-5.1067715,4.7304783,5.16406,2.9285796,0.62142396,0.36064506,13.848912,20.531582,6.0614395,-2.2550325,-0.55285037,-1.0900149,5.684407,9.243687,-4.2861776,-8.885208,2.5090792,0.5756388,-7.288556,0.34644568,-0.39957666,-15.728884,-12.904987,-0.5123818,-4.937213,-11.365554,-8.778381,-5.9333315,-2.4058125,-0.37565303,-1.0082474,1.010119,-0.8708453,-6.9599767,-3.2906358,10.060352,18.578247,10.944034,-2.171447,0.011231661,4.0328693,-2.7383487,2.6136858,10.729019,-2.5960531,-11.241362,-3.8106246,-2.9814816,-2.094791,9.540902,16.031414,6.5806026,-7.1504955,-8.708595,-6.135664,-8.831196,-1.5856459,8.092351,-0.10749674,-5.9638534,2.28022,1.3021317,-6.0306897,-0.01982987,8.567669,8.232407,5.480428,-1.198216,-5.212431,4.9412694,null,-18.86427,5.4996533,9.938018,-3.7879057,-8.515586,-1.3856754,9.201202,5.5353913,-3.2483609,2.1692705,4.7295227,3.4017313,7.346819,2.6664584,-2.5410109,1.0551257,5.0291376,6.5841312,-2.3215437,-7.1541657,3.313127,-1.3152468,-9.370941,4.915663,9.331696,-1.6601543,-2.4087055,4.2902474,11.430006,10.678619,3.0790215,3.8632312,6.011302,3.3319883,0.7157104,-6.3735676,-11.408582,-8.801306,-3.5499082,4.1109695,4.4390073,-2.6198673,-3.692182,-4.1607256,-0.3680911,10.689168,2.3003578,-17.1772,-13.059572,-0.05836618,0.376858,0.5701897,4.4551954,3.196487,-1.060848,1.8964663,12.182156,14.676398,4.649541,-7.414079,-16.438583,-19.310513,-13.7211895,-2.0953753,9.124173,9.214449,7.3118677,14.498476,7.909746,-8.850662,-1.0567589,15.276231,10.654509,-1.2506669,-0.5626799,10.876122,10.741149,-3.4300098,-3.6352346,4.385334,1.6356065,0.0372653,-0.43935966,-0.72273016,14.651751,24.569824,-1.1301289,-25.557867,-2.6620903,21.88968,2.4151697,-8.759763,2.9067693,-5.300967,-5.085881,8.519852,-7.338866,-14.6286,3.747407,-0.3415277,null,-0.23429084,8.570889,0.38388538,7.8891897,19.735598,12.634417,10.4602375,6.1963434,-2.2726743,14.6844845,19.702549,-8.599456,-9.284748,16.159721,7.25008,-22.96767,-16.713549,15.9454365,14.17549,-12.592687,-7.230772,14.071099,8.286238,-10.026388,-15.857978,-10.976545,-4.467846,-0.43211937,3.6010613,3.5122662,-9.480304,-16.871147,1.2619815,8.335631,-16.674429,-18.599808,8.360192,12.402664,14.074028,28.163708,13.542841,-7.1672745,-2.5515232,0.43719673,-1.7306678,-6.945242,-11.726788,7.8107195,12.422459,-14.054701,-2.504282,20.15348,2.8532298,8.2086735,27.200603,3.990274,-7.609956,9.6682,11.671783,8.061721,6.2946424,4.394248,7.5030937,1.731506,0.1631639,5.723535,-8.892225,-18.019396,-2.9472375,0.65731335,-10.6151495,-12.414095,-2.7264915,5.2692914,5.6972504,2.188108,-6.4758306,-6.440544,4.4787197,-5.4948626,-15.442231,4.5140305,11.625955,-1.6048431,-0.93893814,8.529229,13.814138,4.2667856,-7.2239676,6.0702934,11.523342,-5.2770796,-5.573881,-0.21291232,-5.5093536,1.169549,13.362262,10.359754,-2.5891652,-4.1791854,null,12.901423,-3.280485,-3.3354397,6.812891,12.991459,9.075189,1.3177717,0.8825133,4.8391314,0.3609419,-10.67871,-5.153434,11.587233,8.882429,-6.931835,-15.941453,-12.362762,0.51762915,2.2872791,-2.2079206,5.747617,8.86028,1.042706,-4.1088696,-3.676418,3.0910137,2.054969,-8.368386,-7.5511436,-0.48678303,5.4478955,9.667992,4.799892,2.382093,3.1391578,-2.3907743,-5.6620216,-14.442661,-26.970575,-25.813213,-24.538752,-22.35434,-8.9276085,-5.1767154,-9.800237,-9.42403,-9.925668,-7.7719088,-9.550341,-18.511078,-8.814104,11.894587,10.626405,-3.133194,-5.407582,0.26001287,-0.17790347,-5.792314,-5.1124196,-4.0879707,-11.813204,-11.101372,3.415917,8.265201,0.9894452,-1.0210271,0.31900454,-5.0554743,-11.053674,-7.966708,-5.3283153,-11.879831,-11.949866,-1.3862295,1.7838261,-4.976877,-8.545197,-0.7365117,4.8614798,-5.8484983,-10.306395,-1.2458999,2.7390828,9.616804,7.538052,-9.651285,3.206345,24.306793,5.0349274,-9.781761,3.2128286,8.02713,2.537739,-1.2273622,-0.78449476,3.888173,8.807373,9.956351,-2.2045612,-7.345731,null,-10.770276,-2.6091976,1.6950496,2.2433434,11.571569,7.4721475,-7.752198,-8.261423,7.9672484,11.382405,-4.4471645,0.96092606,9.53998,-8.830216,3.94511,32.22281,2.1810174,-25.839447,1.2240839,20.459484,11.238593,6.054332,6.3542123,4.737167,3.457624,6.6217813,16.398066,20.370607,7.217445,-3.949068,3.124524,8.163662,3.789619,3.0053751,-4.4000025,-14.205701,-4.284406,6.249864,1.6551671,4.9332857,14.834345,14.68135,12.8013115,8.525004,-1.8495255,-5.169201,-8.308157,-10.133117,8.383971,13.440823,-9.318046,-3.5129998,14.787327,-5.8672733,-16.854298,6.925775,9.358114,-6.056507,4.5430775,25.294239,25.056887,9.639897,-2.9555707,-4.355147,-3.7564797,-10.755274,-7.6506524,5.890458,-1.5457659,-16.926912,-9.863212,5.4734254,17.706486,25.407284,22.922916,17.528595,6.4042,-4.8814583,-0.47956514,2.5887814,1.6110401,6.948968,2.0425425,1.4592099,18.32447,14.203667,-9.382928,-9.498959,8.205317,9.077269,-5.494157,-7.710616,4.1924167,7.1378803,-6.613473,-17.426306,-7.421989,2.4609919,-3.5152352,-6.6764956,null,4.965874,-4.8433847,5.8844557,8.870331,-2.0696,-10.792686,-3.5414667,4.9612656,-14.10555,-15.36041,15.129696,5.3206043,-16.459124,9.703749,19.774416,-13.471851,-23.72939,-4.882269,2.831071,-0.57717633,-0.569705,3.664958,1.4400935,-12.017296,-11.39703,5.9989676,3.531212,-6.95706,1.504878,8.070212,11.212627,11.574976,-8.723617,-17.03953,1.498756,9.150181,8.100372,5.6218386,-5.538093,-0.40595818,8.958455,-11.029418,-22.499458,-0.29981804,13.605605,9.056527,9.196241,7.5120163,-0.0039024353,1.7391689,8.994726,6.6315,-3.5891862,-5.2701306,6.417071,9.805449,-5.606571,-14.015916,-1.0341672,7.142701,-1.8184605,0.30077028,9.972753,-2.6114068,-10.2411175,3.8044498,5.4483542,4.4772425,10.308837,-1.0425272,-8.281801,-1.5652428,-2.108904,-1.5458236,-7.7429543,-17.99318,2.799962,25.291521,9.323901,-8.307796,2.49496,12.601507,0.61262274,-4.8895645,8.134623,7.1973653,-6.293851,-8.614288,-3.7468672,3.7627409,4.226441,-6.0075245,-3.3738775,10.046534,8.183916,-3.7044098,-2.8559327,5.8150187,5.6344805,6.447377,null,-4.9254713,-10.967961,-1.7145705,7.6674967,-7.6510344,-17.187181,5.0333333,8.438836,-8.631998,-0.13767195,8.609264,0.9566574,5.2189245,11.951458,1.8509439,-7.3840966,1.6909103,8.586828,-2.1594703,-8.007927,-3.9559631,-1.4263244,-1.0454872,-6.619165,-0.3045535,18.061882,12.3082905,-1.7809229,-1.4606276,-5.261761,-6.5853443,-2.0882425,-1.3718605,4.1062946,5.1125503,1.1694839,1.882215,-11.073703,-25.415096,-14.083271,1.2874968,0.76491904,-6.716479,-10.076874,-7.530946,-8.67849,-11.046229,-5.290306,-2.3564956,-8.977955,-14.719484,-18.915104,-26.048275,-24.622265,-9.72783,-1.5250926,-6.1090045,-5.1198635,2.386544,0.6200943,-12.151067,-18.068018,-5.8158674,2.9830885,-4.6735272,-2.7604215,8.515446,2.2840877,-3.9992628,8.296186,16.380919,12.956174,1.8268919,-12.777467,-5.2437034,8.43026,-1.6674209,-4.7015333,-0.63555145,-7.9939528,2.5728478,10.408611,-2.1135757,4.77203,4.2739296,-14.471489,-3.4692292,7.22803,-2.932897,-2.8729982,-2.9451833,2.5277243,12.522129,-2.3431664,-5.972797,13.4533415,4.7787294,-14.035838,-4.555184,9.701298,null,-11.393195,9.306817,15.774069,-2.1396828,-1.4065819,-0.019405365,-0.6412692,0.781909,-4.278447,1.6630267,-0.1169548,-7.505087,7.987829,2.6541703,-5.1442385,27.38821,18.54021,-20.368376,1.7865261,23.353542,-1.0819674,-13.690287,-9.967516,-3.6032877,5.6480317,4.423622,10.248866,24.898247,14.41428,-7.038021,-8.880852,2.33255,14.68844,6.5417695,-21.765263,-18.751915,9.791659,12.008351,10.064915,17.014061,2.517549,-1.6329632,15.174683,6.5944076,-0.22275543,21.477966,21.957191,9.274057,21.535362,18.371536,-4.942975,2.7364273,10.115532,-13.654039,-14.849515,5.9788885,7.100644,6.564648,7.490571,-4.5181866,-4.1351147,11.559946,17.39983,11.606068,3.2272925,0.4010315,6.9385195,10.252301,-0.7475419,-8.609436,3.665535,16.324335,12.193897,-4.494932,-21.07492,-13.34404,1.0240531,-7.289287,-2.588429,16.393593,11.387608,2.0802631,-5.5284934,-17.702862,-7.1474166,10.304489,8.410955,-2.0296204,-9.971663,-5.558889,-0.7917721,1.327692,13.227465,1.9673996,-14.787979,10.035696,15.347299,-14.422495,-13.251734,-5.3698406,null,14.637958,13.457613,-0.9388119,-4.5710363,-6.67533,-8.526557,-7.3318615,-6.504932,-2.5724785,-7.1291904,-12.996024,-5.8244305,-6.7598934,-4.429587,7.9328656,-3.0468884,-3.945062,17.808422,0.45245314,-25.815094,-10.210192,3.8770118,0.79491925,1.46992,-2.121234,-5.882014,2.752124,9.521811,-2.765707,-19.885805,-15.183332,4.6474514,11.863395,1.3217735,-7.6637497,-7.5159607,-9.133464,-5.327869,5.776067,0.13977408,-10.384914,0.6429532,13.650387,8.206013,-4.642932,-7.069054,0.08502519,0.5380006,-0.01405406,6.042525,-0.36265182,-14.571892,-5.3919015,17.80683,12.785327,-9.308466,-2.8925557,8.060724,-5.802067,-9.248297,-4.736418,-13.222128,-9.416644,2.104929,2.5730224,-0.76651573,-9.008555,-5.7854934,14.736895,16.663988,2.2826176,-1.4573803,-2.4624152,-6.0763874,-6.458707,-4.8905177,2.3448,8.446407,0.91580105,0.016579628,13.752352,6.724005,-11.281256,-2.7122433,9.839375,10.778403,9.696358,-5.3747616,-14.772845,-3.3098793,-1.7631326,-7.890538,-5.935006,-1.2534266,2.3542352,-6.928999,-11.691475,8.299663,16.61857,1.6729476,null,21.411446,2.999312,-15.552739,-10.669113,3.4570694,10.864098,4.937729,1.6054564,5.120762,3.0123968,4.143853,6.939826,-5.716398,-13.924742,-4.616191,0.89510804,5.880863,7.116562,-6.6574554,-3.8133006,6.9910088,-4.397303,-4.078286,4.501732,-2.7296457,0.85518146,-0.12767243,-11.917607,1.00512,8.717341,-4.844962,-8.929712,-9.166651,-0.73069704,12.288174,-0.5125065,-11.7226715,0.9342239,7.183933,5.5153966,9.396725,7.920152,-0.11772728,-0.49606037,3.8239107,-1.018729,-10.698161,-14.500058,-5.8237906,9.978291,11.4665985,5.573655,3.7361498,-9.498646,-16.48703,-5.798435,-2.9006026,-2.8633757,-3.6496935,-7.372632,3.041224,7.424756,1.6607556,6.65413,4.4046097,2.2481813,10.51267,8.628168,8.689148,3.4536788,-8.620939,9.633954,17.161892,-2.7592444,14.449175,24.31198,-16.767956,-22.120235,13.546799,11.833961,-9.21335,-4.7759914,3.7072167,0.1839819,1.484021,2.5479276,-7.9741807,-6.931697,8.859288,4.2637024,-13.43253,-8.382202,3.671308,-4.2496376,-13.53227,-6.3885837,2.643085,0.53486156,-1.4948895,2.0638635,null,5.3513117,-3.4065225,11.324068,5.663859,-7.6321416,1.623812,5.886718,0.53316,-2.1738157,-3.4917774,1.0535889,-3.2088547,-13.843664,0.07295632,16.008802,-0.041240692,-18.928505,-6.5005813,18.20678,15.984813,-0.7008543,-1.1265306,-1.5082786,-3.7794795,-8.449606,-33.440804,-26.445156,17.788488,15.81214,-9.038402,-12.277915,-18.46764,-4.6889715,14.295402,-5.1427746,-11.630247,7.074727,4.43254,-4.58741,0.44792557,9.064434,12.323722,13.194822,18.790596,13.734083,-2.3936596,-5.271622,4.227341,9.516368,-0.56304,-1.9876816,21.97255,15.616837,-13.024221,7.267262,32.458736,15.449671,4.2719736,8.443676,2.9985337,-1.6020494,9.537809,15.3512,-4.336438,-11.498008,3.8799438,2.2463565,-2.9282238,-7.3451333,-20.68825,-3.4874659,19.444132,2.9747748,-13.2902,-12.410896,-4.094845,5.455028,-9.562754,-13.451635,20.153988,22.270384,-12.899003,-20.624147,-3.4289331,4.663933,-4.2901397,-13.134426,1.5771599,15.386311,1.2136445,-4.8155346,8.435551,4.52432,-7.3620105,-4.963689,2.6055803,10.77824,7.3433595,-3.226505,2.675281,null,-7.7572756,0.23570442,11.824638,-0.6345663,-7.463686,2.25905,2.6079178,3.985687,9.123716,-1.6882365,-9.204792,-1.3058128,-1.0972571,-0.6481698,9.491362,5.590866,-4.4962444,-1.854866,0.024032593,-2.9894466,-5.815777,0.28529382,17.329994,11.505638,-12.276258,-11.960831,-0.8993206,5.4567833,8.309178,-1.8270278,2.8296304,20.529682,7.5117955,-10.052685,-1.2146118,4.941181,-5.137762,-14.813456,-11.5771,-5.141307,-3.2429366,1.7515662,1.2521572,0.7947291,5.6138725,-7.4684525,-12.398665,4.563137,-5.7551584,-22.26772,-2.5140846,18.231186,14.451353,3.0435863,1.241979,-4.8829885,-26.423956,-22.049591,1.1153269,-10.410738,-28.541039,-18.923117,-5.19596,-5.076115,-13.340965,-7.441643,1.6968169,-8.207156,-5.8794365,1.1455839,-12.324757,-9.720669,2.9521086,0.96973383,1.4290161,-3.6829805,-5.7536864,7.438348,2.4390938,-10.103313,-6.491455,-3.269287,1.7029067,1.4868,-11.741006,-11.807545,-3.0576587,-2.6318069,-5.0607147,-11.157259,-6.7208786,9.482524,4.806226,-7.352087,-0.9992559,-1.1785307,-7.0193663,2.9176583,4.117534,-7.596439,null,7.246567,7.0444293,-16.851168,-1.0759585,13.930321,-7.997699,-12.37397,7.296668,4.3981304,-14.451079,-14.131043,-2.746479,-5.4983644,-18.257465,-22.765167,-5.774662,14.421724,2.6692197,-12.523064,10.554623,33.49892,15.815,-13.153367,-8.234565,14.8456135,8.7448015,-5.220382,1.4060836,2.9301815,8.215919,18.291395,5.3323383,2.1315975,15.367747,6.603586,-5.877359,-2.164351,7.798398,5.489251,-16.798672,-11.985233,12.532439,-4.8957834,-15.139667,11.304226,3.5984733,-15.4128,5.1144633,14.479723,-1.1622095,2.3301077,13.043452,6.506446,1.124785,6.441865,13.9823885,16.051794,2.912756,-8.070179,-1.3096237,-0.02844596,-5.336984,-8.455398,-11.67229,5.663901,14.909655,-13.4640665,-16.298439,5.177317,-1.6309605,0.20315361,8.961721,-9.002563,-5.225267,18.950535,8.780659,-11.9693165,-7.563656,3.4803603,0.7778404,-7.481947,-5.726825,2.6954155,7.824176,2.8887417,-9.848734,-7.7094183,4.5191216,-0.47950888,1.0414829,21.308447,12.29893,-13.688076,0.031547546,17.061575,-3.9821825,-11.797022,6.536833,7.220069,0.31422758,null,7.542479,6.0712495,-15.353119,-6.5341434,11.1896305,-3.30145,-19.994267,-10.2222595,-0.44000578,-9.024687,-12.491978,3.5790694,9.210985,-1.3087373,8.675829,16.38286,-14.212166,-30.916065,-3.4311314,19.028591,11.236896,-7.657897,-11.015949,5.481248,7.7129536,-14.194349,-19.66628,3.7967336,15.033253,-4.5010405,-23.061821,-24.021753,-13.9264965,5.815192,11.430067,-6.6403546,-10.68928,5.9502497,14.962258,7.026085,-12.790184,-21.334742,-8.503933,-4.0141487,-13.124632,-13.605867,-6.470118,5.2855754,17.497627,9.312592,-7.123219,-1.66363,1.0543375,-17.821888,-19.795975,-4.1196795,1.3541842,10.517626,14.518544,-0.7195258,4.509306,23.337917,4.701908,-26.531513,-22.963787,-3.2384746,4.4841194,2.8264341,-9.213101,-22.08887,-10.12779,11.602928,12.327555,-6.3662667,-25.07546,-8.845043,22.350668,7.775739,-5.835831,14.040232,-0.20714378,-13.820551,13.472902,6.310461,-13.820048,8.630415,13.655289,-10.359574,-9.699802,8.4789715,9.983728,-1.6078315,-2.261424,-0.8606534,-3.4219687,11.078894,11.146828,-13.238932,-1.4653568,21.8954,null,-2.45636,-13.616436,0.5748174,10.415286,-10.251265,-9.963779,7.742319,-2.8973186,-5.802474,12.16764,9.652986,-4.593077,-1.1057348,13.461845,3.0941281,-23.952469,-8.561922,17.337584,-3.5385027,-17.058447,-2.0967946,2.899572,10.394691,12.674076,-5.8962736,-4.4604244,16.087261,10.039403,-12.895108,-12.72412,4.8449554,7.720098,1.3458145,4.5498114,6.0438175,-1.461321,-9.4775505,-11.227964,-6.015626,-7.196537,-13.792167,-9.113779,-2.7965126,-4.8114347,-4.817831,1.1497993,13.522796,19.36583,3.1174822,-9.136586,0.58639693,4.922512,2.1546404,5.56545,-4.337758,-15.472442,4.115876,18.853914,-4.64624,-26.13765,-17.170269,-1.4219015,1.3509581,-1.9393113,1.2451131,6.3664064,3.1671433,0.30977392,6.4576597,8.095581,-3.5452843,-11.21033,-4.791752,-1.4828186,-12.987442,-23.587381,-6.2537904,22.937937,6.940431,-29.111813,-13.854681,6.6008496,-16.823544,-26.48132,-10.879256,-5.2386026,-3.6149318,-6.673493,-7.448101,1.4722521,-1.9488685,2.2090006,17.521832,-3.746046,-21.125458,7.316639,11.0900955,-15.184883,-9.201163,2.2242203,null,6.8566875,-3.5750318,-1.0426311,4.9531794,-4.0710015,-12.025506,7.3987846,8.814456,-16.604145,2.1930466,25.70564,-5.842563,-13.668758,9.730549,-7.7731905,-18.218878,11.044695,14.4205065,-10.988987,-15.562184,4.565769,13.3455925,-7.928751,-20.87347,-5.152493,1.8807359,-7.7919755,-16.758188,-19.291813,-5.142873,2.6739259,-14.97719,-18.091074,-4.4206233,-2.9350455,5.3368044,11.936598,-2.8093538,-5.9350533,-0.74432755,-1.6673925,14.941458,17.76111,-14.301147,-29.189642,-22.865944,-17.76915,-7.559009,-7.52925,-14.593683,-14.824057,-21.347578,-14.22709,3.4096355,-10.289949,-20.279963,-4.3921065,-7.367156,-4.7608614,21.602936,14.737133,-9.695072,-4.296229,6.4773755,12.314392,19.614777,11.104251,-3.0858915,-6.5884805,-1.3547425,8.782056,3.0875673,-12.722719,-7.699942,3.9333127,3.833799,-2.5628796,-4.71377,16.165699,25.65298,-3.8431132,-8.020237,12.828848,2.0993075,-6.7228966,-2.2964487,-9.176143,0.82228184,12.585158,-0.17123604,-4.415945,-1.7879331,-4.0780673,1.8210056,-1.1909418,-10.701071,0.065160036,12.526242,2.3177843,-8.582757,null,-10.0582485,5.439274,-6.1088295,-18.771013,1.2014341,11.614437,-10.077749,-13.026972,8.394644,10.426062,4.6296954,5.204832,-5.22938,-7.051672,6.5428767,4.874466,-5.2301884,-10.0685425,-16.985249,-13.803176,-2.6419334,-7.4390755,-12.130588,7.9295425,19.376785,-4.352491,-12.671332,17.893063,24.848444,-2.2506535,-7.0813446,4.1034117,0.32875156,-3.949,-3.843069,-7.0293293,-8.689455,-13.524363,-15.744741,-7.273504,-13.06892,-26.22165,-11.133844,2.233694,-4.2555723,14.11237,35.043037,15.953056,0.8827174,8.445841,11.408207,17.65213,22.008463,12.038969,6.614926,4.4246063,-2.0893817,-2.9026203,-3.871438,-7.8119955,-5.894958,-0.34050655,4.066272,2.9192657,-4.2591915,-9.0528755,-2.5128162,11.082182,1.9381254,-26.431217,-16.62091,18.264685,9.364888,-17.714344,-6.040643,15.464048,4.9845295,-14.540797,-1.070262,24.828396,11.894039,-13.808816,-5.6275406,9.261946,13.101164,21.152798,17.342003,2.7675858,1.6407981,2.225543,-3.736009,-5.1374536,-2.6695442,5.8432875,10.019623,-2.9034991,-4.743906,7.097509,-3.7662113,-15.142981,null,-14.800806,8.195371,4.6644697,-7.1392326,0.9818096,5.5645103,-3.3631027,-6.2260575,5.955683,8.072048,-9.448709,-13.716978,-1.0841074,5.0039663,5.76622,1.3981209,-7.6367054,-6.5950494,0.2327261,-4.1894226,-16.542936,-15.844238,1.3212924,8.067031,-4.7451854,-13.79649,-8.081459,0.06773114,-1.6127496,-5.714389,0.512161,8.843603,11.841974,10.970795,2.5127602,-2.7321491,4.4287376,6.128293,-6.173215,-12.68828,2.59725,21.08207,20.09929,13.686585,6.540318,-8.97925,-10.3014965,0.15249252,2.2775373,5.353266,-2.8990774,-16.026045,3.057579,18.3623,3.84334,0.5787153,1.6025136,-4.086827,4.881916,9.499878,6.095322,6.026304,-11.955644,-23.536268,-0.08193612,15.520934,7.6941414,5.125827,4.741516,-3.1141133,-6.640604,0.4605198,7.8326883,6.0058537,1.0077264,-1.3136454,-2.2415059,-0.5200887,-2.5809293,-12.534803,-13.197499,-1.9678347,-4.4440417,-16.55225,-12.023003,-5.217553,-8.126828,-1.9174333,-2.8482084,-18.365555,-10.817445,1.3623738,-17.171246,-26.187824,-3.3546479,12.006355,0.51164746,-13.218623,-7.4603877,-4.138875,null,15.143857,-6.8845344,1.0870602,15.824851,-3.8509526,-9.453535,2.539165,13.545229,14.247864,-9.723402,-4.3112497,28.836855,10.680324,-11.262953,9.605235,9.983427,4.2888546,15.090921,-6.643668,-23.559582,0.7446332,6.1641636,-11.035466,-16.154331,-12.532002,1.3354459,1.6899052,-15.032176,-3.1026726,4.468153,-19.45241,-14.58217,2.9458222,0.36882734,9.054461,1.496633,-13.481022,14.3417425,20.819313,1.7886848,20.130886,8.570363,-33.186153,-16.46232,8.987349,7.2498903,13.822264,4.6226645,1.1842148,30.659344,36.474007,22.179153,16.877838,4.0559025,-0.6010208,-2.950584,-17.906416,-7.3239193,10.863281,-3.2954721,-14.205415,-4.9434357,-2.3723688,-13.470577,-17.419832,4.1046295,10.896225,-22.223642,-28.61216,2.091615,1.1637845,-21.303268,-20.00605,-3.1306286,7.4037776,-5.918271,-19.6702,5.8129406,17.160576,-17.631355,-13.424922,21.774364,6.9723186,-7.6882963,7.062709,-1.9191687,-1.9315224,16.25487,0.30506492,-12.080118,2.338056,2.6997666,-3.0466712,-1.9024377,2.3139167,4.772208,-8.472286,-7.5992503,13.372736,8.800675,null,18.32988,-1.16495,-19.656183,6.517154,13.723939,-8.332238,-4.59025,6.6959925,0.88098216,-9.285412,-5.8909874,12.014721,-2.150595,-25.999638,5.5170174,24.580948,-3.3143287,-5.1031566,2.9324083,3.8100128,24.400812,14.704256,-15.817938,-5.0683117,1.1128418,-11.974341,-0.84232044,-4.052223,-27.157293,-14.31687,3.8073888,-5.42899,-0.41265202,12.902636,-0.019397497,-11.455986,-0.79034233,1.9031763,-15.959831,-28.336178,-17.681269,2.5571427,12.54699,7.463253,0.08034229,5.340328,9.461769,-2.6096916,-7.9229584,0.2243805,-2.852759,-11.91136,-8.681753,3.5011506,13.1349125,1.0162792,-23.476337,-13.733641,15.673655,3.8337789,-27.037655,-25.047432,-12.814167,-8.475628,3.3427114,2.6464791,-15.95735,-15.487101,6.5149956,22.326069,18.091309,2.2019653,1.3076105,12.080576,7.7500753,-1.0154271,-3.656474,-9.654751,-6.4314404,-1.5500498,-16.307695,-20.09877,-5.765416,-6.145871,2.3815336,20.947104,1.567574,-13.383186,14.621724,20.417992,-4.1865163,-6.989335,9.038077,15.871674,-2.144254,-13.568193,11.429728,16.429445,-5.6231656,2.5288527,null,-1.1551033,3.5379062,19.091805,4.2088385,-6.448677,7.3242035,6.5800233,-5.681102,-9.662461,0.5791986,6.995116,-16.228796,-20.385162,12.28285,5.1320677,-20.59594,1.4440928,12.7757635,-7.1887264,3.4461203,10.602192,-13.323409,-2.8865786,18.141268,-2.712493,-5.757363,16.50259,7.1683025,-6.075703,1.9407282,2.8557882,-1.7837219,7.2595496,26.958412,23.253414,-13.989988,-27.177885,-1.5886955,9.716972,1.4943209,-1.5603917,-4.6098423,-15.583591,-24.99697,-13.176733,18.250895,33.92015,17.030762,-1.2385402,-0.76997375,-2.3731556,3.010071,27.387596,14.789429,-30.404633,-29.176388,-2.9135227,-2.9884434,-6.84108,-5.8810415,-0.7949481,12.168434,9.035495,-5.379299,-8.489935,-2.1344872,5.9808073,-1.8707476,-13.959702,-6.003851,-9.77582,-18.490812,0.78561115,-6.191255,-32.190098,-3.0812473,17.636553,-18.441753,-24.896908,0.77643967,-0.8998189,-9.615756,-12.366515,-16.766508,-9.510668,-4.8669457,-15.580791,-18.462126,-4.8933597,-0.67120886,-14.8020935,-12.466653,3.0250058,-9.178466,-18.523392,3.8045897,11.816856,-4.692499,-10.129242,-0.99100506,null,-7.458293,5.7024846,0.9857702,-19.802696,-2.5146954,4.357771,1.4818382,11.647771,-5.9430146,-9.040155,14.418452,-3.5530403,-13.898546,15.000922,6.8849993,-17.538853,-0.15619278,19.8805,9.327627,-13.391062,-22.733063,-8.211361,4.933593,-4.540905,-12.331905,-1.3932543,1.4459734,-9.062988,-2.530622,-1.8976417,-29.51337,-24.269827,9.811443,1.7995005,-12.637559,2.3069954,4.9708996,4.0005054,11.261925,-1.9189444,-27.595285,-38.940132,-17.67957,12.451906,1.1969872,-17.655361,-0.14139366,13.467425,5.9278946,-0.4163046,-3.7188458,-2.5166636,7.2728615,17.298058,14.000212,10.568142,22.542788,14.069546,-18.467518,-26.394327,-11.967111,4.9487495,15.081312,2.931323,-6.6396084,1.0376539,5.1328382,9.106073,9.665724,1.171215,1.1509752,11.767589,24.364994,20.87662,0.0010108948,0.16778374,12.430802,1.4286265,-1.7529011,18.289642,14.012606,-5.0472126,21.786694,47.24624,5.772402,-11.474541,29.407269,21.130909,-10.33466,11.018759,30.412367,21.84525,13.560206,6.0742626,4.490159,7.1365337,7.042738,4.1903896,-0.40986872,0.89773464,null,15.403119,10.280184,-4.7531753,0.104433894,6.8511143,-1.2919183,3.3952153,11.266408,4.1017523,4.5071816,-4.4856215,-2.0854297,29.220474,6.1169376,-21.28025,24.96074,25.988977,-18.790901,-3.5123024,14.999891,6.811923,10.82953,2.654665,-9.52696,1.5551572,13.307685,9.025426,-6.9826837,-17.40281,1.1036954,32.764755,18.468536,-33.4009,-28.71533,23.951262,29.047129,-6.000081,-23.542107,-7.3941927,21.288754,20.241226,6.276865,9.0104685,-1.0018525,-19.545942,-18.08887,-3.8993053,4.6137505,-9.305278,-18.465885,5.5246344,22.251171,11.041769,-5.420969,-7.5643234,10.959736,8.871853,-21.593624,-17.137218,15.3987665,17.979637,-5.2541084,-11.978632,18.823057,45.891815,21.380825,-14.880698,-6.8101826,19.620401,13.777935,-8.622969,-6.2845545,7.0700483,12.823308,13.91768,-4.5579815,-19.625381,0.8564539,18.728832,12.615655,-0.22183895,-8.018557,9.243114,17.129654,-11.222627,-9.44257,11.511828,-2.684455,-4.7617316,3.4145722,-4.1502924,4.323167,-5.5819507,-15.843647,22.386435,14.401073,-18.317932,13.810257,9.820417,-21.376656,null,-29.045555,16.17984,0.6771641,-30.069307,12.002867,7.0586753,-28.256767,-2.008079,10.7927065,-4.441599,-1.3047106,2.7603605,5.61031,-3.5169525,-18.098227,1.2954063,15.120087,-6.8562527,-14.118632,3.741197,13.610798,-3.241724,-22.39909,2.132289,23.275959,-5.1850386,-7.4320197,15.980804,-0.058857918,1.0353351,23.393475,-6.798666,-29.942709,2.0259633,13.526276,-9.934282,-13.78722,10.06055,32.744087,33.75713,12.061616,-19.686043,-31.923101,-11.0679035,8.44582,2.341641,-8.161003,-0.07533455,6.2417793,-20.64909,-39.892586,-12.430788,11.305004,8.800521,6.915182,1.9202232,-5.671796,-15.055188,-30.524773,-22.121824,16.062885,33.031036,2.3466485,-21.529379,5.0755606,22.990639,-2.230297,-12.244572,3.295372,-3.7805414,-29.659199,-23.107437,4.1340303,-3.0941381,-7.3929777,7.0501604,-12.749839,-12.971512,7.4675236,-19.36899,-9.950554,19.684032,-16.144417,-7.1720815,25.65104,-17.773685,-23.67126,9.577574,-5.929114,-4.614935,11.15073,-0.59167945,1.4669929,2.4648645,-8.003877,5.095762,11.358088,-7.013822,0.06991005,20.753313,null,2.726313,-14.386895,0.46862316,14.668055,-0.06644535,-10.689993,0.710443,8.232117,2.2787395,0.43878746,5.0013156,7.4735765,-1.7130373,-3.5809183,16.348633,2.4965372,-18.26788,20.819677,22.164228,-17.007887,10.132463,17.597454,-10.349078,18.122803,13.533537,-26.998325,4.70975,34.92329,7.5979333,-13.082011,-4.3628855,19.211325,18.297016,-13.160097,-14.057364,23.472837,49.11328,38.489243,10.049999,-3.8900287,-0.58875656,9.922162,18.405027,10.880537,-5.3323393,-21.229267,-28.067286,-10.585353,6.6144924,1.2971401,-6.006138,-11.09382,-20.533207,-22.683668,-14.121292,-3.8468454,2.7665672,10.6551,21.860252,17.955929,-5.9080276,-5.0400124,32.170437,25.207241,-32.582115,-29.634914,21.27983,14.140984,-19.10042,-16.700516,-6.2771664,3.0229092,8.628526,-14.325161,-29.331863,-3.8536215,11.066172,-3.383212,-10.247327,-4.507508,9.169872,12.74922,-5.053987,4.40952,22.02362,-3.74123,-8.96904,14.190397,7.5683317,2.4720266,4.529915,2.399103,12.013872,0.603549,-8.8205185,2.972047,-13.723064,-9.628473,19.692503,-2.680213,null,4.6433563,1.7484806,-25.224667,13.155975,17.355185,-15.26388,10.221627,11.4147,-12.779191,1.1642697,3.6140614,2.3129106,1.4428587,-9.922438,9.178403,7.1543264,-23.101131,-7.3084655,10.4174185,1.2236071,-3.520141,-0.5340214,22.191458,19.376911,-18.119347,-6.8934984,17.115564,-3.2377195,-14.068174,-6.1894855,2.648099,15.582097,6.0841045,-10.588633,10.660378,39.60704,24.83603,-5.1311617,2.2679162,29.845741,36.46428,16.48868,-9.403381,-8.986816,10.463722,16.009626,21.169563,30.883854,14.889641,-7.565172,0.43545914,17.11202,17.676174,16.110668,13.543666,-1.4395857,-16.480534,-12.291207,19.01152,54.38266,48.453293,3.4134998,-22.22843,7.219062,33.76935,-5.2679195,-37.02736,-10.28084,5.751211,6.652528,0.9580798,-23.845442,-4.8838387,14.469248,-17.855217,-2.1406937,14.518606,-23.181087,2.8848143,25.77538,-22.883213,-7.0710773,24.057331,-13.999387,-8.65212,23.62511,-0.3658824,-13.11124,8.217178,8.091899,-8.291962,-9.290779,8.696463,14.11598,-8.071315,-7.0579605,16.174797,2.482671,-5.0807467,20.301575,null,6.0075746,-13.327774,-2.151102,17.848488,10.141331,5.717415,9.192852,5.10153,-4.656902,-1.4649763,18.470726,11.859097,-7.77312,11.555027,11.934704,-14.713268,19.876041,34.440235,-24.328262,-9.104477,33.823586,-10.779051,-18.788544,6.3999405,-24.409227,-12.227301,14.47728,-24.051125,-22.827053,8.416908,-7.0349636,-16.762754,-9.925421,-4.2630825,-0.250165,-21.289423,-23.972893,15.482112,28.430727,6.316517,-2.4716225,6.76323,8.722973,-6.8782773,-16.50602,-8.568499,-7.5596294,-16.64713,-19.001503,-20.471,-20.417503,-11.136036,-18.311169,-39.10882,-29.11209,-3.746901,7.2987003,17.68045,15.526554,9.069714,39.24058,58.17554,3.8537617,-44.139114,-4.5113516,27.066046,-15.09568,-28.723728,1.0101018,9.578655,13.169193,-4.358301,-24.409126,7.3709636,16.947517,-2.6323051,3.5885682,-8.1118355,-13.680693,-4.163227,-19.2447,-1.3541117,11.209974,-18.058155,0.56436634,17.824314,-2.6566582,1.1618004,-1.9188392,-0.09003687,9.685923,-7.4161606,8.822067,9.659779,-29.211311,5.9924426,23.290379,-26.855648,-2.549368,23.229984,null,25.824379,-0.49500608,-18.143007,21.478363,10.677346,-15.196641,10.038675,6.0702095,-9.918087,-0.37525988,-4.7933483,-8.020481,-8.635848,-2.529852,6.988056,-12.6478195,4.2855034,28.56705,-20.820745,-18.930515,24.291145,-12.418189,-25.566065,11.831014,10.362679,-7.7129507,-21.883823,-10.688052,18.68466,6.652911,-8.833785,-1.0954142,3.7070513,9.437133,-23.083612,-59.44544,-16.418974,18.579206,-14.867625,-17.602709,36.538116,63.30284,29.138088,-4.2495117,2.9750805,9.868584,2.2403202,4.73555,11.12956,18.014809,28.961721,22.708035,5.9237666,11.010263,11.005318,-14.977977,-9.188755,34.141712,54.26638,34.38986,-3.1528072,1.4249821,52.815384,46.15402,-16.700836,-32.08476,1.3408842,21.82365,1.7421436,-6.5585594,28.884624,22.755726,-6.977712,12.991461,4.2396607,-12.954344,29.463106,20.395586,-18.118044,20.12679,25.836407,-17.835297,8.042758,30.048958,-8.999214,-3.7169437,30.3716,13.360644,-6.7505283,4.401285,11.77381,6.4430733,-0.0043747425,2.8902993,6.546396,4.341029,8.921838,1.5479927,-9.370135,4.9794736,null,2.0783675,7.8154087,5.071545,-10.218327,1.2736154,11.583643,3.3247342,4.9309225,4.7980375,5.2213907,2.7467527,-5.5236735,11.8551,11.717305,-14.587107,8.547213,18.8032,-29.257465,-16.485752,29.732552,-6.0117836,-28.043756,22.155216,23.269718,-12.278389,-0.15980959,3.7018013,-14.001476,-6.9067106,-1.4575062,1.2289476,15.021416,8.293999,-17.89389,-24.188068,4.6235075,8.839186,-33.549305,-15.98974,52.059937,49.723373,15.774537,12.325293,8.447546,6.686944,6.242157,-5.2782874,-11.21694,-16.040447,-29.967241,-42.919586,-39.26974,-20.683372,-6.9651194,4.4320536,11.301809,-0.7922592,-9.286949,10.654577,37.240982,14.413033,-36.569305,-14.851089,33.786957,5.321521,-26.36034,0.8674698,30.027592,29.47224,5.660742,-3.707922,22.88448,32.672714,-0.77670765,-17.688313,19.820663,32.609463,-11.394762,-9.831406,15.022539,-10.937037,-12.773262,5.164707,-8.161592,-3.3905761,6.0046873,0.74832344,-0.12897062,-11.974747,-9.055979,-4.7928543,-18.513397,3.8946238,10.706158,-18.933256,2.3274293,14.885623,-20.58082,-14.724723,6.842562,null,9.656807,-1.2099106,3.1971633,11.994362,-9.824791,-18.462788,3.6370926,-9.139462,-12.282402,19.681744,8.0097885,-7.6726217,1.7553654,-10.584103,-9.980529,-2.9931264,-18.597883,-15.933702,-0.6058607,7.2860317,-1.2791004,-20.059917,3.0633821,24.665285,-2.7292576,3.7902474,35.61866,20.909882,6.756325,22.624104,32.80395,30.952679,14.563487,-1.6400952,20.639755,34.149418,-16.232471,-34.538548,20.734322,27.670166,-10.887886,5.153662,43.24364,43.744453,19.808876,9.944008,21.291187,10.393337,-20.908913,-38.518524,-47.27982,-39.42754,-15.093239,6.6195545,16.929844,10.853844,22.692303,41.547634,16.032766,2.4259167,15.903593,-10.536598,-38.19999,-23.788195,8.478226,28.751808,3.9981089,-17.583672,6.3717804,11.7308035,-7.758567,-16.162945,-16.55895,3.291192,8.030587,-21.543419,-6.3527217,27.14941,-1.077774,-3.332325,41.686527,11.62471,-24.15583,26.111586,31.248924,-15.482895,-4.5752163,12.696477,8.1988535,6.6182604,-5.8545265,1.126383,5.989234,-7.5155993,11.003876,10.395512,-11.893696,5.514912,0.77350783,-16.120033,null,-14.731396,5.9775066,9.744963,-8.938711,12.89733,8.669043,-9.382977,16.079115,18.277292,-4.7968335,-6.8282347,6.1486673,18.384926,2.2779043,-4.430156,22.617174,14.294109,-2.1758108,19.812048,17.366163,-1.3834138,11.446362,13.148382,-8.403562,-2.9538536,16.580563,10.664083,3.2756958,6.7134795,9.314209,13.937349,-5.19873,-16.302366,24.979053,32.265285,1.8063564,17.420023,20.522406,-12.015755,-9.705099,16.169456,31.998684,25.102688,14.316449,35.88319,39.2331,-12.037323,-60.532677,-67.138954,-47.08672,-46.5045,-62.231785,-39.71702,5.7596946,33.18856,30.47565,7.4377604,13.695011,20.439413,-21.947773,-20.430922,34.66054,16.314602,-26.405811,16.955307,56.345993,24.345003,5.817064,18.187984,22.373472,20.280903,-1.9557962,-10.744759,21.13623,16.791874,-10.665602,4.4019766,10.002646,-8.461424,-8.695871,1.6430657,6.100072,-0.46177745,1.3342776,4.36609,-13.673011,-7.080273,3.5976233,-19.161716,-6.387301,11.845286,-11.998969,-3.50764,15.37722,-3.7145913,-8.830238,5.8203115,7.0394754,-2.4624043,2.369915,null,-4.0244427,-6.751993,3.0876822,6.9478836,-10.607556,-8.833943,7.187229,-8.33958,-3.0007582,12.088585,-14.823539,-6.556922,18.639065,0.6491766,0.23613167,1.0088758,-7.9394364,9.5195265,2.910472,-9.203019,0.28273487,-7.022151,3.017367,10.961562,-5.521694,13.909794,19.685114,-3.0681024,14.05316,16.676445,-5.9584465,1.1372337,0.80109715,-6.3040833,4.5912266,1.7169361,4.0736923,26.997078,15.429968,-25.608532,-34.718636,-17.64995,-6.1854935,-4.7766266,-15.25124,-9.567392,11.281149,-0.6789546,-10.795202,10.335545,11.707958,-0.49188423,-2.3751369,-3.921054,-4.2715015,-10.187271,-6.0103617,-0.30835152,-19.505222,-15.016492,-1.4054623,-19.872826,-11.478241,3.193327,-10.842737,1.6204243,16.768393,11.594162,11.574752,-3.139493,-10.933128,-1.3540545,-12.330447,-16.842018,-3.5791721,-3.1854353,-2.2785769,5.818577,2.0027475,-7.5939674,-3.5800552,0.38299084,-8.768485,-3.9779682,7.1672277,1.7129867,0.070711136,-0.1197176,-5.623106,-3.949144,3.8137617,12.93325,-0.8946943,-11.05637,17.557972,4.5634737,-30.2694,4.9230413,21.685448,-5.2275805,null,-3.2926922,19.723015,0.3278675,-18.14362,2.4235969,3.738428,-9.544402,-4.080964,-4.4615765,-6.5956635,3.4028723,2.8987918,-11.325246,-13.576063,-2.0916767,-1.3832979,-5.33186,1.9989209,5.621804,-0.9962206,-8.393369,-3.3940182,7.060795,-2.4834323,-7.1893477,8.2378,12.434658,13.449669,12.767759,1.2826204,-2.19115,-1.3379722,9.302464,17.119427,10.552624,27.559925,11.516877,-32.848053,4.16428,7.073881,-55.87976,-15.590795,15.172079,-29.442532,23.914974,78.8623,7.0695443,-60.848465,-75.36481,-85.229614,-89.51999,-84.87578,-50.545723,26.729671,69.999054,25.224676,0.4590826,33.754375,6.48468,-32.34142,0.18454504,6.2809386,-8.096296,14.779978,16.481483,-1.6736565,-4.8120813,3.1885648,16.320608,14.981432,9.060257,7.8778944,13.324026,24.782578,3.4191628,-7.056961,17.10334,-3.8621902,-14.890074,15.184053,3.2218857,-4.0075097,4.582248,-8.325757,2.8804283,1.0426617,-11.118373,7.593418,-9.598762,-17.941414,12.142067,-8.127589,-20.93911,0.16433764,-10.439009,-7.5907717,7.5290155,0.32311225,0.9383793,-0.8734429,null,4.8303337,-3.3856688,-9.804815,6.0095754,-5.2056203,-6.259897,9.879013,-6.066961,-4.5237556,1.3393102,-11.175837,2.9652495,-1.4023509,-14.687333,-0.7581444,-4.1078653,7.487929,9.403196,-22.860355,2.2567835,10.8176365,-24.74668,7.8472548,15.712795,-23.813505,-0.68699646,20.343107,3.9068418,-6.344479,-9.149437,4.3194456,14.435032,14.7452755,8.383199,8.351462,33.97633,8.231186,-14.06558,39.85022,7.588895,-27.783476,42.104588,9.015072,-0.795104,112.58389,33.932274,-111.576035,-21.196417,122.54866,161.57904,171.09158,142.13974,1.0939693,-97.26466,28.411707,105.33651,-2.3159332,1.4015465,37.633774,-29.789982,1.6842709,40.304306,-12.797543,13.425387,53.92846,22.116693,6.896702,1.3045716,-14.279949,-9.232333,12.961862,18.095064,4.678575,20.557499,22.752209,-13.741801,-2.346919,16.598598,-1.4921536,6.623293,5.014342,-11.936735,0.8088989,-3.0876226,-5.731718,10.804614,-2.7805738,-0.41597605,22.784817,3.2520344,-11.081976,8.766284,11.575618,-1.893784,-3.8706105,5.025425,5.829971,-2.4112225,0.22012901,-0.46084023,null,16.024794,-7.442793,-16.920427,5.868103,2.6229017,-9.9300995,-6.129182,11.203746,12.147503,-18.14133,-13.684725,0.49940062,-20.004755,-2.3788118,10.376783,-10.851904,5.9201202,-11.477158,-38.074158,6.581704,0.76616955,-20.17605,18.74622,3.951519,-17.80611,-1.373045,-19.559938,-18.8081,3.1777267,-0.2944696,-4.2016354,-2.2356603,11.816382,-4.726406,-25.9522,11.980573,-1.1615686,-25.376162,9.831377,-16.787458,-17.89259,-2.0983772,-47.840366,30.478943,34.191185,-104.13432,21.452658,131.7035,-36.34484,-129.68484,-135.71819,-20.154121,160.76729,25.062836,-84.24834,65.26499,32.895554,-41.085857,7.728016,-38.36127,-28.827446,35.738354,-6.823502,-16.955479,0.14409924,-24.03297,-22.034044,-5.5124025,-3.1154547,-16.335487,-8.890835,7.104527,-17.62414,-5.5387125,1.8139129,-38.15898,5.60217,25.938622,-22.322842,17.097397,14.867329,-34.376743,13.95446,8.929522,-37.617638,-5.707656,-0.29969907,-8.2688265,7.8092766,-1.0782242,4.2928157,8.798297,-1.2456713,0.63275313,-18.061987,-17.733322,4.8019233,-10.027671,-8.558988,7.344398,null,14.504553,1.1569443,-9.755468,7.044545,-10.467592,-7.42427,14.183115,4.2591925,-3.410366,-7.464203,-0.6080413,-3.2771797,-19.70495,20.677406,23.865858,-17.968658,28.54159,22.140266,-35.312874,15.917141,20.12302,-10.392954,34.73878,9.913627,-19.050451,17.94596,-5.8067274,-23.818954,5.2816677,13.804761,10.381803,0.6151409,1.5084887,-6.2788725,-7.168413,16.935787,-9.919285,10.365667,52.47412,-13.394186,9.474682,29.745499,-22.258287,74.49045,-0.85357666,-52.851807,225.12389,-19.360588,-251.3631,412.87695,440.935,-233.52708,-42.99628,214.06714,-59.903633,-10.745735,66.061584,-64.67979,-13.510603,18.378704,0.4683051,36.846878,10.826236,16.851383,19.056171,-29.657324,-4.031743,15.749753,-6.5906115,-5.2626586,0.38306713,15.630653,13.991537,1.4739771,-0.41056156,-15.8656845,5.755767,12.323267,-25.84142,9.249928,21.099834,-29.920692,-4.3272324,8.281097,-20.909208,-4.580513,-15.36633,-27.658352,1.01752,-3.5664158,-11.769665,-3.2852645,-2.874229,-0.4317379,-9.696188,-0.48092937,13.625168,-10.014026,-0.38173103,16.609474,null,11.3881445,4.8544154,-0.47922134,17.808159,-0.32661557,4.105195,21.582256,0.87768126,-12.327148,-8.710879,12.416784,14.906282,-10.1064,17.398046,19.13968,-14.7540245,25.352947,10.744762,-34.503624,24.41703,25.886436,-4.0223103,37.64111,14.952335,-9.497623,26.728653,20.038837,8.685093,11.314255,9.876601,9.392426,-6.531616,9.135986,18.21766,8.304909,33.259235,25.953228,42.522358,70.48964,33.61081,66.93212,38.695137,-1.3912926,117.96213,4.149864,21.3805,289.2091,-124.34386,89.10434,1674.5574,1672.917,92.03839,-122.5226,283.38333,23.523178,5.313278,109.97377,1.6236076,44.97136,62.885384,33.685806,72.79338,39.259354,25.169878,34.4469,9.036385,17.789062,5.870306,-4.9403267,12.739638,7.3063364,11.5000515,9.83139,17.8016,29.92522,-7.5797043,11.837019,40.11091,-4.0042305,20.277584,24.97335,-33.29049,9.21899,26.629436,-15.245417,17.729044,17.072384,-12.130421,15.828961,12.419122,-12.141139,-7.987014,6.3412585,20.14205,5.9727125,0.9388199,14.435986,0.905838,6.9323297,11.324077,null,14.997941,2.9938555,-4.0560246,11.679927,-1.054698,-9.710055,-6.1256847,-1.155086,0.60210514,-15.003309,-2.342535,2.3298674,-27.656384,-8.401495,-6.5888667,-28.036726,14.570494,-2.2530937,-34.489227,23.677917,4.745429,-32.77181,15.759171,4.474864,-18.353107,2.837368,0.00021076202,15.482386,18.51857,-2.7569523,-0.4498763,-4.2734075,9.280588,1.8775959,-28.603676,8.920797,23.00041,13.122116,27.070824,4.4860644,18.088787,-19.041893,-59.46138,58.61133,-13.5394535,-47.054535,200.1582,-51.270374,-211.65457,433.5656,399.1657,-234.48755,-24.120987,210.33188,-42.135727,-0.3926487,68.194016,-17.551361,25.102253,7.539049,-8.807276,47.67821,13.378751,-5.3720284,9.000124,-3.9584198,0.6702757,-4.034727,1.0856628,12.4392185,10.240446,8.989444,-23.283464,-9.472001,23.723177,-19.011307,3.1233482,38.577618,-6.811222,17.847332,17.602757,-35.591652,19.091312,29.19907,-16.122063,26.988361,21.448969,-23.452633,-1.5261326,2.2842789,-11.812635,-4.7519436,5.816659,10.857914,-9.049818,-8.71788,7.457796,-11.126606,-2.4254909,14.244814,null,6.4683914,-10.445347,-15.174406,6.917432,-12.237211,-19.777836,2.346571,0.36608982,0.26565123,1.3516669,3.5528166,7.624283,-9.424844,-0.48859763,-3.5069857,-32.45144,7.657609,11.777963,-33.06836,11.2343645,17.760708,-18.261253,21.338528,5.767855,-35.525642,-4.993617,-4.9062862,-13.887329,0.960901,-8.5029955,-14.096851,-8.856061,-4.244016,-18.867012,-25.317268,3.4488068,-16.867058,-8.649314,38.345604,-32.928074,-38.81421,14.850967,-48.90847,29.366852,80.649925,-91.785385,1.1822395,169.19257,1.2211094,-133.88689,-122.28728,-9.486786,143.50748,3.3548584,-111.579185,52.22842,30.405018,-64.00467,3.1979065,-13.743646,-27.131115,12.747118,-22.305067,-8.468453,13.58592,-25.328228,-8.85742,14.441493,-2.1878157,-2.9650447,5.3456206,0.9342985,-18.843536,-16.067545,-3.8013754,-14.91436,4.978637,11.532906,-19.511177,-1.202735,-0.38287926,-32.63469,-10.400143,-0.62282944,-6.6702943,11.191948,-6.9845695,-16.052296,1.969295,-15.588909,-16.463196,13.194665,15.638119,-5.195014,-18.179007,2.5657194,10.918091,-17.549187,-4.0889916,19.552649,null,1.2801981,2.9871693,-6.1663857,7.1503143,6.7083974,-10.186944,-0.9363712,16.028793,5.2076955,-11.263417,5.543938,21.745094,1.9366729,-2.9683027,5.970772,-7.1840944,-4.699401,1.7362318,-6.2607226,4.7784386,5.012438,1.0069885,16.059013,-2.9343643,-14.712059,19.471046,22.63666,3.0467901,10.345729,17.684101,-2.765248,-21.124258,-0.62475777,11.115532,17.732363,50.70723,17.335768,-13.012029,35.91848,0.7539406,-27.725666,37.85246,-0.067337036,-0.23221207,108.10188,26.822668,-92.85539,12.949242,140.17485,151.27087,142.96402,117.83783,-13.089183,-109.13126,24.439337,115.251396,8.015851,2.1465225,42.293102,-17.890724,1.5181789,36.47747,-6.244484,5.500638,32.86692,15.056754,7.484124,13.759838,14.367315,0.2792802,-7.111376,-6.0127764,-2.0609298,21.427292,0.04313612,-28.038815,17.043995,8.258841,-26.048546,16.008623,4.1244144,-26.596931,8.759497,7.826703,-1.1887889,3.6848135,-17.244883,-3.476902,5.276764,-13.50775,-0.63858795,-4.839183,-10.670155,10.749256,-1.2010863,-6.024961,6.9804535,-10.454043,-11.737176,4.0008693,null,2.0785136,-2.8230247,0.78794146,8.441713,-7.4551706,-9.018586,-4.7383213,-23.40685,-5.6746855,8.308663,-16.12471,-2.505947,2.987267,-14.250652,4.2393417,-0.97984695,-9.808811,7.113627,-5.656583,6.937154,20.084251,-16.043634,-0.8726702,17.386234,-12.955582,5.4136114,25.392508,7.4039707,9.687963,10.506289,11.840606,18.331009,1.3764315,-7.074631,4.0525284,12.681013,8.025459,-0.87018013,7.3456254,-6.87994,-28.201208,9.653742,28.333261,1.02567,29.68724,70.3082,27.368189,-46.8946,-80.77809,-88.915855,-89.12828,-72.84407,-47.632126,10.413327,70.325356,28.42612,-24.223906,4.230137,-13.144842,-44.073967,-2.6364365,-3.2345572,-26.865734,6.5642033,24.204731,14.848694,12.451443,7.2580895,0.5342655,-6.03185,4.3753867,14.605755,4.5731673,12.933504,12.881342,-11.421469,-2.47995,7.810446,-7.2693586,-5.898315,0.92522335,4.2111907,5.7413416,-5.9896536,-6.001316,-1.9052606,-16.659672,-13.616214,7.11926,3.3504024,-6.977516,-1.0291209,-3.9905295,-7.913337,4.2028894,-3.3247771,-17.774906,3.6630168,18.288765,0.05486393,null,-0.88560677,18.04073,4.396858,-22.341022,2.9259434,11.187108,-8.959004,1.5918974,10.369242,0.43177295,-4.992804,-3.655777,2.254201,2.5005836,3.76716,6.45796,-3.3618183,-5.6523366,0.6182157,-4.892153,-9.51501,-1.4704618,7.0448647,0.6527252,-7.088731,-5.476262,-13.643032,-15.982172,-4.97946,-5.4750276,-2.6925783,6.2954187,14.230899,18.606266,-3.0772943,-6.419426,10.909838,-19.242569,-26.214985,8.448729,-15.378054,-33.39389,4.021467,9.687135,-10.343264,-15.621713,-14.1480255,-4.6515903,5.9168816,14.511378,10.593849,-6.5967584,-2.738287,3.6430578,-12.693817,-10.651046,7.204979,-5.3289633,-31.989395,-33.844574,-15.807926,8.557955,24.054008,10.953597,-1.7858343,5.106035,0.67833805,-5.2831244,-1.3188562,0.87253857,11.849185,10.319561,2.2594414,16.818138,11.072859,-3.4915724,7.3313727,3.8914433,-1.7498713,0.91374016,-4.577195,4.066103,3.0234194,-4.2861195,4.524414,-6.299985,2.6004782,22.584074,-11.240424,-13.290064,15.912703,-6.7598133,-10.683547,6.831168,-9.000174,-8.862831,4.882084,1.866293,-3.8765817,-7.262331,null,4.9700284,-1.1342967,3.9394517,8.483551,-3.3382049,-2.7893414,13.652721,-7.633878,-14.112196,13.8004265,-5.678029,-16.242966,6.7974634,-10.77153,-13.605835,10.080687,0.7661705,-1.9035213,6.3293324,-1.883121,-8.95623,-7.768154,6.0946226,3.679975,-10.983569,15.5168915,24.834772,-10.9215975,-2.7484982,28.023167,23.487907,14.36263,10.513084,24.104294,53.20399,25.945133,-23.812443,5.6176233,36.07152,-12.154453,-32.131874,8.415727,25.090256,20.462719,23.401085,25.427433,8.222935,-37.655052,-56.78529,-36.828327,-44.98327,-65.69499,-51.230362,-10.940116,25.346369,28.402794,25.962015,35.4199,21.265608,4.86308,-0.27536345,-5.504039,10.290391,15.333466,9.536306,31.599957,22.348099,-14.000166,-3.7922497,15.250259,12.393356,8.723328,1.7307034,9.0597725,19.869286,-0.9904022,-10.448783,12.65708,8.806771,-3.842732,20.532932,18.929844,-4.6223016,18.05217,22.399628,-5.7352858,7.5025377,18.956156,3.6082306,-4.267677,-4.1523466,17.483643,18.095818,-8.6171665,8.411015,11.249523,-10.3174515,14.735226,9.6021595,-16.835737,null,-16.29894,1.5760055,7.01308,-11.187259,7.638929,7.8916283,-7.96363,5.9063,-0.6003797,-8.168381,7.4185076,11.813496,14.998387,-3.2296562,-17.243362,26.029778,27.822844,-18.733746,9.429928,42.682487,3.3216338,-5.455818,20.310875,-2.912548,-21.124285,4.6715555,3.583826,-19.734697,-16.40082,-1.5582323,10.10402,6.0284624,-10.652495,-1.5603561,21.337994,16.882212,-20.2651,-45.833134,-12.047008,16.73508,-2.2324677,13.980606,44.10537,19.21619,1.210413,16.0896,15.362404,-9.740793,-36.82875,-43.284363,-36.819946,-19.820755,13.967352,23.125114,4.6895084,10.145462,40.564438,48.65181,7.5300694,-16.22863,22.876518,21.402729,-34.07493,-18.99547,35.31274,25.921001,-1.1592534,13.567997,35.033264,34.912445,21.665329,9.795654,22.07595,31.864143,4.7404637,0.023292542,21.314348,-0.44942355,-19.3708,0.3986807,5.4546466,-6.447481,-17.175287,-15.285959,-2.267806,-5.9859843,-4.862753,1.3335361,-7.1990833,8.203564,15.266157,-13.906376,-13.296334,-1.9764132,-11.781407,-3.577849,7.451192,0.35980082,-2.7280402,7.2983665,null,3.695859,-12.680838,-15.110155,9.723499,4.34418,-12.584467,4.67679,3.295227,-14.334415,-7.6870236,-4.848736,-8.522488,-6.689202,0.036959648,3.6906261,-10.559623,-5.250717,4.977152,-18.691845,-6.163374,17.550194,-13.416932,-8.915601,29.557915,13.942979,-14.459176,-4.3722706,27.22064,30.627136,-3.9042025,-1.1660323,37.016953,32.492615,-8.178581,-23.887989,10.49687,28.619307,-17.835798,-33.6893,15.908925,33.760513,7.1312027,-4.5315456,4.1905003,8.653215,4.3602448,-2.5671897,-20.686222,-42.519127,-42.6671,-26.7942,-15.218117,-8.959714,0.69991493,5.30625,2.341558,13.9577465,20.89293,17.649166,46.212723,49.26346,-12.601775,-34.388905,1.9120965,11.138916,-16.551014,-29.496504,3.5042505,24.643412,-1.484628,-5.756599,0.29894495,-16.57734,-5.555126,0.30009842,-11.61875,21.448456,22.144426,-30.365122,-4.6071186,34.749134,-17.28103,-28.614101,23.300198,7.1712523,-18.286255,11.332126,12.882658,-4.185239,3.436246,6.5308156,4.99222,1.7185599,3.2437363,12.090029,-4.929534,-13.184163,9.077257,8.898804,1.4824209,null,0.3788855,-7.2571507,2.5311868,6.042261,5.7492547,7.6266403,1.8323908,2.5950027,5.668794,6.975262,4.6931686,-5.944015,13.7672415,35.40219,-3.4094734,-14.314652,30.698391,10.62667,-19.600311,25.976318,23.285303,-18.036377,17.827534,30.018934,-10.813299,2.163137,10.175629,-6.88976,21.178518,27.190838,-2.9968798,2.712232,12.771116,-1.2095432,-18.158348,-14.532114,28.31266,52.473785,19.237864,-3.951929,20.942616,53.889633,43.461132,-1.0386629,-12.780665,6.6070423,5.631399,1.6446571,19.919653,30.057295,18.445522,6.965584,0.3073368,-0.09846687,10.2278805,8.232954,3.226324,33.30443,59.197746,27.154522,-14.898849,-1.7148857,14.657788,-30.738476,-54.69081,-13.143601,1.5156479,-4.7447042,4.6678677,-6.3437214,-1.3732536,18.948856,-5.0556784,-28.400131,-10.750556,15.216469,3.541121,-30.353226,-3.2810178,21.85722,-22.82544,-13.99486,25.2123,-1.2452526,-9.647749,3.3582973,-7.1991615,-8.084297,-9.162992,-2.6555088,0.043620586,-15.125105,7.5394087,10.909494,-20.244213,13.140713,23.96154,-21.659857,1.2392731,25.839691,null,21.711777,2.669599,-28.142614,21.197702,13.571327,-25.888773,5.8357925,5.32168,-10.968342,12.928053,7.0582404,-2.451863,0.6520419,-0.7625818,15.4920435,1.3392382,-15.216873,8.625279,-4.5028877,-20.708323,-3.0696974,-11.499365,-11.414072,2.4039679,1.0095558,14.113237,5.4488945,-20.190035,-6.2542963,12.184298,16.852482,1.0932207,-32.945248,-8.973177,31.00172,-10.959267,-45.216778,9.198301,58.701057,36.467323,5.8703136,14.910972,23.115639,10.273581,-7.1266546,-32.05509,-40.256367,-16.594109,-8.16324,-20.27513,-16.555447,-14.09041,-22.436722,-14.321429,-9.521624,-23.500195,-13.715518,15.580735,15.211647,-5.683407,-0.722126,28.420269,21.417347,-22.115568,-24.631626,2.6681137,1.1245193,-14.065651,-20.684624,-4.6666994,7.0078773,-26.053001,-26.871094,9.155361,-12.524916,-22.14044,3.9672532,-19.911222,-12.4680805,31.667519,-2.9193835,-20.802753,29.11053,20.007381,-11.558484,10.980059,13.576782,-5.730088,9.322748,18.10759,-0.7741184,-7.2812557,3.2877154,9.933879,6.9349337,10.545347,16.8771,-1.5351225,-10.760958,5.5939827,null,16.691898,2.3175755,3.6050436,10.365196,-4.7106876,-8.154767,9.784443,13.133311,-9.831858,-16.491695,10.925016,11.923531,-15.844231,3.202857,24.463972,-13.103694,-10.410036,25.72284,-10.317056,-18.787952,27.472616,-2.4254951,-21.731976,20.233479,-2.8570654,-21.031033,17.254284,-1.0224667,-27.271427,0.5552826,15.736683,8.392086,-15.521414,-36.309498,-2.751322,33.88932,13.820655,-13.241422,2.113329,40.683014,54.162926,29.074402,-3.93021,-18.295855,-7.711235,7.8705673,11.965694,21.190401,25.881203,5.8443365,-0.22310352,25.051094,34.533268,20.529724,12.20763,3.3523045,-6.6679373,1.4416733,21.612999,34.243073,21.802137,-4.2471333,1.4094906,31.108046,32.040043,6.297138,-5.047412,4.922106,10.302254,5.981144,-1.9053173,-13.011448,1.5722466,19.71443,-9.139262,-16.81786,20.228296,19.768133,-0.06886196,-3.6976843,0.13102627,12.440865,-9.694639,-27.09277,11.958815,12.509169,-13.430892,3.3900557,6.5437384,3.4882202,4.110162,-11.920197,4.94314,9.516388,-11.847831,16.490282,16.640665,-20.973978,-1.544445,4.8219113,null,-5.0901575,20.636631,-6.218626,-16.247131,2.915895,-4.333521,-0.5583658,9.532946,3.2718253,4.811912,4.748659,9.680825,11.577993,-10.360374,-4.1561947,20.390991,7.6610227,-3.3248158,6.7284575,7.3478136,-4.3493395,-18.505116,-6.8138733,15.093037,-8.370147,-32.25061,-5.6257563,8.89681,-5.600643,-1.9123116,-6.551017,-22.83328,5.7865734,25.950094,-20.61777,-36.259483,16.743576,33.30107,-1.9952278,-9.133952,16.359135,23.166489,7.499782,-0.39362335,-0.90891886,-11.635173,-23.727455,-20.173998,-9.013163,-4.206599,2.1273885,7.742778,-6.8556466,-24.726036,-19.118656,-3.3019457,7.428135,13.266542,9.795536,-2.4660625,-4.817187,15.607665,39.558365,45.347702,24.974066,-7.364906,-6.3986545,14.765187,9.592129,2.7615983,0.46621943,1.1800296,25.523064,10.937183,-23.431004,8.373265,18.485073,-8.833732,11.469666,6.707104,-11.144546,26.612965,17.871162,-19.538551,6.141773,16.206383,-4.757622,2.767627,9.518603,5.110323,4.4627414,1.0856233,4.486018,1.8658681,-13.797037,-2.685135,18.381933,-0.3116573,-12.026193,10.480638,null,20.502613,-2.3793716,-8.875743,11.290374,5.402091,-6.3176317,5.160291,3.934743,-4.097733,4.2151337,-2.630189,-4.1729136,4.3063335,-21.4538,-16.658865,18.285877,-6.445467,-15.7743225,14.705869,-2.7677402,-13.220874,3.0690784,-10.317844,-9.972886,3.2035751,-5.769499,-4.9535947,-5.000181,-20.615395,-20.887878,-8.810301,-6.4190984,-8.864186,5.442423,20.472462,1.0986731,-16.107891,6.132284,25.824032,10.404068,-18.178925,-27.366722,-14.968994,-2.597104,2.370232,2.543085,6.948945,10.175223,-14.939416,-38.119663,-18.442745,1.7278614,-4.313278,-6.876361,2.3255844,7.09766,-10.830791,-35.1568,-22.190271,14.787924,32.447357,30.461487,13.998273,-14.144071,-15.229561,15.124197,10.595833,-23.623623,-10.198803,21.489176,11.819334,2.088285,5.6461315,-2.9876218,1.654726,11.4045315,-4.2740173,-15.65156,-4.6909084,9.089933,6.230734,-15.766994,-11.955415,17.44196,2.8335562,-24.035736,-4.505374,8.574627,-0.42453402,0.32808673,1.6902075,5.807538,-4.55386,-19.756773,7.732727,9.77163,-24.548025,1.2971716,13.997372,-25.633362,null,-19.70582,10.92452,8.885357,-15.06287,17.905056,15.960737,-16.431255,-3.3045046,-0.056088448,-0.84705734,13.639938,-3.0649126,-6.9622855,7.564218,-12.213251,-11.607966,15.90605,7.1278553,-5.9162602,2.9480963,11.412608,17.444609,2.5541153,-20.010048,-6.1111393,16.07879,13.966575,6.177022,-2.6912236,-6.590431,7.8120165,16.047455,-3.9675927,-17.26637,11.428909,41.15383,25.313368,-3.6408715,-5.395414,9.7838335,9.299114,-14.448969,-16.785511,11.22642,13.350767,-9.833717,-11.49152,10.550745,22.862003,1.1337144,-22.51152,-12.775985,-1.6021156,-10.594261,-21.871254,-18.623955,4.511033,18.147686,13.793431,17.764591,11.173873,-12.900925,-16.58281,6.2260814,28.704779,12.49169,-30.24763,-24.862259,19.252089,25.803852,1.2846689,-9.705358,-6.620287,3.5078661,14.913089,3.648507,-12.636906,4.46266,14.038248,4.1700716,15.720162,1.0784082,-20.678507,21.611279,25.665081,-19.588062,6.730837,29.065659,-4.915156,-3.7327454,8.064272,0.7551451,10.053012,7.4837174,-4.9047074,4.779192,4.086457,-8.53288,8.034166,19.323631,null,6.208281,1.8756943,1.3385253,10.885277,9.178482,2.0277555,8.50186,16.45509,17.958118,24.235071,9.716675,-9.97039,17.857155,29.967247,-6.6145315,2.8266115,40.991074,23.71654,-1.6260142,10.561197,15.636143,2.2521944,0.6632376,5.2968903,4.409625,10.091783,14.967112,11.737646,11.638112,6.996765,0.7247381,5.0649633,7.0307713,6.1693835,4.411798,-0.9333241,6.5484276,15.487933,5.9352818,-11.640219,-25.29582,-12.139436,18.84581,19.173248,5.589443,11.777267,13.618437,2.0254993,-4.9268475,-2.2049909,3.1152668,7.64247,11.454632,-3.2426548,-20.95516,-0.42873573,14.865328,-15.998516,-36.935017,-23.236488,-6.1925106,4.1245575,10.406609,12.880745,0.3739519,-16.231823,-2.2772284,8.668746,-18.721779,-28.89993,-7.1769476,-2.5530334,-6.4458437,-0.4283476,-5.2252164,-12.352621,-2.8055038,3.2167175,-8.561582,-20.175877,-13.899795,9.490715,20.430058,-3.9760916,-17.390797,7.6325126,6.649726,-16.940369,3.1186152,16.536655,-8.5024,-4.249526,8.253588,-1.8956895,2.9456017,-2.0534606,-12.414813,5.1267004,1.0821884,-7.3916235,null,2.8340242,-7.1891975,-7.5782146,7.379316,6.017541,-14.601065,-10.978937,3.9121056,-9.424351,-19.545826,0.391119,5.4492283,-21.868246,-23.686863,2.4628682,-6.0647945,-23.250095,-9.004299,-7.3387733,-11.945634,-1.8222189,-15.447369,-19.620407,11.166953,5.628396,-20.904419,-9.8586235,-0.9725795,-6.8531775,-3.6352143,-12.229228,-17.728659,1.8037071,8.502212,-5.2642527,-10.161938,-3.1299233,6.158187,6.835443,-0.5593405,-4.9429913,-5.4190283,-1.027966,-7.1699944,-31.244446,-25.629894,15.130859,27.945915,9.441251,0.9302006,3.4009976,5.769661,14.468184,27.729439,18.734604,-15.6695385,-30.250553,-12.692368,0.36200666,-0.5029702,3.2267914,8.5061245,-5.9066925,-23.55894,-6.1026144,23.267097,24.90627,10.678539,-2.6082172,-4.7766237,3.9417114,5.2014065,5.3798027,4.7623043,-2.6974044,10.522271,18.95137,-9.821819,-10.6795025,15.640503,-1.3119066,-11.121273,14.537156,-0.815567,-21.534073,8.728727,10.411001,-22.234505,-12.672114,6.8213263,-2.504811,-10.544868,-5.7029333,6.3491344,6.0547295,-5.021391,6.427758,15.109084,4.573245,7.4723787,null,5.6904726,-3.5037336,12.995878,11.589951,-12.334988,0.6711278,19.224693,9.253646,-5.128784,-4.0911326,18.442333,18.716465,-11.676173,-0.43067455,24.813915,2.2583919,-10.305016,-2.825386,-18.862692,-16.81954,1.6372013,-9.756005,-11.24387,4.4049478,-2.5790825,-1.3281548,13.1475115,7.8839264,9.000647,20.871063,17.897802,10.251027,-5.4065266,-18.053083,-0.647254,9.4197445,-2.33637,-5.358328,-20.81071,-34.32975,-2.2384176,15.094847,-15.27938,-21.800648,2.318264,10.379943,2.8107295,-10.564503,-14.117792,-0.82659554,-2.2342758,-11.806143,0.3154812,9.1530485,1.7502251,0.15546322,3.7113857,8.447452,5.6382747,-18.79398,-35.15168,-16.419533,5.7070436,0.61355114,-12.159871,-1.9395909,12.944759,2.3505611,-5.199409,1.0717664,-14.34313,-22.741966,-1.6107254,-4.490015,-13.221645,5.7034345,-6.6309204,-25.058653,9.842181,24.49604,1.0544882,-1.7755871,-4.389174,1.8052416,23.870605,1.3857574,-22.84606,1.108384,8.303509,-7.0112686,-8.235312,-2.713601,5.352159,-1.7831187,-8.143758,13.8338375,9.383807,-17.695602,-1.2578251,17.000698,null,9.726913,13.645151,-12.096804,-8.1978,4.4489665,-1.0301981,-1.9177372,-3.6936002,1.7227113,7.8326497,-4.6367435,-0.29245776,8.430359,-6.663281,-3.067429,5.0709887,-3.4387445,12.87947,18.281097,-13.15493,-11.23912,14.766824,4.9298067,-14.060279,-8.623097,2.7100582,-2.2439098,-20.526712,-23.147831,-3.0613327,1.423994,-16.22871,-13.288193,6.4893875,-1.1459999,-20.84178,-10.91334,6.932061,-3.025432,-16.390984,-3.811246,6.981537,-4.6070576,-9.904206,-1.1991239,2.883448,4.3371277,7.600649,19.700169,37.723137,28.466877,3.3137531,3.804452,13.859121,14.807219,6.8223433,-16.40823,-18.014927,11.220589,13.5899515,0.6528115,11.376244,11.756201,-2.4839554,1.4440103,7.2963753,0.16018867,-4.81231,-5.117012,-5.0738797,-3.9917145,-3.7818031,-4.6444674,-2.5672302,-1.2724097,-8.753467,-14.00146,-5.624775,1.4808226,-3.9415421,-11.835226,-8.637562,4.7931676,9.674404,2.4713335,-1.0292501,2.7301602,11.231398,13.810699,1.6341887,-3.4633253,6.553216,9.861145,1.6674649,-5.891159,1.34772,11.785986,0.68989956,-5.390071,6.914265,null,-3.5512805,-0.015659332,-12.647435,-5.720461,10.804733,0.36152637,-19.56493,-15.087535,-3.3042622,-9.041104,-16.927097,-9.081295,2.2748928,-2.6172438,-13.287092,-9.23428,-6.775487,-15.207855,-12.549099,-5.540001,-7.707258,-7.866377,-5.154581,3.301094,11.832493,0.32643175,-5.559438,10.346873,7.1848755,-10.1044445,-5.0511303,3.8161554,1.5255995,7.03961,12.640347,-0.8408823,-15.670631,-12.294651,-2.3509102,7.1872244,13.389026,6.503463,2.1826706,4.661923,-2.4435868,2.4505825,14.909474,-3.4506283,-20.553894,-8.424598,0.8082943,4.4903126,2.1680794,-14.858734,-13.107949,8.537159,16.315338,18.609478,19.425463,1.7262821,-16.921356,-10.104538,7.7683725,7.731942,-2.7561107,-2.8734908,2.6454105,9.538435,10.933364,-5.068673,-13.286927,0.2342081,2.0580773,-11.45531,-13.897963,-4.3867264,5.5495477,4.05567,-10.061637,-14.393257,-2.7651882,1.695178,-5.249979,-7.397393,-4.9331446,-0.56329966,6.3320637,-0.78133166,-14.256752,-3.5114222,12.522519,5.152752,-7.1931562,-6.0503426,3.4172564,2.9735184,-5.596113,4.6154404,8.38175,-14.802787,null,-14.441616,-0.5240407,2.967289,-7.038065,0.9149492,7.4747553,3.895722,2.0317416,-6.057679,-7.968109,1.3977163,-0.21500158,0.54177237,14.065751,17.513779,17.92184,16.35608,-7.676573,-16.592543,15.658855,25.884037,-9.011972,-20.226284,12.397964,22.632912,-10.740277,-21.887558,7.990267,12.153829,-18.721972,-24.058084,-0.9860921,6.9993105,-6.496106,-14.453838,-2.6007009,8.554598,2.9401724,-6.006724,-9.974136,-6.7602053,0.64839935,-0.64460516,-0.6773529,3.837285,-0.71290016,6.597149,24.257229,19.998663,11.2132225,6.9464684,-1.4023001,13.594778,28.892815,7.9909334,-2.0354056,6.7009544,-8.439507,-20.000778,-7.1603885,-5.8746552,-16.715998,-14.883106,-3.7119555,2.6199806,-2.6535363,-9.467278,-3.5314198,0.005982399,-9.69323,-1.6813455,24.469833,17.982721,-13.833837,-11.47983,15.68024,14.043176,-9.494547,-14.477506,-5.1804047,-7.448215,-16.840252,-18.097084,-7.347336,7.540523,4.7008085,-9.89784,-5.4868255,4.08595,0.45588398,4.0016704,5.203246,-9.75012,-6.801566,11.077972,1.6734695,-15.299563,-4.686421,2.2197068,-11.399793,null,-6.9462605,-2.0509436,8.212625,1.741982,-5.9840126,0.42346406,2.0482926,-4.36043,-1.7395395,0.49875116,0.87717056,7.081938,3.47544,-5.274623,-7.081949,-8.80113,-1.3906417,5.7786384,-6.220209,-6.3167033,13.646067,14.69981,1.0364299,1.1930451,6.959444,1.7841206,-6.3866663,-5.329594,0.0933857,3.005177,2.1348195,-2.1104012,-1.4317298,4.892116,10.771517,16.5164,8.944967,-10.759882,-8.072158,11.945545,11.393435,-3.3675604,-10.221397,-14.411991,-18.089724,-11.6111965,-1.7771378,-6.406103,-18.335306,-15.4914,-6.437749,-10.405054,-15.248882,-13.611153,-22.907005,-31.731289,-12.598935,13.978094,15.842777,4.2719765,-1.5195923,-1.3985114,2.5846176,7.0598106,5.6770444,-3.1264052,-13.731906,-15.907973,-6.892912,-0.118699074,-7.1258335,-16.317713,-12.236868,-1.8530235,1.6870246,-4.0327168,-10.411709,-1.7702699,11.315504,0.27264047,-17.114716,-7.607464,7.6812253,3.598997,-2.507963,-2.5913725,-6.9785423,-4.103262,11.533813,15.03904,2.3575606,-2.4607377,3.1587753,3.8019662,-3.365087,-6.9814034,-0.7894211,2.0332308,-2.2792144,3.885733,null,0.19055915,-7.6514173,-11.531166,4.9955235,5.0841126,-12.173246,-5.686613,10.386751,8.699449,2.5937011,-2.8208575,-8.159284,-6.779866,-4.685022,-4.8168178,-11.379793,-20.474619,-7.884104,4.681835,-15.173312,-22.632933,6.829175,20.996647,-2.183703,-27.280884,-20.929981,4.0162153,3.2652044,-17.047369,-12.080302,7.7152185,8.099356,2.2677474,5.845652,3.4330165,-3.5722914,0.8892021,7.1457434,0.9904431,-15.593558,-27.874306,-12.288828,12.725908,2.3685372,-17.177826,-6.0429482,3.2104464,-1.9680219,2.406849,-2.6101654,-16.36939,-2.3203878,16.063108,7.8906193,-0.79108715,-1.5510521,-5.710246,-7.0258346,-11.399021,-18.94452,-15.038097,-8.5262375,-7.59538,-2.989975,3.172112,2.8710828,-0.23128366,4.116458,11.326919,4.5338564,-10.098905,-9.122964,9.751959,16.95782,-2.4760323,-8.938477,10.366316,13.91031,4.988125,-2.1301928,-14.172019,-1.1709746,17.196133,-8.734187,-24.181967,3.7907724,14.800118,-0.34407735,-3.2595744,9.582118,11.639074,-3.6014438,-4.3114176,2.7126594,-6.9480405,-2.173875,10.13146,-4.708839,-11.213139,2.8742867,null,25.136852,2.416523,-19.266998,5.986019,11.055705,-2.7534356,4.6641045,0.37081146,-9.176962,6.1910744,10.549063,-11.2093525,-13.263094,11.607471,11.496782,-11.233321,-5.146615,9.579641,2.4684563,1.2735567,4.0534596,0.37374258,10.449751,18.08148,-1.156249,-22.661736,-12.645468,14.58988,13.391457,-8.669359,-12.971003,-9.530643,-8.676286,-0.7310462,-1.4626231,-17.392908,-20.830435,2.3965416,17.10889,-0.35236597,-2.591076,22.614727,22.85397,9.51342,6.676527,-10.0687475,-15.12902,7.8879576,8.185808,-2.7934904,14.755962,24.057013,7.713297,-3.0864112,-8.9032345,-8.804221,3.6150017,-3.3701992,-26.334572,-20.529346,5.024478,15.38219,5.510586,-8.756786,-3.0087376,8.946416,-4.6859956,-18.608835,-11.960882,-9.329584,-5.9706078,6.575541,0.07599163,-15.904579,-6.285367,7.116696,-0.07040596,-5.228037,-3.1226444,1.9636178,13.744169,1.4251165,-25.507914,-10.963172,13.620437,5.1235657,0.64455366,4.400524,-4.3339,-8.408542,-4.7242775,-0.9034591,-6.7110825,-23.988445,-13.694582,11.398096,-3.9503765,-18.111725,2.762764,0.7122774,null,1.3084111,14.459145,-2.0289233,-14.772806,2.7381785,10.829746,-1.7506533,-4.499069,6.197198,13.264113,11.108957,4.4579763,-4.8035765,-11.061218,-5.298731,2.53405,3.254559,2.3107328,-2.9639113,-5.653969,3.267075,5.260095,-4.4311886,-3.988396,8.593908,10.484837,-4.252635,-9.413807,-0.45680094,2.7131505,5.7428265,0.72742486,-21.021133,-16.794691,11.997709,12.942319,-3.9596696,-7.459116,-3.9010487,-1.7038937,-3.306522,-3.88559,5.1930137,15.665171,12.631945,-1.5943799,-6.52933,2.5126452,3.1766615,-7.828573,-6.7236576,4.8825426,-2.2858393,-15.883665,-2.0410972,5.878603,-11.292936,-2.1886635,14.52716,-8.418009,-21.379972,-0.11477089,6.2587457,-7.884409,-7.8822937,7.86319,7.3517556,-5.2433004,4.038577,17.33646,12.690089,3.6300788,-8.152443,-4.735793,15.7198105,10.29543,-6.296466,2.9747503,17.420433,18.631363,8.080343,-0.6626265,5.3537087,2.6169806,-12.016545,-13.49399,-11.713636,-11.6334,-5.987471,-11.018844,-15.971502,2.3089092,12.084819,-5.96613,-6.7431445,11.938463,-0.64539313,-18.390472,0.3794799,7.7040253,null,-3.2152123,-1.0390377,2.5103297,1.8970227,-0.030981064,-6.5776653,-6.013891,10.731045,9.9431,-10.510739,-9.688856,0.35426283,-4.391672,-8.337281,-9.307106,-8.324464,-1.618396,1.3898147,1.3190484,-5.778172,-11.878307,4.2961903,9.709709,-8.285543,-6.5020223,3.9804173,4.5338864,4.8224225,-8.518812,-15.237583,-2.4581184,-5.42153,-9.036182,-1.0168241,-11.383305,-20.326265,-7.017292,-1.134532,-18.773556,-31.897661,-13.064065,-0.46160603,-22.473755,-24.669174,0.47785586,2.5457404,-2.5558233,13.089754,19.072062,-3.1723478,-15.910309,2.1851134,8.550545,-7.889222,-5.1233354,10.210686,8.430643,1.2026839,2.3294103,1.7624218,-7.8127213,-12.536641,-8.599154,-6.6821637,-1.7372222,-2.736796,-8.39852,8.661724,16.422127,-5.0239587,-6.0441656,5.845747,3.321866,-1.3098097,-15.482193,-14.967804,16.410194,21.401552,-0.25386,-6.38053,-5.1879005,2.020389,7.8377657,-1.7451661,-0.00065231323,7.9685936,-0.72963834,-3.7305331,-3.8798342,-11.15851,0.11657107,12.194963,4.603526,6.9450865,6.439695,-10.0238,-0.37281656,14.85084,-2.5503469,-9.424618,null,5.270742,-9.882605,4.5872126,13.759363,-1.2062025,-10.374556,-8.991385,2.7137923,6.9505835,-8.415958,-1.6723899,17.411686,-0.50616527,-15.08746,2.1544745,7.061157,-1.9037031,-11.225744,-14.902338,8.297384,15.68912,-11.730588,-7.4872336,9.086382,-5.6644793,-8.495253,0.29914975,1.1406262,6.7809005,-3.5288715,-17.640408,-6.8557835,-0.0295372,-4.10083,-7.2163153,-10.7319975,0.007376671,12.978433,11.157413,11.099967,9.148577,-0.49282455,3.7552776,22.809483,25.746058,3.2403927,-7.069128,7.125078,10.744453,3.574605,7.7507305,13.876331,6.274498,-7.44526,-3.0950894,11.2775,10.42866,11.782147,17.746138,5.8095093,-6.561353,-3.743855,6.1061683,9.087642,-3.6511889,-5.98524,1.5490174,-9.279385,-14.121237,-6.780905,-3.5177221,11.701957,10.496163,-20.105513,-23.284605,-4.7197385,-2.4803562,-4.3722115,-3.7255154,0.692739,9.133038,6.6401615,-3.8176427,-10.93917,-6.0469337,8.262126,4.154307,-11.357683,-6.6206503,1.6818728,-3.1410608,-5.9787354,-1.5231717,6.426811,4.9384613,-4.751809,3.1494737,11.239123,-0.5367801,2.0624652,null,5.184739,-0.9616729,-4.2173185,-6.9399934,-9.830286,-6.5999756,-3.556045,-3.1006856,-4.4945784,-5.363594,-0.5469185,0.6868769,-2.4645872,3.329378,3.3011136,-7.446912,-0.47835326,10.0849,-2.5094328,-5.8727965,11.033419,2.9306922,-23.469963,-12.185301,18.187637,12.805456,-0.39645624,8.117971,5.7191715,-1.4448681,7.858808,9.927324,3.3202555,1.2867982,-0.8604188,2.862737,10.067467,8.244247,-0.93551636,-9.710766,-9.658064,-5.270362,-4.506044,-4.190026,-8.042673,-10.644605,-2.954956,3.7811027,8.82419,12.845966,4.341253,-9.338903,-14.878757,-8.89734,0.7718272,2.4549885,2.4451256,-0.20689487,-6.268551,1.3214291,8.154842,1.7770126,0.4046738,-0.8463683,-0.22811365,7.317874,-2.7060282,-16.19904,-4.457865,11.096207,7.8537474,-8.4037075,-12.658737,3.8285182,9.94267,-1.2285299,-7.003951,-4.105549,3.7319372,4.9822097,-4.716855,-3.3885722,7.9063473,10.3042555,6.3428698,-4.0412693,-18.126616,-13.972416,6.2175927,11.833733,0.99111116,-1.6893373,5.9759436,9.941291,6.115817,-0.63714075,-6.5366006,-10.388763,1.5130273,20.387228,null,4.6424923,15.066929,5.3464403,-11.523951,-5.0499687,4.1170874,1.0667253,-3.6054943,-6.8378525,-2.4678032,-4.6249304,-17.432278,-9.905019,8.5451975,10.9517975,4.4252176,-3.9060268,-2.38765,9.5982065,6.252845,-4.7471037,1.2032218,10.539905,6.4221406,-2.456112,-6.653178,-7.741127,-7.06305,-3.1730237,5.966737,16.64152,13.378746,-0.80618906,-5.4155283,-4.238697,-2.153198,1.8054667,-4.2570024,-8.5246105,-6.276768,-16.527967,-14.338413,7.3619156,4.985384,-2.7583601,16.984682,22.410316,0.5523157,-2.8578682,11.386993,11.049263,6.862422,10.605271,4.8057485,-3.6390653,4.01868,16.71133,17.51533,2.25708,-14.389647,-11.511284,0.37574196,-0.090213776,-9.1486435,-12.256796,-5.568144,1.731822,6.3700314,4.6097574,-13.180553,-21.17025,1.1276741,12.545333,-2.4543025,-5.595776,3.1080182,0.2968911,0.22802329,6.3362365,-6.908848,-19.124184,1.6171715,15.885836,-0.5607364,-7.8830132,0.75863385,4.475123,3.1373818,-7.022998,-19.507633,-13.634546,3.0129337,3.090378,-10.925978,-9.194916,1.1866338,-5.5807266,-5.932176,11.253148,11.437202,null,-10.415288,-6.376257,-8.18493,0.9820428,5.416359,-5.852797,-0.38547373,9.781454,2.2082863,-4.4462376,-6.989771,-9.142409,-2.4481835,8.92201,10.067889,-4.039813,-11.009745,0.71656704,7.4925914,3.9584603,2.9069633,2.4720926,-1.9280164,-9.533513,-11.912945,-8.145066,-4.0511723,7.269104,13.388175,1.2732458,-3.4012976,3.8866353,5.343132,5.046591,1.6073618,-2.1004534,6.2881064,11.939714,3.0394025,-5.270563,-2.7260728,5.8837824,12.732697,12.785079,-0.037825108,-17.60449,-15.018123,-1.706655,-4.9926023,-7.0210624,4.977067,5.6634283,1.012402,10.77619,14.176831,6.1242857,9.149884,13.303543,7.601431,7.4675922,11.394042,13.89378,17.942398,9.0851,-12.336978,-17.024002,1.2573099,14.37087,4.3179183,-9.188816,-1.699739,14.408066,13.901139,2.1042027,1.1582222,6.1574945,-1.7139955,-13.694223,-11.448449,5.931286,16.858719,2.5646415,-2.4502664,17.006577,9.880224,-9.512141,2.75081,7.713397,-5.8237762,-5.0605464,1.4861021,3.4812045,-3.4811468,-12.644098,-3.1246452,5.26202,5.044511,11.193286,2.250833,-8.020534,null,4.540868,-2.1147313,-1.3721821,-2.6064267,3.412385,3.5784354,6.8068237,12.888004,-1.6264199,-8.251759,-0.27213216,-4.750926,-2.0204628,1.8184114,-8.355512,0.27149868,14.075598,4.553369,-2.9540977,-1.0677392,-0.20114279,1.7834167,-1.3366079,-4.102292,2.954441,5.183055,-2.3608243,-1.8162695,8.513764,12.095092,7.647854,5.2756333,5.77172,3.1407623,-5.577173,-7.824582,1.4271984,-3.8178473,-21.552286,-15.983362,1.5938287,-0.30115604,-9.613228,-6.6654205,2.8355188,-0.11034107,-16.962126,-18.64627,-4.568536,-6.259203,-8.459581,7.254552,5.1055803,-12.660188,-7.309257,-1.1206031,-16.50412,-17.63203,3.6897426,6.3398523,-17.56085,-24.642637,-3.9203541,4.297486,-3.8288689,-4.746003,-5.233531,-6.4301915,-5.3044515,-7.960611,-6.5330367,-7.9702015,-10.036506,10.986861,24.22039,2.5961235,-12.555357,-4.18147,3.0705683,-0.95699334,-5.766196,2.050613,7.889474,-2.2721376,-4.7814174,8.076525,10.687487,0.651819,3.427785,11.93163,-0.7637918,-6.8463535,8.937672,0.66479313,-16.483828,-1.8386637,6.064428,-7.24222,-7.0071774,0.08728409,null,10.258595,3.6960347,-1.9428983,2.918099,2.276623,-4.2195864,5.9958506,11.232113,-3.1958535,-4.7957754,2.8854752,0.5787039,-0.61606646,1.6537259,4.6241035,5.890169,0.3249073,2.703351,14.250535,9.0681305,-4.0211234,4.7020087,16.190636,4.553665,-6.8169684,-6.121457,-7.3924284,-4.7751675,-2.7227812,-6.569093,1.4382429,9.40835,5.0748577,4.2780485,-2.2959898,-10.102017,4.7774878,14.380625,-0.02797079,-5.1056557,4.768028,2.586872,-11.004471,-8.605869,8.852612,6.6837225,-7.964282,2.3515203,17.514587,6.7809544,-3.1614242,3.1163456,2.718175,-2.7705302,4.8258734,13.008504,-2.5034723,-27.590757,-21.612068,7.1148314,12.667124,2.7225847,7.524082,10.867659,-0.59310746,-11.698121,-14.8517275,-7.813982,7.0589514,13.70855,4.4516582,-5.740681,-3.2707283,5.2544003,9.241048,4.065897,-4.1390734,-1.4472561,0.2415142,-8.7367115,-5.1088114,1.0365376,-11.778445,-14.126334,4.4147577,14.542765,4.028365,-9.223236,0.92371833,9.706923,-13.273745,-20.57756,1.3731132,0.34103942,-12.317743,-4.113737,3.4598951,1.2940474,5.9273405,8.59161,null,3.1393864,-4.391476,-4.5845146,4.9659777,-0.90090513,-10.717657,-2.8851364,5.5382924,-0.5384815,-3.9817588,1.7677474,5.6620574,1.0463052,-4.6741447,3.2220774,10.612343,3.4064324,1.5874029,4.378767,0.52778745,-0.39170265,-4.24501,-10.558102,-2.975359,12.014972,22.871517,24.429155,15.53735,5.5536194,-1.2403841,-0.40934277,6.4945717,3.6567178,-5.393899,-7.4291797,-2.56,2.292683,-1.7705755,3.1086755,26.076794,23.479656,-3.907744,-2.8619704,14.1938305,7.7493324,-7.4486313,-6.4126606,2.9255235,-1.1181989,-9.671568,2.786582,14.558583,-1.3485227,-15.052471,-6.565487,2.7447777,6.8357716,12.183266,12.45456,3.1274352,-5.5220466,2.5004492,12.255024,-2.532762,-13.840156,0.57822657,4.8410316,-1.5404582,8.351248,12.5311985,3.041723,6.2687507,16.41518,14.939364,5.202222,-1.5622289,0.83240867,2.4669595,-1.7221687,6.110999,16.340763,-1.7306576,-16.36827,8.494822,21.2808,-1.3054328,-2.702076,15.703546,9.365206,-6.464924,-3.452225,7.426158,5.494257,-1.8005865,3.3026562,7.5132627,3.304356,-0.94002295,-11.936241,-13.355919,null,-0.6178875,-2.0900116,4.874815,8.226799,8.942012,1.1139247,-7.855703,-4.158209,7.679238,8.563329,-4.030201,1.9144745,19.50811,6.7427545,-8.538613,5.0538173,11.57733,1.0233595,-5.721178,-5.498987,3.7061229,8.753006,-4.48608,-15.712427,-8.3927145,4.6212616,3.0621934,-14.131948,-20.6672,-8.4530525,-4.2055244,-9.7653885,-3.3698149,2.8900185,-5.9241,-5.7357054,7.132697,2.2330837,-12.009697,-10.153352,-6.5871897,-9.824898,-7.4074607,-3.824776,-1.4492345,2.894946,4.5233517,11.320965,17.6377,3.6466427,-8.560234,0.3962474,5.108856,-1.7068894,-4.403217,-2.2524896,-3.4677663,-12.57197,-19.914974,-24.166782,-33.64356,-28.847607,-7.2364984,3.2484403,4.7517204,3.7852712,1.49247,10.2495,14.7759495,7.044856,2.2787137,-6.3753753,-11.184703,-0.045070052,6.844998,3.887688,-1.4222155,0.10657978,11.756752,5.7005224,-8.752413,2.2174973,9.215293,-5.3348627,-14.420518,-10.741024,5.5122275,14.910967,-3.9874077,-15.595839,0.8363073,10.050213,2.0223238,0.11642742,7.8283305,11.67602,7.7356257,-1.089421,-3.7578864,10.182635,null,-5.235885,1.2347008,11.360363,6.745774,0.84021616,-1.7336378,-4.981998,-10.51672,-6.579977,4.508563,1.7409759,-1.8647494,5.9287086,8.53549,4.4397097,-3.1174088,-3.0771327,6.9374332,-4.9636,-19.598959,-3.6636086,1.4344358,-10.910551,-6.4164643,0.6355686,1.5404515,0.28138065,-8.698579,-13.662875,-12.261558,-7.113775,-0.979342,-8.613102,-10.567856,3.6474273,1.3542821,-5.756545,4.9686375,8.366383,3.178316,8.170056,10.891984,2.441044,-1.6313555,5.2786098,8.639744,4.227959,0.4509282,-6.826738,-13.479481,-8.915941,-3.317091,-1.8413768,-2.8678412,-8.10448,-4.2324066,4.201665,-1.0649424,0.6196979,18.487782,20.161194,5.603815,3.7315073,5.3822036,-12.088909,-21.76994,2.5828261,14.7850065,-7.5762157,-9.300449,9.363813,2.11939,-11.815886,-10.774874,-7.6625304,-4.077385,-4.6636667,-4.1503806,1.975898,-4.3461018,-3.5800912,16.194096,12.45442,-6.4805627,-2.1436558,9.079601,6.6131706,-4.726934,-4.7532353,13.460982,16.484625,3.4163911,5.241336,10.99572,12.465714,13.4307995,2.911048,-2.2652721,5.562047,1.7944138,null,-4.7430944,3.2574658,-4.436138,-1.4817486,1.4676182,-7.7989926,-2.4534543,2.755826,-6.675703,-2.0151443,10.586843,5.108633,-10.115616,-9.2528305,9.664358,10.601347,-5.8963428,-1.6856818,7.0721307,1.4485704,-1.123538,-4.274106,-2.2876925,10.72908,10.190386,2.4524138,1.5748849,0.859202,7.1982837,5.0160017,-10.82247,-0.7179394,18.02381,6.8676615,-0.96666765,11.438632,13.552408,1.5722216,-5.3602734,-0.55235195,2.7701755,0.7040081,9.268069,14.024919,-1.8633292,-7.371653,5.6852384,9.550342,7.129615,6.7655964,-1.2335465,-10.367619,-6.333534,6.6299953,11.943863,4.041553,-4.7823877,-4.6988926,0.18105507,0.55303574,-2.1951213,-4.08133,-15.663841,-25.377342,-8.691151,8.5653105,5.9143567,7.5319715,11.139017,5.567523,3.2076046,3.2400465,1.6525266,-0.024605513,1.8821316,8.914205,-0.3869382,-16.415668,-3.505839,9.556137,-4.653212,-14.98138,-8.555178,3.4775698,6.934185,-2.8853223,-3.08913,4.0102644,1.705203,2.3716924,1.4480152,-3.397037,5.801982,11.686893,-0.22133088,-9.016911,-3.9070601,7.004586,3.0207324,-14.898451,null,10.2822,0.8923961,-1.6488209,9.354781,10.990127,5.547898,2.5712004,-1.459306,2.9988582,6.515178,-4.8489428,-0.4252591,16.161005,3.3825064,-14.075761,-5.692217,1.1623216,-1.3143911,2.7485545,7.214142,2.6054673,-4.9563465,-4.1973467,0.014211655,-0.563447,2.4081552,5.3300676,1.7539845,4.8083415,8.428886,0.29109287,-1.1492603,10.938051,14.583502,2.767394,-4.9536686,3.4379964,11.598022,6.458315,-0.3343835,-0.44588947,-0.0026509762,-6.175154,-15.815885,-13.499062,-0.18004155,0.7028979,-11.656366,-12.149122,0.2218045,2.5316188,-1.4817355,5.192285,6.273507,-4.9804997,-3.0069947,5.4413233,1.4440397,-1.5397131,-2.2930245,-1.0599852,15.203989,25.175781,16.272743,8.701387,-0.72180915,-6.0377107,6.153791,7.4139533,-5.160596,-5.7625484,-3.4767332,-0.47465754,5.145205,-3.4694088,-10.6966915,-2.2480316,0.075845,-4.919766,-3.5149767,-0.6877651,-3.8048577,-7.4598494,-2.7905014,-0.90668344,-8.950733,-6.3390646,6.9920063,9.556522,-0.6583154,-11.112783,-8.096238,-2.52421,-10.355793,-7.870435,7.7510242,8.69073,3.986406,1.6722006,-0.53618765,null,2.5753086,-3.490559,0.4271736,5.512415,8.719311,8.453874,2.834629,-3.6322258,0.13943624,9.617497,7.369103,1.3553747,0.78140616,-4.6132812,-4.752298,5.711563,4.230459,-2.96506,2.8057098,-0.4368124,-19.723186,-16.746822,5.744202,3.7881594,-8.378616,-0.73403645,0.17775536,-9.07751,-3.9200833,-1.0391204,-4.4485903,1.8937511,3.7468572,0.6909399,0.56794834,-8.404575,-11.504983,-0.8433974,-1.5909863,-4.9494724,6.148295,15.220261,18.563906,17.646988,4.1120615,-5.5641804,0.9830842,3.6512322,-5.171709,-8.6969385,-0.7727618,6.4549885,6.8706665,10.606692,16.993938,11.574011,2.6411982,8.5990925,18.61338,14.094519,2.9970474,2.0125468,6.8323936,3.6904666,-3.1098766,-2.1788595,2.0246582,0.17538285,-3.3285947,2.9473107,12.368774,7.154628,-1.2803116,4.4825644,5.9129176,-1.2315571,6.2481947,11.605931,-7.609947,-17.88763,-0.35449684,9.926727,1.0854075,-2.767115,0.33649206,0.81029415,4.7705317,7.701184,1.577929,2.9734378,14.216955,11.586908,-0.41853952,-3.6030624,-2.0552273,6.149844,14.24869,-0.3479551,-13.33152,2.0690908,null,-5.8333025,1.6918726,3.8354964,-3.2755897,-5.4389086,2.9683323,7.3559113,3.6425672,-1.5753207,-5.0051627,-0.9001827,6.7873335,4.891259,-1.115699,0.70232487,-0.75871897,-13.480732,-16.705574,-3.3784013,4.6574907,6.900469,11.425614,1.7201307,-12.118658,-2.842455,5.9045863,-5.9010687,-11.026735,-4.8169208,-2.9624557,2.2575788,8.991884,5.344185,0.3188244,-2.4337912,-11.282122,-17.995907,-14.730196,-12.365458,-13.141008,-11.570719,-20.413618,-36.55736,-27.498083,-4.6409388,-9.541416,-22.622505,-14.12531,-10.916723,-19.126137,-12.445404,-3.5247366,-7.924961,-9.085623,-4.6029673,-3.7686024,-5.167178,-7.851576,-6.2426805,0.9134288,1.1360416,-2.4577384,1.7626934,7.52763,8.990307,7.6686473,3.82804,1.1512785,0.8674511,2.2866104,2.3716977,-7.8122816,-16.418587,-6.3731303,1.8809526,-2.1638908,1.9819546,2.2824442,-12.835049,-7.849684,13.269787,4.1803913,-14.266388,-1.102068,11.975525,0.069737434,-7.033899,-1.7019053,0.9489342,3.6866174,4.482003,0.3372023,0.90452147,1.3463807,-6.195347,-9.393512,-3.8811605,-0.20426548,3.0740128,8.496756,null,-0.13738728,-5.193733,0.7584673,2.2400336,-3.5644388,0.87847733,3.1926727,-4.965782,-7.158679,-3.8183281,1.3020442,9.066008,7.2643385,-2.3874495,-3.7839708,-0.9563427,-3.8209603,-2.9299731,6.664631,7.819869,-2.1858273,-1.9994607,6.4331613,3.0285707,-4.1287785,2.8799996,14.691753,14.076558,6.5353947,4.8042636,2.9986498,-3.4293022,-4.3332257,-2.9789,-6.0328894,-0.6117158,10.437877,8.20988,4.36852,13.52395,17.237133,7.2266793,-0.8278179,1.1337037,10.5704,10.641243,-7.506244,-11.809457,5.086456,2.919043,-8.632111,2.854632,8.686804,-2.305152,2.5487556,8.920259,-4.7777243,-6.227947,11.380578,11.956034,0.41120338,4.10546,7.544093,-3.1127167,-2.9383554,10.161474,8.474383,-4.3895187,-11.463551,-16.124783,-13.094307,-0.45319557,1.286804,-4.048081,-0.52328014,-3.4504728,-9.890104,2.2869234,10.298989,-2.1790156,-4.5011845,6.4648523,7.879178,3.1138701,-1.6927767,-6.2735453,-5.6576285,-3.2575583,1.0042148,7.487686,4.007658,-5.4287477,-5.65746,1.386415,6.8771186,2.454498,-5.249592,3.2389216,13.577888,3.070445,null,-0.585428,-3.5659966,-0.31019652,4.431648,0.9604831,-2.075909,4.1620207,-1.5908482,-7.710739,6.709028,7.3741145,-5.8430514,1.772181,10.763363,5.1369367,-0.6252986,-3.505959,5.552488,16.564941,2.186218,-15.004362,-7.637897,3.665112,3.042076,-2.7669978,-5.788477,-2.3616211,-0.14127493,0.28893852,11.128945,20.449306,8.707214,-3.9790957,-0.44328308,-2.7884173,-8.597289,4.625349,12.866955,0.5059345,-2.0146143,6.1780415,1.3475852,-9.141191,-8.216104,1.634748,5.710194,5.2468615,11.393104,8.057098,-6.9572134,-2.2275872,11.359745,3.2433095,-10.054479,-11.688154,-8.807182,-4.231815,-2.3699412,-3.3379707,-1.4313445,-3.5084343,-7.7419243,-0.79793954,6.0331693,1.247745,1.3151026,5.752663,0.8335643,2.0969152,12.284805,8.201204,-3.1799998,-5.8920794,-8.347527,-9.431761,1.8247612,16.81599,16.97662,1.8534648,-10.478112,-7.4909773,9.106648,19.864307,6.725352,-6.973281,-1.0671458,0.60290307,-6.539013,-4.013424,4.640477,8.358211,1.7112243,-1.3078446,10.399208,9.1944895,-4.4002047,-1.1012225,2.5070896,-3.2300224,-1.5221586,null,18.125957,5.877487,4.5600243,6.331318,1.5139179,3.006064,3.5455415,1.7707448,4.5910935,2.6619453,-4.057914,-4.1527843,7.763242,15.52216,0.6800575,-11.578423,-3.652548,-0.59622574,-3.1376543,1.3618588,1.3202996,-6.239115,-11.454447,-7.76228,1.7919862,6.486444,4.6598797,-1.1831573,-3.9381716,2.8265114,4.833468,-0.19340873,-0.023530483,-1.8044248,-1.7761045,5.8767595,2.9319599,-2.0572233,10.298556,17.788746,4.6606083,-6.402822,-0.56377316,5.891533,-2.5013492,-12.010999,-5.6096582,1.4385986,-9.737503,-19.402796,-12.269316,-14.398863,-25.177185,-16.809841,-6.9992776,-8.862381,-4.911507,-7.3365345,-15.168956,-4.3734245,4.9761724,-3.9950128,-11.806528,-13.1661625,-11.13867,-4.8453693,-1.0089918,-2.8804872,-7.172845,-11.658632,-18.275587,-19.229847,-0.3184477,17.649134,6.379409,-13.157171,-13.382322,-3.58574,0.21646011,3.9212523,12.220175,3.1528704,-16.436665,-8.869681,3.7442245,-4.676717,-3.3712573,2.9862618,-1.4431922,2.864576,1.3267745,-7.4051476,6.3039265,14.550771,-0.80638874,-5.0540113,2.433046,0.54616714,-9.593338,-10.562475,null,-7.662296,-0.73672485,-1.207986,-1.4666786,3.4091272,-1.1089666,-8.422554,-2.5999522,12.013069,10.569853,-6.905936,-4.8852243,7.177635,-3.9153833,-10.480596,5.605898,11.45148,4.6040225,3.03582,-0.6465728,-5.748383,1.5763016,10.2909155,0.67851484,-10.258741,-3.7298522,-0.77956045,-3.7770803,3.4735935,-0.56294465,-16.042448,-11.499119,-0.7753016,-0.9109757,4.656208,10.976765,4.0264053,-0.41530323,8.956297,6.8592033,-12.932758,-6.930101,18.285975,11.5989895,-0.19155502,13.155666,11.134935,-1.7197778,9.822828,17.71923,0.62844014,-8.8926115,3.737396,13.750656,11.62818,11.474354,10.74354,1.1410518,-6.311615,-0.85192037,8.129182,1.2524438,-8.627857,3.9620264,12.661343,2.76088,5.5014944,9.300841,-3.6087437,-6.363563,1.9716192,5.6000447,7.437789,3.8642364,-4.3909807,-5.365447,3.4254858,6.2566013,-5.9510336,-8.556185,1.0435789,-4.9769726,-9.7590885,1.427814,1.2248878,-5.6250544,1.6416631,10.055972,7.0007954,1.553113,2.4849577,0.45361733,-5.6068454,-1.1103691,3.3295045,-1.215631,-0.8443589,-2.5469105,-9.713999,-5.3900204,null,-15.011537,4.678544,8.838856,-15.301418,-21.280708,1.1054704,8.700472,-0.41223872,-3.5263562,-5.0861964,-7.907928,-8.377407,-9.4722595,-9.625994,-3.5963335,2.3785224,-2.8060446,-3.109986,10.022572,2.442955,-18.335575,-7.2991495,14.893165,10.887247,-5.927097,-15.098537,-13.997271,-10.004673,-3.8725793,5.0368943,3.6418085,-1.5488081,1.823535,1.3512273,-2.0142426,-3.2256331,-6.9300165,-1.8685529,9.566379,11.269468,4.9388933,-2.774869,-4.5518837,-4.5425167,-8.247137,1.3268661,13.625312,3.411434,-7.0253735,0.05235839,6.1018167,0.23985147,-7.7345214,-4.798178,-3.0158515,-11.40143,-5.9739447,7.337995,3.2953734,-0.03169918,7.220564,7.404703,4.8044233,6.658748,0.66816354,-12.875569,-11.442559,4.580533,6.9418316,1.2753886,4.1391788,-3.859665,-13.667522,1.6872652,16.203634,13.80573,10.952765,-1.4565516,-16.319254,-5.151636,13.061623,11.257949,1.2833416,-5.162694,-5.6043806,3.8772445,15.557785,14.846321,0.46734953,-7.630413,2.4742007,8.042751,-4.9387255,-12.150956,-1.4502969,4.244156,-5.2629566,-8.163134,2.7314656,6.676507,null,-1.0508041,-5.417336,-1.2686901,0.69363165,-5.2737355,1.5670247,11.109424,8.691025,3.1431048,0.29652977,5.0467677,5.756378,-7.53861,-9.871794,1.7753334,4.2030473,-1.0233297,-6.8700557,-5.391403,7.797655,13.291359,9.91569,7.2330303,-7.07415,-15.765949,2.2134585,11.960395,-3.4543333,-16.443436,-20.143078,-18.193766,-7.0826573,4.9462886,11.092108,11.670727,7.52235,1.5979288,-5.9154825,-9.423659,-1.5451417,9.092458,9.084678,-0.72660923,-2.2206068,7.946182,3.5441473,-10.922634,-7.080866,2.596622,1.4304314,-5.287182,-11.811033,-5.2844834,4.9584255,0.9013772,-0.05337715,3.3440394,-1.5416167,0.42370987,7.968344,7.802738,0.11784983,-14.7947,-16.708485,4.5744586,16.45505,4.543144,-8.540308,-6.7475348,0.9949951,-0.7992573,-3.9324038,4.0964847,14.145189,13.887263,-0.04592848,-13.0152855,-8.658079,0.03109777,1.575145,3.1736698,2.8586655,-4.508477,-13.542743,-12.75649,-1.3757092,3.9846575,-0.78720236,-6.0206423,-8.53791,-5.82997,-3.174914,-4.9837055,-2.1226935,0.64975667,-3.899472,-4.9871883,-1.8830657,1.1705623,7.470024,null,3.0485013,-15.4397,-12.133059,9.886242,10.352922,-4.3216295,-9.548144,-6.4007654,1.2406411,7.2832003,5.5516214,1.2724302,0.34083366,0.5502558,-1.87251,-1.6445451,1.1287227,-3.86912,-11.687637,-11.092325,0.56396866,15.465855,11.632071,-3.9424129,-1.1527276,6.4188056,0.6752602,-0.27163553,5.6717567,7.9262924,9.162036,4.0690336,-6.4036665,-3.4322228,8.489895,7.2311645,-0.12389827,-0.37980127,-0.4805894,2.3152752,6.338337,-1.1866615,-6.4946423,-2.3653963,-1.9039145,2.3266134,7.6966186,0.081673324,-4.003579,7.250037,20.2896,20.068657,4.9766517,-1.7822399,6.9826665,4.739373,-7.088165,-5.7955704,0.35437012,-2.8101168,-2.7094789,10.360083,15.699167,2.044537,-5.7518053,-0.46788287,-2.5735548,-7.940098,0.29999185,13.495522,12.137179,-1.227171,-5.5804515,-3.213122,-11.724383,-15.551615,-0.071171165,10.502256,3.9288552,-4.766744,-4.207205,7.221954,11.5709305,-0.57955074,-5.0996475,-1.2824891,-5.67914,-6.4632087,-4.42317,-5.508487,0.40076375,0.8709922,-3.226502,2.905767,0.113167286,-6.640321,0.08248019,-0.86583626,-5.3319297,-0.71532845,null,4.0911827,-2.6532397,-6.8426924,-7.6669645,-7.5034857,1.2528582,2.0616336,-5.2488456,-0.027852535,2.2920969,-3.5220828,-0.5779152,1.2326612,0.32340217,1.1930486,-10.169654,-15.760679,2.7868638,12.658814,3.6617115,-0.682557,-5.248292,-9.894838,2.9700685,19.596825,17.497402,-1.0099187,-17.195866,-12.359781,1.6353941,2.474297,-1.1740767,-0.05543506,0.099175215,-1.4251795,-4.301486,-2.16012,6.809627,5.1240144,-6.2205276,-1.9274654,16.050102,17.141571,0.04098606,-4.443578,1.1061242,-6.534383,-10.932593,0.6941738,3.039609,-9.63901,-13.281691,-1.5021954,7.2581205,5.084292,3.0494485,2.6963985,2.5708466,7.8676066,10.38895,9.388868,13.855136,8.445723,-7.930297,-5.9084415,9.904776,13.137234,8.849881,5.2049727,-2.5873482,-6.9098525,-6.317359,-6.629769,1.399302,8.0867815,-1.314388,-2.5470788,5.7799187,-3.6599498,-10.216883,5.349094,11.769344,0.2938944,-2.5144014,2.0334299,-4.1568255,-8.807265,-3.7288575,-7.250993,-12.003109,-7.237328,-7.0798316,-1.9076018,7.6919847,-0.1744566,-5.526126,2.017679,4.0947375,6.1319523,3.6772466,null,-5.3115153,-4.42892,-4.1924725,-4.741617,-5.3380394,1.6093576,0.88729596,-4.747939,5.270717,2.277646,-12.329934,1.1835328,10.61857,-4.556018,-1.7655367,6.767186,-9.529084,-14.882317,5.329567,9.919931,-1.2846601,3.7485423,8.650382,-2.071437,-2.7064748,7.384945,13.033901,17.885834,14.649334,3.9249094,-1.0782785,-8.251987,-9.488874,11.0798,19.3436,-3.9757328,-17.222864,-5.7723994,1.5874,-0.9022534,-4.7605476,-9.636679,-8.871864,-0.10495472,6.945323,5.606763,1.1829171,1.8412051,1.7633033,-0.4527166,3.827752,4.6597548,2.2742841,9.550158,5.7066097,-11.778435,-7.4563403,11.627317,12.539893,-0.9139949,-6.7098875,-2.1183348,0.10950005,2.2993407,7.0048695,3.7214422,3.4051347,7.9123178,-0.9851861,-3.9782953,10.961658,15.2929,3.9724557,-5.846912,-4.5663037,0.6006017,-5.5758905,-2.2000916,19.58669,16.404684,-8.181593,-12.502175,-4.6761436,3.3973913,14.130294,10.233859,-4.394031,-7.2142887,-1.8811316,0.13871384,-3.93685,-7.450733,0.19484782,4.05577,-6.554449,-7.0197115,3.1076417,0.1301167,-7.7708673,-5.619299,null,-3.6900618,-3.0978231,2.2617378,8.324392,-0.44298697,-9.04627,-2.5377448,-4.02668,-10.004198,-2.1114535,0.41561723,-3.6125832,3.0519018,6.5266066,0.24508554,-4.992073,-3.6347308,7.87101,10.854989,-4.1917033,-11.619348,-8.060286,-0.8924005,11.093605,8.673758,-4.391757,-5.437354,-1.0081416,3.5574617,3.6059432,-3.4118028,-2.2584345,-4.801053,-18.30254,-15.650459,-2.109735,4.0201464,5.8234425,1.4722548,-1.9267173,2.5159197,6.852748,6.517311,-2.4834604,-8.349746,-0.7567644,1.1978137,-0.76876307,3.6692252,-0.10570955,-1.9430504,7.095061,3.9208221,-4.0707808,2.4750233,5.816022,-4.1963606,-8.561488,0.31528378,7.821025,6.660532,3.3897386,-1.0014961,-5.7210045,-4.8605537,-3.8829184,-9.56757,-12.603567,-7.453877,-2.360712,2.0003376,7.389146,4.6907845,-2.3157172,-0.22883964,3.9116874,1.7409217,1.3329668,4.3773904,4.7879763,3.9250824,2.9590068,0.8281088,4.7373567,9.823647,0.37270254,-4.905978,6.592826,3.3966444,-5.9383307,6.7606187,8.814078,-9.211555,-9.630769,2.6134737,5.3517084,2.918262,-0.7540517,-7.9258213,-10.657852,null,-5.432561,5.957578,5.5568786,-3.289878,0.9355879,11.142496,8.373909,1.970389,2.5731268,-0.26556683,-2.4734588,0.26301432,-5.2164755,-10.497598,-6.2703795,-4.5037785,-1.4557943,5.101792,3.6116502,2.0445514,4.186246,-2.8998644,-10.67198,-3.7492785,8.402254,8.787582,-3.0418463,-9.008154,-2.937993,-6.078785,-15.765745,-4.0443344,13.9869,10.339666,0.06873846,-3.020051,-5.131545,-7.699969,-9.006382,-3.2529807,3.5590909,-3.7908356,-12.531322,-9.004888,-5.1689515,-3.2612095,2.1598463,1.2813704,-11.420495,-16.351389,-0.8351991,8.377275,-2.52971,-8.271271,-2.1696794,3.4933882,4.6974072,0.2111311,-1.7569852,0.04003668,-3.612691,-7.0442123,-2.643269,8.43688,12.839007,0.6693405,-5.141979,-0.38106227,-6.0950966,-8.291487,-3.2433004,-7.5701985,-10.689284,-11.574467,-12.099964,0.22331285,11.388386,5.6552143,-9.200164,-13.000938,5.371138,12.399993,-4.6358595,-8.01847,-2.0477405,-1.781631,6.4116693,6.4097905,-2.8610287,2.3364038,5.3123293,-0.641973,0.9729562,1.0685385,-0.3796835,2.5610085,-2.1248074,-2.5629485,10.03035,7.511135,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 22e99098c..892a68325 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('9b6bfc6f-a159-45fb-a252-d11f86d54819')) { + if (document.getElementById('6223217d-e9b0-4d55-8cea-8d4dab10fd10')) { Plotly.newPlot( - '9b6bfc6f-a159-45fb-a252-d11f86d54819', + '6223217d-e9b0-4d55-8cea-8d4dab10fd10', [{"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 bc628b384..d9db8de36 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('bad09533-0748-4a3c-821a-19f784b6d393')) { + if (document.getElementById('7699735c-909d-436b-9496-c7652dc01fc7')) { Plotly.newPlot( - 'bad09533-0748-4a3c-821a-19f784b6d393', + '7699735c-909d-436b-9496-c7652dc01fc7', [{"y":[1.4552652e-5,1.5389567e-5,6.974584e-6,6.608502e-6,1.7539372e-5,1.9082048e-5,8.957454e-6,7.874195e-6,2.206148e-5,2.4611601e-5,1.2111873e-5,9.7279235e-6,2.8842644e-5,3.3048684e-5,1.7397251e-5,1.20634795e-5,3.887534e-5,4.663741e-5,2.6610727e-5,1.4006962e-5,5.3950997e-5,6.818469e-5,4.257298e-5,1.5335841e-5,7.681071e-5,0.00010359996,7.102662e-5,1.484842e-5,0.000113442016,0.00016543653,0.00012529292,6.3638377e-6,0.00017281355,0.00027763602,0.00023626255,3.249697e-5,0.00024860736,0.00043684943,0.0003535636,8.123714e-5,0.0007635541,0.0014012024,0.0016283849,0.0012231042,0.0003434531,0.00034238235,0.00023355581,0.0031235996,0.008673951,0.015744176,0.021095594,0.019254519,0.0030435158,0.035179432,0.101682946,0.1991918,0.32475686,0.46872884,0.6159196,0.749207,0.855214,0.9280458,0.9703213,0.9904682,0.997912,0.9998007,1.0000138,1.0000396,0.9994222,0.9963152,0.9856525,0.9591553,0.9074498,0.8234289,0.70728064,0.5675661,0.41952965,0.28021744,0.16327313,0.076098785,0.01954902,0.010526512,0.021086711,0.019798469,0.013371068,0.0065590353,0.001858105,0.00017119452,0.00019654444,0.0006588952,0.0014287117,0.0016175284,0.0012167735,0.0005235095,0.00010053655,0.0004198079,0.00039641288,0.00015577833,0.000115310555,0.00026951212,0.00025563134,0.00011910218,4.5183766e-5,0.00015023485,0.00015670758,8.2545535e-5,1.7831444e-5,8.889842e-5,0.000100572914,5.8250786e-5,5.95493e-6,5.5790435e-5,6.767382e-5,4.2298096e-5,7.363957e-7,3.6223955e-5,4.7013214e-5,3.1306005e-5,1.4441097e-6,2.4678506e-5,3.3845667e-5,2.3535249e-5,1.9621366e-6,1.769856e-5,2.5239908e-5,1.8320774e-5,1.989802e-6,1.34721295e-5,1.9842206e-5,1.4683895e-5,1.8978673e-6,1.06413945e-5,1.6195661e-5,1.2278364e-5,1.7691034e-6,8.786856e-6,1.3859909e-5,1.0739773e-5,1.8913279e-6,7.536298e-6,1.22541815e-5,9.93244e-6,2.1353785e-6,6.388689e-6,1.10059245e-5,9.534047e-6,2.6952307e-6,5.328345e-6,1.0215444e-5,9.266711e-6,3.3794097e-6,4.3317423e-6,9.318181e-6,9.2986265e-6,4.1540784e-6,3.1398013e-6,8.488463e-6,9.231962e-6,4.9686896e-6,1.9461381e-6,7.6561655e-6,9.172411e-6,5.756611e-6,6.479133e-7,6.567342e-6,9.005288e-6,6.513161e-6,6.8636155e-7,5.431689e-6,8.603465e-6,7.1561294e-6,2.0623627e-6,4.2294146e-6,8.061385e-6,7.702082e-6,3.208274e-6,2.8728448e-6,7.3445e-6,7.933439e-6,4.4059184e-6,1.4186162e-6,6.396147e-6,8.006042e-6,5.3840517e-6,5.1094936e-8,5.2341265e-6,7.805632e-6,6.208462e-6,1.4172962e-6,4.0650375e-6,7.325596e-6,6.8137006e-6,2.7098756e-6,2.7290685e-6,6.710458e-6,7.0660117e-6,3.8975277e-6,1.3266927e-6,5.856586e-6,7.204895e-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":[7.2921916e-6,8.9599525e-6,5.7317343e-6,5.456046e-7,6.6496264e-6,9.337697e-6,6.9778107e-6,7.4771793e-7,5.9340045e-6,9.428581e-6,7.911389e-6,1.8990462e-6,5.1918646e-6,9.643291e-6,8.778133e-6,3.0719355e-6,4.595521e-6,9.827121e-6,9.76472e-6,4.140806e-6,3.9935426e-6,1.016579e-5,1.0703103e-5,5.106871e-6,3.6940767e-6,1.0723337e-5,1.1950885e-5,6.1724213e-6,3.6405734e-6,1.1811643e-5,1.3555681e-5,7.4030327e-6,3.7388888e-6,1.3551127e-5,1.5957377e-5,8.921722e-6,4.299253e-6,1.6167836e-5,1.9708159e-5,1.1344016e-5,4.95321e-6,2.0328065e-5,2.5164305e-5,1.5086101e-5,5.944682e-6,2.6471262e-5,3.3777993e-5,2.1281636e-5,6.5218123e-6,3.538912e-5,4.718787e-5,3.161706e-5,6.648581e-6,4.8454072e-5,6.855477e-5,4.958602e-5,4.5348347e-6,6.792271e-5,0.000102996535,8.0805985e-5,1.8269864e-6,9.85305e-5,0.00016228897,0.00013921961,2.018253e-5,0.00014663942,0.00026853802,0.00025532194,7.516833e-5,0.00020284833,0.00042013917,0.00039176535,1.4020906e-5,0.000643182,0.0013139131,0.0016318423,0.0013340833,0.000500612,0.00028426095,1.1669638e-6,0.0024517549,0.0075893914,0.014569668,0.02053072,0.020352261,0.007075005,0.026978523,0.08845749,0.18081275,0.3021931,0.44402832,0.59188926,0.72864413,0.8398158,0.91819125,0.9650245,0.98823893,0.9972076,0.9997221,1.0000248,1.0000248,0.9997221,0.9972076,0.98823893,0.9650245,0.91819125,0.8398158,0.72864413,0.59188926,0.44402832,0.3021931,0.18081275,0.08845749,0.026978523,0.007075005,0.020352261,0.02053072,0.014569668,0.0075893914,0.0024517549,1.1669638e-6,0.00028426095,0.000500612,0.0013340833,0.0016318423,0.0013139131,0.000643182,1.4020906e-5,0.00039176535,0.00042013917,0.00020284833,7.516833e-5,0.00025532194,0.00026853802,0.00014663942,2.018253e-5,0.00013921961,0.00016228897,9.85305e-5,1.8269864e-6,8.0805985e-5,0.000102996535,6.792271e-5,4.5348347e-6,4.958602e-5,6.855477e-5,4.8454072e-5,6.648581e-6,3.161706e-5,4.718787e-5,3.538912e-5,6.5218123e-6,2.1281636e-5,3.3777993e-5,2.6471262e-5,5.944682e-6,1.5086101e-5,2.5164305e-5,2.0328065e-5,4.95321e-6,1.1344016e-5,1.9708159e-5,1.6167836e-5,4.299253e-6,8.921722e-6,1.5957377e-5,1.3551127e-5,3.7388888e-6,7.4030327e-6,1.3555681e-5,1.1811643e-5,3.6405734e-6,6.1724213e-6,1.1950885e-5,1.0723337e-5,3.6940767e-6,5.106871e-6,1.0703103e-5,1.016579e-5,3.9935426e-6,4.140806e-6,9.76472e-6,9.827121e-6,4.595521e-6,3.0719355e-6,8.778133e-6,9.643291e-6,5.1918646e-6,1.8990462e-6,7.911389e-6,9.428581e-6,5.9340045e-6,7.4771793e-7,6.9778107e-6,9.337697e-6,6.6496264e-6,5.456046e-7,5.7317343e-6,8.9599525e-6,7.2921916e-6],"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":[7.204895e-6,5.856586e-6,1.3266927e-6,3.8975277e-6,7.0660117e-6,6.710458e-6,2.7290685e-6,2.7098756e-6,6.8137006e-6,7.325596e-6,4.0650375e-6,1.4172962e-6,6.208462e-6,7.805632e-6,5.2341265e-6,5.1094936e-8,5.3840517e-6,8.006042e-6,6.396147e-6,1.4186162e-6,4.4059184e-6,7.933439e-6,7.3445e-6,2.8728448e-6,3.208274e-6,7.702082e-6,8.061385e-6,4.2294146e-6,2.0623627e-6,7.1561294e-6,8.603465e-6,5.431689e-6,6.8636155e-7,6.513161e-6,9.005288e-6,6.567342e-6,6.479133e-7,5.756611e-6,9.172411e-6,7.6561655e-6,1.9461381e-6,4.9686896e-6,9.231962e-6,8.488463e-6,3.1398013e-6,4.1540784e-6,9.2986265e-6,9.318181e-6,4.3317423e-6,3.3794097e-6,9.266711e-6,1.0215444e-5,5.328345e-6,2.6952307e-6,9.534047e-6,1.10059245e-5,6.388689e-6,2.1353785e-6,9.93244e-6,1.22541815e-5,7.536298e-6,1.8913279e-6,1.0739773e-5,1.3859909e-5,8.786856e-6,1.7691034e-6,1.2278364e-5,1.6195661e-5,1.06413945e-5,1.8978673e-6,1.4683895e-5,1.9842206e-5,1.34721295e-5,1.989802e-6,1.8320774e-5,2.5239908e-5,1.769856e-5,1.9621366e-6,2.3535249e-5,3.3845667e-5,2.4678506e-5,1.4441097e-6,3.1306005e-5,4.7013214e-5,3.6223955e-5,7.363957e-7,4.2298096e-5,6.767382e-5,5.5790435e-5,5.95493e-6,5.8250786e-5,0.000100572914,8.889842e-5,1.7831444e-5,8.2545535e-5,0.00015670758,0.00015023485,4.5183766e-5,0.00011910218,0.00025563134,0.00026951212,0.000115310555,0.00015577833,0.00039641288,0.0004198079,0.00010053655,0.0005235095,0.0012167735,0.0016175284,0.0014287117,0.0006588952,0.00019654444,0.00017119452,0.001858105,0.0065590353,0.013371068,0.019798469,0.021086711,0.010526512,0.01954902,0.076098785,0.16327313,0.28021744,0.41952965,0.5675661,0.70728064,0.8234289,0.9074498,0.9591553,0.9856525,0.9963152,0.9994222,1.0000396,1.0000138,0.9998007,0.997912,0.9904682,0.9703213,0.9280458,0.855214,0.749207,0.6159196,0.46872884,0.32475686,0.1991918,0.101682946,0.035179432,0.0030435158,0.019254519,0.021095594,0.015744176,0.008673951,0.0031235996,0.00023355581,0.00034238235,0.0003434531,0.0012231042,0.0016283849,0.0014012024,0.0007635541,8.123714e-5,0.0003535636,0.00043684943,0.00024860736,3.249697e-5,0.00023626255,0.00027763602,0.00017281355,6.3638377e-6,0.00012529292,0.00016543653,0.000113442016,1.484842e-5,7.102662e-5,0.00010359996,7.681071e-5,1.5335841e-5,4.257298e-5,6.818469e-5,5.3950997e-5,1.4006962e-5,2.6610727e-5,4.663741e-5,3.887534e-5,1.20634795e-5,1.7397251e-5,3.3048684e-5,2.8842644e-5,9.7279235e-6,1.2111873e-5,2.4611601e-5,2.206148e-5,7.874195e-6,8.957454e-6,1.9082048e-5,1.7539372e-5,6.608502e-6,6.974584e-6,1.5389567e-5,1.4552652e-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-recon1.html b/dev/assets/examples/3-recon1.html index 3ceba8ff5..0b8f48b56 100644 --- a/dev/assets/examples/3-recon1.html +++ b/dev/assets/examples/3-recon1.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('040ea2d8-15a5-48f7-8b31-363bd8a1fd72')) { + if (document.getElementById('773c2d45-a1e3-4f22-a742-13124ab5c839')) { Plotly.newPlot( - '040ea2d8-15a5-48f7-8b31-363bd8a1fd72', + '773c2d45-a1e3-4f22-a742-13124ab5c839', [{"zmax":2.6595256,"type":"heatmap","zmin":0.0,"colorscale":"Greys","z":[[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.034414064,0.114450455,0.08313277,0.08498138,0.0636502,0.060055066,0.09152603,0.07941937,0.09216977,0.0049614226,0.07758103,0.032031823,0.039782785,0.024994573,0.08553929,0.08485283,0.07477401,0.080079876,0.099337615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.030112358,0.08233328,0.030158056,0.042825885,0.0533816,0.0208,0.082783416,0.116724186,0.039594576,0.047771815,0.059987925,0.07009275,0.10918121,0.055597644,0.04571741,0.040468767,0.014396513,0.015566547,0.048325773,0.05684663,0.08482595,0.066941634,0.03770244,0.1320515,0.063545585,0.028110785,0.098462,0.034265757,0.029237501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022069855,0.023048233,0.06322638,0.03452509,0.095864825,0.030339964,0.03490014,0.061970502,0.0311172,0.08970248,0.1352432,0.03881626,0.04494246,0.053047616,0.070989184,0.12151065,0.04183695,0.051338233,0.025607692,0.017621431,0.01963218,0.059844013,0.048017107,0.07509619,0.06582523,0.042612687,0.1496762,0.071290515,0.037854202,0.11029456,0.030470733,0.033334646,0.056430705,0.054275412,0.06380169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004514401,0.022997845,0.023048623,0.05333927,0.08397252,0.022388432,0.054830313,0.060949743,0.08396296,0.034646258,0.011427066,0.1305425,0.12503313,0.08350479,0.030394858,0.03586784,0.106379956,0.12820628,0.08901721,0.021008221,0.07207985,0.020395627,0.02773878,0.042362563,0.0677433,0.049966708,0.03451364,0.08307107,0.13812016,0.10293649,0.009804327,0.08795243,0.073316224,0.028072687,0.011218757,0.038384203,0.054924,0.029431598,0.021705726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01928749,0.008800672,0.031197382,0.015237703,0.0065307105,0.033186853,0.07255991,0.02970271,0.09150016,0.041854106,0.06316616,0.06765251,0.027539972,0.13180065,0.16879793,0.07940268,0.015405474,0.029516334,0.10188602,0.1767883,0.066328116,0.057067886,0.04818366,0.009851113,0.020289361,0.061842825,0.039850555,0.042527013,0.03786318,0.08289102,0.18173406,0.10199539,0.021270316,0.12375216,0.053441934,0.023793178,0.041950107,0.050948303,0.05538102,0.034070365,0.00961308,0.027730934,0.044516623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03738678,0.032758888,0.029056069,0.013047312,0.037856847,0.023660548,0.014938493,0.02771267,0.06672558,0.03872873,0.108236656,0.040399976,0.07534926,0.095524386,0.04308458,0.16478604,0.20894976,0.11029788,0.037140746,0.027622195,0.14919356,0.27510533,0.083844416,0.11671802,0.0645766,0.037954368,0.08679044,0.07867007,0.041501686,0.03875315,0.049243182,0.11893562,0.22045207,0.12702212,0.03635512,0.15204859,0.06748698,0.034327928,0.049761284,0.060043633,0.046415363,0.040983822,0.018163787,0.036468495,0.057176348,0.042063896,0.021979822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022688633,0.011065184,0.011953352,0.012546309,0.013001806,0.018445497,0.024406098,0.014569723,0.012542959,0.053958073,0.09798885,0.050468978,0.114861935,0.046063475,0.1083848,0.13432182,0.062259525,0.26347187,0.315449,0.19623731,0.13749933,0.021290021,0.40454257,0.79429,0.26646775,0.48537633,0.2278301,0.22536743,0.4455471,0.12195402,0.10237037,0.13132639,0.0796362,0.23647526,0.30434674,0.20732278,0.06528912,0.1593411,0.1023866,0.06015156,0.033440035,0.041908924,0.037960753,0.019877141,0.012694624,0.048511907,0.06851224,0.050451227,0.04596042,0.041595023,0.040308587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.029631408,0.013596309,0.023247765,0.01984932,0.010177385,0.006898484,0.027163247,0.022076905,0.010370221,0.027019028,0.016917134,0.06393472,0.109342195,0.060042128,0.13835631,0.051338594,0.18090968,0.26627836,0.2770257,0.99690545,0.863308,0.90795267,0.65752745,0.77712095,0.9511066,1.4679158,0.9331139,1.4929084,0.92458624,1.2238437,1.4154526,1.0030937,0.82813555,0.5309187,0.8394024,0.7357929,1.0820663,0.5227862,0.1663256,0.25181744,0.12863594,0.0762357,0.059570074,0.065172136,0.05462159,0.035570636,0.01663132,0.043179575,0.07156459,0.04452348,0.058089722,0.03944098,0.05296644,0.013294642,0.012252236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0087702,0.03431102,0.037030816,0.0034171066,0.01817252,0.03271645,0.022113243,0.043422066,0.02068152,0.03179908,0.05988521,0.023947977,0.042763717,0.09292857,0.031509425,0.2040331,0.10952084,1.127835,0.9080568,1.2345957,1.2421489,1.3034729,1.3952261,1.6837903,1.5484419,1.3201032,1.031486,1.1876438,1.1793445,1.310717,1.2577728,1.0905639,1.1880623,1.5419995,1.5484991,1.5826157,1.451632,1.1448795,1.0490341,0.6992153,1.2744045,0.22044058,0.15224166,0.12192485,0.08713267,0.06236935,0.048244875,0.009027483,0.04711789,0.07375161,0.048832875,0.051354438,0.040651575,0.045993347,0.017069692,0.014156779,0.0031476594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005354887,0.009658278,0.03373293,0.019656,0.013484271,0.02459989,0.031713657,0.026329666,0.021240717,0.056257557,0.038113706,0.028409395,0.08635135,0.041415524,0.082092226,0.1431167,0.29312742,1.1427839,0.9750515,1.227468,1.6214948,1.3851674,1.1679152,1.465693,1.316709,1.2306,1.2870338,1.3600104,1.2646004,1.3048311,1.4602305,1.3067429,1.4005656,1.4987333,1.408516,1.271332,1.1167839,1.2068595,1.3722603,1.0529311,1.3955418,1.6908208,1.2387404,0.72191846,1.1516005,1.1053724,0.23625402,0.13710818,0.101103134,0.051901832,0.058835477,0.09222375,0.061579354,0.087248646,0.058694556,0.07780633,0.028855134,0.030492717,0.027719231,0.034050714,0.01414446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03691632,0.03603091,0.033059333,0.034011886,0.065779366,0.051149506,0.045366857,0.025206089,0.035962347,0.035087418,0.011250013,0.029067531,0.059683524,0.04018173,0.14596523,0.65967673,1.3566611,1.1895008,1.0741554,1.3670734,1.1263809,0.90214294,1.3101445,1.0421455,0.24583218,0.09008959,0.44687998,0.28679064,0.2695472,0.11451278,0.17493497,0.12853165,0.15352903,0.072761394,0.114147194,0.09255374,0.30330756,0.5296617,0.33566946,0.20661978,0.967615,1.1933544,1.1584121,1.2861344,1.4288225,1.4545443,0.895483,1.4746963,0.7141734,0.07653493,0.08957395,0.15392695,0.16752486,0.11458603,0.09056805,0.08621755,0.03925797,0.014069994,0.009627097,0.020240564,0.007053719,0.031266008,0.011183771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010419213,0.027816936,0.026410881,0.024885044,0.042278986,0.062182963,0.04257024,0.050133478,0.03261703,0.030203322,0.030749034,0.0073933797,0.025650647,0.054748025,0.15199848,0.6097415,1.3705719,1.1649166,1.3127822,1.3833919,1.3176918,1.1442224,0.74189514,0.18919006,0.039081804,0.32232338,0.28400463,0.05555452,0.09711465,0.15327045,0.15542841,0.6498185,1.2997986,0.9413149,1.2696662,1.309533,1.2818421,0.7878703,0.1818225,0.28551328,0.20703372,0.29972324,0.38560683,0.7483737,0.8158244,0.9491151,1.2747428,1.1969388,1.2267715,1.0445764,1.5690198,0.5329065,0.105200894,0.15616938,0.09498748,0.09208514,0.07972174,0.057814006,0.009636928,0.008479375,0.010689156,0.015808264,0.016799387,0.007473584,0.0069097015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01831698,0.0162756,0.03227015,0.031136407,0.028201135,0.01958036,0.059129074,0.051573444,0.02937595,0.0051557077,0.03082041,0.029080741,0.090977706,0.108924426,0.38720542,1.5371643,1.3865436,1.1890788,1.3441254,1.394611,0.7323934,0.43317324,0.22714175,1.0999177,1.3553857,1.255502,0.5798462,1.0970154,0.711248,0.6327511,0.65080196,0.7315684,0.10036167,0.31632513,1.1282667,0.51779354,0.512174,0.37290525,0.43304312,0.83206797,0.7895528,1.0789491,0.20184349,0.8497969,0.12516187,0.11690836,0.18560073,0.6930993,1.1882207,1.3101174,1.1119134,1.0201476,1.4114395,0.93175995,0.43962055,0.14262027,0.09774976,0.09030605,0.049044024,0.02651752,0.024334716,0.0162991,0.011205502,0.04060051,0.015861906,0.026086705,0.022860562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.032274146,0.021941977,0.034501,0.03507978,0.0373842,0.03751121,0.008839354,0.04748388,0.057010617,0.011371496,0.037438788,0.059419263,0.097532,0.25575832,0.52889407,1.3811343,1.0600793,1.2687299,1.6103592,0.9588661,0.27656427,0.2211341,0.95937705,1.2683119,0.86390793,0.3273812,1.0892718,1.0452563,0.83314943,1.9030725,1.6497322,1.9906864,2.085963,1.1046017,0.58923626,0.19596788,0.38719174,1.1802825,0.65845394,1.6377764,1.8649371,1.90581,0.8209271,0.9066613,0.30897713,1.0245829,1.1198934,0.1585086,0.42952162,0.1423898,0.69235814,1.3341216,1.2995738,1.1046727,1.1451898,1.3452312,0.5228182,0.19208106,0.15741567,0.043171193,0.024894087,0.025786044,0.024881976,0.011337865,0.04540434,0.020834597,0.032947153,0.031284537,0.026525293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014665524,0.008535259,0.017982587,0.009626328,0.021679237,0.017209737,0.017824197,0.043266203,0.06366037,0.04467393,0.061115902,0.04508184,0.056274947,0.047927294,0.69174415,1.3218597,0.97710687,1.3353932,1.6469543,0.8007067,0.2771397,0.4513133,0.85999525,0.3099286,0.4295654,1.8019222,1.0954877,1.4504322,2.0841134,1.3823416,0.90140665,1.050424,0.83035725,0.83174205,1.1333685,2.282473,1.3065546,0.52611816,1.6949689,2.324316,1.2274715,0.852865,0.8475183,1.2339572,2.281508,1.4649435,1.6704346,0.8182837,0.74457496,1.4664543,0.09878177,0.09126595,0.17230797,1.1669186,1.3642646,1.0514847,1.0548663,1.3215979,0.5508008,0.28780583,0.08317056,0.028201854,0.024623653,0.0012225806,0.02430442,0.028161107,0.010367971,0.006322295,0.019824402,0.0031955095,0.01653434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.036237564,0.019444367,0.03730564,0.041677147,0.022346903,0.05589559,0.052800436,0.057009898,0.07524305,0.11578078,0.10226539,0.13642658,0.15857092,0.37264153,1.1914434,1.2574039,1.1312116,1.5271173,1.2682381,0.45981377,0.2980997,0.422732,0.61589056,0.26592115,1.2093042,1.0972797,1.6499261,1.6531571,1.1549556,0.63964975,0.9663409,1.035071,1.039513,1.1882195,1.3559383,1.2483726,1.1858534,2.3207958,0.6853028,0.30929506,1.9029363,1.0074251,1.329188,0.88454497,1.2147238,0.85672635,0.9457065,0.73659337,1.4471722,1.3845285,1.6550237,0.6549146,0.02687647,0.1179209,0.12658018,0.9910634,1.3896772,1.1084785,1.2069733,1.0216929,0.95674086,0.5098582,0.23857152,0.16015728,0.1004565,0.0946064,0.0967976,0.06435032,0.053645432,0.024538234,0.039181255,0.037856713,0.04673095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03242362,0.041322205,0.02356027,0.044777755,0.04617705,0.028468868,0.064758904,0.06159932,0.06809973,0.082854435,0.13492578,0.12984125,0.18529633,0.34346488,1.3162577,1.1631572,1.1528294,1.5646516,1.2559613,0.63470423,0.052356083,0.03186007,0.1285617,1.2380311,2.1734982,1.4954579,1.3000938,0.80845046,1.0245175,1.1524875,1.4117771,0.9937989,0.9961708,0.8510879,1.0951849,0.83785146,1.1025604,1.0038118,1.9030768,1.8688542,2.1916943,1.8444141,1.4364814,1.5270753,0.9842116,1.0445342,1.4392759,1.1987569,1.0502448,0.76032287,0.8960676,0.7416327,1.620492,1.2599196,0.13533321,0.09222351,0.3025853,1.2823888,1.2714114,1.0985107,1.0721816,1.2399503,1.2320783,0.43117034,0.21350123,0.12728521,0.11762631,0.11699897,0.08024196,0.06635478,0.03489415,0.050442513,0.048692588,0.05795648,0.038207736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.023122504,0.023974828,0.031290714,0.013719454,0.03230122,0.039240837,0.015621662,0.057763692,0.05302333,0.06390413,0.095937006,0.14984605,0.16347113,0.37553936,1.375945,1.011655,1.0307608,1.59604,0.927597,1.1799022,0.27294636,0.12052295,0.61235195,1.6336429,1.9469228,1.4470009,1.0681714,0.9808999,1.1340703,1.0648143,1.1722409,0.96424156,1.0714848,0.9324931,1.0713006,1.142829,1.2369176,0.98207057,0.98184454,2.0571167,2.2449505,1.7598149,0.991421,1.1776911,1.2076378,0.9792792,0.9063785,0.93707436,1.0315267,0.86854947,1.2561922,1.1466522,1.0961026,1.01653,2.0217183,0.8990731,0.37233785,0.9248826,0.9377793,1.1231426,1.2495403,1.182651,1.1568316,1.1565496,1.3198476,0.3596495,0.13351695,0.1087102,0.101623274,0.059151743,0.041928057,0.009325594,0.027629633,0.032661185,0.040066205,0.027374705,0.024875136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0077075223,0.007386202,0.008902731,0.013586889,0.006603876,0.016097207,0.019304182,0.009808912,0.039688565,0.03369671,0.04838722,0.09163647,0.16695414,0.31459698,1.3578008,0.9732307,1.29905,1.3898286,1.0384287,0.22462268,0.6477424,1.107452,0.8973845,2.2065341,1.7217479,1.2084697,1.150662,1.36392,0.97381395,0.92209566,0.88303065,1.0491897,1.3107371,1.2785918,0.93770176,0.9422261,0.9048525,0.96231383,0.91494036,1.0963907,0.96096104,2.124333,1.7273202,1.1669725,1.1485528,0.93223304,1.0405248,0.96851915,1.1228639,0.9836174,1.1012436,1.0738379,0.9484668,0.8733189,1.0877821,0.76107454,1.7080053,2.289564,1.4791307,0.8466511,0.8815219,1.0039501,1.244715,1.0654297,1.3098664,1.1449364,1.3320369,0.3135813,0.15168443,0.11794009,0.06011276,0.033334512,0.009713745,0.01872848,0.029471105,0.033832908,0.026788756,0.015721494,0.018096227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010898779,0.010880574,0.012251794,0.013774119,0.01717363,0.009139194,0.016594272,0.026731746,0.005548899,0.049235776,0.04095913,0.06946516,0.16200253,0.36854437,1.4412978,1.0106952,1.2410907,1.3164573,0.99155486,0.21792044,0.27514675,0.68292916,1.9451498,1.7101054,0.9783566,1.1100066,1.224925,1.2052325,1.0263883,1.0185686,1.1933659,1.2233876,0.966822,0.98068243,1.1672724,0.9744161,0.98229265,1.0369415,1.0623695,1.24952,1.1535518,1.554355,1.7515186,1.3136054,1.0132046,1.0338992,1.1544598,1.1548259,0.90107703,0.89477813,0.86462945,1.2508452,1.3228724,1.0690197,1.0123607,0.9468774,1.0908895,1.4585326,1.5767967,1.6860257,1.2922735,0.06747097,0.392303,1.0102799,1.349783,1.0783691,1.3462895,1.0665084,1.4506322,0.29855728,0.13692494,0.043016035,0.0030601446,0.03897269,0.011816149,0.029289376,0.020156953,0.03302109,0.00830045,0.027752914,0.021394882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008144323,0.008883081,0.009176964,0.0078009097,0.018476315,0.013288422,0.026992146,0.025271023,0.024371581,0.059079103,0.050951228,0.098720476,0.35575998,1.4968318,1.1983763,1.1648176,1.1758463,1.1382624,0.20039497,0.3479108,0.847754,1.9417017,1.024522,1.0949016,1.1713135,1.1694847,1.0960988,1.2537792,1.1768537,0.97592187,0.9386326,0.9908057,0.9882287,1.138738,1.1105503,0.9843694,0.9161208,0.927394,0.8036279,0.9954942,1.1392267,1.3881136,1.8306776,1.0402496,1.1458569,1.3910884,1.2844938,1.1502281,1.0366192,1.0281386,1.0534616,1.4112105,1.281277,1.3109094,1.1996393,0.9653299,1.2374477,1.0914469,1.1909494,0.8898564,1.8857801,0.95615506,0.18692036,0.3740052,0.77615786,1.2152708,1.028262,1.3619978,0.8190364,1.3984975,0.35945284,0.06783909,0.01653044,0.038756806,0.008443902,0.018856429,0.013405418,0.021599755,0.006375834,0.016757423,0.011031274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.024341496,0.023910396,0.025363065,0.025603544,0.02700853,0.026361123,0.048165876,0.04225061,0.03195073,0.08112563,0.06200933,0.091693014,0.12290144,1.2891208,1.3608495,1.1078377,1.4266707,1.3050505,0.21375987,0.1717201,1.1637701,1.9777335,1.0682293,1.078783,1.2530864,0.99293834,1.2570026,1.213959,1.1945769,0.93947005,1.0043914,0.9908602,1.0255854,0.9070815,0.8768027,0.8549448,0.99436134,0.94702905,1.0816605,1.1631951,1.1764145,1.1069882,1.3366677,1.5391824,1.7961948,1.2253382,1.3472849,1.2853069,1.122003,0.91961443,0.9191344,1.0044775,1.0991112,1.0402879,1.486665,1.0880082,0.9662634,1.2214452,1.2204067,0.94668496,1.2273991,0.9052213,1.8697653,1.103766,0.13779765,0.31504154,0.8931374,1.3249613,1.0771424,1.1430821,1.0320748,1.3650162,0.084611125,0.13139437,0.14504062,0.08786889,0.072363555,0.044654887,0.063500725,0.049188133,0.055754684,0.046901662,0.04299173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03410246,0.033300772,0.035502426,0.03640759,0.03924832,0.042875323,0.038993333,0.07003091,0.058617808,0.056564096,0.13249436,0.09604497,0.23707883,0.72092026,1.2608194,0.9329072,1.4938749,1.237616,0.166124,0.21976039,1.378347,1.7159811,1.2327806,1.1736798,1.0255667,1.0244575,1.301769,1.1696111,1.1739391,1.1965933,1.093026,0.9178787,0.9383319,0.9084843,1.0107516,1.0455844,1.0476551,0.94515306,0.96253854,0.8975361,0.9460761,1.0682381,1.1001935,1.0134321,2.1761467,1.6481957,1.2956996,1.1305835,1.1803461,0.9882305,1.0021094,1.0310696,1.242501,1.1798158,1.0230476,1.0381442,1.114299,1.0037541,1.1817553,0.87837577,1.0520227,1.0126865,1.3479416,0.9535049,1.6560781,0.15483344,0.42572656,0.095889814,0.9536844,1.32246,1.2193418,1.2217922,1.2034627,0.7498804,0.2657233,0.22059491,0.12468908,0.102630995,0.066032425,0.08451575,0.061070643,0.07065712,0.060614593,0.054385882,0.051018823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02713934,0.02751132,0.027378172,0.027804881,0.027305897,0.026274435,0.0312883,0.043417737,0.044773858,0.03263102,0.09958547,0.07722759,0.410455,1.5521764,1.1459951,1.2678677,1.3946233,1.0422738,0.33843,0.80619305,1.823869,0.7084275,1.0702263,0.8572183,1.0907868,1.1688895,1.1793935,1.173702,1.2563224,1.036933,0.9094196,0.9661801,1.026037,0.9724463,0.9558155,0.8434187,0.9302453,0.9241928,1.0575273,1.1557198,1.1001201,1.0748247,0.867304,1.711835,2.0349236,1.3883524,1.0437307,1.1438869,1.1267633,0.992569,0.9162345,0.92273957,0.9144675,0.9620006,0.9798565,1.1784081,1.0811639,0.93892413,1.0062182,1.002201,1.1566789,1.2584627,1.1175927,1.272241,1.1774707,2.0895813,0.056091227,0.52820766,0.13408856,1.313185,1.4866539,1.2230731,1.1829307,1.4096799,0.49408928,0.25448436,0.12271158,0.08341419,0.049451556,0.062542506,0.055324413,0.053601857,0.045670267,0.04182662,0.038165156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.022214118,0.026225328,0.0278814,0.032280464,0.035470717,0.040899616,0.046833295,0.047762226,0.08664452,0.07908131,0.08230464,0.22877587,0.27331558,1.55341,1.1202573,0.9993446,1.301635,1.0283343,0.31084225,0.49672794,0.9024909,1.7455474,1.1623327,1.3960679,1.0143642,1.0736855,0.8473924,1.2336012,1.1282831,1.0353878,0.9266417,1.0747424,0.899919,0.95757234,0.914246,1.0297533,1.050405,1.0435935,0.9409653,0.998551,1.2685282,1.5082849,1.2717044,1.1657288,1.5257058,1.900148,1.1594408,1.2850764,1.004404,0.9209694,0.95647454,0.9871268,1.0146418,0.9999564,0.9893285,0.92884266,0.8876874,0.9713653,0.9953756,0.9525934,1.0652051,1.4279736,1.3644546,1.0620412,1.1762913,1.3093925,2.078141,0.9716569,0.20737432,0.018140458,0.79459506,1.2850146,1.1677188,1.2285018,1.3203813,0.72693163,0.077847175,0.122829914,0.07661057,0.08499913,0.0383329,0.051523276,0.023284825,0.024110977,0.022387026,0.019204784,0.017779406,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.02800929,0.02818915,0.02768366,0.028193593,0.028054947,0.029364347,0.031597752,0.032216392,0.028575335,0.02846371,0.06646949,0.058614057,0.6378787,1.4787258,0.9798225,1.3565618,1.4051484,0.9821583,0.15687592,0.8834975,2.137225,1.5745867,1.4495935,1.4920236,1.081917,1.06787,1.053352,0.91342056,0.9599261,0.9810582,0.9486049,0.9007875,0.99545616,0.98171717,1.0523982,1.1211951,0.9669346,0.95686305,0.90372795,1.1026683,1.1246303,1.0144076,1.1911565,1.1710135,1.2125812,1.1046747,0.9382033,0.9089978,0.98816615,1.0524745,0.97029185,0.960302,0.8971073,0.95321727,0.9170888,1.0175576,1.0016155,0.9924582,0.8927277,1.0493722,1.09961,1.2520553,1.0811865,1.1878101,1.2157624,1.1657975,1.1293627,1.3070618,0.9427393,0.15974495,0.13951516,0.92371726,1.1312943,1.3607305,0.9630967,1.4339011,0.34524992,0.22612725,0.14639853,0.13506846,0.08560497,0.07514546,0.058262303,0.054729566,0.050192535,0.047208004,0.04335167,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.008280006,0.0061401497,0.007351532,0.005939805,0.006313308,0.004894861,0.0043400666,0.001648722,0.012106229,0.020698905,0.026918024,0.084962115,0.019238986,1.7248399,1.3718368,1.3026978,1.2531236,0.9220556,0.54135454,0.6879998,2.0224361,0.8982433,1.2409676,1.1329646,1.0644326,1.065585,1.055089,1.0048252,1.1041121,0.92574495,0.9721686,0.9567946,1.0364637,0.91894156,0.955324,1.1056321,1.1954405,1.0239273,1.0122309,1.0497049,1.1042098,1.0214634,1.1379492,1.0017749,1.1744652,1.0437369,1.2674538,0.94113034,1.261823,1.3544945,1.1740402,1.1162364,0.96516544,1.0173153,0.9714579,0.98470396,0.927148,0.91714215,0.95615935,1.0065573,0.92724675,1.0851164,1.2110327,1.1058406,1.1422887,1.1311107,1.178215,1.0566832,1.1553698,1.3932097,1.3804915,0.28170103,0.035402015,1.3489814,1.1786506,1.2062911,1.131245,0.8091696,0.019790346,0.06568485,0.033371583,0.050007354,0.014152132,0.034573168,0.025018001,0.020014457,0.017986797,0.014876631,0.014520908,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.038874295,0.042474516,0.041608,0.044456773,0.045379505,0.048440885,0.051401395,0.057731204,0.050634645,0.09501253,0.065988295,0.03757442,0.9069182,1.1593405,1.299601,1.1119071,1.5171801,0.18984231,0.9844439,1.5263461,1.1606512,1.3450851,1.1714873,1.212795,1.4171128,1.2812141,1.0977387,1.1442096,0.936212,0.97586334,0.9695768,0.95456696,0.91245073,0.97994614,1.0781795,1.2867393,1.0443791,0.91588295,0.99075574,1.2534692,1.4294363,1.1289811,1.1779377,1.095643,0.9965878,1.355461,1.0839107,1.2424502,1.7972783,1.3715944,1.1194103,1.1376153,0.9110639,0.9633192,0.9996988,1.0245013,0.986817,1.0091716,0.95291495,0.942975,0.9665342,1.0559132,1.248023,1.1340644,1.1373057,1.1175752,1.1237931,1.3794639,1.0432279,1.086109,1.5969882,1.4393648,0.0118786795,0.8073115,1.3407961,1.1088557,0.9476903,1.528148,0.22965752,0.14126374,0.059536736,0.090028085,0.04742213,0.067318805,0.054590177,0.050010167,0.045885827,0.0444465,0.04154314,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.01933002,0.016301645,0.01724166,0.015584353,0.015578714,0.014791812,0.014048353,0.013586523,0.011296659,0.015787022,0.051555667,0.030874971,0.07466067,1.5037967,1.1053449,1.0291222,1.4135187,0.7006424,0.24284822,2.0853024,1.4157591,1.1514655,1.0241232,1.0795295,1.1819246,1.2992303,1.2026528,1.1417427,1.1188257,1.1433321,0.9838036,0.93655086,0.99175745,0.9963795,0.94317657,0.96118593,1.2469049,1.0097942,1.0706776,1.2445875,1.4873948,1.3600928,1.1208541,1.0145016,1.0210133,1.1252352,1.1196692,1.1626501,1.4933581,1.9409118,1.5429453,1.5271541,1.5241491,1.1098219,0.99701285,1.0739998,1.1781607,1.1146193,1.0169129,0.95838666,1.0113019,0.91475075,0.9964935,1.0954856,1.2533962,1.1807067,1.2646345,1.5431415,1.4319059,1.0938778,1.2154454,0.92857325,1.7249537,0.2672601,0.21650726,1.5351572,1.1648345,1.0152797,1.192696,0.57751554,0.095562644,0.12636471,0.049794853,0.07163646,0.03731837,0.03928642,0.037862264,0.034574173,0.033327345,0.02993166,0.029528856,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.021051465,0.025883375,0.025079988,0.030021101,0.03085391,0.035667967,0.038953643,0.044903718,0.050284486,0.07281394,0.036467638,0.13359952,1.1345747,1.2918407,0.972585,1.1645626,1.2456844,0.35107583,1.124202,1.5884638,0.94044036,1.2115296,0.9606235,1.0543567,1.0697414,1.1351963,1.1613435,1.2842895,1.2036023,1.2281957,1.0281603,0.98985946,0.92072594,0.9515737,0.96118426,1.1781809,1.194107,1.1959376,0.9248783,1.0491105,1.2771894,1.1043317,1.3445342,1.6693959,1.2518404,1.064254,1.9572788,1.13034,1.1068399,1.3491733,1.6990805,1.6554404,1.7112805,1.2231865,0.97980654,0.94485354,1.1438662,1.228045,1.2553078,0.97344726,0.93051845,0.9903583,0.9622152,0.96068627,1.1472429,1.160216,1.2099862,1.265513,1.0690013,1.0901312,1.073983,1.2291466,1.065659,1.5625242,0.19644916,1.4612957,1.262405,1.1678293,1.2231001,1.2961555,0.0643181,0.08822147,0.036239486,0.02709827,0.017580206,0.015381539,0.014685723,0.01502989,0.013690765,0.015489478,0.0133002065,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.047189143,0.044573423,0.048186496,0.04685362,0.04997777,0.05035654,0.05420692,0.057430312,0.06385966,0.07478941,0.07563308,0.16999738,0.17662084,1.3796204,1.4692982,1.3021779,1.2642088,1.4660348,0.16133925,1.7385364,1.8589252,1.8005776,1.3453659,1.0293661,1.1003449,0.96189064,1.160267,0.9869555,1.1105387,1.0743968,1.265131,1.0100452,0.95307136,0.9758172,1.0136259,0.9347785,1.0898973,1.17572,1.2132248,1.2686317,1.2203649,1.1799473,1.6934903,1.3614488,1.2927116,1.1752663,1.6149373,1.8890268,1.3192393,1.283266,1.2003393,1.08498,1.1019791,1.4433863,1.4737734,1.0385998,1.0348042,1.1713504,1.1717423,1.1391561,1.0019366,0.9762566,0.9472726,0.9544359,0.9618492,0.954219,1.0328176,0.9537714,1.0004097,1.0352236,0.9963973,0.9601816,0.9879513,1.3753309,1.9272658,0.3527819,0.6391099,1.458528,1.2960236,0.93134344,1.2880683,0.6575423,0.09302728,0.110759236,0.053474028,0.07562257,0.064114645,0.05835696,0.05552432,0.05256267,0.05130857,0.04934272,0.048585292,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.02136139,0.024132002,0.022185793,0.02431536,0.023401989,0.025207406,0.025603058,0.027596617,0.030271985,0.03722274,0.031189352,0.1351294,0.09669163,1.1314567,1.1149008,1.2747478,1.5517812,0.5968966,0.051416606,1.6477345,1.269438,1.4961336,1.3956964,1.2689426,1.0258923,0.9990592,0.968651,1.0363127,1.0361795,1.0198514,0.93064016,0.97954476,0.9676462,0.9313744,0.91402835,1.0163742,1.1370766,1.2301128,1.1249248,1.4857724,1.2369196,1.2380092,1.4766535,1.0856422,1.2101654,1.0864992,1.9534707,2.4341674,1.8465648,1.3834486,1.0819917,1.2462074,1.0586859,1.0934213,1.1062453,1.0316149,0.9834483,1.1559154,1.2068444,1.2624235,0.9733811,0.9323163,0.9881236,0.96820605,0.9696072,0.9721018,0.9127124,0.9721403,0.9271218,0.8993484,0.96090174,1.1768564,1.0950177,1.0866199,1.1447217,0.4964296,0.8913935,1.2991773,1.2856753,1.1954756,1.2377808,1.2318987,0.19067967,0.05704431,0.020042585,0.039407834,0.030992214,0.029078847,0.027066998,0.026487594,0.025141494,0.024853349,0.024097001,0.0,0.0,0.0,0.0],[0.0,0.0,0.022555728,0.021870637,0.0276088,0.027093684,0.033462208,0.03473091,0.040816072,0.04431165,0.051351696,0.057753507,0.06641496,0.08992127,0.09575746,1.4622191,1.0570313,1.2700163,1.3024608,1.5596181,0.35150087,1.4955531,1.6812046,0.9939357,1.3074756,1.2434862,1.6243542,1.1670215,1.2955298,1.065713,1.0509809,0.9217133,0.96734834,0.93693125,0.9973859,0.9053229,1.135816,1.1589454,0.9552785,0.96714205,1.0851607,1.2089541,1.2144796,1.2182337,1.1585962,1.2118068,1.1280812,1.1689508,1.1526178,1.8897426,1.4170562,1.5704497,1.1710248,1.265359,1.1980596,1.2032652,0.9344348,1.0487547,1.2563554,1.2282937,1.2228823,1.1651577,1.1293443,0.98569506,0.98462,0.9410287,0.9550233,0.9557006,0.9565065,1.0049186,0.97741127,1.026565,1.0555935,1.0421444,0.88808256,1.1904168,1.4866323,2.3119304,1.8293229,0.27089477,0.9910513,1.5603327,1.1466901,1.2763612,1.1983521,0.28390568,0.05927173,0.02293111,0.02904025,0.016035002,0.010188313,0.007952727,0.0054005207,0.0056074215,0.006571943,0.0069169854,0.009882462,0.0,0.0,0.0],[0.0,0.0,0.008638386,0.00971002,0.012525073,0.019997515,0.023639526,0.03373591,0.040989105,0.054827314,0.07008821,0.096053734,0.13974823,0.27262643,1.0241787,1.5421368,0.83949834,1.2796588,1.5746113,1.0575902,1.0466616,1.7073756,0.9438407,1.3360424,1.0251137,1.3263043,1.6080886,1.3058368,1.1206592,1.2293801,1.6139011,1.7340146,1.3483114,0.97004646,0.97953016,0.94538313,1.4437966,1.799066,1.0562723,1.0396276,0.9343935,1.1193373,1.1063963,1.1482044,1.1936792,1.198729,1.1686743,1.1965761,1.1520942,1.8782971,0.99257576,1.9216783,1.1612346,1.084246,1.1313432,1.1631109,1.6562713,1.4550648,1.133132,1.159249,1.1664561,1.2077669,1.1380756,0.9333565,0.9888472,0.9597301,0.9984279,0.94511735,0.99331313,0.9142654,1.1567701,1.0657729,1.119362,1.280582,1.9117599,1.1368978,1.7686181,1.2173531,1.9688811,0.87690943,0.44933137,1.6918523,1.1720477,1.2973697,1.2298183,1.2595307,0.38687336,0.1653016,0.1503889,0.10849761,0.08746948,0.070962,0.060971145,0.04988741,0.044513855,0.03530295,0.031903952,0.0,0.0,0.0],[0.0,0.0,0.051682536,0.058237463,0.059283666,0.06709735,0.06973014,0.0794826,0.08615546,0.09937554,0.11350283,0.1374783,0.17710368,0.2430756,0.98942465,1.190274,1.1522964,1.0813067,1.7775799,0.43170556,0.87143224,1.9480071,0.90134215,1.4249052,1.0539266,1.6502182,1.0611521,1.173793,1.1287595,1.2583946,1.578774,1.6994886,1.2954388,1.1902248,0.85882723,1.0194106,1.2942971,2.226296,1.5676852,0.84851277,0.9729785,0.99098635,1.00808,1.039235,1.1422911,1.2631795,1.0517907,1.0822958,1.1558473,1.8784655,2.5424726,1.8284274,1.1598637,1.1736729,0.9389242,1.1064534,1.5898663,1.464432,1.1903012,1.2528882,1.1927255,1.2007607,1.0493599,0.9902997,1.1088685,0.92468345,0.9695787,0.925783,1.0436803,1.1956294,1.1254313,1.2664067,1.5725412,1.537138,1.7708937,1.2860969,1.0643003,1.1472467,1.2980852,1.3535154,0.10601838,1.1736192,1.5584583,1.0173732,1.3226972,1.1968522,0.50590795,0.08669828,0.087824695,0.06047327,0.049129255,0.045348514,0.04120014,0.041899346,0.038908124,0.041855652,0.039540753,0.0,0.0,0.0],[0.0,0.076878645,0.07613521,0.07979053,0.07866588,0.08402482,0.08524993,0.09287076,0.098244704,0.11032079,0.12443997,0.15069105,0.19711801,0.35541257,0.9892652,1.1653088,0.8790012,1.2561817,1.4834971,0.7755401,1.2546301,1.5988423,0.9133299,1.1705295,1.1255202,1.30571,1.0081489,1.1125137,1.0091726,1.1720767,0.9195985,1.1177802,1.1127088,1.0036864,1.028493,0.9052777,1.8304642,2.1202838,2.0870197,1.5193745,0.81547964,1.053016,0.85031575,1.0105095,1.0723045,1.1189524,1.0073636,1.2305169,1.2876885,2.0389073,1.8968743,2.0817728,1.2584214,1.2209129,0.99891883,1.1671661,1.0599568,1.1275783,1.1331567,1.0842847,1.0637658,1.1409829,1.087351,0.9855675,0.8928662,1.0379856,0.9094489,1.10511,1.1575917,1.2303369,1.1440183,1.2624087,1.3494276,1.2959274,0.7385241,1.1420089,0.918103,1.3169005,0.8867548,1.7414699,0.8220642,0.61066556,1.7544327,1.1840496,1.1654614,1.3737364,1.140756,0.35720757,0.1882833,0.15671459,0.13287443,0.118824884,0.10623905,0.100004666,0.09124682,0.0892068,0.08222333,0.08304992,0.0,0.0],[0.0,0.017663272,0.017998435,0.020796208,0.025900953,0.0289689,0.036695376,0.041659493,0.052386653,0.06272252,0.08140251,0.109704986,0.17748523,0.6104778,1.4753193,1.2212992,1.1904153,1.7640132,0.9503665,0.74702865,1.9013475,0.943986,1.2927095,0.93448293,1.1981714,0.90327305,1.0383193,0.9277934,1.0582414,0.9004339,1.1076506,1.042164,1.0149864,0.94606,1.0141423,0.88245016,1.6084023,2.1101923,2.080959,2.1736832,1.4049672,0.84401053,1.0686303,0.92889154,0.99487746,0.94407725,1.1268858,1.1530473,1.4416424,2.0818841,2.2139504,2.0272758,1.455757,1.235335,1.0363016,1.0012851,1.2641101,1.228728,0.9920682,1.015506,0.9562591,0.9953529,0.89103216,1.1370711,1.0619448,0.96419245,0.8991059,1.1147891,1.1793413,1.2315449,1.1448251,1.1347084,0.9651266,1.1501621,1.0955486,1.1132101,0.88067055,1.1304886,1.0235163,1.557798,0.57964426,0.5894467,1.5215555,1.4589026,0.9441397,1.1694915,0.8892904,0.18476515,0.16108014,0.106350996,0.07921588,0.064359926,0.051112294,0.04401277,0.03508066,0.030932592,0.024670279,0.02165005,0.0,0.0],[0.0,0.079474196,0.08285399,0.08235202,0.08893876,0.090147294,0.09844217,0.103883155,0.11636674,0.129771,0.15437816,0.19429567,0.29402477,0.80807924,1.462114,1.0206723,1.0296879,1.6640147,0.85640067,0.663781,2.063109,0.9196141,1.2548298,0.90945643,1.1609398,1.0549182,1.2324809,0.9581614,1.1164559,0.94462055,0.9356039,0.85186136,1.0062677,0.91105163,0.9990252,0.9306576,1.465379,2.1433053,2.011025,2.2262268,1.6226177,0.82636964,1.0133449,0.958065,1.2618954,1.1072426,1.288885,1.1259222,1.8138299,2.1036537,1.9686189,2.1817238,1.7424496,0.9954365,1.0631133,0.9250051,0.95262283,0.8926088,0.9733288,0.9097956,0.97397506,0.922803,1.1644726,1.9608659,1.88199,0.84967667,1.068067,0.8872026,1.102864,0.9842028,1.1229073,0.9702128,1.159517,0.9646244,1.0095538,0.88611734,1.0921917,0.9134489,1.311036,0.85031664,1.8420947,0.9782225,1.0858586,1.5982295,1.0350106,1.2230922,1.4228878,0.6935065,0.29297215,0.18432824,0.1444873,0.12064172,0.10854959,0.09697479,0.09261496,0.08544997,0.08510203,0.07959987,0.0,0.0],[0.0,0.08051603,0.083440185,0.08228259,0.08873308,0.08939728,0.09750057,0.10265904,0.11526998,0.1287094,0.1536753,0.19338553,0.2861311,0.8313572,1.1627322,1.1759814,1.2546029,1.6524554,0.95660776,0.6224686,2.2135832,1.0814742,1.3974199,1.0783472,1.3826528,1.2173545,1.2446895,1.1538119,1.2917799,1.0251454,1.0746584,0.9648863,0.9973335,0.93180424,1.007374,0.89126235,1.3511077,1.9451361,2.1580238,2.035055,2.0076163,1.1486413,0.95449096,0.99981785,0.9718992,1.1134708,1.0583779,1.6533233,2.289245,1.9986093,2.214563,1.8837249,1.4749056,1.0658183,1.0990707,0.98974615,1.034455,0.9927125,1.0900668,0.93565065,1.0296133,1.2138896,1.9606202,2.1993072,2.0353122,0.8309412,1.0238098,0.8900851,1.0254887,0.90472364,1.0259458,0.8953097,1.0142269,0.92661446,1.1335346,0.9391385,1.244691,0.942502,1.2858967,0.8379538,2.0785506,0.67352676,0.8841969,1.6692774,1.3066413,1.1058195,1.1528168,0.9286713,0.26254812,0.1898728,0.1535569,0.12952751,0.11666705,0.103985175,0.09867396,0.0905201,0.08949316,0.08314413,0.0,0.0],[0.0,0.08841549,0.08989599,0.088769175,0.09397664,0.09458782,0.1019482,0.10681131,0.11904348,0.13232626,0.15807396,0.20093425,0.3121337,0.7985037,1.2573972,0.9910729,1.4007804,1.5648261,0.6496534,0.620463,2.2908373,1.5362343,1.4563477,0.9339354,1.3204213,1.3821124,1.2359744,1.0993729,1.2096438,1.0486356,0.95033944,0.88692766,1.0181562,0.91392577,1.0059249,0.9449745,0.9241866,1.511493,2.146298,2.0387359,2.244959,1.531435,0.84428155,0.99885505,0.9620199,0.9919899,0.95639074,1.4403952,2.0954812,1.8145005,2.1974273,1.9781154,1.0801613,1.1377877,1.2184144,1.0935078,1.0447272,0.88806736,0.9551237,0.9047598,1.5305828,2.1538074,2.1312842,2.0328064,1.6346045,0.8847169,1.0500538,0.9014706,1.0236495,0.88664156,1.0317503,0.9040706,1.1236492,1.0097555,1.1485547,1.0048044,1.1991129,0.91386247,1.3077528,0.74823874,1.9909095,0.62325835,0.96845037,1.6689276,1.4131788,1.1704801,1.2350681,0.7077714,0.39548296,0.24145034,0.1865945,0.15440409,0.13682434,0.12094558,0.11351293,0.10362139,0.101520635,0.09353944,0.0,0.0],[0.06647752,0.0700638,0.07176382,0.07171376,0.076506875,0.077208385,0.08329292,0.086819194,0.09631269,0.10506465,0.12234148,0.14651512,0.18502922,0.9539281,1.1786107,0.86686504,1.3427544,1.626512,0.551627,0.6774538,2.3797243,1.4528116,1.3066193,1.386943,1.4925275,1.0610448,1.2358851,1.1913097,1.2387733,1.0412297,1.044406,0.9624591,0.9539475,0.9579522,0.959212,0.95424116,0.9913251,1.3402648,2.219626,1.992658,2.1430323,1.932439,1.450373,0.8996393,0.927998,0.9647415,0.92734843,1.0315518,1.2735057,1.1391999,1.8490489,1.5090297,1.0895354,1.0201641,0.95119053,1.010963,0.95234394,1.0376912,0.92931205,1.3839349,2.2230206,1.9660767,2.1170988,2.0898309,0.9641857,0.9158448,0.9728516,0.9482764,1.0316617,0.91757804,1.0721463,1.1211848,1.195052,1.0567064,1.1892998,1.0090914,1.2177136,0.9757884,1.2577952,0.9127571,1.9955322,0.7732045,0.6760485,1.6730227,1.2992064,1.1864563,1.0633184,1.3421249,0.046636485,0.084104344,0.08857933,0.0834176,0.081307985,0.07558532,0.075353585,0.07058727,0.07254337,0.067818314,0.070502155,0.0],[0.008530153,0.010801074,0.012523609,0.010572016,0.013617459,0.011025554,0.013016281,0.010188624,0.010510282,0.0047296784,0.007061311,0.04374288,0.27517983,1.5989366,1.0640745,0.94207716,1.2984632,1.5833627,0.35220048,0.66520834,1.7869142,1.0033718,1.2737324,1.3395935,1.4895545,1.1595931,1.23752,0.99102616,1.0022285,0.9546136,0.9511676,0.98378867,1.1364316,0.9919056,1.0592633,0.9208885,0.97320455,0.9089741,1.6453187,2.2008727,2.0319252,1.6605902,1.4265958,1.3867946,1.2393858,0.9144645,1.003142,0.9314629,0.90192115,0.8928961,1.0205436,0.8947172,0.95221776,0.9091065,1.0218074,0.9464639,0.9736429,0.89651364,0.9979344,1.2998772,2.0795898,2.0938902,2.2307284,1.4428865,1.0031202,0.9535953,1.0079457,0.9751085,1.0264,0.8929824,1.206224,1.1287336,1.2783649,1.1077701,1.2002895,1.055035,1.1469433,0.95150745,1.2877878,0.9168699,1.8874536,0.71036136,0.374929,1.7226945,1.2511545,1.3619809,0.95627344,1.7834934,0.46655908,0.11270466,0.045043256,0.021757482,0.007693182,0.0032387432,0.0031942064,0.0035162186,0.00828228,0.00673026,0.009986987,0.0],[0.00787356,0.008800645,0.0069147637,0.010785036,0.00881446,0.014058082,0.014168214,0.020709341,0.025239887,0.03870369,0.05989005,0.11966898,0.43490413,1.7293149,1.0819134,0.9888486,1.3662081,1.4777871,0.21976332,0.5054009,1.3150625,1.0965604,1.1202523,1.0346771,0.9962499,1.0138351,0.98438966,1.0068166,0.97160447,1.055832,1.1436574,1.2589326,1.1812423,1.2198566,0.96757215,0.98706234,0.9605337,1.0265473,0.8492472,1.6307595,1.4758432,1.5137811,1.256411,1.1949842,1.5985831,0.9243786,0.97635156,0.9052598,1.0365305,0.94383013,1.0021235,0.9449021,1.0021949,0.9784158,0.90908337,0.96132845,0.94547844,1.4914613,1.3254747,1.2562752,1.8529016,1.745561,1.556766,0.8869138,0.9712421,0.9196666,0.9713976,0.902296,0.9886363,0.94635475,1.2048583,1.182245,1.2062062,1.1710889,1.2934254,1.1413264,1.2684304,1.1107804,1.2414027,1.0474725,1.8363951,1.3586338,0.4409723,1.5282125,1.380426,1.5390824,0.7924606,1.4278489,0.42746717,0.120719045,0.05945458,0.037239823,0.023587456,0.018969946,0.012731232,0.012189781,0.0080527775,0.009296564,0.007244823,0.0],[0.04241715,0.04231026,0.04060122,0.044622708,0.042852156,0.04850404,0.049213033,0.056620907,0.06204345,0.07653081,0.09866632,0.15750365,0.45746595,1.6090199,1.222597,1.084432,1.5064459,1.2452167,0.1163518,1.2235245,1.1306823,1.172651,0.9089488,1.0400617,0.9927937,0.9758261,0.9703434,1.0668913,0.9795597,1.1887307,1.1795175,1.1840456,1.1844717,1.1040769,1.0204043,0.9671574,0.9236962,0.958937,0.98442364,0.9375998,1.0885214,1.1354598,1.2477719,0.9686174,1.2130889,1.4999678,1.0992622,1.0632831,0.9046869,0.9510148,1.3779662,1.4669491,0.84559333,1.008152,1.108002,1.5014772,1.5555393,1.4933523,1.0892534,1.239495,1.2198505,1.285701,0.98689514,0.97068226,0.993455,0.96692026,0.9941874,0.9996253,0.96307564,0.94213766,1.073659,1.1775426,1.2000843,1.1853614,1.1460576,1.2507757,1.179203,1.5348383,1.2620118,1.1469325,1.4112438,1.5014609,0.018316193,1.3508836,1.4795552,1.4225494,0.8957039,1.4450247,0.54676676,0.19659288,0.121610194,0.09160111,0.07301329,0.064346276,0.055372126,0.05248535,0.046607018,0.046345517,0.042789347,0.0],[0.054744214,0.054807164,0.055304833,0.061087027,0.061019003,0.06918912,0.07212088,0.08288871,0.092536084,0.11245921,0.14283717,0.21600154,0.5540364,1.4723847,1.0662897,1.3021522,1.6324631,1.1422974,0.5047608,2.0883837,0.93061906,1.1893632,0.828347,1.1780468,0.97482413,1.3042262,1.1994587,1.4263504,1.3320484,1.3236767,1.1838549,1.3237591,1.143884,1.2316182,0.9364053,0.99378484,0.9757258,1.0164682,0.90698105,1.0204887,0.87823904,1.0954838,0.9844583,1.124146,1.1700041,1.2332247,1.2568138,2.0048227,1.871141,1.5955492,2.11091,2.0034614,1.6416534,1.9337243,1.7596476,1.3252083,1.2203329,1.0751358,1.0519601,0.97422737,0.95040756,0.9444615,0.96546835,0.9700389,0.9200204,0.9726996,0.9560487,1.1223838,0.9957633,1.015462,1.0155913,1.2422093,1.111133,1.2777768,1.1249285,1.5678263,0.7768658,1.6380764,1.6071724,1.5226892,1.3809799,2.2220283,0.40075773,1.1486683,1.628234,1.2565317,0.9611815,1.558507,0.46908545,0.16568269,0.106425986,0.0844064,0.070324555,0.06501873,0.057971403,0.058015242,0.052373335,0.054814037,0.05106635,0.0],[0.05857111,0.057370923,0.05620171,0.060866322,0.058472,0.06569625,0.06666476,0.07526586,0.08213806,0.09869334,0.124075696,0.18835552,0.50062263,1.5100453,1.1178786,1.2944249,1.6173412,1.1236781,0.4217998,1.9969547,0.8189979,1.1152397,0.9732657,1.3270881,1.1256863,1.386843,1.5710919,1.819848,1.6968573,1.5644784,1.2838407,1.4980301,1.1943377,1.0502977,0.9427699,1.1001294,1.0741334,1.1038702,0.946628,0.9840385,0.95554924,1.1375717,1.0723786,1.162423,1.1764787,1.2078869,1.1291438,1.5300978,2.0632355,2.0586364,2.1025,2.0679104,2.1265595,1.5145035,1.1272624,1.1892124,1.1122519,1.0768576,1.0261167,0.96827096,0.94971406,1.0050292,0.9361158,0.9735246,0.99793446,0.9660572,1.0195563,1.1934451,1.2116867,1.1345766,0.9718994,1.0103315,1.0679961,1.180049,1.1143464,1.2216904,1.2063516,1.4961295,1.1091791,1.4246324,1.7754778,2.403862,0.34718844,1.2041032,1.5848839,1.327088,0.8364256,1.3616973,0.5672206,0.21992601,0.14383508,0.11255832,0.092516884,0.08308351,0.07287846,0.07013124,0.06252387,0.063135944,0.057891324,0.0],[0.044074737,0.043710086,0.042692274,0.047310237,0.04564843,0.052045897,0.05295912,0.060758147,0.066585496,0.08119412,0.10335413,0.16237038,0.47040743,1.6969565,1.0618548,1.1848285,1.7034045,1.0998559,0.52289546,2.0976958,0.85617244,1.1599349,1.109978,1.2625003,1.0657789,1.1827464,1.0086615,1.0828389,1.105306,1.1615039,1.0956521,1.1135159,1.0082171,0.9531268,1.0185826,1.2064239,1.2350755,1.1108137,0.94298905,0.9623031,0.9942566,1.0456405,1.1086323,1.2136248,1.188769,1.1828415,1.2307423,1.0703027,1.823521,2.260901,1.9795225,2.1961176,1.6477379,1.1183348,1.2226318,1.1237428,1.1747192,1.2478763,1.1687824,0.9526213,0.9653888,0.9428275,0.9615068,1.0516052,1.0811756,1.0382985,0.864104,1.0037167,1.1821904,1.2171112,1.1521087,1.0077319,0.9393024,1.038246,1.0961888,1.1723611,1.1354827,1.1717175,1.2470273,1.8027748,1.6867951,2.432026,0.335267,1.2004291,1.5717666,1.3226968,0.82635766,1.4536097,0.51013994,0.18183675,0.11320812,0.08630314,0.069225535,0.061834026,0.053367704,0.051729735,0.04574332,0.046697058,0.042723205,0.0],[0.05580992,0.054685775,0.05425379,0.058594022,0.057529435,0.06382982,0.06515344,0.07319013,0.07956128,0.09466209,0.11732778,0.17608641,0.47373474,1.5934663,1.185756,1.2191428,1.6648011,1.0806258,0.47334692,1.8973434,0.98501813,1.2424142,1.1047118,1.2928834,1.1022474,1.1147552,1.2839351,1.3604342,1.1162052,1.3007487,1.1036289,1.0155543,1.0292305,1.0113018,1.1933608,1.2178081,1.1168903,1.1984216,0.9303811,0.99692726,0.9354702,0.9523303,1.0330321,1.2113565,1.1824452,1.2043836,1.1802666,1.1934471,1.4423993,2.0465147,2.130284,2.061439,1.2549663,1.2273409,1.1512728,1.2416238,1.1563723,1.1682974,0.99779356,0.97834986,0.93422776,1.0155263,0.9184188,1.23037,1.464571,1.1587182,1.1158508,1.004307,0.994704,1.2115536,1.1498624,1.1550901,1.0486205,0.97754484,0.9142909,1.0678887,1.0907428,1.2318754,1.1698647,1.3582305,1.4701855,2.3411808,0.35146755,1.2089902,1.5847358,1.3331927,0.95752734,1.4333043,0.53033626,0.19902225,0.12875047,0.10063391,0.08268388,0.0747526,0.06565118,0.06393996,0.05731365,0.058452558,0.05381305,0.0],[0.06564668,0.06412828,0.062587924,0.06662483,0.06496102,0.07092029,0.07188748,0.07988606,0.08624892,0.10166703,0.12542011,0.18716396,0.50167555,1.6693525,1.1640296,1.2028433,1.712128,1.0731549,0.5419407,2.1356103,0.93328625,1.2567965,1.0686598,1.2682972,1.1414638,1.0682487,1.441091,1.539848,1.2542458,1.3537699,1.041628,1.3425308,0.91626954,1.483938,0.8100665,1.5469813,1.3914795,0.91570693,0.9685574,0.95367074,0.95801014,0.9961016,0.919215,1.0622666,1.1111215,1.1706254,1.1786656,1.2202071,1.0674574,1.7258506,1.8827502,1.4195708,1.1452992,1.2052159,1.1845689,1.1926179,1.1391978,1.0062228,0.93938386,0.9859774,0.9480354,0.96009296,0.9410646,1.1831489,1.413315,1.4180133,1.086358,1.1177341,0.917885,1.0553615,1.1855459,1.2612826,1.1632531,1.2363348,0.9777042,1.0497679,0.92647505,1.2573841,1.0998638,1.3610047,1.0044484,2.1312585,0.43798602,1.1385628,1.5964378,1.350493,0.8905227,1.3221912,0.59053564,0.23907372,0.16028953,0.12699166,0.105429076,0.09464193,0.083438076,0.07981621,0.07184753,0.07135793,0.065932624,0.0],[0.039142534,0.03634659,0.034360144,0.03676842,0.03368788,0.03801479,0.036880217,0.041952435,0.04503561,0.056064412,0.0739148,0.12655745,0.414634,1.6324549,1.0886309,1.1924925,1.427336,1.4268686,0.21878824,0.87518203,1.9406753,1.428205,1.9684532,1.2078766,1.26195,1.0945843,1.4852104,1.563711,1.9379109,1.746069,1.1946392,1.1521095,1.274374,0.79058546,0.26714885,1.7758175,1.2333401,0.9952928,1.0272583,0.9720811,0.95407194,0.95666164,0.962819,0.95473397,0.9623517,1.0202926,1.1218362,1.2213374,1.1911148,1.27456,1.5507811,1.1482692,1.1888144,1.204574,1.1159116,1.2025021,1.0033624,0.9537845,0.95803344,0.9673545,0.94211745,1.0434754,0.97552973,1.0046415,1.1376833,1.3605844,1.6425188,1.4165806,1.0801932,1.1114111,0.9112794,1.1546562,1.1198881,1.23208,1.1217405,1.042647,0.87851757,1.1001382,0.92908436,1.1941196,0.91823953,1.9862186,0.47255138,1.1423057,1.6491174,1.2409688,0.88091135,1.4571185,0.5037806,0.18450092,0.11762177,0.09050422,0.07288387,0.064646564,0.055114944,0.052241385,0.044975538,0.04510371,0.03950887,0.039385665],[0.032780442,0.029641544,0.026057933,0.0277866,0.023017548,0.026350051,0.02389493,0.02803358,0.03012866,0.040739227,0.05952201,0.11752562,0.43826354,1.7093991,0.9022702,1.3896335,1.3740572,1.631201,0.53061754,0.6255106,2.6595256,1.246022,1.7151963,1.242902,1.2347916,1.1041474,1.3607472,1.7732636,1.7034441,1.3697616,1.0985976,1.3056883,0.96457666,0.98168606,1.4225264,1.1316828,1.0648531,1.0027063,1.062428,0.9239266,0.9838945,0.9620784,0.9670739,0.9684194,1.08643,1.1532879,1.1792929,1.1939613,1.1753243,1.1923923,1.2760441,1.2312604,1.1657842,1.2369567,1.10291,0.9981848,0.94795287,0.98451054,0.93623275,1.0353221,1.0154477,1.0085837,1.0811341,0.9415203,1.1234872,1.1183186,1.348662,1.7420359,1.3067943,1.231593,1.2484161,1.1469218,1.0327963,1.2718129,1.1307044,1.2913511,1.0771905,1.1541227,0.79269195,1.3388447,0.91607034,2.13441,0.45343968,1.1050099,1.6199881,1.3347077,1.1254141,1.5217497,0.5455399,0.20512553,0.13136517,0.100233085,0.07961626,0.06915747,0.057550244,0.05301674,0.044299707,0.04289312,0.036443293,0.0],[0.02679758,0.022343822,0.020018661,0.021337157,0.017274508,0.02001548,0.017419526,0.020489208,0.020930953,0.028445661,0.04124172,0.085443325,0.3517917,1.6669575,0.98809683,1.3115555,1.445404,1.4882777,0.59368235,0.43126568,2.1841216,1.4675125,1.1565325,1.1662471,1.7355632,1.204902,1.5456991,1.726818,1.6713051,1.3095133,1.1910019,1.2969587,1.1613423,1.2655107,1.2213999,1.0994445,0.94136375,1.1082536,1.0670944,0.9568658,0.97381026,0.9388029,0.9795722,0.9360872,0.99896646,1.0648183,1.0077193,1.2367061,1.156847,1.2113165,1.1081858,1.2072309,1.1618191,1.1664743,1.1114091,1.0126736,0.9558727,1.013793,0.8966529,1.0668479,0.9725663,1.145881,1.0215908,0.9673021,0.9481197,1.28571,1.1505564,1.5799706,1.6811713,1.6726632,1.5443648,1.2777025,1.1794319,0.99012,1.05892,1.2162249,1.1491662,1.2681625,1.1625172,1.100276,1.1202791,1.7560818,0.47546026,1.206498,1.6199131,1.256553,0.9139301,1.4680841,0.45835885,0.15873088,0.09786414,0.073832735,0.05797877,0.051083308,0.04191562,0.0396932,0.03228041,0.032705728,0.027037203,0.0],[0.013168317,0.015962698,0.014791828,0.021246104,0.020140026,0.027959278,0.030341633,0.039763447,0.04720186,0.06415908,0.09055329,0.1590982,0.5082701,1.8116925,1.0474448,1.0298618,1.4516344,1.4737812,1.0110728,0.3386335,0.7877062,1.9242173,1.2369866,1.2525262,1.4889704,1.5961503,1.9738961,1.899648,1.710326,1.3572049,1.1886741,1.671398,1.1469246,1.2280731,1.1265067,1.0731689,0.91992056,1.2040151,1.106669,0.9454495,0.9523038,0.986438,0.94961065,0.975346,0.97041893,1.0365324,0.9934195,1.1500715,1.191761,1.2474948,1.2474197,1.2059513,1.1038921,0.91971934,1.0159947,1.0107497,1.1207982,0.9844937,0.9482856,1.0076505,1.0005554,1.0842977,1.1609769,0.92873937,1.1902149,1.0329198,1.1282468,1.2720635,1.8621458,1.5274192,1.3616809,1.5333294,1.7706904,1.2304186,1.2578728,1.0395046,1.3382933,1.0166048,1.3882357,1.3438847,2.1659153,0.6767638,0.4581261,1.6927156,1.2966887,1.5081602,0.8390576,1.8520868,0.4294234,0.094911814,0.039053727,0.023970557,0.018192276,0.015699409,0.014938711,0.012828567,0.013456319,0.011323843,0.012764787,0.0],[0.019739667,0.017319342,0.01911726,0.014355815,0.017389324,0.013401759,0.015549146,0.013963997,0.015673254,0.017426012,0.02208221,0.039385393,0.1670832,1.2055936,1.3705251,0.926685,1.3687301,1.5061947,1.2549891,0.49519506,1.2704587,2.403774,1.0535502,1.2753414,1.0327781,1.6128109,1.7977074,1.4650884,1.6973302,1.8302803,1.4761753,1.4998742,1.1266065,1.2627982,1.1852626,1.1539545,0.988652,1.0447646,1.1998168,0.99614096,0.9830514,0.9309552,0.9851957,0.9384538,0.98254687,0.9247389,0.97039366,1.0351753,1.0857944,1.1275835,1.1664028,1.1788394,1.0377778,0.9484422,0.9806718,1.008402,0.9763332,0.9146365,1.007042,0.897966,1.0606804,1.1760639,1.1069366,0.9246449,1.224729,1.1588775,1.3750533,1.0620351,1.799259,1.2455378,1.5233094,1.3098655,1.468169,1.3307076,1.1435322,1.1464826,1.1413711,1.2061249,1.6021056,1.9558314,2.1524553,0.43188956,0.7708845,1.5534742,1.4588091,1.3337704,0.9816375,1.2651359,0.11882083,0.039885573,0.043193176,0.039787594,0.037969925,0.033000797,0.032278214,0.027872635,0.027679222,0.023376314,0.023096154,0.0],[0.03802671,0.03925414,0.04031378,0.03750402,0.04202302,0.040797494,0.04583515,0.047332376,0.055865966,0.06456354,0.084167935,0.12151966,0.24613898,0.5061807,1.7692776,0.9982422,1.427582,1.5273869,1.3004328,0.4224093,0.40615836,1.7257336,1.8009586,1.0478706,1.3861423,1.2571653,1.5981599,2.1008534,1.8158911,1.019206,1.3606703,1.4017553,1.4618055,1.3162968,1.1258171,1.2369332,0.9898444,1.0659453,1.2219687,1.1284008,0.9081316,1.0057486,0.93458456,0.9903243,0.93295825,1.025294,1.0711514,1.0567242,1.3481892,1.4639632,1.4739184,1.0798239,1.1372612,0.9106105,0.99283916,0.8975402,1.0158757,0.9315971,1.0037694,0.92906463,1.1599853,1.1530211,1.2220004,0.911462,1.3503056,1.1669947,0.7867396,1.164034,1.6001093,2.1973906,2.0104742,1.8110642,1.097729,1.3614801,1.3088648,1.1694195,1.4520819,1.213215,1.4712625,2.2284331,1.2626888,0.22204556,1.4378551,1.4062015,1.5718284,1.1802753,1.2690207,0.5809782,0.31402346,0.16842718,0.11958996,0.09240525,0.078122504,0.06520592,0.060699973,0.0517446,0.050747976,0.044043932,0.04509496,0.0],[0.021964187,0.02412033,0.02819979,0.026853789,0.033029314,0.03319471,0.039535005,0.04175075,0.05020006,0.057280064,0.07200882,0.09463185,0.14423876,0.73715115,1.6240706,0.9731502,1.1620171,1.504292,1.3959187,1.1623917,0.46434247,1.3500106,1.9534622,1.0483322,1.2238725,1.0192537,1.373823,1.4746395,1.3960546,1.002563,1.0249157,1.2656955,2.0892155,1.6625113,1.3780107,1.1294981,1.0354797,1.0153049,1.2417791,1.1220695,1.0863131,0.89018095,1.0131787,0.9204285,1.0008948,0.9421713,1.102205,0.9607306,1.6164969,1.753055,1.7221761,1.4443706,1.0329313,0.95379895,0.9793052,0.9830726,0.95048606,0.9594441,0.9542873,1.0076461,1.2102195,1.1738849,1.16331,0.92537844,1.2884612,1.7682896,1.7277442,1.7332101,1.6660084,1.6310924,0.9545162,1.3333384,0.6602316,1.3887779,1.6563972,1.4421604,1.605067,1.3700517,1.1625453,1.6618279,1.1693634,0.18639733,1.5122784,1.2664845,1.5286785,1.1643872,1.4223934,0.7543435,0.12448755,0.071005024,0.04777506,0.034251917,0.029025186,0.023211699,0.023511585,0.019777171,0.021681204,0.019430509,0.022615477,0.0],[0.014247595,0.014155546,0.011128352,0.014100727,0.009511757,0.011269132,0.007397577,0.0077260765,0.006551626,0.009855882,0.022582507,0.048325453,0.13400224,0.5139274,1.797693,0.9910586,1.2965422,1.3495857,1.6510177,0.7651821,0.21297024,0.75915617,1.8673664,1.598213,1.1893744,1.163844,1.0028524,0.9996507,1.0285993,1.1250212,1.3298253,1.554379,1.1940176,1.54125,1.1332496,1.2525315,0.9661472,1.1878036,1.1650754,1.2552598,1.0717442,0.95007175,0.9700125,0.9544636,0.97033983,0.94880474,0.95428264,1.2861142,1.9880582,1.2949185,1.1146281,1.9875648,1.4865699,1.2976451,0.8263313,1.0302591,0.89622706,1.0410844,0.8825056,1.1185445,1.1684742,1.2317201,1.0501357,1.097008,1.1803366,1.2904692,1.6468861,1.5283575,1.0305479,1.2877371,0.8262573,1.8103656,1.3493961,0.22781558,1.1602005,1.5782325,1.0113112,1.4317986,0.9528482,1.5493323,1.2125769,0.06886551,1.7068243,1.1116828,1.4560812,0.93621933,1.7751249,0.5402043,0.14196725,0.047577485,0.019796766,0.008896216,0.008599546,0.011199436,0.011549951,0.014308088,0.012933888,0.0141808605,0.013906748,0.0],[0.012316324,0.013099004,0.013489655,0.01841453,0.017596308,0.023248246,0.023641257,0.030492196,0.03348925,0.04234766,0.051931173,0.07122944,0.112718254,0.12871431,0.84293395,1.509072,1.2258655,1.4983525,1.4341435,1.5241306,0.46282145,0.37672344,1.7385598,1.4144758,1.0395249,1.1095887,0.9637847,1.0326985,1.0279974,1.1365635,1.1308881,2.051864,1.7441869,1.16378,1.2054939,1.1130407,1.0339421,1.1996228,1.1661891,1.1960188,1.0833725,0.92427623,0.989836,0.93964934,1.0092905,1.0599691,1.341721,2.0453715,1.9661889,1.3787727,0.9977385,1.0518197,1.5920424,1.56862,0.9730972,1.0072429,0.94026893,0.96371436,0.99095416,1.1870147,1.1720614,1.2133069,1.0892793,0.9794381,1.0663781,1.1879194,1.0226907,1.2535036,1.2278804,1.2104408,1.2679346,1.3031962,1.6375976,1.4944502,1.2628969,1.0756108,1.2286011,1.5271789,1.6600455,2.0586908,0.23840779,0.8154925,1.5708385,1.3228142,1.5550383,0.83584344,1.4630879,0.59725124,0.095685564,0.04547159,0.025618684,0.013593137,0.008882293,0.002877314,0.0021032481,0.004163655,0.0023091345,0.007530736,0.0064147166,0.0],[0.01682365,0.01646009,0.016178764,0.02006434,0.018905059,0.023987127,0.023641638,0.029697282,0.032328956,0.040421367,0.048713505,0.06482973,0.087893404,0.23351113,0.9614323,1.779526,1.004591,1.5147827,1.4186215,1.4812291,0.96825045,0.261132,1.6923922,1.435349,0.9908361,1.1217749,0.83872616,1.0293751,0.9200099,1.1762809,1.113606,1.3626845,1.4684631,1.0916588,1.2205482,1.120104,0.99170387,1.0128403,1.1280556,1.2225602,1.12891,0.9783435,0.97034246,0.93712664,0.9981406,1.0403596,1.5138103,2.2106047,1.9641335,2.2062533,1.1653881,1.3379763,2.1568594,1.9304587,1.1710953,0.9116457,0.9755988,0.96432585,0.96368927,1.1663917,1.1794258,1.2160106,1.0848497,0.9779712,1.1258199,1.242992,1.2243782,1.4562415,1.3755071,0.980768,1.0154887,1.1107594,1.1451842,1.1310318,1.2850268,1.1559104,1.280676,1.4576497,2.0341024,1.2722675,0.09269902,1.3488872,1.4039807,1.5797145,1.1738907,1.5102209,0.7000333,0.21534826,0.056283347,0.040905908,0.029462822,0.024637338,0.019223683,0.0187695,0.014746778,0.017127587,0.013002245,0.016227847,0.013180126,0.0],[0.0,0.022303145,0.022043003,0.027407652,0.02629866,0.03209028,0.03201219,0.0381723,0.040563975,0.047887936,0.054616656,0.06843636,0.096564606,0.10811258,0.56095034,1.319053,1.3283552,1.4020466,1.5202047,1.443345,1.4801967,0.10477201,1.5948249,1.4033744,0.9145363,1.3204622,1.4512974,1.3118323,0.9824474,0.99960506,0.9979735,1.1415106,1.2141634,1.3911549,1.1360867,1.261955,1.0062251,1.0101728,1.1666453,1.1909568,1.0908468,0.9135603,1.0048163,0.92552817,1.0799621,1.0424727,1.5999767,2.2568183,2.0388227,2.1431735,1.3607628,1.4154154,2.269638,1.6173341,1.0369478,1.0986589,0.9292101,0.9781262,1.0082167,1.191397,1.1687204,1.1954243,1.0452645,1.0697895,1.090837,1.236374,1.00743,1.6486697,1.553102,0.9784615,1.1356176,0.92220485,1.1440692,0.9621584,1.0455037,0.8349847,1.2736075,1.3360175,2.4235566,1.248299,0.23988749,1.715983,1.2923588,1.5623611,0.93064153,1.6692636,0.7751993,0.069733016,0.064290464,0.033675667,0.021985678,0.018444024,0.014565471,0.0155931255,0.013154106,0.016432641,0.013971888,0.017805437,0.0,0.0],[0.0,0.021141117,0.018571375,0.020019313,0.01900978,0.019384533,0.019942392,0.019976413,0.022248855,0.023841405,0.030058846,0.039400265,0.06555816,0.071776904,0.27233225,1.1099074,1.7156428,1.0695786,1.6560311,1.2206349,1.6507995,0.13309696,1.5697138,1.8656695,1.3302054,1.3423215,1.4955485,1.4070281,0.9780279,0.9661138,1.0107508,1.2086656,1.3297764,1.3661991,1.1035457,1.2119274,1.2250742,0.9651041,1.0100595,1.2550588,1.1303239,1.032295,0.9346673,0.9736698,1.1518023,1.1882377,1.3162608,1.9687402,2.081424,2.1013665,1.7927604,1.9359362,2.1824896,1.7886759,1.0004785,1.2147858,0.92164373,1.0253824,1.0400482,1.1657555,1.179796,1.1235791,1.0531663,1.2701944,1.555876,1.367471,1.1446378,1.5368506,1.3666759,1.1434197,0.9738059,0.9297975,1.1043038,1.132307,1.2112867,1.044637,1.2477175,1.0850645,2.3429089,1.3008767,0.79608303,1.688382,1.3040209,1.6162034,1.0051218,1.7957584,0.9083505,0.20569396,0.066556655,0.045066923,0.0332735,0.028549029,0.0249889,0.023644201,0.022702362,0.021362517,0.022107964,0.019736666,0.0,0.0],[0.0,0.022110684,0.024614012,0.024258053,0.025179515,0.026304211,0.026680509,0.029062014,0.029661791,0.03295866,0.0349777,0.040246546,0.049859427,0.026049545,0.08447553,0.30670294,1.4147602,1.158689,1.2742538,1.4526232,1.6454723,0.84581476,1.5960041,2.421074,1.2780181,1.261287,0.9982077,1.0452561,0.9833113,0.97554374,0.9095504,1.0607631,1.0640192,1.207965,1.2091956,1.2264876,1.1049861,1.1228408,0.94715315,1.1854593,1.0659422,0.9629561,0.9444897,1.0764453,1.1557312,1.2610328,1.033119,1.6187346,2.249416,1.996731,1.9833722,2.0918586,2.0438092,1.2531288,1.2408909,1.2037747,1.0944762,0.88974,1.1099417,1.1828845,1.2279065,1.0942819,1.1863956,1.3947594,1.9510261,1.4960856,1.1425778,1.1181445,1.1876528,1.080808,1.0017343,0.9768462,1.2423661,1.161214,1.1674793,1.1489803,1.1978317,1.2193409,2.257888,1.7690129,1.1480783,1.5898519,1.4114935,1.4680798,1.347181,1.2710054,0.20689438,0.054957982,0.04063213,0.033943266,0.031304877,0.028624224,0.027254412,0.025874669,0.024676677,0.024699166,0.022835236,0.024378719,0.0,0.0],[0.0,0.0106851915,0.008562393,0.014004384,0.011927451,0.01738704,0.016630523,0.021786425,0.022775548,0.028132824,0.031516563,0.03728713,0.039494324,0.0767942,0.069258526,0.30159613,1.3198391,1.4990188,0.99692845,1.4694508,1.4831835,1.1503707,1.8837222,1.55878,0.9948986,1.1356645,0.98713225,1.0998421,0.9431466,1.0404943,0.9914185,1.0260768,1.045661,1.0650784,1.0761406,1.1746426,1.7653528,1.299908,0.9544374,1.1674243,0.97685796,1.0118749,0.9554938,1.221206,1.11702,1.2767739,1.0736171,1.7670728,2.1163375,2.1238945,2.1263309,2.178951,1.7319623,1.0438432,1.2393844,1.1129577,1.1418282,1.0262179,0.93927264,1.0792385,1.1387266,1.0133487,1.1937125,1.6526113,1.5275695,1.399094,1.1840502,1.0763651,1.0488627,0.92826426,0.9921171,0.9520376,0.93448377,1.1131452,1.2948529,1.1879358,1.460225,1.5072293,2.031774,1.0641298,1.4733925,1.3631265,1.5709633,1.0539002,1.6680671,1.0712931,0.27677506,0.070616305,0.07272821,0.04507829,0.03275303,0.02375771,0.019658802,0.013584715,0.012965039,0.008044136,0.0096536735,0.005903582,0.0,0.0],[0.0,0.03541118,0.0321993,0.035496145,0.031574126,0.035520695,0.032983154,0.036330886,0.03573017,0.039313603,0.041547313,0.04745014,0.058654945,0.051467545,0.094919294,0.03917206,1.2596017,1.3837904,1.2222677,1.5185229,1.503257,1.3260363,1.8093878,1.3726116,1.1203636,1.1485567,1.0866075,1.2233372,1.1167169,0.9949674,0.9293807,0.986587,0.9170986,1.0230424,1.2318671,1.2389075,1.2946373,1.2335873,1.0540797,0.98347473,0.92537296,0.96944225,1.100172,1.2815595,1.1161475,1.294781,1.0182211,1.7099183,2.1837525,2.0446122,2.0259893,2.1596956,1.9071105,1.1226923,1.2463758,1.2230922,1.1736503,1.0112485,1.0323293,1.0002984,1.0121783,0.9982355,1.1818327,1.5098177,2.0663352,1.5533954,1.1184776,1.0526856,0.8618445,1.0997443,1.0714289,1.2179141,1.1045452,1.0263549,0.8821198,1.2499517,1.0838361,2.3462903,1.4104471,0.41889936,1.7902269,1.3244927,1.5713614,0.9892679,1.3207798,0.07412124,0.15606678,0.063080095,0.081554815,0.06687549,0.05847673,0.054157708,0.048547037,0.04728549,0.042351525,0.04284507,0.037970643,0.03935239,0.0,0.0],[0.0,0.0,0.0022129419,0.004923095,0.0020032646,0.0031924378,0.004246519,0.0040540523,0.007033033,0.0074731577,0.010614718,0.012944368,0.021186804,0.0073320153,0.034371886,0.052286934,0.012357276,1.4905667,1.2014085,1.4898667,1.3522592,1.6767732,0.4204444,1.7500585,1.3598677,1.210962,1.2740271,1.1836272,1.0187007,0.91168284,1.0122865,0.9588815,1.1713852,1.1424284,1.0087279,1.1523652,1.1855855,1.1535761,1.0460317,0.9378711,1.0063229,0.9347482,1.1522962,1.1600493,1.2113037,1.139717,1.4474778,2.009994,2.0842633,2.1331723,2.0794792,2.1084998,1.9596229,1.4420804,1.1263745,1.1491113,1.1997998,1.174651,0.9347361,0.9620211,0.98183674,0.9569257,1.1637022,1.264435,1.259555,1.7095038,1.1127688,1.176165,0.88407135,1.0269091,0.92175287,1.2753189,1.0816472,1.4012548,1.135649,1.2094485,1.0518326,2.2066967,1.7327511,0.6393136,1.61857,1.3616499,1.4799281,1.4950553,1.3430583,0.20208095,0.038318828,0.07908588,0.035087224,0.03417883,0.02919419,0.026296318,0.021655947,0.020713538,0.015771236,0.016610505,0.01109876,0.0,0.0,0.0],[0.0,0.0,0.0022913427,0.0011589825,0.003725082,0.001414007,0.004842538,0.0037324685,0.0067673107,0.006587375,0.008823325,0.009008007,0.007556733,0.030063963,0.008846636,0.08180788,0.023201875,1.3677222,1.3644574,1.2667431,1.5078161,1.4602189,1.0891665,1.7941331,1.8182573,1.5007463,1.1706954,1.1110016,1.0776283,0.97256655,0.9744613,1.0613564,1.1975164,1.0688463,0.8461445,1.7014736,1.435644,1.0954459,1.0553379,0.9039763,0.9921041,0.9029624,1.1782947,1.2320633,1.1724222,1.3983297,1.9835258,2.0818849,2.094046,1.7940056,1.5920206,1.8412219,2.3465295,1.7446269,1.1468002,1.3090883,1.1596928,1.1835948,0.97567475,0.9830598,0.92421114,1.0290099,1.1656603,1.0765195,1.4063042,1.4345613,1.0929683,0.99731505,0.9222863,1.0160055,1.0435292,1.0602294,1.3442363,1.6134423,1.1971086,1.1067625,1.0692768,2.2138622,1.4320024,1.3482016,1.4885609,1.5279062,1.2160343,1.4387908,1.1550014,0.0688371,0.090265796,0.019021507,0.038715642,0.026084708,0.019569186,0.016662195,0.012488948,0.012256394,0.007711589,0.00950456,0.0041453904,0.0,0.0,0.0],[0.0,0.0,0.033236403,0.02956226,0.033143803,0.029110467,0.032387856,0.030061617,0.032448456,0.031741742,0.033810742,0.035326205,0.04128036,0.03467675,0.04554876,0.026484776,0.040120278,1.6340044,1.3640217,1.2945209,1.477074,1.4993433,1.2403562,0.7076296,2.139871,2.2295973,1.7790254,1.2596115,1.1369196,1.1053727,1.0016791,1.0260227,1.0407535,1.3134544,1.8270217,1.9704001,1.9530871,1.372387,1.1582701,0.97911304,0.98737067,0.9545691,1.0966452,1.1233968,1.3918339,2.0142155,2.1628077,2.061329,1.4528048,0.97913677,1.2012467,1.0055792,1.6867234,1.9464726,1.5042269,0.9368544,1.2892368,1.1344846,1.0702266,0.88517046,1.0748203,1.0862708,1.4257195,1.3637177,1.8060832,1.5701166,1.2398809,1.089463,1.0064818,0.9648275,1.2990013,1.0974317,1.4186965,1.0552534,1.5880848,1.588663,1.5029706,1.662951,0.16286549,1.7194935,1.2526368,1.5957813,1.2632606,1.5600593,0.19203243,0.029695943,0.086444214,0.037560903,0.06150085,0.052171286,0.048955802,0.04497546,0.043957926,0.03982775,0.04091204,0.03635731,0.03841862,0.0,0.0,0.0],[0.0,0.0,0.0,0.0016805395,0.0032749104,0.0021833533,0.0026279765,0.0022381425,0.0021635334,0.0022052159,0.0020881414,0.002635289,0.004618748,0.013929515,0.013478337,0.053994264,0.027295403,0.7103092,1.456456,1.135705,1.4884416,1.4041429,1.5761522,0.048160452,1.9162486,1.573735,1.64464,1.3126793,1.2113875,1.048442,0.9535566,0.92744875,0.9624566,0.9831842,0.9152252,1.1531211,1.6774918,1.68225,1.1849171,1.0725266,0.93123466,0.9539947,1.0278736,1.6125823,2.0516984,2.0240633,1.8099478,1.4624008,0.87454545,1.0213041,0.84377384,1.0719484,0.81848454,1.5787108,1.5884994,1.6050856,1.3093948,0.9557303,1.0216213,0.90246165,1.0885402,1.1389753,1.3916761,1.4050418,1.3490477,1.0626153,1.1811361,1.0514492,1.0295249,0.893721,1.1204252,1.0794308,1.25429,1.1308646,1.5639477,1.5378486,2.2500718,2.160522,0.76647455,1.6348716,1.4200573,1.5190735,1.4505683,1.3839693,0.05173668,0.04634903,0.008619436,0.03151105,0.009981969,0.008504522,0.008564167,0.006632154,0.0070856656,0.0047173216,0.00605566,0.0035341086,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.017436525,0.021679869,0.019274268,0.022917883,0.021549422,0.02484901,0.025243165,0.028306782,0.030856641,0.0380207,0.034230657,0.04708127,0.028942244,0.08051683,0.04117043,1.5063822,1.3245007,1.3678789,1.4973799,1.4126388,0.89062,2.026115,1.0583723,1.0316224,0.98072946,0.987572,0.9184441,0.9768898,0.9793282,0.97848785,0.96468437,1.0823811,1.12734,1.0597146,1.2371494,1.2006192,1.141644,0.9282603,1.0109317,1.0335431,2.136424,2.0769355,1.710289,1.3080436,0.9746378,0.9584621,0.98026454,0.98178244,0.9302612,0.9336354,0.9924,1.0222536,1.6187528,1.5864631,1.0426357,0.981416,0.9415959,0.9989172,1.1481524,1.1360252,1.117394,1.0631171,1.1021925,1.0477825,0.9893582,0.99051046,0.95650655,1.0119944,1.100877,1.1541504,1.1233569,1.1051311,1.3519627,1.9195619,0.7290204,1.2277138,1.4491814,1.4344692,1.4437175,1.4611996,1.5283867,0.008957206,0.021670438,0.037841663,0.009940747,0.0221228,0.0165589,0.016228417,0.014695633,0.0160361,0.0144275725,0.016591856,0.014302417,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.021567184,0.022975069,0.022711344,0.024363333,0.024494799,0.026279116,0.026787346,0.029321978,0.033321336,0.019328665,0.0408901,0.019544605,0.032171804,0.15617423,1.6338739,1.251565,1.3515012,1.4692471,1.5500729,1.0120373,0.6848232,1.8461676,1.1033937,1.1806914,1.1197665,1.1977702,1.0938095,1.0169555,0.92185444,0.98007244,0.8528229,0.91978925,1.1592908,1.2096068,1.1941051,1.1044303,0.90927136,0.972877,1.0969832,1.6627096,1.5084955,1.0280563,1.0255661,0.9158235,0.9844826,0.9390132,0.9739132,1.0295099,0.98413235,0.9811034,0.94811255,0.9230166,1.1822529,1.1235322,0.9559144,0.97258544,0.96479326,1.1064214,1.2817366,1.2116959,1.0851656,0.8581286,0.9409203,0.9303094,0.97461444,0.9378411,1.1596776,1.0477332,1.0974424,1.0114733,1.2085888,1.0349321,1.9841781,0.10279971,1.4412876,1.5004339,1.4947892,1.4664664,1.5218598,0.34662396,0.050640654,0.035311844,0.021905134,0.026087409,0.024425935,0.019966828,0.019089267,0.018489895,0.018124979,0.018520186,0.017633425,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.009342383,0.012630707,0.011141981,0.014136859,0.014255567,0.016760044,0.017994242,0.020443626,0.02137229,0.03322169,0.03900271,0.0731107,0.068231545,0.16357559,0.4418171,1.4406203,0.61051714,1.1557083,1.5734903,1.1706531,0.17430373,2.2054937,1.254542,1.3109329,1.1230744,1.231223,1.1664121,1.122696,0.9377332,0.9967951,1.0181772,1.0325454,0.9292231,1.1795262,1.1505296,1.0664581,0.94856954,0.9930726,1.0072697,1.105494,0.92181087,0.9555984,0.93223625,1.0168163,0.9471777,1.0106971,0.9097758,0.34743056,0.55687183,1.0412002,0.90459037,1.0462308,0.87938774,1.0572164,0.90808135,1.0243722,0.8650637,1.1927025,0.72837824,0.98204947,1.0509988,1.0064976,1.0031437,0.9706442,0.96441954,0.9777707,1.0099982,1.1335442,1.0817475,1.129676,1.0530864,1.6806508,1.1674657,0.23687102,1.5659208,1.3557161,1.505433,1.36623,1.5626594,0.05627689,0.037677575,0.011295004,0.032034222,0.0072157267,0.01781029,0.011266318,0.00947682,0.008443674,0.008236675,0.0076156748,0.008059993,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.013346653,0.011750209,0.011887214,0.010597743,0.010535219,0.009266379,0.009579223,0.0114037655,0.0044333846,0.014089058,0.019832317,0.015587599,0.012152162,0.1653314,1.7713703,0.84643996,1.0399239,1.7199706,1.2981672,0.54804903,2.1567025,1.9538841,1.2886306,1.1963725,1.0765501,0.99686176,0.9078908,0.94392836,0.9645307,0.88153106,0.9152791,1.0344296,1.1052774,1.1624985,0.97714853,0.949713,0.94863296,0.97106713,0.9548636,0.98956454,0.98652476,0.9464449,1.0083759,1.1435524,1.0703871,0.18626942,0.1755612,0.3981173,1.2719274,0.9596406,0.97787416,0.9520306,1.0434078,1.0062232,0.99887735,0.91936857,1.0840304,0.665721,0.9924328,1.0877637,0.8942671,0.9502098,0.98353654,0.9594893,0.9909946,1.0042259,0.9595568,0.88321114,1.1730927,1.0582366,1.8152581,0.36347726,0.92267895,1.603434,1.4099358,1.5562325,1.4072464,1.5855613,0.14887807,0.022455392,0.005604876,0.032632675,0.008631742,0.028562961,0.023134723,0.021315683,0.02087797,0.019371966,0.019816935,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.010629937,0.01151434,0.01105609,0.012262155,0.012212727,0.013981668,0.015038813,0.02028666,0.010726216,0.026351463,0.0037614424,0.030064752,0.0039842003,0.008437652,0.7403411,1.4168026,1.0878525,1.4454874,1.3771689,1.2684008,1.9841235,1.3818103,1.2096804,1.1008011,0.9801036,0.9962508,1.0966084,1.0271357,0.9906768,1.0578469,1.0109767,0.8765036,1.0151687,0.9971127,0.9804059,0.9720091,0.9846356,0.94286674,0.9789377,0.9179926,0.9713494,0.9466269,1.1152061,1.1935349,1.2381239,1.4482017,0.65810215,0.96383303,1.2327018,1.010415,0.97484964,0.9342888,0.9427441,0.9338226,0.9721988,0.94444394,0.968026,1.0377986,1.0765501,0.8737958,1.11445,1.1406798,1.1692424,1.0975538,1.192879,0.9863925,1.1377352,0.9575367,1.2462566,1.0137364,2.2450955,0.3672293,1.2493544,1.5947119,1.3092774,1.5266844,1.337463,1.4886374,0.064393334,0.019491918,0.009659788,0.020329716,0.022139918,0.020087037,0.017061163,0.015392216,0.0149351545,0.013840221,0.013434619,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.031268768,0.03166763,0.035839014,0.03783949,0.04214529,0.045601606,0.04895129,0.062263172,0.069947235,0.10206819,0.10237943,0.16329768,0.24674036,0.6369177,1.7541064,1.0044469,1.2251784,1.7424835,1.0754478,0.83599514,2.2308638,0.8410079,1.3568672,1.0034329,1.1369056,1.0408612,1.2847434,1.0673863,1.1710426,0.9529885,1.0880663,0.9325179,1.0064011,0.904339,0.98450565,0.9162548,1.0038277,0.9367818,1.0174636,0.94799465,0.942866,0.93568605,1.1676555,1.1517093,1.2838485,0.9561719,1.2939739,1.0440038,1.0086538,0.92774594,1.0068008,0.9696484,0.99892354,0.94932127,0.9849745,0.94759166,0.9516998,0.91481936,1.0412215,1.1095233,1.1817279,1.1883186,1.2021891,1.1747057,1.4590826,1.1710216,1.1885413,1.1153855,1.3258772,1.2112384,0.44058594,1.4419951,1.4606663,1.5622934,1.4174787,1.6539361,0.61442506,0.027809396,0.03354704,0.016801843,0.034747753,0.0066406624,0.02395123,0.017870082,0.016269347,0.0156051405,0.015357415,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.024679076,0.024180952,0.024171725,0.024042595,0.023564665,0.023368945,0.021268785,0.031947296,0.013295213,0.040141005,0.016481886,0.034526426,0.026297122,0.0809666,1.1212844,1.7047945,1.4963858,1.4168507,1.3509985,0.47260937,1.2574816,1.5151967,1.0247606,1.1879948,1.4998896,1.4824636,1.1556131,1.2085177,1.2555718,1.1519214,0.87692636,0.9496123,0.95229244,0.9920064,0.97315437,0.98029006,0.95025814,0.96025795,0.9345152,1.0306728,1.1201239,1.1632825,1.205644,1.2537773,1.4753436,1.1960363,1.107593,0.9876462,0.96245295,0.9603791,0.9590089,0.92205614,0.9630503,0.9398244,0.97950494,0.9424007,1.009394,0.9523126,0.976589,1.2320198,1.2422549,1.1536129,1.2348325,1.1601048,1.4585531,1.1879827,1.5932164,1.3073744,2.451069,0.9120492,0.90195894,1.680186,1.2641126,1.2649338,1.320559,1.3229079,0.110779285,0.056109376,0.02801266,0.037659712,0.031519387,0.031335007,0.023608577,0.024591323,0.025499137,0.025251944,0.025566576,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.051722698,0.0531103,0.057680335,0.06097762,0.06653854,0.0739334,0.0750345,0.08452649,0.077807665,0.107576504,0.108307995,0.14656918,0.24783607,0.41400206,1.1755066,1.552409,1.3486286,1.7998886,0.50522906,0.75611037,2.0264943,0.936019,1.4450741,1.4845138,1.4797422,1.0575562,1.3019143,1.0639422,1.0260848,0.9415317,1.0736599,0.8925491,1.0026398,0.8920241,0.9981825,0.9318494,1.0031154,0.986624,1.2642758,1.1578646,1.179147,1.1676803,0.9088595,1.2748051,1.5176208,1.1658103,1.0632777,0.9185865,1.0031922,0.93149155,1.0325283,0.9391767,1.009387,0.92625797,1.0009466,0.9107869,0.9812762,0.9774895,1.1345739,1.1049942,1.2511148,1.1076398,1.250513,1.0133222,1.3389617,1.666719,2.4380422,1.0514364,0.7477053,1.5366501,1.3140095,1.3385209,0.90833604,1.7846524,0.5381496,0.055253904,0.04523107,0.020072458,0.030305542,0.02955638,0.023994232,0.025082821,0.026201103,0.026655529,0.02833365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005168154,0.006889885,0.006301614,0.007812471,0.008595876,0.012950585,0.008960233,0.016616924,0.007233222,0.021386126,0.012007784,0.03208467,0.079576865,0.06965742,0.9376408,1.7768679,0.62771374,1.626325,1.0016673,1.0637041,2.0316942,1.1180261,1.1924458,1.2573655,1.1634727,1.2044541,1.1699818,1.2661965,1.099595,0.86274636,0.94872075,1.0594736,0.96452457,1.0025668,0.94907194,0.98396474,0.91676956,0.9695782,0.95314574,1.3352363,1.0760833,1.8862108,0.44021317,0.11247525,1.3558301,0.99479425,1.2410359,1.077938,1.1977463,1.0887573,0.9796812,0.9086451,0.98822933,0.9352053,1.0047858,0.9579183,1.0104936,0.89747065,1.1539996,1.2225106,1.1808306,1.1966448,1.479033,1.3278077,1.1764598,1.8432428,1.7097195,0.7457881,0.83512336,1.3672875,1.5683403,1.0796561,1.6094726,0.8135404,0.07271195,0.03316975,0.030349327,0.0066897594,0.010020432,0.01487038,0.009261494,0.011802586,0.0074746576,0.0069523146,0.006131704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0058311294,0.00832333,0.0095973555,0.012804066,0.01726763,0.017528823,0.02144926,0.0140567655,0.031518914,0.02496104,0.041390684,0.069308154,0.05156764,0.17527041,1.103544,0.9444455,1.4024304,1.4031781,0.83645374,1.8549522,2.026258,1.2939277,1.1109467,1.2248482,1.1326054,1.2302576,0.9781887,0.8669947,1.076347,1.2261147,1.1877539,1.0174657,0.9326847,0.9600133,0.96437794,0.9835687,1.0141438,0.99005705,0.9916584,1.1353196,1.1824534,1.8005365,1.8511189,1.1949545,1.3707579,1.1399513,1.2509195,1.1855575,1.2536625,0.97123176,1.0050132,0.9710667,1.1887919,1.1454271,1.1366113,0.90305346,1.0735711,0.99280363,1.2310143,1.0983343,1.4792923,1.5074533,1.5840311,0.95734423,1.740783,1.597345,0.7593878,1.1319594,1.3160285,1.4192946,1.5739635,1.07133,0.25215346,0.10541427,0.0852762,0.082443796,0.057671044,0.0554665,0.031924803,0.050254297,0.031000385,0.029657852,0.027849529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.016571673,0.016255852,0.016140029,0.0143157225,0.024522798,0.0097707715,0.03427079,0.016683934,0.033264346,0.03661425,0.040075447,0.09175835,0.12525024,1.2676911,1.5979879,1.1664248,1.5114636,0.735214,1.4019576,2.0672767,1.2441086,1.2374966,1.192959,1.0507213,0.9038545,1.0266942,1.0655326,1.0764847,1.1321062,1.2118915,1.142586,0.94366485,0.9872188,0.945472,1.0781757,1.164248,1.2031925,1.2450752,1.0964165,1.1833963,1.20248,1.7732623,1.071811,0.94512546,1.3285575,1.2087203,1.1510321,1.1850612,0.9239643,0.9560603,0.9587005,1.163804,1.1880133,1.2220268,1.105294,0.9204513,1.0253179,1.3182786,1.0990026,1.2756194,1.0723302,1.3180693,1.2460206,2.0184405,1.1956277,0.7642711,1.0370283,1.4543762,1.2601993,1.2849151,0.90285534,0.20051304,0.14067873,0.09541238,0.0689074,0.067288704,0.059129406,0.05864601,0.039386313,0.04055737,0.035723053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03987788,0.040702842,0.043747786,0.04787964,0.043977786,0.051613085,0.038662475,0.0591665,0.052819666,0.064267196,0.08055032,0.08049342,0.16884226,0.76511705,1.4551154,1.5694342,1.2142072,1.510863,0.7027804,1.9392531,1.7304062,0.9060683,1.2781892,1.0916147,1.2055407,0.83950615,1.0829667,1.4316174,1.2652149,1.1949782,1.1140107,0.9588406,1.0081096,0.9192804,1.1657547,1.2167797,1.1816008,0.8697587,1.003657,1.2014091,1.081148,1.9973478,1.2560991,1.2840664,1.8519489,1.2974895,1.2076589,1.1399869,1.0151448,0.9726177,0.9609716,1.0305053,1.2388386,1.2220162,1.2532018,0.94377667,1.0162871,1.042079,1.2892272,1.105627,1.3243643,1.0321519,1.9023333,1.2449052,0.7902061,0.79638803,1.267833,1.4268991,1.4722165,1.4752486,0.04513682,0.07914979,0.08552109,0.06954224,0.05199845,0.057960793,0.05018872,0.05985136,0.03549882,0.047397725,0.042677544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03765901,0.04094149,0.046741296,0.049542956,0.05087431,0.0507007,0.06619752,0.06434561,0.079983115,0.09648354,0.10205047,0.17088614,0.31446517,1.1360619,1.2510197,1.3879802,0.785045,0.7591842,1.1140146,1.5115731,1.8640711,1.2777175,1.2663152,1.0996007,1.2290533,1.139868,1.4608874,1.1020533,1.2160518,1.13951,1.2569404,1.1284847,0.98133665,0.8825061,1.0980052,1.0889772,0.7999554,1.3142604,1.3952715,1.6363297,2.0330777,1.5560172,1.8214738,1.1417562,0.94104564,0.9877892,0.90246797,0.9231467,0.94472784,0.95277154,1.126418,1.1776193,1.6656783,1.3583313,0.81385005,1.1823825,0.90517795,1.1592139,1.1055367,1.2996124,1.2506342,2.2652059,1.7024055,0.6324944,0.30057254,0.8521777,1.520836,1.2389494,0.62112194,0.19005862,0.1051734,0.07015982,0.061704814,0.057687417,0.03949296,0.03936404,0.018919306,0.037074383,0.017933957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001856776,0.0026187177,0.009664014,0.0048039807,0.01539901,0.0050898935,0.0059729526,0.009326524,0.011400471,0.0069771777,0.03441496,0.067827,0.17664158,1.552568,1.2961781,1.0348725,0.47366935,0.16521604,1.938383,1.9928956,1.3578691,1.2130034,1.1507963,0.8687489,1.084471,1.184075,1.2695101,1.1666912,1.0609999,1.174237,1.1898018,1.0599146,0.97029495,1.0030496,1.1097901,1.4758697,1.6973438,1.7974651,1.8713583,2.0442576,1.0399054,1.0407264,1.0645465,1.0922669,1.0164406,1.0624242,0.9627057,1.0306984,0.92819405,1.1548539,1.1366013,1.317229,1.1252688,1.0976865,1.1563259,1.1336954,1.0339303,1.1913402,1.1678953,1.845652,1.8968061,0.58235866,0.09945461,0.7617294,1.3998519,1.4029486,1.4874424,0.28208277,0.14949214,0.09218991,0.06691208,0.061655894,0.056396257,0.039610416,0.038631927,0.024242846,0.039262015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.023940045,0.014387172,0.029293127,0.015494922,0.02420739,0.02367989,0.015730238,0.015084566,0.022362595,0.037125092,0.032439552,0.05531332,0.94950914,1.4596864,1.4890214,1.2420253,0.4043911,1.1284891,1.7992848,1.1273178,1.2014229,1.1111583,1.1978881,1.2811453,1.1693742,1.1118168,1.1035677,1.2469704,1.2031535,1.238274,0.9766968,0.9222542,0.9153169,0.96491826,1.0588256,1.0921091,1.5794868,1.6034559,2.0277374,1.2324096,1.2957371,1.0925719,1.1001873,1.0096538,0.96529615,0.8662356,0.9921218,0.87408656,1.1086658,1.1740513,1.4959034,1.2666473,1.0358819,1.1504604,1.2971978,1.112864,1.2599815,1.067343,2.008141,1.354505,0.39428055,0.29431894,1.2254645,1.3223412,1.4069662,0.37667957,0.023442023,0.003984731,0.025063785,0.026529454,0.029516932,0.019701704,0.02652209,0.019495046,0.035063423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.039311964,0.053130787,0.036716588,0.049718216,0.04630872,0.04292469,0.04485315,0.05006271,0.081992246,0.07970813,0.07095204,0.22180003,1.5084103,1.0773597,1.3496035,0.26032278,0.22321984,2.084444,1.2070673,1.2125411,1.2463183,1.1618114,0.97736865,1.1822205,1.1705577,1.2403511,1.0556037,1.4412017,1.3033766,0.96643686,1.0305997,0.9908353,1.056415,1.3753575,1.182452,1.5120496,2.087441,2.088763,1.8026406,1.0506309,1.2993736,1.1983137,1.1587793,0.99577004,1.0465001,0.97871166,1.0049073,0.9718968,1.06412,1.592743,1.2714288,1.2347105,1.1826259,1.0626887,1.3096676,1.1019777,1.714108,1.9168535,0.084171966,0.15300862,1.040204,1.5044032,1.5421172,1.4614776,0.09997258,0.04631302,0.018336695,0.036183912,0.03519563,0.04418613,0.034109183,0.040026188,0.029826503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0161219,0.030838551,0.023644285,0.020471832,0.029034935,0.029876601,0.025354171,0.049219374,0.07092025,0.038508855,0.10295474,0.35626498,1.7933754,1.1196277,1.549335,0.33469564,0.6212289,1.7004985,1.157615,1.1678383,1.2916589,1.39069,1.0816723,1.1032917,1.10939,1.5124847,1.5297285,1.0737288,1.085473,1.0381869,0.92153347,0.95490104,1.1320416,1.0638055,1.5575603,1.6351148,2.0957234,1.6093918,1.2045622,1.1401566,1.1452594,0.9757112,0.90994745,1.120269,1.161774,1.1536422,1.0146425,0.95739794,1.1340021,1.2292991,1.0766658,1.3586603,1.279739,1.3645028,2.1340346,1.893204,0.1389341,0.22515738,0.5759625,1.4295053,1.2959427,1.4288362,0.1233525,0.05695113,0.03760652,0.047192052,0.025839875,0.02768199,0.018575002,0.028062576,0.02981601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.021160688,0.00754165,0.013873294,0.01805602,0.019568635,0.01750544,0.013313593,0.0318744,0.044152223,0.04967615,0.21860825,1.3912696,1.4370381,1.1372184,1.0948018,0.37610564,1.2426313,1.7504128,2.1282315,1.3139921,0.82381225,1.3598942,1.2920195,1.5595942,1.3888737,1.0229487,0.9551707,1.1894873,1.253607,1.0606676,1.1429157,1.3320057,1.1846205,1.506568,1.8976135,1.9420118,1.183578,1.1424589,1.2515033,1.0651693,1.0000757,1.258293,1.340749,1.2209125,1.2189327,1.2056327,1.0903193,1.052818,1.0450283,1.5333006,2.0667305,1.6578836,2.164585,1.975961,0.17512177,0.1651656,0.5499592,1.6332784,1.360696,1.5381635,0.2976412,0.1254216,0.03018967,0.07681884,0.06681666,0.037061132,0.031711493,0.031024901,0.028904155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03839088,0.03610563,0.030014386,0.028186532,0.032741435,0.055239234,0.03151897,0.02751507,0.039114404,0.094917946,0.16313942,1.4386706,1.1658074,1.3476163,0.9343865,0.2889211,0.7115148,1.6104323,1.7776877,1.963007,0.9806008,1.1336328,1.8691564,1.1725217,1.2393804,1.1439037,1.236818,1.0749612,1.073286,1.0375756,1.1228114,1.0944442,1.5026559,2.0702062,2.1133366,1.1216481,1.2146288,0.89751977,0.9532442,1.1137725,1.2634203,1.6037698,1.1511872,1.1661954,1.1539764,1.2279792,1.2279314,1.2780634,0.9911883,2.2945342,2.0850031,1.6822448,0.5783835,0.17418952,0.44208252,1.3966324,1.1479461,1.6386719,0.85694253,0.083777964,0.07519198,0.0493082,0.07419047,0.057804283,0.049287252,0.04489564,0.051750135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010221779,0.016410748,0.0180401,0.0150583135,0.015801007,0.031064352,0.03632694,0.027378473,0.07723028,0.12614511,0.15878896,1.4514834,1.4943597,1.0749615,0.7239691,0.089408755,0.23638932,0.8448233,0.9838081,1.845034,1.9485254,1.6485118,1.0194026,1.1451167,1.0927578,1.2163994,1.2592758,1.1782339,1.236292,1.336136,1.1964006,1.4902399,2.082677,1.9973205,1.5490078,1.1421369,1.2338233,1.3062778,1.1863418,1.7404242,1.704843,1.1978573,1.2138839,1.1453032,1.2255423,1.113986,1.0871108,1.9877727,2.033552,0.68727785,0.19204108,0.15933773,0.43292108,1.3382406,1.3309019,1.6515045,1.2802474,0.18146122,0.04036617,0.01734623,0.02884622,0.016215786,0.03268521,0.007561343,0.012233374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008798413,0.011850883,0.0126280915,0.017157925,0.014954187,0.03709512,0.032408196,0.07050243,0.09550485,0.08690306,0.14207372,1.4360684,1.4364616,1.2579057,1.1745505,0.3570712,0.27329656,0.2870793,0.45062405,1.5085413,2.1588736,1.8793845,1.6323897,1.6729963,1.3827965,0.9692429,1.144147,0.9295665,1.1858817,0.9709551,1.7944276,2.0229182,2.3581042,1.9763036,1.1181666,1.0736489,1.2192543,1.4341488,1.4908357,1.6105092,1.1376091,1.1645168,1.1860089,1.1450778,1.5393658,1.8292862,1.1052204,1.1653997,0.14433558,0.13752322,0.45950595,1.5131639,1.1205548,1.5613377,1.2142494,0.039498728,0.14804998,0.04752333,0.035374906,0.044626635,0.0073357257,0.023996972,0.014924149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.030008191,0.034727454,0.028805852,0.025177393,0.061394736,0.060074463,0.09412277,0.11676118,0.10027705,0.17355837,0.5979399,1.4886608,1.4314668,1.3730474,1.2260996,0.4142682,0.068351746,0.094810404,0.76185834,0.9730633,1.9172368,2.0131211,2.1039615,2.031658,1.3819127,1.3264375,1.4385753,1.2649353,1.7212766,1.8467563,2.0670905,0.5583264,2.0824454,1.6750587,1.3819306,1.9575895,2.0779476,2.3368273,1.9738051,1.7089875,1.9328866,1.8694117,1.9223218,1.2903079,0.8041491,0.81660676,0.45756263,0.11787454,0.84577173,1.3761473,1.2402147,1.4937267,1.3212271,0.09233874,0.04119076,0.1260824,0.030830817,0.029864423,0.041779526,0.013337685,0.009497336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.026173115,0.030275922,0.017416894,0.004166325,0.022762164,0.050612863,0.05307261,0.02892926,0.06953836,0.11073095,1.5238883,1.423901,1.4488231,1.1131383,0.9635326,0.18236855,0.24751054,0.19713871,0.7390399,0.7754152,0.058126442,0.8893201,1.782393,1.6094166,1.399961,1.7249233,1.9635484,1.6562729,0.31154823,0.59750515,0.54109687,2.1342626,1.7224444,1.7821538,1.7375886,1.7959278,1.9503032,0.8085767,0.41748655,0.7498136,1.0593342,0.31641227,0.30143204,0.24830355,0.16406326,1.3233725,1.2037041,1.2996376,1.5152378,1.3389688,0.06345089,0.072038606,0.042814698,0.09130541,0.0060502635,0.016036032,0.026922211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.029951295,0.03550469,0.01722866,0.03947113,0.06882927,0.061455615,0.054403692,0.014997761,0.08335697,0.14197043,1.4763983,1.4213494,1.2684141,1.4759734,1.20025,0.9165091,0.2341159,0.02716315,0.38978544,0.39221188,0.9563469,0.16164112,0.39909723,0.42261967,0.9058761,0.5335256,0.87620085,1.1065358,1.0514306,1.0079373,0.90102565,0.4968236,0.3650409,0.36627755,0.37410706,0.89049566,0.81641954,0.5974353,0.13450553,0.32343665,0.115239464,0.31137922,1.154166,1.3955632,1.1819873,1.4768848,1.3959808,0.6195338,0.10538454,0.033414472,0.051238365,0.02203772,0.07820909,0.012594065,0.009234236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019039307,0.0419613,0.06014916,0.047813766,0.05562488,0.009730141,0.059312195,0.07632453,0.1460535,1.4827526,1.6329346,1.3394978,1.3647401,1.3377978,1.5248969,0.91787225,0.4875056,0.3643608,0.094338275,0.15056962,0.5720137,0.69575506,0.5136475,0.8888872,0.8626074,0.7647147,0.7642796,0.8536178,0.86427593,0.7562792,0.6200331,0.6758768,0.59265304,0.261782,0.113469176,0.2460767,0.47393683,0.7888861,1.3888046,1.4141957,1.2986205,1.3041366,1.6374521,1.4791145,0.14161266,0.14230847,0.11112624,0.0623303,0.031433146,0.031051636,0.05688019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.085432984,0.063995875,0.093336806,0.049469624,0.09678661,0.118379876,0.16046825,0.23950589,0.8610047,1.4537224,1.7170755,1.4462029,1.2828641,1.2478427,1.4136341,1.2961802,1.2301885,0.63815457,0.50201994,0.42554116,0.5141777,0.12153332,0.2351589,0.2846476,0.2876545,0.32217675,0.404271,0.047640808,0.50810236,0.4377055,0.39698252,0.7680607,1.424276,1.3125821,1.6269646,1.2768981,1.3799587,1.2702459,1.7424034,1.3529813,0.90876114,0.2293687,0.1239509,0.12482474,0.11681069,0.07427202,0.03232349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031723823,0.016289888,0.02593316,0.01696483,0.006402711,0.066715755,0.34077597,0.3488733,0.6797949,1.0611851,1.7503684,1.5636939,1.5588398,1.11492,1.3093309,1.5112779,1.7552634,1.7330065,1.8071902,1.1579525,0.60024065,0.7049405,0.6896579,0.7536279,0.7542023,1.1834221,1.637799,1.6019022,1.5772182,1.4530965,1.2331703,1.1753951,1.3416759,1.6043788,1.6871159,1.5648912,0.6713888,0.40728432,0.35809988,0.08478583,0.027941085,0.021328965,0.04335431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028833944,0.01683597,0.011412122,0.051480006,0.17727192,0.059887253,0.23017666,0.10427725,0.3793335,0.37612155,0.59479326,1.5117805,1.683212,1.4569874,1.3491342,1.2645888,1.3139926,1.3654425,1.4720068,1.3824244,1.500331,1.32816,1.5195012,1.4434437,1.1783788,1.2493178,1.3694816,1.5418702,1.6562045,1.697485,1.3489461,0.46907738,0.3583701,0.36405346,0.21274202,0.10800082,0.18525976,0.05946368,0.01107816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006966226,0.04053147,0.12751134,0.02026231,0.1443913,0.054213762,0.1085545,0.15038656,0.09365449,0.12774251,0.19771218,0.23724592,0.9699404,1.6134969,1.5631922,1.5279324,1.4049314,1.4618604,1.4069748,1.4940517,1.4182366,1.4477334,1.6551825,1.1345159,0.3357282,0.2446121,0.17399354,0.18633957,0.07937169,0.11013587,0.11884713,0.11192309,0.11784653,0.06729157,0.1382143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011164779,0.10053257,0.06228741,0.07855391,0.073478565,0.066610746,0.10024763,0.082944006,0.13204935,0.10675322,0.07773122,0.08936674,0.09499312,0.15475078,0.08751,0.14362484,0.046419416,0.10667556,0.072422475,0.11961654,0.1307962,0.17341875,0.112347886,0.10027097,0.086149834,0.011313048,0.07185779,0.067726456,0.06292436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.047749363,0.09493007,0.07837308,0.088101834,0.08840497,0.072428145,0.08494712,0.07907658,0.10403626,0.045000594,0.09268492,0.011155305,0.055734247,0.038262766,0.100659065,0.112280965,0.121312745,0.07542803,0.097836256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04246921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]],"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":360,"yaxis":{"gridcolor":"white","scaleanchor":"x","title":{"text":"y"},"zerolinecolor":"white"},"font":{"color":"gray"},"title":"Slice 1","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/3-recon2.html b/dev/assets/examples/3-recon2.html index f81b3cca7..0dbad04b7 100644 --- a/dev/assets/examples/3-recon2.html +++ b/dev/assets/examples/3-recon2.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('56de8ff4-2c23-4961-bb66-705139db3774')) { + if (document.getElementById('f477f40e-f20e-433d-aa43-6dadb15ea379')) { Plotly.newPlot( - '56de8ff4-2c23-4961-bb66-705139db3774', + 'f477f40e-f20e-433d-aa43-6dadb15ea379', [{"zmax":3.613684,"type":"heatmap","zmin":0.0,"colorscale":"Greys","z":[[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07325986,0.09643063,0.03944991,0.038630918,0.030930221,0.09767675,0.039879873,0.105256885,0.08168234,0.048648786,0.045277517,0.10515977,0.062152777,0.02221729,0.014273683,0.08483243,0.08588695,0.08815941,0.071687356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05481259,0.045532398,0.06318899,0.04414431,0.0930584,0.048012797,0.10306202,0.03711207,0.029216835,0.05588125,0.06583885,0.049863804,0.08367992,0.06706055,0.0494558,0.046780847,0.07304898,0.06488409,0.015189883,0.029000891,0.04822649,0.109200545,0.07369601,0.07122375,0.055166755,0.026297623,0.0513038,0.05006896,0.01883577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.021700047,0.009250566,0.029885124,0.072048455,0.06314923,0.058396608,0.059968136,0.105311,0.025136998,0.11376273,0.041996263,0.05148153,0.08236766,0.05912474,0.070053816,0.07309704,0.064182445,0.0505787,0.06257345,0.05322111,0.078268655,0.031225352,0.05301363,0.03557187,0.13447681,0.08019579,0.075222045,0.07150343,0.018705536,0.063091494,0.06975823,0.025717515,0.062805146,0.026847381,0.032019872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031465432,0.013622667,0.014643155,0.02452287,0.010686808,0.050326817,0.04005576,0.076250315,0.045385603,0.10569405,0.05597374,0.102782466,0.045245543,0.052319147,0.079970814,0.09051033,0.05153992,0.09741014,0.065275885,0.036144476,0.04641445,0.07165195,0.060768556,0.018721567,0.037170224,0.0660411,0.12680566,0.089663915,0.083733276,0.052369803,0.043018144,0.060431514,0.048036344,0.03995277,0.055081766,0.014649766,0.013959901,0.018783562,0.050716165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010257338,0.015699355,0.010828169,0.014377135,0.030362003,0.029131131,0.025261918,0.05111109,0.05729872,0.07814876,0.04156485,0.12749563,0.05670712,0.105726,0.065588094,0.067344636,0.12413299,0.10703314,0.049545318,0.117733546,0.04954208,0.038417224,0.037093747,0.07279593,0.057054445,0.028349308,0.07071899,0.0837534,0.16579074,0.094332725,0.1072797,0.055117745,0.040852696,0.07643397,0.04875212,0.044799957,0.07327816,0.024622878,0.026610818,0.025422202,0.06833429,0.020515349,0.01607744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.039714083,0.077155344,0.032443117,0.025655188,0.030708792,0.045871425,0.024138018,0.012377559,0.030979615,0.08668324,0.06265979,0.079342246,0.0824156,0.15412238,0.04816308,0.15425237,0.05704503,0.13362455,0.16854015,0.1380247,0.08807958,0.12690993,0.075162545,0.05245487,0.06825978,0.039090723,0.10218754,0.08493068,0.08769964,0.13415709,0.20813827,0.12720948,0.09887286,0.09811044,0.07592826,0.09014262,0.08549447,0.05797041,0.06345731,0.038008206,0.036653295,0.040617485,0.057597738,0.031408954,0.050521143,0.054258645,0.050404113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.024278512,0.037825458,0.020641888,0.024194662,0.03607706,0.041624017,0.025114167,0.009623628,0.053950034,0.052910984,0.035155978,0.03550102,0.07517882,0.12177747,0.046390906,0.19773823,0.10920726,0.17029354,0.14197123,0.19615167,0.32452357,0.22941406,0.13799836,0.39214274,0.15989979,0.16226842,0.11087075,0.060881685,0.16462624,0.1566584,0.1715977,0.28286085,0.32546282,0.1764112,0.17706184,0.0686404,0.11792686,0.10511617,0.041171756,0.09540491,0.087528065,0.031527378,0.018379234,0.022927357,0.0805486,0.027391609,0.03186124,0.069461934,0.050392304,0.024688208,0.02465757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013628165,0.05533497,0.02717182,0.016782338,0.03579748,0.07716163,0.04225999,0.035332855,0.030853359,0.046450883,0.03342118,0.01499099,0.02841667,0.09743726,0.0862797,0.12274065,0.13370816,0.32780674,0.11167534,0.6190672,0.4390895,0.9554241,1.1985688,1.1765411,1.0079842,1.1809978,0.94869256,1.2984835,1.0071825,1.2923356,1.1818441,1.1531492,1.1228763,1.0439101,1.3058422,0.4921207,0.4977113,0.20481375,0.238343,0.17110424,0.08830914,0.101805516,0.09495526,0.041012127,0.026430923,0.03470531,0.08233403,0.022071786,0.037982486,0.058494266,0.047934912,0.016309183,0.018201295,0.02963635,0.00709198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.030100336,0.019425755,0.0396544,0.01394918,0.004484811,0.02151468,0.07057323,0.05454471,0.055278324,0.032746118,0.04522588,0.034976754,0.018488497,0.013011866,0.10822047,0.12329605,0.2231094,0.6517875,1.3951209,1.3303131,1.1182973,1.5041778,1.8918825,1.9564002,1.5659921,1.672301,1.3441077,1.5846225,1.6016899,1.82911,1.7652483,1.5239067,1.4912417,1.5918493,1.7873495,1.6674265,1.2913779,1.0636357,1.1758375,1.1774527,0.8842045,0.18218367,0.11652612,0.18247627,0.09134945,0.052549507,0.06667663,0.13591772,0.04750524,0.012685232,0.047136337,0.029498378,0.00619071,0.030835668,0.020575738,0.024362147,0.044444043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02857076,0.034493875,0.04816655,0.05271137,0.011743257,0.033419374,0.048955124,0.024648886,0.030441368,0.06412246,0.067542784,0.040492985,0.02372394,0.10658357,0.0957872,0.055732287,0.21958147,1.3135015,1.3331517,1.2542992,1.6101769,1.8616464,1.8169856,2.0546274,1.820486,1.5292466,1.7829539,1.77067,1.3491759,1.4005716,1.3863344,1.6935571,1.5383246,1.6124955,1.5638323,1.4835207,1.4867752,1.6020067,2.0464556,1.5418797,1.540425,1.7361542,1.1936177,1.187689,1.4023161,0.6113079,0.11251354,0.01485353,0.062721156,0.15408644,0.048533957,0.041389808,0.09197631,0.07352368,0.03998636,0.03492946,0.017784249,0.042746644,0.08140054,0.06229108,0.038462974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.035021875,0.056038626,0.050581716,0.037917532,0.028105259,0.08777245,0.05307559,0.04435812,0.06210404,0.108350374,0.06838023,0.06746562,0.05542054,0.08035307,0.17192931,0.30364582,1.2064927,1.5111871,1.3418714,1.438691,1.6493146,1.7279977,1.6306965,1.4021899,1.3446765,1.3578683,1.3651907,1.163451,1.080001,1.0625516,1.1635072,1.03445,1.1192353,1.0787332,1.1361327,0.93351614,1.0525488,1.1553962,1.3854636,1.055276,1.3087996,1.8213519,1.7314425,1.8803988,1.7018614,1.2427455,1.2311063,1.5001252,0.5300037,0.07297815,0.1656089,0.04137149,0.08859352,0.110866144,0.0918555,0.05473371,0.046565633,0.06544636,0.03818342,0.011590274,0.022099739,0.05061116,0.05080451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046136368,0.06487462,0.04292672,0.0476471,0.06504128,0.07174954,0.02552942,0.050932307,0.06909622,0.040567532,0.036144964,0.100223914,0.11382077,0.062412865,0.07474633,0.65261805,1.2263064,1.4375056,1.4888562,2.0142746,1.9235283,1.5152279,1.0530981,0.7609113,0.8307945,0.45676357,0.23905492,0.21102585,0.2305341,0.108266324,0.2197349,0.051583424,0.15954436,0.24617636,0.21623749,0.10691424,0.30736434,0.5447469,0.19865286,0.14534806,0.42005208,0.35772723,0.55437213,1.3196877,1.0542254,1.6399999,1.949744,1.6099707,1.0952345,1.6085072,1.2753568,0.5319043,0.073135324,0.092875704,0.15858449,0.12503096,0.066788256,0.03585345,0.0248985,0.04525486,0.09054073,0.069826916,0.049218856,0.054551814,0.047510788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01335293,0.03615566,0.0149636725,0.02772175,0.025840258,0.018977702,0.0070602894,0.06266898,0.023276282,0.019814052,0.03269211,0.10622901,0.12716529,0.17805685,0.18469577,1.1808187,1.7958988,1.2473841,1.7555841,1.8944638,1.1459255,0.5002427,0.051656343,0.30684808,0.6576626,1.0793722,1.0372154,1.5276359,1.3188283,1.2765101,1.3178239,1.4564416,1.4365741,1.2106291,1.3618875,1.1269724,1.3337525,0.9622065,0.8566211,1.1395637,1.0858326,0.8528207,0.6057177,0.96515924,0.23355538,0.244706,0.5546797,0.8752481,1.5118935,1.8900502,1.3707603,1.265914,1.5760517,1.0056024,0.14213945,0.19673198,0.13709997,0.05911828,0.0024475046,0.029679181,0.007437492,0.044535704,0.026546644,0.02658883,0.033223145,0.028893573,0.0067760595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022550436,0.020657657,0.040940046,0.020269511,0.036212776,0.034984797,0.02172555,0.008905825,0.07291101,0.032812875,0.021646297,0.054708295,0.16378516,0.27507818,0.71370023,1.3548115,1.1927526,1.4993223,1.9145457,1.3848398,0.5873246,0.0764888,0.556343,0.9834757,1.3388116,1.007097,1.2206523,1.1648262,0.9776763,1.6784294,1.5003831,1.7252142,1.4732792,0.4894837,0.7163168,0.53671604,0.6302461,0.6191818,0.846066,1.4529339,1.2616311,1.4354788,0.96783274,1.1584285,0.44111204,0.414645,0.72913367,0.19159119,0.06592458,0.058349337,1.0317934,1.9968116,1.2877206,1.2350101,1.3354154,0.9682255,0.63124144,0.26585832,0.11501036,0.037879173,0.06597141,0.030830057,0.020701662,0.018386334,0.039359223,0.044768028,0.040141262,0.022657814,0.021681383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02095622,0.025582757,0.031324994,0.00973701,0.03440035,0.022698862,0.013391515,0.03452295,0.046039823,0.07033764,0.05301898,0.06580391,0.03893589,0.2341872,0.854349,1.7651246,1.1565081,1.6283802,2.0229797,1.2713546,0.57481486,0.12856299,0.33282453,0.5236909,0.5503951,1.3446302,0.83810693,1.404912,2.1171596,1.1515827,1.5959806,1.6367693,1.4113299,1.385338,1.2716303,1.945651,1.7832723,2.0352187,1.6893123,2.5494936,2.1548526,1.564264,1.2758374,1.6118228,2.4351346,1.3431064,1.2815168,1.1279457,1.0082439,0.93363184,0.09445455,0.17724626,0.75445414,2.030284,1.6478962,1.1401423,1.339897,1.600201,0.823296,0.24344356,0.05803344,0.029304003,0.037034918,0.088101745,0.067716286,0.041114166,0.04754227,0.037305385,0.037904993,0.040834058,0.03765815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.035441756,0.029962227,0.019314788,0.0285181,0.027885143,0.012091675,0.044078,0.031522408,0.020546224,0.038228236,0.11480968,0.10026957,0.13947766,0.17829841,1.129881,1.5672195,1.1305907,1.8205565,1.9644188,0.9619288,0.93647295,0.25176722,0.23430061,0.111904375,0.54935175,1.5186543,1.9347318,1.9118167,1.7871302,1.7136003,1.3975724,1.0788288,0.9645039,1.1465416,1.7368146,2.6214628,2.244867,3.0722208,0.02397057,1.4002709,2.75549,0.86771065,1.2114899,1.0273794,0.98594826,1.209902,1.7951015,1.2761403,1.663535,1.5447469,1.864371,1.0056132,0.020231286,0.15342145,0.75075537,1.5656354,1.856442,1.157775,1.224154,1.4621673,0.7295499,0.18977837,0.09728079,0.08938748,0.078275725,0.07556036,0.019162998,0.016929917,0.019509941,0.023392225,0.014427365,0.018826889,0.02727424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.017424602,0.028467216,0.023227356,0.015006494,0.027092589,0.022319682,0.016382415,0.046016853,0.033300318,0.037873626,0.06528585,0.16642207,0.20865133,0.4670685,1.6098671,1.2552563,1.3957734,2.188956,2.1541958,1.0772203,0.69306606,0.3287387,0.4999505,0.55779105,2.5298166,2.0191894,1.6036873,1.2632858,1.8888478,2.1099343,1.9807347,1.3582,1.2855761,1.1747819,1.3160964,1.2596933,1.3191444,1.8646994,2.9018269,0.345285,1.5794446,2.4660285,1.385761,2.1162038,1.337034,1.2445709,1.4157436,1.1525598,1.0152686,0.9651305,1.9394358,2.154407,2.0629036,0.8347458,0.15428206,0.22113748,0.8324564,1.8585333,1.9742436,1.1897445,1.1106695,1.5593905,1.0119369,0.22833174,0.15406074,0.14202406,0.12377579,0.040794604,0.020133737,0.021463878,0.042722125,0.033029806,0.035471868,0.022817403,0.023694197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011885878,0.014156713,0.01660986,0.011681352,0.00859736,0.019338783,0.013175637,0.015396544,0.035597738,0.02425064,0.039945655,0.06801421,0.22930281,0.48622656,1.9549967,1.2570614,1.2313875,2.121447,1.5208135,0.34957013,0.40361652,0.40664485,0.48745954,1.9564477,2.4067314,1.9302852,1.2818489,0.99537534,1.3663713,1.598257,1.7568561,1.9090345,1.898801,1.1456497,1.1634301,1.0206071,1.1732987,1.1969123,1.3816648,2.72877,3.1927283,2.5386178,1.330943,1.0814971,1.2193899,1.2515215,0.9476444,1.0415177,1.2104582,1.1400186,1.6226614,1.7189252,1.3738947,1.4147533,2.5846176,1.4409065,0.7673545,0.42705414,0.15941799,1.392951,1.8606559,1.1510447,1.3613852,1.5075529,1.6492366,0.45646703,0.20854716,0.15206794,0.05162014,0.014316313,0.020904355,0.03839216,0.025855081,0.030318223,0.020151682,0.01910493,0.025814833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010551159,0.009993053,0.009087732,0.024771417,0.018934073,0.0084532155,0.019519892,0.029338155,0.0038723974,0.04633533,0.035914186,0.036857005,0.079159506,0.46938056,2.0100012,1.2535353,1.2628884,2.1256204,1.1628946,0.17088607,0.34530473,0.3447184,0.58286846,2.4016645,2.2193136,1.364087,1.2475286,1.2356418,1.3672125,1.2693743,1.3374394,1.2288159,1.4009708,1.3883535,1.3247391,1.2815182,1.0366389,1.1745621,1.1938306,1.28076,1.4722296,2.9796295,2.3056056,1.0393381,1.431424,1.3624345,1.3084421,1.1456391,1.1681404,1.1109117,1.2083558,1.5881232,1.8149984,1.3624214,1.4852365,1.0478231,1.8875228,1.8086594,0.5719265,0.30986157,0.1918421,1.0734843,1.7936628,1.0842781,1.478768,1.4420128,1.7202923,0.4127808,0.17997135,0.04265933,0.017538765,0.010088346,0.028275864,0.023832975,0.024788922,0.004219524,0.02649129,0.016572036,0.012310487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.025132779,0.026065037,0.02829834,0.033254094,0.021795912,0.023113295,0.031548236,0.03765265,0.015514285,0.048392467,0.028444732,0.017026626,0.10723215,0.1666883,1.6791074,1.2432264,1.2757096,2.1645405,1.1942843,0.2573417,0.29706872,0.85066706,1.913395,1.7463065,1.6467061,1.0361683,1.3610148,1.1279305,1.1260138,1.1723738,1.3781343,1.1388328,1.1365229,1.2385262,1.1748832,1.1109875,1.1979116,1.0443659,1.1257734,1.3747085,1.2946483,1.5969602,2.611701,1.6953562,1.4098822,1.3100327,1.1424363,1.1551056,0.96371865,1.3553247,1.6448047,1.5356301,1.4827734,1.5659517,1.568269,1.2522973,1.3018302,1.7766324,2.4055986,1.5759127,1.0300795,0.17380182,0.140992,1.1371171,1.7934607,1.0855492,1.396718,1.3440001,1.6497564,0.26760277,0.02138874,0.059475522,0.0401654,0.032101545,0.036349855,0.032203082,0.017524032,0.043502573,0.021931943,0.023934811,0.021649752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006169841,0.0057539577,0.0062905774,0.0063122083,0.019259036,0.0154176485,0.018853249,0.0070982436,0.04946248,0.040268138,0.04635103,0.069762416,0.09111428,1.3487298,1.7738812,1.2026197,1.685076,1.2705662,0.3100294,0.366512,1.1290257,1.5246912,1.7355822,1.4279709,1.2536466,1.283176,1.1417013,1.1429331,1.2280648,1.3826698,1.137374,1.071903,1.0564107,1.0838923,1.029551,1.1276085,1.146999,1.0829334,0.9689748,1.170735,1.2353783,1.7766113,2.2953346,1.015627,1.5345274,1.6955533,1.2665043,1.1372172,1.1982135,1.4003358,1.3647594,1.2800589,1.3051684,1.4887048,1.7315296,1.1597066,1.4154212,1.3049359,1.1645387,1.6576946,1.3506218,1.1669278,0.114875026,0.17473666,1.2397476,1.5512959,1.1563346,1.6526847,0.9678856,1.3300385,0.059450757,0.1025336,0.06515855,0.037560284,0.04083292,0.028293232,0.023906827,0.039870936,0.012106913,0.015318228,0.012658478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.038753796,0.038331635,0.03999728,0.04038508,0.04277217,0.04654747,0.05239147,0.062620305,0.05510294,0.105916545,0.10872789,0.13693488,0.2556511,1.1397092,1.6363529,1.2041049,1.6797506,1.7983209,0.474039,0.38683668,1.334006,2.6918204,2.1535854,1.16699,1.3558352,1.1306221,1.1286534,1.1328071,1.1971334,1.1914413,1.2559224,1.2256362,1.0628191,1.0172697,1.0649829,1.0456836,1.0188024,0.9861617,1.1994412,1.2238858,1.3558697,1.3513607,1.5759602,2.1491716,1.8175668,1.179102,1.0997615,1.1413022,1.1189746,1.2016977,1.2561842,1.2117896,1.1195133,1.0440136,1.4389794,1.1706928,1.083068,1.3872895,1.3266377,1.3060783,1.2730277,1.2827436,2.1717074,1.2435317,0.04046865,0.24418104,1.0844429,1.8052254,1.5194237,1.3111651,1.3266782,1.3792702,0.39817753,0.23611826,0.15790673,0.13941112,0.10833404,0.10159332,0.10547576,0.07400895,0.07426444,0.06773207,0.06349525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.041410755,0.040952984,0.043767493,0.045290757,0.049238306,0.056883805,0.042551965,0.055718124,0.0788673,0.07643763,0.11843183,0.16697834,0.21059935,0.82631695,2.003069,1.063164,1.7665493,1.8119274,1.0044755,0.14929359,1.4405125,2.030854,1.7289491,1.2901739,1.3254088,1.1762557,1.1608738,1.2415663,1.1250385,1.2426553,1.2776431,1.327648,1.0914572,1.0284488,1.0755396,1.1296686,1.0927794,1.0752523,1.1427106,1.2672427,1.2904258,1.2943907,1.455286,2.0739732,2.9510815,1.6983151,1.3484349,1.347412,1.2359036,1.2126406,1.3176805,1.2852026,1.1034253,1.0998642,1.0633155,1.2631702,1.421875,1.2503413,1.2784884,1.0720615,1.1760739,1.4053756,1.2038699,1.0634818,2.0966272,0.4898064,0.18680231,0.17633662,1.3381634,1.8310872,1.5327069,1.4036173,1.792042,0.97519845,0.30090544,0.18738435,0.14688344,0.111736745,0.08456169,0.10353657,0.06796974,0.06637472,0.060312286,0.054964643,0.05227531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014684789,0.012719142,0.013589157,0.0124015175,0.012847284,0.014544945,0.017613925,0.00659614,0.01884792,0.021632897,0.059789542,0.13198145,0.45606545,2.3743305,1.2138857,1.429655,1.798129,1.2282996,0.40673307,0.94766396,2.4741106,1.311244,1.2949162,1.3124028,1.3271517,1.3208404,1.2369373,1.072904,1.1332314,1.1463748,1.0999153,1.0427856,1.1046314,1.0470042,1.062077,1.3035308,1.3807459,0.99753785,1.0269928,1.104363,1.0908419,1.1651237,1.0224127,1.7490638,2.2833705,1.398111,1.318892,1.1725005,1.1372861,1.0116812,1.1031107,0.9890037,1.1322618,1.0364729,1.1160264,1.0888448,1.2605557,1.2026604,1.338618,1.1157159,1.4204088,1.1858317,1.2796937,1.2298547,1.5594152,2.4031916,0.2959864,0.20918633,0.5260851,2.0344205,1.9247785,1.3609976,1.5291842,1.4902754,0.15396993,0.024323588,0.0071197837,0.014089575,0.03162918,0.009385716,0.020286616,0.013674702,0.015564472,0.015234053,0.016254384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.011714763,0.009021832,0.009838148,0.0095237745,0.011522837,0.014275242,0.023083838,0.011091393,0.015490822,0.03434392,0.04618487,0.03743765,0.12463743,1.3973037,1.4321504,1.0314621,1.8484391,1.3093781,0.28913295,0.10396702,1.3033009,2.5647159,1.2927804,1.6164826,1.128144,1.8735492,1.4644488,1.3422385,1.2082486,1.0699792,1.0229388,1.119925,1.080552,1.0099938,1.0417823,1.2756673,1.8063041,1.320324,1.0781637,1.1015515,1.3595005,1.6677667,1.325037,1.1116226,1.7200083,2.0988708,1.0641954,1.1752051,1.1522669,1.097107,1.0382148,1.0553615,1.0790839,0.99299204,1.029397,1.0154395,1.043793,1.2316744,1.3079731,1.2398014,1.2051076,1.296888,1.5033658,0.91212577,1.2319221,1.3766284,2.3170986,1.4272622,0.107369676,0.10268093,0.9145105,1.4296578,1.542777,1.475587,1.5799515,1.1116775,0.28183326,0.18297844,0.14657658,0.13005911,0.071674585,0.087664835,0.07073523,0.06326153,0.05751496,0.050882343,0.04736432,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.03712201,0.03851846,0.037575338,0.03925928,0.039538156,0.04216714,0.04435454,0.05856984,0.058788925,0.057600852,0.11353425,0.13389851,0.619709,2.079783,0.9996294,1.3700297,1.5421,0.96604794,0.036422707,0.54599375,2.1758325,2.3971412,1.648257,1.7490432,1.3110436,1.2545131,1.1695191,1.2151953,1.0101769,1.0729147,1.0247751,1.0722246,0.95306367,1.1737019,1.0483116,1.9650409,1.513613,0.9918322,1.0321295,1.0506623,1.3564076,1.4335419,1.4247229,1.1324308,1.3584,1.8594797,1.1208887,1.0819774,0.97374827,1.1402316,1.0982145,1.1216117,0.99561906,1.1585922,1.0297289,1.1293098,0.99415475,1.0493796,1.0977426,1.3829772,1.175818,1.3005916,0.94179815,1.2936049,1.165978,1.2744876,1.1672789,1.7283183,1.5189873,0.23330505,0.101572916,1.6270456,1.2819269,1.6103622,1.2504323,1.9697286,0.7100495,0.3094868,0.2182134,0.17279662,0.108414754,0.1180196,0.09593673,0.08681457,0.07816138,0.07231772,0.06575647,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.009531398,0.006470052,0.00898558,0.00796627,0.009790624,0.010495167,0.01328355,0.021358456,0.004478341,0.007997211,0.031380195,0.049092323,0.016824873,1.7623076,1.7084222,1.267101,1.8603212,1.3388388,0.20105381,0.28304532,1.808705,2.3568563,1.6913135,1.2441092,1.2491972,1.1670495,1.318845,1.118094,1.1429139,1.0509644,1.0972881,0.9974491,1.1139128,1.0352935,1.1007937,1.313106,1.5489546,1.317073,1.1007441,1.2002956,1.1264616,1.1809893,1.3909385,1.3089255,1.3364444,1.2837476,1.5526277,1.0763943,1.2150162,1.3508748,1.2036726,1.2173584,1.3577781,1.3573567,0.97975874,1.0617973,1.0561074,1.0685198,1.0937735,1.070998,1.1453828,1.1663182,1.0681642,1.2109838,1.0867307,1.349548,1.3382405,1.1967865,1.2711139,1.7469897,1.9233558,0.3781567,0.73129565,1.7897406,1.3262703,1.2003763,1.5715964,0.68902075,0.16460513,0.107667215,0.05228759,0.08667772,0.04273899,0.04033645,0.033430368,0.027602755,0.024844842,0.02057459,0.019791164,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.044215687,0.048475884,0.048219934,0.05188085,0.053593382,0.057872158,0.06276676,0.07463499,0.05457349,0.07537004,0.119819686,0.11454349,0.6651765,1.9043899,1.1466779,1.3484596,1.6274637,0.7643132,0.48168448,1.6606096,2.1212938,1.8784772,1.5258276,1.3788224,1.5868952,1.4396007,1.2554893,1.3222779,1.1484345,1.0744362,0.9940454,1.1008271,0.9904563,1.0626218,1.1767352,1.5166085,1.353108,1.2251973,1.3196276,1.2689686,1.3314773,1.0862981,1.1441226,1.1603847,1.1395184,1.315732,1.3894285,1.3725744,1.6305913,1.2051283,1.1239879,1.1345618,1.3136392,1.3676075,1.8189493,1.6664519,1.53742,1.0834081,1.018982,1.0131477,1.0695317,1.0331446,1.255873,1.0203432,1.2376246,1.2756902,1.2044734,1.324627,1.351086,1.1206145,2.4556925,1.8049082,0.17535023,1.2531896,1.6926457,1.4190499,1.3047326,1.6081032,0.25706515,0.116695985,0.037847094,0.08618437,0.046653356,0.046144165,0.041578524,0.040579516,0.038761724,0.03911319,0.038023897,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.038188625,0.03323641,0.035280347,0.03155561,0.032671057,0.030355878,0.03071833,0.02904012,0.0299112,0.03865219,0.026044369,0.02795288,0.081545524,1.7218894,1.3054011,1.0959352,1.5586147,1.5425111,0.24544561,2.007747,2.4294448,1.9659845,1.5249068,1.2485952,1.3842138,1.4614645,1.3396859,1.3420806,1.3579005,1.6198013,1.4703298,1.0153835,1.0876753,1.0174898,1.1675304,1.237107,1.4648635,1.375549,1.2808796,1.3580449,1.5831747,1.3222073,1.2695038,1.2440166,1.48941,1.4941685,1.834737,1.2497224,1.5503206,1.8797193,1.5295305,1.442974,1.4454052,1.2298547,1.705776,1.8097842,1.6169997,1.406315,1.2734296,1.0724577,1.0985522,1.0060424,1.0970135,1.0019832,1.2601388,1.1397184,1.3252432,1.511652,1.4447435,1.2458208,1.5549153,1.7006454,2.680263,0.29675776,0.44946295,2.0512629,1.6153624,1.0902096,1.7688863,0.57197934,0.21100031,0.20445482,0.09497504,0.11437686,0.09426759,0.08504891,0.07829666,0.070819035,0.06699356,0.060279477,0.058970444,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.030062024,0.03356133,0.03317479,0.037076116,0.03786355,0.04203492,0.044866167,0.050777566,0.05737054,0.073452465,0.076389685,0.08837299,0.7732321,1.9589361,1.1743481,1.4092166,1.6851147,0.87620723,0.4874181,2.362728,1.2920686,1.6646934,1.5826787,1.3626407,1.4067321,1.1764859,1.3684286,1.1916418,1.3509471,1.3915563,1.3303812,0.97567916,1.1335522,0.94221026,1.1542226,1.1918707,1.7145985,1.1347247,1.0373815,1.4185268,1.5086265,1.3379186,1.4435123,1.8992665,1.3780965,1.3080325,2.5753298,1.4931271,1.2114782,1.5151234,1.7432277,1.7217331,1.762777,1.3640633,1.683999,1.5983078,1.1886566,1.340195,1.329328,1.0522242,1.0066568,1.0803581,1.0278442,1.145463,1.1739863,1.3478601,1.3408016,1.3225172,1.1925088,1.3084817,1.235164,1.5023525,1.542305,2.0110667,0.12567578,1.9438629,1.6539326,1.1979041,1.2690487,1.6237979,0.08727861,0.103871025,0.021206863,0.04466531,0.03195916,0.031466078,0.029586833,0.029231178,0.027001567,0.028429825,0.025446782,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.028815934,0.026885878,0.03361712,0.033842128,0.040347636,0.043048184,0.05073658,0.057785388,0.069763824,0.0903051,0.082104854,0.1375515,0.2964828,1.8512502,1.840133,1.0732721,1.7514752,1.7315093,0.37459144,2.0233319,2.1420846,1.755225,1.4320198,1.4058963,1.7791178,1.1854336,1.3843127,1.002235,1.2102246,1.0789301,1.2132343,0.9894554,1.1209064,0.9787103,1.1403497,1.0137457,1.2636583,1.2390537,1.7198398,0.95878464,1.5542423,1.442434,1.9236325,1.5659829,1.3792101,1.2279402,1.6606411,2.4906366,1.7823362,1.3567758,1.4127809,1.3692846,1.6974581,1.7627196,1.7324861,1.4131747,1.2984271,1.3261305,1.3131282,1.3437526,1.1133785,1.0633601,1.0381805,1.0555586,0.97194827,1.1756877,1.226554,1.2291137,1.292848,1.3420821,1.2863624,1.322866,1.1700338,1.6919024,2.733227,0.0793312,1.1653395,2.0431435,1.5434337,0.8543759,1.9721059,0.53475875,0.041320294,0.07238067,0.029350169,0.022434827,0.019848837,0.017546767,0.017289933,0.016207753,0.01694153,0.016252156,0.017399438,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0054197675,0.00037876808,0.0037373742,0.0015402177,0.003068279,0.0037533408,0.005231168,0.007203665,0.010801943,0.020905407,0.014757941,0.01792928,0.18157937,1.6984786,1.1889007,1.5837582,2.0434074,1.5190017,0.71062255,2.0722382,1.5290388,1.5475923,1.6843195,1.263553,1.5731766,1.4604342,1.1867305,1.2283565,1.1078593,1.129796,1.0583656,1.0592915,1.0352741,1.0506874,1.0099279,1.048029,1.1141315,1.2539594,1.3466784,1.7256457,1.5314432,1.375025,1.5610222,1.0081834,1.3349732,1.2700251,1.9067715,3.011547,1.9638573,1.5939529,1.2444817,1.4018033,1.3483146,1.4115331,1.6990875,1.5814097,1.4322364,1.2846458,1.236216,1.1197655,1.0383339,1.0073203,1.0840124,1.0269175,1.143934,0.9699742,1.1895872,1.2165877,1.2299021,1.1713729,1.2391558,1.2543522,1.4790959,1.8381442,2.2896564,0.9775746,0.5127483,2.0289593,1.397527,1.3719693,1.5099128,1.8054606,0.29131433,0.04463463,0.04428969,0.032365125,0.028109148,0.023231803,0.020924203,0.017225457,0.016369656,0.013278721,0.01309617,0.0,0.0,0.0,0.0],[0.0,0.0,0.05386367,0.05358548,0.061737686,0.06251463,0.07216946,0.076194085,0.08678196,0.09506918,0.10936647,0.12549919,0.14705835,0.22122224,0.25868404,1.9144356,1.3809805,1.1219035,1.5541257,2.1154454,0.100038536,1.7198946,2.10233,0.9587282,1.422707,1.2356809,1.8800019,1.2188817,1.4399959,1.2520114,1.2152549,1.0485611,1.1938936,1.0479867,1.1278992,0.9834014,1.216977,1.14929,1.1157176,1.0104356,1.2867103,1.3198905,1.2919501,1.2508581,1.2804786,1.1467308,1.2088618,1.295004,1.263723,2.0377903,2.5196776,1.7343667,1.260186,1.2808961,1.2925113,1.4505025,1.6969537,1.8213607,1.6413237,1.4861957,1.4568951,1.331315,1.1966115,1.0809793,1.0749172,1.0362759,1.0482811,0.97549695,1.1210129,1.0447214,1.0737783,1.1923399,1.1246601,1.2990798,1.3576812,1.3306541,1.8928144,3.0555937,2.5051298,0.28864422,1.6422924,2.097369,1.2770774,1.4110802,1.6889875,0.4271226,0.113599166,0.043914247,0.04598867,0.039698865,0.037094716,0.03500476,0.0347765,0.03409219,0.03529769,0.03511385,0.037373025,0.0,0.0,0.0],[0.0,0.0,0.021242818,0.014127968,0.01597118,0.012618593,0.014781401,0.017346937,0.021067588,0.029326385,0.038392544,0.055608485,0.083990276,0.19349658,0.88976675,1.9581642,0.9786795,1.7490921,2.0688467,1.733287,1.0521108,1.7104431,1.3725169,1.3949614,1.1311945,1.4630723,1.8254126,1.4573175,1.3840371,1.2945718,1.6680278,1.7174038,1.4299515,1.3228431,1.152795,0.9971727,1.5788882,1.7380117,1.1156492,1.0831068,1.061293,1.339597,1.3497198,1.3360744,1.2912328,1.1212331,1.1085252,1.1801544,1.2540225,1.8428155,2.37513,1.9978685,1.284393,1.0986675,1.145498,1.226716,1.9390641,1.6272545,1.2269353,1.2806301,1.2339022,1.2357048,1.1069521,1.0063828,1.0431305,1.0517666,1.0612992,1.1402279,1.2102426,1.6104437,1.438264,1.369914,1.4048871,1.5880599,2.3438401,1.4356441,1.6831582,1.2631055,2.5052974,0.8111312,0.4826449,2.191674,1.4900237,1.3472781,1.5333802,1.7802497,0.52890587,0.2290624,0.16429013,0.12315126,0.100255474,0.082275994,0.07185175,0.060105782,0.055373907,0.045584418,0.043254588,0.0,0.0,0.0],[0.0,0.0,0.054470185,0.06387258,0.06673108,0.0780498,0.08307475,0.097438976,0.1087829,0.12889811,0.15244621,0.19182415,0.2626561,0.3817296,1.4861497,1.6441714,1.1576047,1.5327064,2.3668056,0.99446565,1.5330501,2.5000396,0.8956961,1.4094048,0.9041953,1.696205,1.1538805,1.3776475,1.3771998,1.7742815,2.0296757,2.2419074,1.3839678,1.414565,1.0608295,1.1315392,1.3275985,2.027974,1.5760734,1.0057969,1.0371494,1.0914828,1.0808576,1.1543251,1.1466804,1.2496696,1.2997571,1.4201565,1.2533475,2.3157978,3.1693733,1.9590774,1.2944963,1.39096,1.0841967,1.1513412,1.7388208,1.5690507,1.1877346,1.1266409,1.1702539,1.0899326,1.1081876,1.0875709,1.1276468,1.0394883,1.027144,1.1039757,1.3525594,1.5620052,1.3785653,1.3946015,1.7857933,1.5648541,1.7335976,1.1428803,1.2723684,1.3197019,1.9901558,2.114576,0.44401643,1.9278133,1.9476986,1.407338,1.6388233,1.579342,0.7067843,0.12263913,0.068430446,0.045108493,0.03444589,0.031852573,0.028656287,0.031058632,0.02884148,0.033890314,0.03235821,0.0,0.0,0.0],[0.0,0.111396305,0.11087646,0.11621015,0.11608195,0.123912565,0.12672633,0.13789675,0.14676687,0.16381048,0.18406755,0.21898231,0.27572355,0.46517715,1.427751,1.401248,1.2093854,1.5113493,2.2642272,0.68347174,1.4436167,2.1975732,0.9749657,1.515694,1.1493181,1.4699157,0.9515799,1.3255056,1.1566578,1.595376,1.4236734,1.5387636,1.284356,1.2869234,1.0309509,1.0344917,1.6895978,2.007164,1.8912739,1.4345051,0.89701045,1.1750451,0.9685139,1.1249943,1.0029453,1.1315274,1.117113,1.3835748,1.4659199,2.7806544,2.7925687,2.1558719,1.4776925,1.341152,1.2114669,1.1179627,0.9741543,1.1884598,1.0214477,1.1737396,1.004299,1.1757754,1.0376496,1.0894412,0.9497195,1.1343104,0.97788393,1.2359031,1.1242077,1.2522504,1.1365697,1.2563019,1.2189813,1.3572257,0.9720753,1.4009323,1.1497551,1.7668056,1.6712437,2.5219798,1.3153936,1.2140651,2.3814263,1.7226434,1.3989103,1.6725192,1.6102384,0.46983021,0.29380932,0.23026009,0.19214235,0.16984197,0.15156192,0.14166687,0.12975213,0.12608023,0.11755597,0.11785967,0.0,0.0],[0.0,0.04817684,0.04280256,0.044477955,0.038792647,0.040667325,0.036635596,0.03951231,0.03792579,0.041627813,0.044234827,0.053182226,0.07042417,0.066274226,1.6165032,1.7176929,1.475668,2.3144522,1.6312915,1.413984,2.5137193,1.6282232,1.7652317,1.4092847,1.4110595,1.265024,1.1635736,1.0600663,1.0907803,1.0268852,1.0376986,1.1047951,1.0742542,1.0373639,1.0430269,1.0719634,1.4610798,2.1544063,2.7024212,2.5753539,1.4953511,0.95344007,1.0519674,1.0446793,1.0702274,1.1071277,1.0922362,1.2918473,1.6123911,2.9624658,2.9997036,2.1450262,1.604877,1.2510295,1.2307554,1.1090933,1.2063141,1.1603534,1.0832722,1.0421396,1.0816202,1.073957,1.0045472,1.1497561,1.0922483,1.0859444,0.9799638,1.096377,1.1187718,1.2011865,1.1496408,1.3560153,1.1374514,1.4022155,1.2642769,1.4440681,1.064704,1.6006644,1.5983808,2.749409,0.88279516,0.66380197,2.2078884,2.0449512,1.0225825,1.2639391,1.3795376,0.39117125,0.25175527,0.18549788,0.14744435,0.12537898,0.10622709,0.095721945,0.08268867,0.07760167,0.06711597,0.06525573,0.0,0.0],[0.0,0.06328348,0.069717705,0.07091336,0.08048131,0.083925284,0.09557911,0.10362527,0.12023424,0.13842987,0.17045517,0.22307952,0.35699183,1.0098729,2.07295,1.1368457,1.2561097,2.36335,1.3138283,1.1527604,2.7131755,0.90997535,1.6690414,1.1161844,1.4675684,1.189345,1.3332009,1.0145562,1.1690526,1.0204016,1.1421276,0.9663472,1.0954181,1.0359775,1.0903627,0.97288805,1.5420675,2.0265985,2.6303866,2.8974576,2.5858507,1.2728133,1.1109723,1.0520012,1.14967,1.237058,1.3380077,1.2477813,1.8259227,2.6003852,2.8037295,2.3884928,1.7502608,0.9549699,1.1482835,0.96236044,1.0328916,0.99156725,1.0351368,1.0766374,0.9885507,1.0644403,1.1957424,1.7665408,1.7653596,0.9557852,1.1488602,1.023916,1.117824,1.0659267,1.3912566,1.2847449,1.4194498,1.2491668,1.2976416,1.2023951,1.4073753,1.118166,1.6390938,1.6186507,1.8448249,1.4139936,1.6482655,2.2394812,1.0127708,1.5567663,1.3941422,0.25698632,0.086967595,0.060148235,0.0544505,0.049664468,0.05065663,0.04774235,0.050957747,0.048660234,0.05362201,0.051381685,0.0,0.0],[0.0,0.12819259,0.13069224,0.1302085,0.13707896,0.13870601,0.14842908,0.15522133,0.17076977,0.18790188,0.21931437,0.26973778,0.38948095,1.1567041,1.8639673,1.1852597,1.2820488,2.4284887,1.1875653,0.9823492,2.779854,1.2175325,1.3794379,0.89684176,1.3247392,1.0404445,1.2308191,1.0441487,1.29131,1.0558354,1.316262,1.070875,1.1386338,0.94052136,1.125522,1.0042688,1.432871,1.7443471,2.4288738,2.8407202,2.9170034,2.2648907,1.1959461,0.97699106,1.1539348,1.0533041,1.252221,1.610136,2.9976406,1.9164569,2.579599,2.5721486,1.5176167,1.4087869,1.2685455,1.1529399,1.0702499,1.0933766,1.1148353,0.9901182,1.1971061,1.8323474,2.8069355,2.2297442,1.8558054,0.9833768,1.1144055,0.9456886,1.126564,1.0192603,1.2211293,1.13701,1.2189362,1.2000412,1.3849648,1.1252581,1.405005,1.1732768,1.7246637,1.15231,2.681577,1.3943123,1.430948,2.3126032,1.6459762,0.8601736,1.5740783,1.278606,0.44562414,0.3021895,0.24101841,0.2034434,0.1828035,0.16409914,0.15556541,0.1439474,0.1417211,0.13285372,0.0,0.0],[0.0,0.10014213,0.10289407,0.101628825,0.108535506,0.10963589,0.11969864,0.12662752,0.14327455,0.16171363,0.19670893,0.25561208,0.40889028,1.081437,1.7815398,1.0020732,1.4806703,2.2446787,1.0237674,0.9073686,3.097781,1.5953511,1.6006703,0.88275415,1.3262954,1.2719564,1.3047718,1.155505,1.4580699,1.342506,1.5311407,1.133448,1.252049,0.9978408,1.1426545,0.9014956,1.1321658,1.4828588,2.2717972,2.9936328,3.02081,2.588584,1.4218229,0.9622845,1.0914627,1.0008874,1.0715606,1.2928152,2.3817337,2.6592035,2.9318411,2.0449011,1.2006742,1.190537,1.20739,0.96704704,1.1503209,0.94053054,1.0936806,1.394336,2.4119494,2.8967357,2.5481615,1.8241948,1.5462996,0.95776093,1.1515828,1.0085783,1.1164912,0.95250636,1.1593182,0.94901085,1.2811048,1.0481228,1.4285549,1.1402633,1.5759611,1.0517274,1.720253,0.74594176,2.7699304,0.8842693,1.3195926,2.3511574,1.9310203,1.3271346,1.4845412,1.1284556,0.45324335,0.29270226,0.22713974,0.18682978,0.16407076,0.14358656,0.1335944,0.121086575,0.117435634,0.10774914,0.0,0.0],[0.09091567,0.0921161,0.09373748,0.092447154,0.09812221,0.09852271,0.10666446,0.11172374,0.12563673,0.13994995,0.16796057,0.21262448,0.31731632,1.2215899,1.729105,0.9883098,1.6734364,2.2257125,0.799397,0.9426926,3.2388365,1.535181,1.4305865,1.2718745,1.5145845,1.0715678,1.4395976,1.2640661,1.5425184,1.339487,1.2043731,1.1491616,1.1470008,0.99986124,1.2142211,1.1150894,1.127856,1.25434,2.292198,2.8843024,2.9850767,2.7455096,2.2277145,1.3874979,1.0559393,1.0600754,1.0626128,1.1953962,1.3142986,1.1423402,1.8605729,1.3107815,1.123672,1.0523236,1.1017874,1.0940202,1.0955759,1.0050517,1.6635535,2.3979387,3.0487707,2.7191274,2.2782457,1.8635074,1.1071887,0.97977465,1.1047252,0.9355429,1.1676295,0.9567126,1.1529775,1.1482568,1.4741346,1.2318196,1.474457,1.097712,1.5953922,1.0572501,1.5416697,0.9146979,2.6295707,1.0456741,1.0496922,2.3410192,1.8640454,1.067967,1.5221015,1.4383558,0.3190548,0.24385582,0.19743156,0.16540931,0.14748122,0.1299857,0.121964246,0.11070183,0.108076364,0.09925226,0.09864557,0.0],[0.090125114,0.09299679,0.09617056,0.09592535,0.10250751,0.103346065,0.11183176,0.11625438,0.1287065,0.13930868,0.1593922,0.18226427,0.17108914,1.5590354,1.5102301,1.1728423,1.8805525,2.22866,0.38153556,1.046023,2.4516044,0.909012,1.500706,1.2195314,1.6555725,1.2360566,1.3900696,1.1332949,1.1856996,1.0843606,1.2605779,1.222711,1.6826744,1.8964188,1.5352645,1.1999505,1.1989843,1.012557,1.5004063,2.6410155,2.9582782,2.5462625,2.3691113,2.4326663,1.2998188,0.9834667,1.0867972,0.95676637,1.0157437,1.0893726,1.2148727,1.033537,1.0641217,1.0051945,1.059551,0.99178654,1.028988,1.5904175,2.1490989,2.2456186,2.9265876,2.9139433,2.250072,1.3074927,1.1129806,0.98131245,1.1269649,1.0476589,1.0984852,0.9683616,1.2054685,1.129478,1.3045224,1.076542,1.3051754,1.0815645,1.3983934,1.0224956,1.5163399,0.87400866,2.555513,1.1170394,0.645483,2.3515096,1.8273504,1.2877331,1.2268515,1.7073412,0.038036857,0.11654475,0.121128194,0.113407135,0.11001397,0.102270916,0.101022154,0.09512131,0.0963316,0.09163993,0.09325841,0.0],[0.066150084,0.06831045,0.06990279,0.069279335,0.07419767,0.073536634,0.080077104,0.08210264,0.09133189,0.09740331,0.11086196,0.122564115,0.099845946,1.6263746,1.47233,0.89178133,1.9211003,2.1427162,0.4918036,1.083124,2.1028929,1.1325775,1.2482485,0.92956454,1.1535943,1.0413216,1.3345793,1.1541383,1.2772458,1.1967214,1.313534,1.3309633,1.6055125,1.7041533,1.7525496,1.892665,1.4353424,1.1391983,0.9528608,1.5649285,2.2407835,2.4266794,2.2324886,2.2726955,2.336521,0.9344132,1.1403316,1.022796,1.1751786,0.93385756,1.0420505,0.975496,1.1217477,1.0320606,1.085144,1.0484724,1.1999257,2.5153515,2.4865375,2.1606421,2.7918618,2.1644957,1.4283947,0.97178966,1.1202881,1.1435666,1.1852124,1.0680788,1.2436779,1.1179101,1.1634139,1.0158669,1.1480898,1.06939,1.2716404,0.9486202,1.3281612,1.0094998,1.371442,1.023589,2.5090861,1.4273348,0.5765351,2.235143,1.9154339,1.5333364,1.0225393,1.5315355,0.067567445,0.07574384,0.08788255,0.084532514,0.08333466,0.0769182,0.076698124,0.07126891,0.072897166,0.06787153,0.06984529,0.0],[0.03261096,0.03413203,0.037296113,0.035502605,0.041551046,0.0399327,0.04698637,0.048457228,0.057156466,0.06262461,0.074434415,0.084088475,0.09005275,1.6535001,1.4870902,1.1119764,2.0882907,1.966344,0.6221975,1.4471164,1.831896,1.1109399,1.3214185,1.0765158,1.3237269,1.1737179,1.4234244,1.3108894,1.3974878,1.5063921,1.4159787,1.2885472,1.3913983,1.1600404,1.361297,1.4591173,1.3876313,0.9754692,1.162889,0.9114715,1.5237308,2.213208,2.242261,2.1016116,2.3812377,1.9211184,1.0523442,1.0695424,0.99298483,1.1079679,1.5566027,1.4959958,0.98731124,1.0536585,1.1022568,1.3998392,2.3537986,2.6246877,2.1888268,2.2763712,1.8650047,1.1393821,1.0708318,0.98826855,1.1633263,1.1918554,1.5648458,1.560622,1.2156948,1.3040822,1.2694497,1.1772836,1.1919962,1.0662705,1.1905187,1.17935,1.2230406,1.3529053,1.4194598,1.0887759,2.0646744,1.8608128,0.6802547,2.077249,2.0223043,1.5447475,1.044721,1.4049977,0.19351448,0.029637761,0.031481847,0.033050414,0.03613808,0.033140704,0.03564681,0.03217903,0.03522599,0.03181141,0.03440373,0.0],[0.013186181,0.009468426,0.014032987,0.016335772,0.019137306,0.025939679,0.029943546,0.040697966,0.05006348,0.07038643,0.10145679,0.18191376,0.5891697,2.1553633,1.1901833,1.3498882,2.1887608,1.7167453,0.605846,2.7064965,1.414799,1.4394482,1.0011126,1.2138202,1.1359415,1.5591774,2.0178678,1.9123703,1.3574215,1.4035815,1.1895413,1.2814014,1.1886235,1.4787332,1.2244128,1.2896415,0.9807852,1.3004979,1.1060815,1.1266515,0.9129813,1.7161615,2.1795053,2.1623254,2.094056,2.335367,1.650964,1.7952543,1.8774388,1.469059,1.9426128,1.7958758,1.568554,1.7874224,1.7514856,1.8899343,2.3297205,1.8876476,2.1060698,1.7314996,1.0697156,1.0241331,1.0972143,1.0429369,1.1979374,1.2387191,1.2136565,1.347745,1.4234985,1.1850759,1.340477,1.2117473,1.3218726,1.2287669,1.193582,1.3564657,1.2832825,1.3901142,1.7139457,1.4033576,2.2244527,1.6952413,0.5864616,1.9731102,2.1324959,1.6032485,1.2519028,1.56949,0.084028125,0.04389832,0.047934707,0.0408288,0.037350606,0.02940804,0.027695313,0.020706167,0.020482803,0.0153205795,0.013677162,0.0],[0.032926425,0.030905731,0.03184275,0.037444122,0.035541747,0.043528397,0.044423904,0.052955348,0.057804883,0.0720458,0.09108693,0.14181532,0.4104145,1.7610953,1.5363879,1.2375841,2.2577264,1.6275038,0.9137398,2.8202171,0.9963525,1.3965179,1.2077845,1.7991389,1.7178924,2.45509,1.9690472,1.7766445,1.7648603,1.5005885,1.5042969,1.8252509,1.4807554,1.2991607,1.3269506,1.2551609,1.3325757,1.3000414,1.2540048,1.0096955,1.0857931,1.0932585,1.7228856,1.8560762,1.5419033,2.0674853,1.7720473,1.6728252,2.1838691,2.36387,2.2952,2.3059883,2.2615044,1.6258286,1.2808545,1.6781857,1.9248223,2.02164,1.7034309,1.0628501,1.0732343,1.0546242,1.0435283,1.2305175,1.137197,1.1357055,1.4128281,1.4338359,1.562876,1.4023446,1.31933,1.360454,1.5418506,1.1870501,1.3947189,1.2775601,1.318031,1.3944005,1.2651544,1.4128124,2.828672,1.9046954,0.1727061,1.9030137,2.14556,1.7671444,0.8683084,1.3261434,0.33750355,0.10171432,0.05880815,0.04450515,0.03505633,0.033365116,0.02802534,0.030618181,0.025295675,0.030144613,0.026087558,0.0],[0.010646974,0.006829629,0.0065504205,0.008930581,0.0065210727,0.009853225,0.008177705,0.0117074605,0.011097237,0.016752167,0.023403384,0.052212995,0.26567718,1.9354242,1.4034687,1.1389242,2.296238,1.6770716,1.4304581,2.614747,1.1694603,1.538709,1.329125,2.0592828,1.8445288,2.0611644,1.8423027,1.1903623,1.2518369,1.2498466,1.3585765,2.031343,1.8557202,1.556511,1.4314039,1.7380902,1.9624826,1.3257884,1.1558579,1.024997,1.0778315,1.0402396,1.2430538,1.3982677,1.4358891,1.5887338,2.2396605,1.5233674,2.212631,2.89069,2.5766208,2.9195752,2.1813204,1.45346,1.6375226,1.5432937,1.7912958,1.6599183,1.1647251,1.0155776,1.0775328,0.9925298,1.2643229,1.2840718,1.729899,1.2676575,0.8739489,1.214738,1.2888637,1.3611429,1.37105,1.1316916,1.1486287,1.319357,1.2935011,1.1562444,1.4117932,1.1929711,1.4139994,1.7944734,2.3171058,1.8284457,0.089530125,1.9819293,2.0504825,1.8511877,0.746456,1.9231364,0.57209677,0.15802777,0.076825805,0.047548678,0.029907955,0.023808215,0.015141221,0.015538309,0.00884694,0.011904475,0.006441992,0.0],[0.026431737,0.025155421,0.022354454,0.026429757,0.022306887,0.027354127,0.025105897,0.029884672,0.030511249,0.038587913,0.049894903,0.08942594,0.34673557,1.9873234,1.4613684,1.211066,2.1941736,1.8178219,1.1189432,1.9343919,1.6893358,1.5625496,1.4822112,1.3120009,1.32965,1.3862827,2.0061965,1.7334436,1.6761829,2.0213451,1.609916,1.4782846,1.5643364,1.6423538,1.9398785,1.8256494,1.2714685,1.2784158,0.96668684,1.1081117,0.99463266,1.0913577,1.0582739,1.3338082,1.3405008,1.5903883,1.6318207,1.5867358,1.5625057,2.5301073,2.951622,2.7580678,1.8245747,1.3985949,1.4310142,1.4646322,1.4181478,1.1484567,1.1362046,1.0150977,1.085179,1.0294776,1.1001613,1.3207057,2.078407,0.981361,0.70907575,1.8089614,1.6532364,1.7186284,1.799631,1.765705,1.8104498,1.2785535,1.4433415,1.6651528,1.7506697,1.7999825,1.2930119,1.4121796,1.8199974,1.7366699,0.07460395,1.8794628,2.1333334,1.8399329,0.8524331,1.6805859,0.5552349,0.1795183,0.10269163,0.073495656,0.055022117,0.047702946,0.038084157,0.037003674,0.029668003,0.031042801,0.025802972,0.0],[0.019263733,0.017352367,0.024165178,0.022858001,0.031125838,0.030950028,0.039394006,0.042729154,0.05276556,0.060644735,0.0747186,0.08865714,0.09097671,1.6534206,1.4163597,1.251803,2.1655176,1.9321333,0.84942436,1.4613782,2.1890717,1.347341,1.2999405,1.1917225,1.3019311,1.0874608,1.5544058,1.4207565,1.6358618,1.5970428,1.4978106,1.2987741,1.2136543,1.460755,1.3956681,1.6770935,1.389832,0.98776346,1.1035429,1.0089953,1.0868682,1.0167395,1.1619787,1.0827446,1.2412326,1.4138515,1.483693,1.5986494,1.3315928,2.2119632,2.8205843,2.3441882,1.9395125,1.4702358,1.3032691,1.233583,1.3909398,1.0634831,1.0319874,1.0359063,1.0659475,1.0142254,1.0886787,1.1431581,1.4331875,1.6562507,1.8792906,1.9956244,1.9763664,1.8972564,1.9440999,1.8231509,1.4749576,1.9496238,1.3589635,1.7103711,1.8852217,2.113112,1.1428248,1.4399097,1.268984,1.8241651,0.19837098,1.8592815,2.1122098,1.8958005,0.73137856,1.9021949,0.68013686,0.21299386,0.11441032,0.074843064,0.05056111,0.039509114,0.027188372,0.024518125,0.016507939,0.018168746,0.013790301,0.0],[0.0021473994,0.004997782,0.011666231,0.012134534,0.02106069,0.021805443,0.030525878,0.03386313,0.043276466,0.049052548,0.058184296,0.059255652,0.11170275,1.8110677,1.4396672,1.208208,1.9575213,2.1579103,0.51551855,1.1311018,2.5200632,1.2332555,2.0956128,0.99782723,1.2952458,1.0273129,1.4997795,1.5553803,1.8937933,1.7665919,1.2745486,1.2702765,1.4070983,1.269126,1.4476824,1.8457823,1.1805223,1.0401303,1.0774657,1.0443475,1.0516492,1.0470462,1.0704392,1.0995256,1.0994847,1.1495564,1.305746,1.5337478,1.3625278,1.8821876,2.4651752,2.0646567,1.6617411,1.368854,1.1973594,1.2447352,1.1608113,1.0044478,1.0997579,1.030424,1.0649626,1.0712777,1.0423782,1.0457232,1.3228465,1.5729866,1.9899769,1.7769347,1.5625263,1.2982407,1.2939203,1.7890271,1.484367,1.5484241,1.4851426,1.3334959,1.6155154,1.6657286,1.2089884,1.3983696,1.1359259,1.4245646,0.37400347,1.7974627,2.2110543,1.8118454,0.9450203,2.1216466,0.66666687,0.2101326,0.11688792,0.07956616,0.056002054,0.044324093,0.03154596,0.026597518,0.016588917,0.014363093,0.0069428324,0.0034737876],[0.016855083,0.020404857,0.02660203,0.026573682,0.03490199,0.035579685,0.04349493,0.046171416,0.05467153,0.05926191,0.066392586,0.061932344,0.069547944,1.6155876,1.3075017,1.4787908,1.9357191,2.2386835,0.5492822,0.9798677,3.272217,1.2803676,1.7060592,1.2036068,1.3940538,1.1317165,1.4977165,1.5752676,1.6916455,1.2460939,1.304235,1.1895491,1.2213758,1.4325813,1.6866484,1.0775834,1.1235062,1.0469121,1.1301024,1.0071173,1.0870279,1.0208756,1.0649166,1.082614,1.1634741,1.0909802,1.3234295,1.6360177,1.3251309,1.4562932,2.2514877,2.2567158,1.5829797,1.2773699,1.3424326,1.0244138,1.0928596,1.0324875,1.048224,1.0439512,1.0918264,1.039485,1.1546113,1.1839324,1.3835552,1.2313308,1.6798718,2.156646,1.398918,1.4411685,1.4010795,1.3938402,1.4838575,1.4314494,1.3906133,1.4687444,1.524226,1.5129597,1.1115732,1.4374303,1.0025594,1.1358043,0.66867733,1.8970481,2.1401563,1.7933476,0.86296624,2.1820233,0.63780946,0.18047069,0.089415155,0.05421237,0.032353137,0.022437865,0.010838827,0.0078057167,0.0033449968,0.005717717,0.011009368,0.0],[0.027724741,0.02941275,0.034204844,0.03214857,0.03915925,0.03745451,0.044081375,0.044828963,0.05180963,0.05483601,0.061166827,0.05942442,0.09269943,1.6810613,1.7412302,1.5170288,1.9314035,2.2092505,0.8431298,0.7994071,2.657216,1.2992458,1.3043965,1.1001048,1.8301662,1.2983427,1.6701506,1.8277931,1.8075473,1.4811987,1.5600328,1.3448787,1.4048933,1.5947295,1.3491201,1.3543869,1.256032,1.0891757,1.1015018,1.032884,1.0647068,1.0309873,1.0743463,1.0616704,1.0373822,1.193118,1.4275191,1.5067877,1.3802336,1.3847536,1.9411572,1.8717825,1.5656831,1.1258998,1.3098563,1.192857,1.0870157,1.0193772,1.0909271,1.0352447,1.0844731,1.0774714,1.0943805,1.1620921,1.4018972,1.6901368,1.3724779,1.5821589,1.8019546,1.5090224,1.6827817,1.2658693,1.5212934,1.5622054,1.3900712,1.9316884,2.2765112,2.0397146,1.8919058,1.1819957,1.9601005,1.553177,0.60300076,2.1762164,1.9787706,1.913646,0.92288774,2.2248683,0.55967075,0.12584423,0.044011444,0.015217863,0.0016168139,0.0077669993,0.015688157,0.016770452,0.022735916,0.02173629,0.026069049,0.0],[0.006629069,0.0103082415,0.008121375,0.0077569704,0.0076125734,0.0060556447,0.0059163813,0.0042469366,0.005839986,0.0057269144,0.012444089,0.022907723,0.08745623,1.4045445,1.8660839,1.0591991,2.1066363,1.958645,1.5787245,0.7546913,1.397503,2.7264118,1.2650331,1.2881848,1.3624952,1.6396015,1.9928297,2.0545363,1.8912187,1.99951,1.5124489,2.2157786,1.7358301,1.1660285,1.2114663,1.3435413,1.2034289,1.1782953,1.0782416,1.0650219,1.031999,1.0677782,1.0290195,1.0295472,1.1442684,1.2345334,1.3627156,1.5589684,1.6072779,1.5270607,2.0699277,2.0071862,1.1107574,1.3159281,1.2379248,1.0873682,1.1433414,1.0835264,1.0058368,1.0863612,1.0519292,1.0981169,1.1232114,1.085581,1.2991526,1.3232003,1.388107,1.3228416,1.7232035,1.6187266,1.3243715,1.7130153,1.8692535,1.4114424,1.621569,1.6851283,1.9076409,1.779502,2.1478767,2.3391006,2.5676055,0.5711903,0.7628205,2.1176748,2.0514417,1.7949737,1.1458554,2.0993145,0.34753674,0.04891734,0.01159371,0.013661841,0.017282419,0.015199572,0.017601024,0.01350493,0.016470857,0.010363852,0.013958431,0.0],[0.02508071,0.0266043,0.027881434,0.025539335,0.030035486,0.027905175,0.032982457,0.033017833,0.039853476,0.044532422,0.056531187,0.072680034,0.08389293,1.2301406,2.0868409,1.0728562,1.6659281,2.1209161,1.8814777,0.21616653,1.1451695,2.8340883,1.7154877,1.2931997,1.179844,1.4822043,1.8883327,1.3978252,1.9501836,1.7691413,1.6582793,1.5054253,1.2650062,1.2217319,1.2642331,1.4466381,1.2341872,1.1145328,1.0897439,1.0835294,1.0344867,1.0581992,1.0464174,1.1009141,1.057697,1.4501984,1.4591246,1.2637719,1.4633245,1.2517141,1.7004746,1.4773616,1.4392012,1.706614,1.3426324,1.2104013,1.0859724,1.0315931,1.0814247,1.0261868,1.0864291,1.130835,1.0681567,1.1573765,1.2583376,1.3549074,1.9669079,1.5724403,1.8700258,1.8032578,1.52281,1.2880949,1.4386529,1.4041854,1.159531,1.2576362,1.1653811,1.4060402,1.4801514,2.4380677,2.0046597,0.15701611,1.6315932,1.9870821,2.1917415,1.5075182,1.5948786,1.2822543,0.1017625,0.09419513,0.07331732,0.05762526,0.049946506,0.040768817,0.039500233,0.032744173,0.033668566,0.027521035,0.03021677,0.0],[0.042209513,0.043973316,0.04690686,0.044621054,0.05116875,0.050441273,0.0578705,0.06067827,0.07203337,0.08356366,0.107869916,0.15251143,0.2898228,0.8094397,2.467442,1.3412417,1.4746721,2.0794222,1.9270387,0.89423746,0.40925807,2.0010643,2.6356857,1.2193282,1.4950339,1.2499312,1.4904854,1.9474638,1.9028236,1.4138385,1.4688338,1.4674206,1.4410976,1.161465,1.2387772,1.3198069,1.2460665,1.0971655,1.1429918,1.1011043,1.0352069,1.0664587,1.0203496,1.1053673,1.1412386,1.4182454,2.0775607,1.7087979,2.0837884,1.6977272,1.3985504,1.153235,1.596522,2.1626227,1.4780885,1.1580572,1.1680906,1.0211139,1.0669292,1.0196911,1.1381128,1.072954,1.2464114,1.2241198,1.9147457,1.6740893,1.4206085,1.5409095,1.636272,2.2800295,1.9065976,1.7772152,1.0713447,1.3733964,1.2733142,1.2119739,1.4646218,1.3808649,1.4355686,2.6054857,1.9234767,0.6599962,1.8494787,2.0264797,2.1554759,1.4096072,1.8643724,0.85926557,0.29378825,0.16156915,0.11430803,0.08784578,0.07473958,0.06244673,0.059544094,0.050893992,0.05105182,0.045180406,0.047367148,0.0],[0.02910707,0.033308584,0.035383325,0.03563102,0.04138517,0.042393465,0.04965339,0.053048942,0.0638159,0.07365374,0.09351679,0.12522978,0.20080283,0.91916347,2.2260976,1.5046189,1.3586277,2.130976,1.959159,1.4986703,0.377841,1.9505074,2.8104496,1.1504996,1.4327914,1.0248517,1.3654621,1.3614632,1.3535378,1.0611377,1.0807316,1.4824109,2.6540787,2.070458,1.559715,1.3019454,1.1440425,1.0417486,1.1559478,1.0788633,1.1074172,1.0106,1.1090541,1.0965579,1.2221949,1.3714287,2.167154,2.1560724,2.3520994,2.3600967,1.9158999,1.7854894,2.133341,1.9316262,1.3266041,1.2476513,1.102003,1.03787,1.0646858,1.0661839,1.1407728,1.1099892,1.1357197,1.2353909,1.696144,1.9909925,1.7368209,1.7911378,1.8564745,1.8032222,1.4174607,1.7167102,1.3970807,1.6315205,1.6561104,1.7220739,1.5613449,1.4705281,1.335514,2.3290353,1.6208682,0.33445343,2.121008,1.8865591,2.0741098,1.4797527,2.094035,0.902849,0.20586859,0.1126558,0.07753284,0.05861725,0.04954549,0.041101318,0.03969689,0.03301807,0.03479506,0.029415134,0.033871874,0.0],[0.038883302,0.03517621,0.031039804,0.03274661,0.026877258,0.02873223,0.023974411,0.025717573,0.02170393,0.02208291,0.018303009,0.0149434535,0.028785154,0.15289775,1.7429788,1.7146167,1.2027187,2.0453126,2.0246074,1.8808557,0.15447281,1.373661,2.884616,1.7145339,1.4197129,1.2524458,1.0787287,0.99006987,1.1124406,1.0719142,1.3722196,1.6455326,2.511354,2.1887739,1.1757622,1.3820375,1.1502136,1.1755906,1.0824419,1.1790619,1.0510936,1.0863253,1.0064744,1.2274925,1.1498275,1.5100411,2.1821885,2.2039313,2.842014,2.360766,1.9374113,2.5900352,2.346551,2.3611434,1.4477301,1.2515103,1.1086564,1.1149328,1.0030935,1.1107541,1.0990531,1.1472957,1.1343217,1.3254005,1.1822515,1.3226686,1.7806573,1.644928,1.0229905,1.3242136,1.1336465,2.3431182,1.7323327,1.1232171,1.473264,1.7331084,0.9882877,1.5411719,1.0512513,2.465775,1.5767233,0.37469506,2.3092797,1.7174127,1.9699053,1.3962376,2.0259454,0.18651594,0.07779871,0.08723781,0.081101194,0.07594263,0.06761467,0.064064324,0.0557171,0.055472948,0.047005586,0.04732207,0.040648144,0.0],[0.042523883,0.041155294,0.037932925,0.041744657,0.0377041,0.042255796,0.040401485,0.046452038,0.048029628,0.05716214,0.06794729,0.09213801,0.14820072,0.21101381,1.1658092,2.3572257,1.579267,1.8565724,1.9531318,2.1717858,0.54140425,0.65401244,2.4046967,1.520464,1.285604,1.0765784,1.1410506,1.0584589,1.1004859,1.112512,1.0747688,2.1193404,2.6066444,1.9107492,1.548155,1.3275294,1.3264167,1.12069,1.1269646,1.151162,1.0748134,1.0482275,1.0663704,1.2571893,1.2202634,1.5039122,2.3857765,2.8076255,2.826257,2.218779,2.0884652,2.1645515,2.4381554,2.3274322,1.3799218,1.2939999,1.1297691,1.0788608,1.1157241,1.1099999,1.140906,1.1505902,1.0966735,1.2268738,1.4038639,1.3895254,1.1660084,1.3761228,1.1555626,1.2112131,1.2741443,1.4834023,1.6967988,1.7187134,1.2317685,1.103297,1.0387458,1.6439979,1.6928027,2.8097281,0.98052484,1.0370013,2.2243822,1.9989201,1.9250307,1.3392601,1.4947635,0.1849296,0.11074314,0.094832145,0.08137648,0.073864296,0.06488142,0.06151627,0.05405196,0.054158483,0.047169067,0.04829221,0.042972963,0.0],[0.0123728365,0.009358211,0.011249956,0.011822154,0.011746686,0.013715068,0.013210085,0.016338766,0.016912455,0.02170217,0.025670966,0.03568146,0.046985243,0.17607532,0.8950789,2.1598268,1.457623,1.6106802,1.9359621,2.201299,1.3857051,0.3544002,1.8026059,1.6155448,1.1437318,1.2070647,0.9540759,1.2251569,1.0412468,1.2470496,1.0663587,1.416581,1.9131268,1.1120759,1.5079875,1.2629926,1.3087645,1.1582147,1.1196486,1.1121119,1.1324869,1.0420556,1.1140442,1.1913553,1.2882162,1.3403395,2.379498,3.0314147,2.8962026,3.046167,2.2141144,2.212433,3.1743784,2.4297185,1.3260584,1.2829679,1.207279,1.0871153,1.0159315,1.1402062,1.0975518,1.1483246,1.0606211,1.2522378,1.2163466,1.3402169,1.4046632,1.4404529,1.3142258,1.0092874,1.0558565,1.0473474,1.1399505,1.0375546,1.1692121,1.1454701,1.3542951,1.665428,2.3743873,2.1270106,0.2583564,2.0256276,1.9526658,2.179055,1.3863949,2.100218,1.1302385,0.25154376,0.10837747,0.06529728,0.042248588,0.031148538,0.02130793,0.018348634,0.012087909,0.014073682,0.008353157,0.011999109,0.007534252,0.0],[0.0,0.0071959505,0.01048914,0.009093146,0.010217466,0.011460089,0.011398767,0.013706485,0.013681071,0.016087348,0.016525812,0.019882824,0.028411288,0.039889753,0.11825855,1.6307293,2.2051063,1.4242445,1.8328207,1.9702328,1.9879237,0.11493739,1.9992203,1.5432682,1.1792752,1.316745,1.4945316,1.3918854,1.4771392,1.3732591,1.0960045,1.0976549,1.0918413,1.3772686,1.2503667,1.354175,1.2427433,1.1218119,1.1087253,1.1142973,1.1064699,0.9955183,1.237082,1.2454914,1.361864,1.183685,2.1249313,3.1584783,2.840213,2.9297523,2.2497191,2.3822803,3.112182,2.232788,1.1502829,1.4134916,1.1706434,1.1475732,1.0399237,1.1591812,1.0865178,1.1476024,1.1007141,1.2927954,1.4805483,1.3606728,1.1124234,1.5715761,1.3990449,1.0398115,1.1899779,1.0765879,1.2119565,1.0507768,1.2670583,0.9706384,1.2567474,1.4241204,2.6143463,2.0595474,0.53440267,2.143131,1.9436324,2.1474648,1.1491524,2.1288798,0.66430575,0.049134485,0.033232618,0.026158262,0.025177382,0.022311911,0.021892643,0.018425133,0.01820506,0.014604843,0.014690134,0.012423337,0.0,0.0],[0.0,0.02600042,0.02461208,0.01835412,0.019747363,0.01411773,0.015239783,0.01175245,0.01278302,0.011764638,0.014674921,0.01897198,0.038627055,0.020013541,0.11516608,1.0981469,2.2521021,1.339251,1.9027189,1.8838481,2.3206353,0.26546988,2.2485251,2.407656,1.2214044,1.5224155,1.6055084,1.9087964,1.7433474,1.3752953,1.1717914,1.160095,1.2678939,1.2794697,1.1632599,1.3007278,1.3135605,1.2113323,1.0685188,1.1393944,1.1293002,1.0531489,1.1905944,1.2389884,1.3468966,1.3103799,1.9619303,2.8863869,2.991097,2.787729,2.406129,2.6230114,3.175804,2.3631418,1.1636968,1.3871859,1.215106,1.1573056,1.0433859,1.1390786,1.1022464,1.1113669,1.2118605,1.4310246,1.8814576,1.4238667,1.259721,1.3928568,1.3850182,0.9520188,1.2267915,1.1727501,1.5403967,1.4936957,1.5280006,1.0197313,1.429583,0.9944084,2.842536,1.600337,0.744378,2.549041,1.8367007,1.9423565,1.2245947,1.9426073,0.119696766,0.10858814,0.11119663,0.0965547,0.08583729,0.07482113,0.06878481,0.05931765,0.056196712,0.046735935,0.046774726,0.037757732,0.0,0.0],[0.0,0.0044603813,0.0075654485,0.016079525,0.016465757,0.025555361,0.027750168,0.03714501,0.04181981,0.05230033,0.06136936,0.076145805,0.10030777,0.0863273,0.12043431,0.12945169,1.9686519,1.6319877,1.4607719,1.9673883,2.400178,0.5762428,1.948712,3.4846861,1.6768485,1.6575264,1.8476471,1.8875148,1.1443908,1.2080832,0.92259085,1.1057473,1.001849,1.1558974,1.2535235,1.3852872,1.179966,1.2767285,1.0106701,1.1403029,1.0693157,1.061877,1.2262042,1.3431154,1.3267666,1.3641776,1.6596665,2.5639307,2.874668,2.7172976,2.366396,2.733107,2.8140266,1.810405,1.2469698,1.4231278,1.2798715,1.0845586,1.1061502,1.1273338,1.1403445,1.0975391,1.2699119,1.48528,1.981722,1.6185915,1.1221707,1.062553,1.0987895,1.21408,1.3141936,1.2047087,1.4267707,1.8812889,1.9349754,1.2361224,1.3093143,1.1709713,2.6335535,2.1449983,1.1377872,2.2824776,1.9501092,1.7424538,1.947459,1.6573578,0.1108435,0.12721133,0.09272728,0.07470882,0.062523395,0.051048595,0.044544425,0.034899138,0.031516563,0.022081759,0.02134348,0.012411448,0.0,0.0],[0.0,0.015306927,0.016718434,0.02292193,0.022160864,0.02911406,0.029682105,0.036735043,0.039317064,0.046972726,0.052576207,0.061187122,0.064372495,0.11928307,0.14748664,0.23727831,1.7491959,2.0413835,1.1653882,1.8548409,2.2819688,1.0414385,2.4555957,2.2102234,1.267588,1.569763,1.432164,1.4060307,1.1221063,1.130937,1.0412265,1.1500002,1.0697514,1.1056956,1.0271263,1.1902155,1.6751034,1.3206171,1.020715,1.1769903,1.008904,1.1430742,1.1696804,1.3931801,1.2247707,1.5622938,1.9305291,2.51122,2.5040038,2.2411542,2.0911744,2.3473103,2.5400262,1.5378587,1.3448884,1.282266,1.3403946,1.2001852,1.0184003,1.083834,1.1052557,1.0823345,1.206266,1.6281763,1.6259284,1.3399447,1.1452568,1.0940429,1.1008564,1.1190193,1.2593328,1.3452326,1.4917806,1.3472556,2.100078,1.6934757,1.681046,1.6393743,2.2232945,2.0402114,1.9619846,2.1346102,2.0655494,1.2563715,1.9383004,0.6082422,0.18527037,0.052942984,0.039943684,0.026670717,0.02004665,0.013637251,0.011377149,0.005953656,0.005791519,0.00444588,0.0027311759,0.008228743,0.0,0.0],[0.0,0.017167712,0.014201517,0.015034638,0.010883857,0.012585448,0.009244354,0.010322355,0.0086151445,0.00985803,0.010045605,0.013041356,0.02090767,0.015793262,0.018523037,0.03193529,0.6499552,1.984709,1.6247399,1.7625234,2.0971963,2.0825908,1.331473,1.2360293,1.3641592,1.0777047,1.0627445,1.1451681,1.0610288,1.075113,1.0625083,1.0261081,1.0297949,1.0816063,1.204976,1.1305486,1.243734,1.1605588,1.1106733,1.0536727,1.0471151,1.0311179,1.2783624,1.441667,1.2693106,1.5121737,1.8527634,2.0247118,2.1348338,1.8755053,1.9335948,2.0968316,2.0722096,1.3601635,1.3351191,1.396057,1.3264393,1.267974,1.0809523,1.0754323,1.0581309,1.0885664,1.1360875,1.4579262,1.9599574,1.5614388,1.0296689,1.1118308,0.9758153,1.1773336,1.2642007,1.3559026,1.3003815,1.370269,1.5711073,2.1574705,1.6954526,3.116124,1.9693682,0.76417255,2.3685234,1.8787396,2.0670793,1.2019901,1.8602098,0.16431108,0.18197699,0.09314467,0.07918613,0.06547198,0.055127133,0.048989635,0.04160822,0.039301686,0.032185122,0.03246987,0.025130231,0.027115162,0.0,0.0],[0.0,0.0,0.004081443,0.0059504863,0.007816146,0.0073109763,0.012440553,0.012751633,0.018295545,0.020386556,0.02609779,0.031567045,0.045414425,0.026597515,0.036715575,0.058224283,0.095534265,2.1548467,1.6940386,1.862082,1.9861987,2.2527,0.25105748,2.5507913,1.5918524,1.2619662,1.331753,1.1579434,1.2456973,1.0792933,1.3454438,1.197668,1.1870779,1.071616,1.0202837,1.12436,1.2146654,1.1632552,1.1166127,1.0173186,1.0879182,1.0180241,1.2502409,1.2948471,1.3384355,1.2793839,1.6191877,1.8683635,1.9066458,1.9511343,1.7920692,1.8982816,1.7881801,1.4343591,1.1547011,1.3028691,1.3200573,1.1904143,1.0035261,1.072206,1.0457836,1.0550787,1.157437,1.2658902,1.1782085,1.6210362,1.0213542,1.1922861,0.9640123,1.0976801,0.95088977,1.1950268,1.0495998,1.4066006,1.1351833,1.4900885,1.7048765,3.2384539,2.2832549,0.6805379,2.340309,2.0128028,1.695559,1.9286597,1.7597096,0.22387284,0.08670914,0.09113533,0.069023624,0.058188245,0.04832503,0.04221497,0.034826234,0.031887483,0.024929158,0.024022043,0.017358873,0.0,0.0,0.0],[0.0,0.0,0.00673903,0.006601475,0.011544605,0.010090829,0.015306549,0.015143021,0.0196349,0.020841097,0.024615362,0.026086632,0.023682268,0.058355812,0.06125332,0.061607752,0.0646736,1.5035484,2.014439,1.7636847,1.8977159,2.3115292,0.69528127,2.0275407,2.2819517,1.5108963,1.1872823,1.2011281,1.2951009,1.5055641,1.4330763,1.2488694,1.1526223,1.1321795,1.2780596,1.7225549,1.4255629,1.2202642,1.0978441,1.0182475,1.070403,1.0083332,1.1781611,1.3433616,1.2514828,1.3072107,1.7433352,1.8698459,1.8813846,1.6562912,1.7528247,1.7071549,2.1250067,1.5620878,1.089007,1.3868109,1.2752064,1.1655704,1.0559636,1.0638305,1.0227375,1.0856203,1.110841,1.150494,1.3340698,1.3786229,1.0333719,1.1033701,1.0074936,1.1415167,1.1161152,1.1615912,1.2570448,1.9184382,1.3249999,1.2910923,1.0803901,3.1028762,1.9887491,1.5124798,2.1595829,2.0335042,1.5991049,1.8910383,0.5192221,0.07855828,0.09969715,0.047530692,0.039878614,0.031990044,0.025348434,0.021838102,0.01659571,0.015531412,0.009710915,0.010729316,0.0042487574,0.0,0.0,0.0],[0.0,0.0,0.039386824,0.035763327,0.04047946,0.03583552,0.040243164,0.037939165,0.041125596,0.040887106,0.043927703,0.046565264,0.056319796,0.03848334,0.046392925,0.066673025,0.10012969,0.8360637,2.0311353,1.6745495,1.8452882,2.1527412,1.4372256,0.49118587,2.8948762,2.5031223,1.8630236,1.851199,1.6686769,1.842528,1.3763057,1.218813,1.1112964,1.2245528,1.6034784,1.8060497,1.7008709,1.3809993,1.1737863,1.0360266,1.0765687,1.0383638,1.177889,1.1561847,1.3072623,1.8125882,1.9501851,1.9074316,1.5735863,1.1605511,1.2238886,1.065667,1.6072124,1.8029202,1.3893561,1.0167651,1.3171734,1.082829,1.0989164,1.0039446,1.1189717,1.0537938,1.3714097,1.370676,1.666143,1.5083948,1.1281173,1.0908992,1.0480528,1.0266148,1.3435458,1.2445557,1.4942861,1.4707216,1.8705264,1.7252948,1.9889115,2.4168754,0.24552485,2.1664083,1.9158161,2.2119572,1.8015919,2.045182,0.25975853,0.05978336,0.094143376,0.05469519,0.0558659,0.051450867,0.049535748,0.046264894,0.045952268,0.042361833,0.044076294,0.03959237,0.042621624,0.0,0.0,0.0],[0.0,0.0,0.0,0.011687091,0.014700905,0.010622921,0.01325721,0.0103261005,0.0121882185,0.010597217,0.011535203,0.009934461,0.0056993556,0.032545816,0.03251243,0.03081428,0.04595556,0.50963295,2.061911,1.6467134,1.9429959,2.0976362,2.0173078,0.2741358,2.948238,2.52313,1.7321905,1.8406126,1.519032,1.0732915,1.1262989,1.0504487,1.0912352,1.0783689,0.96533674,1.2034239,1.612548,1.5409688,1.1091634,1.0966239,1.0232332,1.0511329,1.0668697,1.5166837,1.8053099,1.8822501,1.645359,1.6203573,0.99215615,1.7033557,0.16101709,0.703664,1.1979406,1.5605577,1.6246297,1.4241283,1.2524965,0.98337364,1.1370511,0.97604877,1.1364892,1.0459689,1.3912734,1.4049915,1.3753619,0.97321033,1.1850408,1.0872878,1.2460326,0.9847581,1.268703,1.2094375,1.4363368,1.4015102,2.1022897,1.9050212,3.0713167,2.9103584,0.69884205,2.3327427,1.9768436,1.8980021,1.9546494,2.162193,0.12608956,0.078911625,0.034271576,0.04634076,0.03779083,0.033826817,0.031413708,0.027580852,0.026796449,0.022603117,0.023810659,0.018733518,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.02110332,0.023542698,0.020164844,0.02232915,0.019687919,0.021404484,0.020071283,0.021414736,0.021898225,0.029121676,0.010337616,0.012871514,0.025150463,0.046511404,0.024137797,1.3930017,2.006427,1.9977963,2.0040662,2.0982862,0.6672863,1.8956128,1.5312245,1.1905081,1.1003456,1.1161455,1.2045735,1.0730728,1.1809511,1.0165443,1.0466155,1.0678604,1.1199536,0.91307586,1.2817347,1.0867838,1.1465162,1.0000138,1.1253037,0.9976939,1.9767183,1.865368,1.6872381,1.3924892,1.2064172,1.2589796,1.6766739,0.24209374,0.31666028,1.1845263,1.0815433,1.1952858,1.6147724,1.5797474,1.0415404,1.0677738,1.0249532,1.0889845,1.1102992,1.060074,1.0176893,1.0356089,1.1368688,1.1521745,1.1757437,1.308145,1.1560382,1.1687889,1.1480625,1.3963429,1.5765866,1.9382743,2.062862,2.833394,0.9500534,1.4457994,2.0715866,2.0549998,1.7297791,1.9106181,1.5191371,0.05341718,0.054544196,0.07999976,0.04575506,0.0440799,0.03903096,0.036435734,0.032943115,0.032579012,0.029036524,0.030240662,0.02578463,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.026115373,0.02878724,0.028910426,0.032440245,0.033874895,0.038120847,0.041326664,0.048029285,0.059427645,0.04388712,0.057873026,0.0818234,0.10928064,0.0556685,1.1684302,1.9991118,1.7093782,2.0467675,2.2082784,0.705734,0.4427806,2.569528,1.1006038,1.479591,0.99044096,1.2550969,1.0355452,1.1568506,1.1144307,1.2905099,1.1124402,1.1539991,1.1432474,1.1557108,1.066898,1.1542519,0.9712528,1.1005843,1.0311694,1.61417,1.4920931,1.177665,1.079655,1.056523,1.1563816,1.2487154,0.43476415,1.0249959,1.2520877,1.2904241,1.0008049,1.0549549,1.1982534,1.1277288,1.0451881,1.0635867,1.0341022,1.1069105,1.1804658,1.196863,1.1285193,1.0490298,1.0420802,1.1509049,1.2584151,1.3239454,1.3595389,1.2445668,1.3079222,1.6326602,1.8503613,2.0823355,2.8301897,0.07419123,2.0064912,2.1249776,1.8819209,1.461623,2.137013,0.2633335,0.113990664,0.0738238,0.055352096,0.028360251,0.031801764,0.027809635,0.02629694,0.024573894,0.023827339,0.023285184,0.022175252,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.022289276,0.026996035,0.024775753,0.029100657,0.029191066,0.03268039,0.034206104,0.037473753,0.036582563,0.06357883,0.068568036,0.07418824,0.09274546,0.20551126,0.4672658,1.7705112,1.3641921,1.7484635,2.2056673,1.3259766,0.49637806,3.0139425,1.3210545,1.4644128,1.2281064,1.4139918,1.2903104,1.4791875,1.254595,1.2514185,1.2342744,1.2612609,0.97297466,1.1644614,1.0931162,1.0987295,1.0338266,1.0873454,1.0490954,1.150782,1.061655,1.0524704,1.0086095,1.1118902,1.258772,1.3780253,1.2665495,1.1932992,1.1500878,1.1765195,1.0590594,1.1072779,0.97072595,1.107389,0.99459505,1.0970027,0.9991819,1.1493622,0.979301,1.0688471,1.0565599,1.1839952,1.0987422,1.1646416,1.0529084,1.2292066,1.1639682,1.3984959,1.5010351,2.1563714,1.811602,2.679313,1.0707601,0.60987526,2.2641225,1.8790348,1.852471,1.801467,2.2052207,0.15048066,0.051858895,0.051643163,0.049998615,0.024746677,0.02863254,0.027013533,0.024908507,0.024621466,0.022795394,0.023199804,0.02120559,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.03840914,0.043590367,0.04265698,0.04655071,0.047671206,0.05115153,0.053168584,0.053835496,0.07333983,0.07766595,0.07931087,0.08328845,0.14489183,0.0875278,1.6235123,1.6130812,1.5467526,2.2763164,1.9447355,0.29486975,2.6846695,2.6245432,1.2974921,1.272226,1.1765988,1.3857238,1.6221162,1.6205317,1.3615336,1.4168154,1.2486314,1.3375427,1.0805094,1.1186976,1.0750995,1.0313079,1.0403612,1.0489501,1.0567877,1.0740279,1.1671536,1.0784203,1.1852199,1.215812,1.4544746,1.2343096,1.1795871,1.0545549,1.2007997,1.0218982,1.0563711,1.0649588,1.0915107,1.0755503,1.0647391,1.0229505,1.0916468,1.017843,1.1349707,1.1320834,1.2366018,1.223635,1.2926915,1.1290777,1.199641,1.1643692,1.2841676,1.179927,1.4628407,1.3307815,2.641913,0.27732104,1.032153,2.260362,1.7978696,1.6983047,1.8852035,2.227819,0.19585778,0.09488682,0.06660422,0.04816996,0.029394958,0.032508977,0.03005296,0.030005522,0.028893374,0.029770548,0.028893257,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.017386299,0.021420868,0.02125984,0.02476973,0.02636843,0.030790286,0.035015363,0.045940675,0.030562608,0.043371256,0.06313081,0.08570377,0.08140854,0.17095748,0.88501215,2.0679305,1.5336053,1.9484586,2.0519753,1.3240144,1.0000116,2.2283874,1.5424405,1.7116679,1.3713369,1.9066821,1.1994951,1.4163675,1.615511,1.7363883,1.3768321,1.1257356,1.1046476,1.0655628,1.0378809,1.0690672,1.0624021,1.044596,1.0947202,1.1266891,1.0782101,1.0751624,1.2641325,1.4342774,1.760694,1.7652882,1.1489657,1.2890104,1.28349,1.2721999,1.0388782,1.0441437,1.0087378,1.0569161,1.0298008,1.075972,1.0360509,1.0755789,1.029786,1.0508336,1.3136709,1.3637111,1.2909361,1.3330575,1.2692182,1.2662477,1.2953942,1.2837211,1.1979944,1.8989093,1.530118,0.37962827,2.095848,2.0833824,1.6527183,1.8205426,2.2272475,1.591058,0.11523425,0.029077629,0.025700135,0.037235748,0.009141499,0.012722079,0.011006361,0.010448011,0.0098283235,0.010540642,0.009450507,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.02068966,0.020462895,0.023911936,0.024849769,0.028199226,0.029804321,0.029444225,0.054872908,0.059031233,0.062006216,0.077896014,0.14861391,0.22103268,0.7571023,2.4379475,1.4667034,1.7514066,2.1319437,1.8925238,0.59043646,1.7863384,2.3641324,2.0616472,1.89613,1.5033807,1.2995069,1.3926506,1.2521968,1.1997912,1.1824279,1.1919422,1.0052636,1.0862943,1.0335755,1.0560852,1.0129241,1.0726142,1.0208874,1.2687699,1.3885218,1.3476495,1.2514657,1.2042084,1.2873495,1.5162399,1.3032206,1.3921182,1.3064759,1.301985,1.0994287,1.0766019,1.0624328,1.0716308,1.0377815,1.0567111,1.0183691,1.081015,1.0644578,1.10688,1.1419035,1.2826532,1.3463104,1.3812221,1.3641951,1.6022849,1.2695645,1.4561305,1.6877258,1.7227573,0.8249597,0.8689719,2.1082487,1.8348613,1.8695945,1.9262384,1.9483458,0.45027146,0.10024792,0.02782904,0.010445625,0.02858796,0.0119916955,0.0045981533,0.002620586,0.0016198657,0.0023822063,0.0047019073,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.03911806,0.041706074,0.04188351,0.044280194,0.04493455,0.04660644,0.043227725,0.06735838,0.06609547,0.06320817,0.06599869,0.10539293,0.0906286,0.034366712,1.6057533,2.1386392,1.9367706,1.8643601,2.0553837,0.4819979,1.0719782,2.5246446,1.9734966,1.721159,1.4977577,1.6226878,1.1335958,1.2934998,1.1671758,1.1521121,0.9145813,1.1031455,0.98112357,1.0807049,1.024103,1.1104158,1.0032355,1.1097814,1.1889174,1.4667403,1.2933524,1.2614366,1.6011254,1.5165005,1.6316662,1.3458589,1.3146765,1.259475,1.2557963,1.0647739,1.0029238,1.0391095,1.0314327,1.0581707,1.0502353,1.1512828,1.0793582,0.99875814,1.0499547,1.1403649,1.1398908,1.2065572,1.201396,1.1897581,1.3744755,1.3811123,1.6758575,2.4749343,1.9939938,0.030899819,1.4043497,2.078761,1.852633,1.3752044,2.2830489,1.1375419,0.06790233,0.07349565,0.035835337,0.020199515,0.023665246,0.033186447,0.026089475,0.026422169,0.027213534,0.027768405,0.028061733,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.027372107,0.026834885,0.029539157,0.030593013,0.03387158,0.03954875,0.033363923,0.03700611,0.046598434,0.060138673,0.038879257,0.0841168,0.15458213,0.238992,1.7109826,2.2256896,1.9087031,2.2357333,0.9833999,1.1052012,2.6023479,1.6700723,1.4177301,1.6419307,1.4770561,1.2136061,1.2389947,1.142244,1.0884266,1.0988314,1.2027725,1.211315,1.1700251,0.9996785,1.056911,1.027693,1.0754076,1.2638354,1.4456799,1.8239899,1.1332659,0.44291025,1.3856096,2.417757,1.8285599,1.3406547,1.3150094,1.2712138,1.2216285,1.2319686,1.0597042,1.0787672,1.0216757,1.1302919,1.2734054,1.2914724,1.0708923,1.099283,1.1493255,1.2557863,1.1941895,1.2974203,1.1953427,1.3102958,1.2564937,2.2007852,2.2160714,0.7915261,1.07591,1.8034927,2.1614552,1.5156605,1.6250437,1.6788144,0.36136442,0.059656277,0.05592725,0.04004868,0.028547153,0.015753085,0.033549163,0.02448729,0.024695985,0.023516513,0.023323093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01825338,0.020432308,0.020744028,0.023454418,0.025645902,0.0337726,0.018198647,0.026948953,0.04007673,0.05333132,0.04280675,0.09122797,0.14361243,0.19905254,1.040428,2.2711763,1.6025602,1.5378375,1.8867542,0.96580064,2.230241,1.9269753,1.2310438,1.5155746,1.175793,1.3629827,1.2450962,1.2366124,1.0990264,1.1908246,1.2558354,1.3782235,1.1606187,1.0771836,1.0427401,1.0855179,1.0126504,1.1360396,1.2566887,1.5542616,1.4777952,1.9056258,1.8526491,2.06946,1.8123424,1.3260572,1.2675788,1.2292565,1.3638806,1.3259043,1.0353079,1.0548567,1.0088588,1.2077408,1.249272,1.544351,1.280628,0.9975601,1.2036273,1.3715832,1.3672091,1.4086708,1.6300704,1.5440534,1.1898293,2.4375544,2.3117607,0.898435,1.1908815,1.710091,2.1793492,1.4397042,2.4631236,0.95337516,0.25729162,0.08380807,0.027072292,0.029015923,0.03257049,0.037868906,0.015053,0.020412767,0.019485084,0.018982667,0.018371254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.033078827,0.037820324,0.040943835,0.046918515,0.055521756,0.04860193,0.057288315,0.07213268,0.088606425,0.077041745,0.12195234,0.15874574,0.17642957,0.21458352,1.7380139,1.8765025,1.1328315,1.7111552,1.1013112,1.4926246,2.0745003,1.7046165,1.0223873,1.421839,1.0864949,1.1891074,1.0980498,1.3389195,1.3188641,1.3623666,1.2894478,1.2450558,0.96801674,1.0806967,1.0016737,1.08711,1.0104246,1.1480746,1.1384006,1.3346785,1.4449469,1.842651,2.8690488,2.0426536,2.1265125,1.3777827,0.9925313,1.4959543,1.2562884,1.1500438,0.99737996,1.1190143,1.1500983,1.3775662,1.368122,1.7937466,1.2444932,1.1129187,1.169928,1.2776103,1.4907371,1.9215695,1.5433112,1.6113591,2.0119433,1.3337338,1.3116447,1.1600554,2.0097358,1.5791492,2.1841643,1.2670192,0.1793907,0.1464699,0.0639263,0.030489245,0.036101248,0.032484673,0.010043448,0.019850781,0.012778487,0.0120231435,0.01100327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03251239,0.032448977,0.033197682,0.029084133,0.049744636,0.04646608,0.041231573,0.04336371,0.06363821,0.04560291,0.06033929,0.09831176,0.22355404,1.2668205,2.0671763,1.9763087,1.832321,1.2409078,1.0226581,2.8101687,1.9367571,1.4994309,1.3710462,0.9441024,1.2356057,1.2858588,1.2981567,1.2027494,1.3903314,1.3036696,1.0987229,1.0461922,1.076591,1.0539503,1.1008972,1.1579921,1.179363,1.2658824,1.0750643,1.2544255,1.3780681,2.5821016,1.8441415,1.1219496,1.3943615,1.2243828,1.3996481,1.2032417,1.0855477,0.99098855,1.0970528,1.1681964,1.4280312,1.1947544,1.6520712,1.2595294,1.2430512,1.1354562,1.2200391,1.1931866,1.3193095,1.2386608,1.9146105,2.254353,1.4014683,0.5632182,1.2621682,1.8358442,1.7218307,1.7054517,0.1969366,0.06762636,0.092725255,0.04204849,0.019933734,0.032372594,0.036918722,0.02112286,0.024244126,0.022554148,0.023171645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019545255,0.01994508,0.020873548,0.023997277,0.014813904,0.017179098,0.022989767,0.019564165,0.033682305,0.036740705,0.02835933,0.047754645,0.06306448,0.22798622,1.4813048,2.025542,1.8249099,1.4003525,0.88511205,1.9326628,2.3015392,1.7153213,1.290395,1.3193138,1.3591135,1.2237867,1.336387,1.5625377,1.3207748,1.2196028,1.1280686,1.0773724,1.0468334,1.025527,1.1072781,1.1735896,1.4135957,1.2301775,1.3492837,1.3456807,1.1572351,2.7559588,1.6482065,1.7213064,1.8542641,1.3393713,1.2325453,1.1361675,1.0404541,1.0903735,1.01433,1.128251,1.4653265,1.7026998,1.3655335,1.493842,1.1362094,1.1703964,1.1526653,1.2605586,1.2990273,1.6700714,2.4198434,1.131583,1.0981905,0.6382967,1.9055384,1.8188431,2.1979196,1.1954039,0.25677404,0.11624303,0.10082098,0.064672686,0.051117264,0.045325443,0.04742177,0.053667426,0.029061206,0.033499926,0.030308267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019074442,0.019968398,0.021884853,0.028305948,0.026552038,0.02679311,0.036991924,0.019830922,0.03733235,0.049320158,0.041876923,0.028751532,0.1078459,0.6270003,1.920165,1.6256862,1.5205907,0.61442727,0.5771198,1.4542286,2.2647548,1.374688,1.2970566,1.2456504,1.3993852,1.2335275,1.532237,1.3201865,1.2203438,1.1694969,1.2884301,1.1526365,1.0987681,0.9904067,1.1591389,1.2383008,1.3813037,1.4590255,1.6924679,2.1869957,2.6195755,1.6132158,1.7673687,1.1686479,1.0464005,0.97241825,1.0575166,1.0016862,1.0716943,0.98814315,1.2619234,1.3154323,2.1652608,1.4862053,1.2660204,1.2972181,1.2220788,1.337746,1.3862476,1.3535032,2.2858205,2.254879,1.3424292,0.29456562,0.8740899,1.7026914,1.7673997,1.4175882,0.10898549,0.0646399,0.029727617,0.04337407,0.009894674,0.011271805,0.004225688,0.012432811,0.015152739,0.006851672,0.0025808788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.002561366,0.0050947526,0.011312419,0.0064995503,0.004310233,0.007228883,0.016367255,0.019445233,0.01306374,0.022532701,0.030981787,0.029356666,0.16777912,1.3921658,1.8751016,1.3505838,1.5928026,0.1795685,1.270057,2.7279398,1.9057536,1.9540436,1.5957843,1.2908471,1.4151183,1.3281341,1.2622118,1.1905528,1.1874403,1.2121084,1.2292006,1.0322995,1.081428,1.0184687,1.2630365,1.3787255,1.7961266,1.9810784,2.847865,2.9986508,1.3520875,1.2457784,1.3330994,1.229314,1.0891839,1.10328,1.031576,1.1754038,1.0936494,1.1557254,1.2180651,1.9507169,1.491301,1.210923,1.3452303,1.2754952,1.262775,1.5046699,2.0779655,2.1761827,1.8098612,0.64190465,0.35373175,1.6301839,1.4526784,2.2377365,0.6874711,0.048165634,0.057759166,0.027236687,0.04367192,0.014056281,0.002119946,0.01223774,0.018491663,0.012954385,0.010114541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.042616114,0.030508393,0.034314472,0.039259158,0.03604931,0.0462377,0.04809781,0.03712753,0.051659517,0.0682191,0.05183537,0.1196158,0.6836095,2.0329638,1.9822081,1.5958152,0.7008668,0.8661427,1.050429,1.9812098,2.0416694,1.5540292,1.6104224,1.343891,1.3019588,1.3177514,1.2567053,1.188064,1.2945383,1.2475692,1.1019261,1.0493326,1.0441508,1.0005805,1.1675459,1.2215822,1.5147069,1.7294953,2.7014363,1.4647944,1.3782257,1.1813241,1.2589539,1.0575377,1.0548801,1.1552389,1.304001,1.2106872,1.2316389,1.1713392,1.8155911,1.3648943,1.3249571,1.2592443,1.3445235,1.3456801,1.7946427,2.1916566,1.9898139,0.98696035,0.13128765,1.1250968,1.4984592,2.0191486,1.2121772,0.27727535,0.08002046,0.07054037,0.06775415,0.0649485,0.05349052,0.057016566,0.04541584,0.048305083,0.061117694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037608795,0.041961577,0.050304417,0.046806134,0.05454531,0.06320096,0.052696217,0.06737659,0.07760417,0.07045315,0.0989118,0.06725906,1.0543061,1.8387206,1.6689796,1.4786661,0.20230313,1.0036467,0.8648035,1.7708162,1.9246088,1.9414939,1.7890939,1.3869298,1.2896041,1.3600531,1.1723332,1.4021637,1.2502872,1.0582161,1.2380555,1.1736331,1.1534842,1.1673082,1.1800153,1.6550279,2.0872648,3.0020812,2.1019156,1.2410889,1.469953,1.3463773,1.2339277,1.1523223,1.3696667,1.2248474,1.2719499,1.1164677,1.1792451,1.6786482,1.8460804,1.3579344,1.3282735,1.2440232,1.3515166,1.8479724,2.3098958,1.2021275,0.19538611,0.757381,1.490847,2.1395211,1.9418573,0.8787518,0.18564124,0.09219631,0.068543136,0.06879605,0.062460095,0.053074848,0.05543059,0.047215212,0.045899056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.043274816,0.037917644,0.040001255,0.04505322,0.02926296,0.042484555,0.038135532,0.05586403,0.04516163,0.07787159,0.061779827,0.040833313,1.6888177,1.7923697,1.5145293,1.367312,0.59173733,0.67234737,0.848463,2.1622138,2.2294376,2.264088,1.4069704,1.3641053,1.3021134,1.4773971,1.4666797,1.2050004,1.1281946,1.3485366,1.3309743,1.2077105,1.2174181,1.1357735,1.5240484,2.4041188,2.844254,2.0771563,1.2937031,1.2598867,1.3113843,1.0603894,1.1474792,1.3402872,1.4955432,1.229378,1.2402508,1.1658576,1.1451601,1.7622259,2.124465,1.6250873,1.5346748,2.2010024,2.6227317,1.1989281,0.20560499,0.46826503,1.6166486,1.7164295,2.0709827,0.977936,0.058778945,0.117553,0.04950895,0.0030305549,0.009211169,0.0088946,0.020380987,0.022660766,0.024040973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0010275079,0.006808177,0.014373938,0.009575828,0.0065237116,0.0054045883,0.020078534,0.0048212023,0.02629769,0.022819418,0.06542254,0.9905104,2.1295555,1.6699622,1.2987647,1.1515815,0.56106573,0.7241057,1.4965893,2.055109,2.2605329,2.281864,1.612039,1.7495909,1.4925526,1.0691111,1.0749074,1.2628208,1.3544074,1.5980588,1.3778685,1.3370992,1.4008503,1.6310059,2.2969978,3.1776335,1.8962306,1.3076936,1.4579059,1.3336047,1.2060992,1.1182927,1.4383849,1.3910743,1.373933,1.310192,1.2977085,1.3871514,1.3366258,2.0820491,3.1667063,2.4944024,2.341532,1.3002161,0.11187107,0.2221934,1.4994777,1.8550917,2.0115383,1.4252551,0.029997773,0.051978413,0.09091882,0.044726297,0.002505898,0.009551985,0.0070377965,0.012024947,0.016063264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028242828,0.024492111,0.03656134,0.024450578,0.0278727,0.024009299,0.025654908,0.0061314353,0.024792008,0.048675586,0.16523609,0.9212346,1.8039213,1.7035292,1.4665166,0.5281218,0.48764727,0.6724605,1.0948133,1.9847231,1.8320447,2.3551073,2.182474,1.1769218,1.5234978,1.3990777,1.390736,1.5288835,1.3401749,1.2880238,1.332164,1.1559436,1.5629262,1.8469703,1.9570723,1.4659638,1.3351456,1.1257447,1.264784,1.0649246,1.3021287,1.6878468,1.3521858,1.2328985,1.5361879,1.772791,1.1335919,1.4349405,2.187819,2.8713627,1.9885597,0.8234951,0.57695293,0.2434747,1.1449734,1.5547543,2.0137181,2.0330634,0.5674876,0.04943738,0.009202042,0.07203697,0.035515215,0.03998126,0.040008355,0.043422353,0.03204047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.026986547,0.015337591,0.029043958,0.020274268,0.025147574,0.024193408,0.048049927,0.040653385,0.055403367,0.09853055,0.16882692,1.2942109,2.1228132,1.6002291,1.6410048,0.27248016,0.17823467,0.36124972,0.6994753,1.8149769,1.8870298,2.5383751,1.7152519,1.166145,1.1189888,1.3382224,2.025449,1.6190164,1.605521,1.4373745,1.4199783,1.5808899,2.5411034,1.9162657,2.144944,1.6320161,1.4370482,1.4376502,1.2242067,1.7806959,1.684098,1.4782996,1.6468586,2.0164416,2.3298838,2.1208808,1.6248273,2.051644,1.883834,1.2320342,0.9077682,0.20055348,1.2082108,1.3232868,1.9332279,2.1083755,0.8010728,0.08132214,0.04177979,0.013154953,0.034924958,0.0044708382,0.036554106,0.027499676,0.035684112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014376135,0.020370891,0.011852176,0.004534196,0.021654733,0.029863652,0.029044207,0.043829538,0.086833954,0.08253095,0.14223434,1.6769048,2.0350437,1.5123093,1.6606418,0.62937456,0.22359148,0.2525963,0.5857017,1.637159,2.114495,1.823168,2.4310505,2.3251965,2.222447,1.7933161,1.5534497,1.1757114,1.4103895,1.120133,2.1169827,2.9348056,3.613684,2.7761853,1.2700878,1.3647904,1.2368776,1.6077923,1.574142,1.8730804,1.9779098,2.3948524,2.2858508,1.9995846,1.3936188,1.7179598,1.069179,0.75537896,0.36719495,0.12964243,1.4023467,1.5088819,1.8159616,2.1385906,0.74100137,0.07253001,0.056407735,0.03491754,0.028160503,0.06644461,0.029632416,0.035813686,0.031423014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009078299,0.0051973816,0.018580884,0.0062559335,0.036903083,0.024667095,0.030733071,0.05738582,0.09161385,0.023674916,0.45078364,1.8722533,2.082496,1.7602665,1.410802,1.0468174,0.12461375,0.17553505,1.0650934,1.0672201,1.3479803,1.315856,2.3383937,2.9409533,2.2425704,2.0244675,1.6378353,1.8120764,2.5594165,3.0590603,1.9551259,0.4246445,2.7145867,2.5873885,1.9403716,2.0359547,2.1154082,2.82565,2.667942,2.5765378,1.9526281,1.4880834,1.973898,1.2276332,0.96413136,0.44813552,0.19065192,0.3663983,1.8458409,1.5187665,1.8183086,2.0502963,0.73043823,0.09640531,0.04501583,0.048987903,0.041158244,0.038594943,0.07303151,0.040575575,0.044746764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037309274,0.01814118,0.04317887,0.029043721,0.021820495,0.030594049,0.07934688,0.037118707,0.039948717,0.11539261,1.1434007,2.310909,1.7206502,1.6011751,1.4044288,0.8445578,0.054577064,0.04411138,0.2771804,0.95729756,0.32957417,0.9649429,1.2225285,2.1593769,2.097953,2.0416484,1.5619966,0.79929227,0.29114425,0.9474151,0.87701565,1.4284323,2.45208,2.2525618,2.4896276,1.653673,1.3177645,1.4673108,1.0897104,0.9879013,0.38566992,0.2302644,0.045137998,0.24538861,1.2084967,1.5780059,1.4197694,1.810765,2.2110543,0.7667135,0.035720713,0.016193042,0.051037263,0.024151536,0.025594812,0.023276884,0.03727032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011942137,0.021029871,0.008595511,0.0037644322,0.020583648,0.04954625,0.049850617,0.024804635,0.014557453,0.02529471,1.1183472,2.1727397,1.8527855,1.5497506,1.3364058,1.3712664,1.1012782,0.2128626,0.11722058,0.055224247,0.15677981,0.41082546,0.33430997,1.0663025,1.2286364,1.0727183,1.3089187,1.3277988,1.2435001,1.1320083,1.2575027,1.0029787,1.1628213,0.89413023,0.72715795,0.72349584,0.6802105,0.36823234,0.03350706,0.25126362,0.32500765,1.1739422,1.5456645,1.6013157,1.5969108,2.3834443,1.992057,0.4807517,0.17444195,0.08523453,0.06931455,0.06876456,0.045128558,0.04727655,0.019417668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0029970158,0.008209701,0.027011042,0.04640962,0.046223532,0.014893429,0.027131818,0.044160504,0.049053453,0.9822616,2.1813211,2.197348,2.1882472,1.4687252,1.6899445,1.2793803,1.2994369,0.9322644,0.38731867,0.26443192,0.20503148,0.47192824,0.5164161,0.6871183,0.6320818,0.56832063,0.7082408,0.6856378,0.7496743,0.55268437,0.44108364,0.20629744,0.11385147,0.37797117,0.23462275,0.8607548,1.3494534,1.5468932,1.8069193,1.5344157,1.4556098,2.143862,2.1031396,1.627988,0.28230917,0.17181407,0.15745369,0.11540079,0.08702778,0.060702458,0.044322487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.025188731,0.06255869,0.020044925,0.019635849,0.022815336,0.032244567,0.029675556,0.03084617,0.58270246,1.4463904,1.6422356,2.3899937,2.086026,1.7099414,1.6432287,1.624933,1.6025138,1.4356427,1.342955,0.8086283,0.5679493,0.5430376,0.53531706,0.52324796,0.19940287,0.42802757,0.43493605,0.5426385,0.7947396,0.82839715,0.97456294,1.6085584,1.7533109,1.7405773,1.7089758,1.5292544,1.8211193,2.2384946,2.2557368,1.5879716,0.772998,0.1625147,0.028186405,0.014246368,0.057751898,0.049609035,0.038092818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03312796,0.019933853,0.043783147,0.050523914,0.020525705,0.047862347,0.14360774,0.014968314,0.34933528,0.9769039,1.4122434,1.83144,2.2149765,1.8171667,1.82039,1.6011778,2.0667114,2.1571658,2.349694,1.8354945,1.3403586,1.5587728,1.4351165,1.6950425,1.7761911,1.9585215,2.1088855,1.970407,1.6007383,1.5791024,1.7138442,1.9832177,2.1287875,2.367619,1.7513125,1.2935776,0.57186836,0.12295499,0.22543213,0.13576871,0.08004707,0.036655836,0.036290884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02186294,0.027620368,0.012057277,0.04532897,0.06627533,0.06419465,0.12725751,0.12323097,0.060782313,0.2192812,0.6963536,1.0783309,2.0831914,2.3837762,2.110792,2.0150404,1.9031762,1.7703146,1.6030307,1.7752458,1.8251402,1.7578802,1.7579046,1.913035,1.7488256,1.9459375,2.245175,2.4426758,2.1660345,1.3027235,1.0095837,0.45418754,0.16906887,0.036905937,0.08142135,0.06841305,0.113413006,0.08060387,0.055623308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0021523687,0.020913487,0.030780425,0.0732939,0.08802383,0.081437364,0.07404708,0.08860947,0.14128445,0.18261063,0.16905485,0.2889854,0.52642554,1.3171155,2.2859144,2.16065,2.2838738,2.150977,2.2048788,2.202826,2.2566662,2.1038568,2.1963186,1.0191967,0.222347,0.26050955,0.117447555,0.08574418,0.06175868,0.081799425,0.039614458,0.032937303,0.05579592,0.021941978,0.06317245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.060172178,0.060496915,0.08833578,0.080858074,0.063104905,0.08410882,0.16782257,0.035193354,0.0654862,0.090637796,0.09137141,0.041710183,0.07219407,0.13215277,0.08126445,0.06558738,0.06632432,0.08443517,0.06648676,0.06243768,0.115178905,0.13218105,0.08255888,0.025386836,0.08831318,0.040723328,0.039922085,0.06619849,0.003157478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08483736,0.12787542,0.023885112,0.044715874,0.03906221,0.09668681,0.038642,0.097020574,0.10346941,0.06316319,0.05216562,0.09976496,0.075463116,0.03147483,0.042866766,0.10111725,0.09074623,0.080766626,0.053009506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0722814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]],"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":360,"yaxis":{"gridcolor":"white","scaleanchor":"x","title":{"text":"y"},"zerolinecolor":"white"},"font":{"color":"gray"},"title":"Slice 2","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/3-recon3.html b/dev/assets/examples/3-recon3.html index 62ba1e0c6..126c65d24 100644 --- a/dev/assets/examples/3-recon3.html +++ b/dev/assets/examples/3-recon3.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('edfd5e0e-199b-4fb5-883d-1b03a91aa8d8')) { + if (document.getElementById('b29c90f7-bd9e-49f2-b9e6-ee8406d9ed6b')) { Plotly.newPlot( - 'edfd5e0e-199b-4fb5-883d-1b03a91aa8d8', + 'b29c90f7-bd9e-49f2-b9e6-ee8406d9ed6b', [{"zmax":2.6860003,"type":"heatmap","zmin":0.0,"colorscale":"Greys","z":[[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06805316,0.016744975,0.020444164,0.021199027,0.062466312,0.048955217,0.056748793,0.042152364,0.010571074,0.025412163,0.05458444,0.06069259,0.011801909,0.0028521975,0.04661788,0.06176406,0.1159647,0.031715773,0.008494516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0071063065,0.028140405,0.04806265,0.086370446,0.042860202,0.049992874,0.022118181,0.020191167,0.032956567,0.061216988,0.075524,0.06044798,0.05211417,0.016281223,0.008330747,0.04376029,0.07530615,0.015562315,0.020019164,0.0456956,0.09002695,0.113019325,0.05101405,0.01682814,0.047613923,0.046065856,0.010628808,0.055936087,0.010696019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.054864064,0.043934274,0.04591592,0.024478707,0.023566645,0.06614462,0.11214536,0.028663907,0.020820957,0.044492748,0.044315007,0.038686067,0.0614077,0.096740276,0.07259232,0.061040767,0.03893121,0.023971707,0.016671093,0.08290735,0.03390329,0.04249535,0.043544445,0.1217199,0.100928165,0.07013607,0.03637842,0.03685729,0.06313032,0.02047106,0.07781623,0.023060188,0.019910963,0.053700067,0.046345055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.027626611,0.04396247,0.019405236,0.028985502,0.013936758,0.034551065,0.051779833,0.041692365,0.102955036,0.064454846,0.032872364,0.045845978,0.022322083,0.008484154,0.109582245,0.081977695,0.10288607,0.05150585,0.04097961,0.014368294,0.055052076,0.06714144,0.022054022,0.026458343,0.085412525,0.11055715,0.15443087,0.045967653,0.00061937026,0.075654425,0.032908782,0.020614086,0.060683537,0.007545891,0.050832618,0.04237097,0.01890102,0.026169742,0.08409436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03855816,0.030948844,0.0252078,0.03251772,0.007344822,0.05221502,0.029117376,0.030771773,0.052695364,0.03668921,0.09264491,0.078672156,0.038901884,0.03694289,0.0019063127,0.020290049,0.12704338,0.10258645,0.11030932,0.0837512,0.039763533,0.0052275998,0.070339285,0.0897458,0.03195807,0.014366853,0.095637456,0.12179782,0.18306178,0.035999317,0.022111682,0.09538885,0.043323882,0.030314358,0.045146115,0.014400283,0.050209388,0.026205523,0.033135332,0.028081764,0.09598225,0.019697962,0.006043211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01180415,0.03484006,0.022503188,0.04446108,0.026233658,0.051653333,0.05428265,0.07075246,0.06252286,0.031097807,0.011132514,0.10029464,0.116976365,0.03404233,0.057976004,0.039684188,0.054016992,0.06286773,0.11733797,0.18359515,0.084596165,0.16525596,0.0049564317,0.07805027,0.039287727,0.14760523,0.0037268412,0.07754572,0.0613786,0.2152619,0.1700028,0.096711695,0.06187371,0.05534875,0.10288811,0.019817684,0.06245502,0.06592576,0.014367405,0.0581986,0.06770818,0.025533495,0.056114104,0.058450688,0.058826633,0.06126288,0.10846561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.050247353,0.05762596,0.0471339,0.042938184,0.041548826,0.02724415,0.035996288,0.048860025,0.009928472,0.056864776,0.029549997,0.034729566,0.06978591,0.052503604,0.11830756,0.11377249,0.03911407,0.06746389,0.015878364,0.022508152,0.2434307,0.17046846,0.12650777,0.2450898,0.066982284,0.056366216,0.1012717,0.088576265,0.10242266,0.13930894,0.12896489,0.22792539,0.29620808,0.040634893,0.047451813,0.14128114,0.06773591,0.04953326,0.062054638,0.02475755,0.061718326,0.044254787,0.029799948,0.038558416,0.11498941,0.010487508,0.006619001,0.017488489,0.06940191,0.017907068,0.011325322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0134596275,0.032924764,0.03552722,0.010107239,0.031914182,0.059309077,0.01967665,0.025154127,0.051118318,0.086666346,0.046040546,0.03790912,0.032088704,0.05478536,0.069372,0.110645376,0.1700242,0.13816318,0.11494827,0.11588004,0.13301419,0.20480075,0.50786334,0.61628956,0.7467566,0.33578467,0.6980767,0.21702622,0.7140055,0.81987196,0.25405866,0.7188715,0.29210752,0.5359977,0.5567526,0.051075943,0.12494885,0.16218737,0.1441054,0.043675896,0.094750665,0.075139746,0.0651049,0.08426247,0.049113423,0.034241375,0.08557279,0.047281466,0.056801215,0.04757968,0.11759107,0.051461246,0.048770983,0.039582927,0.051649757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.039338924,0.040856864,0.025338002,0.022033876,0.066401124,0.025637904,0.017077273,0.03871239,0.058280088,0.019014388,0.050958645,0.033699885,0.10651908,0.08858478,0.048379306,0.043618124,0.19033937,0.14240833,0.47349715,0.5084273,0.43631434,0.9973617,1.3236547,0.8098165,0.966684,0.9107679,0.9207951,0.9249971,0.98358274,0.8067858,0.7754247,0.922713,0.9780026,0.88550454,0.91795,0.9669144,0.6145368,0.5986727,0.40213403,0.427043,0.12836711,0.13564816,0.10209186,0.058124006,0.06603105,0.07439032,0.009186725,0.0988617,0.051516823,0.06478192,0.06888569,0.10648794,0.037401117,0.041949004,0.008399269,0.034621518,0.02361083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018153418,0.04402491,0.018450914,0.045269724,0.05017082,0.04993173,0.057340916,0.043786496,0.04183511,0.033424996,0.013956816,0.044051208,0.08294684,0.03501998,0.08221428,0.06867965,0.1624225,0.5276176,0.5871504,0.90605974,1.150821,1.1401623,1.2546421,1.463466,1.7233588,1.3183244,1.4349989,1.2719268,1.5281854,1.512753,1.330246,1.2157743,1.430874,1.287557,1.303758,1.2827512,1.2560455,1.0135851,1.1486275,1.3467131,1.1735682,1.1727185,0.7973322,0.5659377,0.525946,0.06474073,0.09575545,0.06723648,0.05510016,0.15900104,0.011084242,0.025456687,0.031230802,0.079284064,0.016427504,0.013024892,0.05497174,0.02670396,0.04487394,0.04307857,0.029566625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.040581938,0.04524384,0.0180993,0.047080003,0.043876257,0.025820216,0.025588945,0.07280321,0.032531843,0.017971102,0.052836914,0.077809535,0.016729277,0.07157027,0.029970752,0.20523188,0.38669825,0.6521607,0.68948245,1.38033,1.3822758,1.4914341,1.3561573,1.6834891,1.3253757,1.3354992,1.142688,1.0752964,1.0037792,1.0685861,1.0191644,1.100986,1.0628735,1.090283,0.97465175,1.0666213,0.96913105,1.1918933,1.3395135,1.2379116,1.480242,1.1855478,1.1906084,1.5223958,1.2560784,1.3867501,0.4753298,0.25313374,0.22271405,0.10349303,0.1577697,0.071557544,0.09352031,0.10337063,0.12728725,0.053451486,0.053375244,0.012456993,0.047499944,0.028249864,0.05472392,0.042065054,0.026791932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.024590474,0.019104408,0.013954845,0.02727937,0.024282007,0.047873575,0.040716965,0.039659563,0.072296575,0.034188077,0.007801495,0.049315006,0.08794696,0.04921073,0.16901115,0.11067779,0.4878329,0.79908824,1.521631,1.3649023,1.1941625,1.2436395,1.2821802,1.1785469,1.0829161,0.97251046,1.0459622,0.9881091,0.8680906,0.574827,1.1878062,0.94520044,1.1411303,1.0621502,1.2127284,1.1257925,1.1578519,0.9161937,0.6233105,0.6541672,0.94602764,1.1394279,1.0529044,1.1726186,1.4745698,1.385173,1.392193,1.1833951,1.4977742,0.83504224,0.10235297,0.23111078,0.08671362,0.08350337,0.069429986,0.108899996,0.0071146134,0.001667409,0.04832909,0.015467758,0.03959419,0.04822285,0.026587615,0.032141265,0.05123309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008115718,0.012317681,0.017410537,0.024413846,0.020710984,0.02178732,0.022632936,0.014956617,0.014666991,0.06062212,0.020825693,0.008070113,0.06982532,0.14147726,0.08061213,0.40035814,0.70868784,1.2052301,1.369629,1.1851641,1.3227638,1.4002945,0.9328946,0.73511523,0.4785084,0.30686092,0.12420876,0.28877375,0.17534485,0.12251525,0.181168,0.16494212,0.46541432,0.87883645,0.95476353,0.82799137,0.8964057,0.91366374,0.8976624,0.5453316,0.53393906,0.21147476,0.03584475,0.4362052,0.45713264,1.2432079,0.87315094,1.195462,1.2085805,1.1453305,1.2666045,1.2104454,0.8607691,0.55484694,0.2130115,0.17120573,0.18636346,0.06395144,0.051713943,0.024129065,0.05395608,0.016211506,0.023751112,0.021483278,0.028241713,0.018594395,0.024051666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01235602,0.011389333,0.005086606,0.007888666,0.01419024,0.022128003,0.012516146,0.029675337,0.032819256,0.032094844,0.06147762,0.02583388,0.044488568,0.07540136,0.27004004,0.76932234,1.026631,1.6226898,1.0274416,1.1274385,1.2240088,1.0034642,0.6625114,0.39326832,0.3394207,0.35723364,0.23643357,0.55511105,1.6335943,1.6050481,1.58493,1.4480603,1.5788893,1.2963505,1.0509725,1.0453802,1.2004232,1.0501614,1.0284059,0.90444034,0.5952993,0.6990459,0.6108893,0.18914612,0.19232824,0.37015516,0.27927902,0.39890432,0.750222,1.0141747,1.4512357,1.269798,1.012451,1.1995345,1.0853976,0.60723776,0.32062495,0.21240452,0.06681373,0.0486159,0.0071965745,0.038981207,0.008312637,0.050405268,0.028472578,0.007334889,0.017582929,0.0325023,0.01891686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03960377,0.022888916,0.045652654,0.039038073,0.028546562,0.023243507,0.05888822,0.030546622,0.062496796,0.07838867,0.08371363,0.09956734,0.0894313,0.19756864,0.35572383,0.8422508,1.2020648,1.3923029,1.1014707,1.1914604,1.2481825,1.1651894,0.36780292,0.44799355,0.12130041,0.06900174,0.47731465,0.3950423,0.7828053,0.28907242,1.0263116,0.9643378,0.8144809,0.8544503,0.84613925,1.0123929,0.96214,1.2446942,0.663845,0.86415166,0.7912086,0.35146123,0.6579158,0.9108208,1.111539,0.3144508,0.08279952,0.6454327,0.80239636,0.6343671,0.76886034,1.0398294,1.1620114,1.5195549,1.6262907,1.0735816,1.3874493,0.6820637,0.35780913,0.0859487,0.049691994,0.041568115,0.008851959,0.035057474,0.06620678,0.035417963,0.025252264,0.05077695,0.031184172,0.031397667,0.03778103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014769743,0.025065059,0.008420572,0.029576186,0.023366204,0.010540828,0.005236322,0.04077878,0.021500977,0.054102022,0.06396174,0.07286581,0.12091772,0.10421954,0.59985465,1.3541373,1.3872148,1.3256453,1.666333,1.6737431,1.057834,0.6841848,0.53125787,0.9440528,0.5025861,0.86584216,0.77153593,0.58357507,0.8163412,1.1493661,1.4618053,1.4794853,1.44415,1.1497439,1.2519203,1.3965003,1.1932659,1.1138818,0.56217265,0.4235707,2.1427855,1.5085889,1.760826,1.7851222,1.7857327,1.1821734,1.4384614,0.9780545,0.91367483,0.6503417,1.0526623,0.6293445,0.23977253,0.97347355,1.1289983,1.3512852,1.41371,1.1872966,1.0297309,1.131118,0.57496375,0.20195244,0.13095067,0.053684067,0.081355296,0.08875135,0.051598936,0.051538445,0.07272296,0.03102145,0.038064074,0.029649207,0.031198991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.043722257,0.036662187,0.049678486,0.03768314,0.057274725,0.050073206,0.04478267,0.03997914,0.07609791,0.06598763,0.104072176,0.12537418,0.15572669,0.20761263,0.89165497,1.3753645,1.2540153,1.0674973,1.704779,1.108983,0.2832922,0.27604875,0.67516786,0.23031704,0.8638439,0.68182874,0.5063021,1.3738751,1.6461961,1.2759489,1.1119525,1.5560998,1.4266644,1.7051836,1.5608596,1.4499818,1.5410993,1.9526416,2.2533596,0.2513934,0.7657557,2.6860003,1.5724089,0.9675268,0.6480358,0.88577694,1.0234007,1.976897,2.254174,2.0635707,1.7547086,1.1579037,0.95450646,0.90282816,0.03917215,1.0427102,1.1302739,1.5234067,1.4097868,1.0183843,1.2043183,1.2650443,0.6981411,0.13341461,0.063432075,0.0675064,0.11427744,0.06799438,0.04089503,0.063704476,0.0476772,0.04072806,0.05339236,0.034327094,0.025306052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012602029,0.012298074,0.017666966,0.022563942,0.009234915,0.029694982,0.03031497,0.01701624,0.0208213,0.057218656,0.022865409,0.06332418,0.11467959,0.20693089,0.87992865,1.4498118,0.7568683,1.2209244,1.581465,0.9137645,0.5040018,0.68126786,0.8959151,0.80065197,0.9874468,1.1141528,2.0192711,2.0258617,1.6940258,1.166648,1.5475453,1.3604958,1.279287,0.8367909,1.114923,1.1129698,1.111053,1.1147373,1.3908747,1.823163,1.6009926,1.9846665,1.7878649,1.781676,1.0639122,1.3028567,1.4066907,1.23992,1.2767575,1.6048225,1.2174239,1.1609881,1.7468569,0.2928575,0.7297891,0.70066327,0.34230167,0.16779326,0.5631812,1.5975562,1.3465848,1.2474948,1.0284477,1.4965409,0.70051455,0.14557941,0.109060794,0.03819975,0.004047071,0.038382597,0.045622617,0.016784765,0.015925404,0.021073574,0.016265363,0.022601722,0.018082377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003737373,0.005296439,0.008387443,0.0072572534,0.016876282,0.005618733,0.024087274,0.02330677,0.011138527,0.015548077,0.0557263,0.026133938,0.063010916,0.14961268,0.73028004,1.3446844,1.0382737,1.5448301,1.3625612,0.7476453,0.2481001,0.91597563,0.1565339,0.846092,0.48375362,1.9805379,1.2272484,1.2246883,1.7463253,1.1884667,1.1517874,0.8257174,1.1943768,1.3330203,1.114016,1.2099313,1.1633193,1.3543671,1.106056,1.1209679,1.6305698,2.3650331,1.7803787,1.0187951,1.0509304,0.83230215,0.8521651,1.39722,1.397433,1.1214226,1.2199308,1.1195794,0.92461497,0.888421,1.3243567,0.24916054,0.32499546,1.2188895,1.2279003,0.36363083,0.638859,1.583272,1.3260593,1.1695888,1.0142488,1.301556,0.9339291,0.14887647,0.1793376,0.1061323,0.062106885,0.08245416,0.059507117,0.048165523,0.06358498,0.03890574,0.028681828,0.030106805,0.024634775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.027810039,0.03029169,0.032175377,0.038144708,0.029183323,0.04479386,0.030971816,0.052856572,0.04696862,0.045166787,0.040678803,0.095694,0.12432434,0.18432955,0.9882301,1.3751851,1.0981923,1.5282005,1.1753674,0.81494653,0.11864599,0.8057342,0.7666082,0.931782,1.2388201,1.839167,1.1203271,1.1606672,1.2356796,1.2410017,1.1437073,1.0303737,1.0264971,1.0010446,0.96381116,0.9051005,0.8774473,1.1045032,1.1261941,1.0346392,1.0823137,1.5596652,1.9139448,1.1877137,1.0887765,1.1627084,1.1656061,1.3351735,1.409503,1.0819191,0.9133928,0.82971853,1.130147,1.3223132,1.0841111,1.0937628,1.6667168,0.7981988,1.2608621,0.95671576,0.7525891,0.37240052,0.13968928,1.5341603,1.2095175,1.3908716,0.89109737,1.4063185,0.70225084,0.26748118,0.13031292,0.06236724,0.08265598,0.056323405,0.043314505,0.062152058,0.035780475,0.026312077,0.028817222,0.02405163,0.025038298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011504657,0.012372978,0.015155811,0.019409113,0.015311267,0.03064937,0.008529028,0.040525194,0.038526356,0.030245705,0.027243003,0.115173906,0.1805949,0.65418816,1.449207,0.9876799,1.3299351,1.2924917,0.98857653,0.04083336,0.1372364,0.5807934,1.3006605,2.1602309,1.7757856,1.3128625,1.1303998,1.0982066,1.1392813,1.7379973,1.0194665,1.0673212,0.86111623,1.1037041,1.2515393,1.421476,0.9961973,1.0122839,1.0167176,0.998512,0.8907293,1.2466451,1.7110274,1.1333047,1.2590076,1.0865525,0.86623454,1.1223683,1.5459499,1.1478028,1.0740093,1.1585649,0.8262538,1.130442,1.012638,1.3666208,0.72327626,1.854382,1.7260356,0.6308867,0.79212964,0.82945514,0.46765986,0.05870452,1.479867,1.1633948,1.13032,1.0193813,1.300619,0.6190348,0.18074074,0.038857255,0.049756918,0.061663765,0.037019946,0.067705534,0.026810857,0.026426557,0.0217555,0.021337789,0.01871576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015593796,0.015170487,0.015532656,0.016012603,0.02105302,0.00861972,0.023012424,0.01809698,0.032233607,0.030895859,0.030252865,0.03173583,0.1881046,0.5686459,1.4424641,1.0452297,1.0073589,1.4063185,0.8988775,0.2223959,0.37837985,1.6536452,1.5892907,1.719998,1.1348292,0.990228,1.3229405,1.0583878,1.0988594,1.2665294,1.2638716,1.1640787,0.98823357,1.0011108,0.9601992,1.1084276,1.5530192,0.96049035,1.0152704,0.9506994,1.132269,0.95605755,0.81321955,1.2282593,1.0073965,1.0300087,1.4777356,1.6576648,1.3892548,1.2910634,1.0189185,0.8824167,0.9449357,1.0216622,0.9769369,1.0373383,0.9578062,1.2516805,1.37347,1.8333285,1.9380707,1.5741324,0.6804719,0.9659135,0.42820898,0.3158271,1.488546,1.3176993,1.6915214,1.0019884,1.6688598,0.6792664,0.09658483,0.07656291,0.051880464,0.032890797,0.07011054,0.028498467,0.031188924,0.028391242,0.028821183,0.028071556,0.02673729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007353986,0.0070125847,0.008313874,0.009465674,0.013260393,0.019680867,0.012549394,0.032761168,0.015797175,0.048372712,0.05152216,0.062721334,0.08000254,0.5580801,1.7575735,1.25184,1.2705916,1.381589,1.0150653,0.26034558,0.50339913,1.2154125,1.4851629,1.0433129,1.0045837,1.1760154,1.1731454,0.9995515,1.0067083,1.0816481,1.1411577,1.2182515,1.1504061,1.0029938,0.9321441,1.1531662,1.6065135,1.3246273,1.0609747,1.0161783,1.1154428,1.4642988,1.6313144,2.0964036,1.98367,1.3567373,1.0606682,1.1481547,1.2811303,0.98620045,0.91582894,0.9747103,1.048248,1.2164686,1.0372437,0.95159674,0.94738305,1.126095,1.0225198,1.2893963,1.1246219,0.8318183,1.02943,1.5648555,1.0819732,0.52882767,0.6391192,0.50828046,1.4050874,1.0692025,1.4935532,1.1785799,1.3999969,0.24398202,0.05248559,0.08678025,0.058099266,0.090592094,0.04278292,0.04891719,0.040341,0.04159554,0.037080396,0.034946844,0.03183925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.044900753,0.045120038,0.046128284,0.046262283,0.046740197,0.04307537,0.058588136,0.054800916,0.063448615,0.064170584,0.085207745,0.0896246,0.23615846,1.0863258,1.3037701,0.87240624,1.4855509,1.1365675,0.12380061,0.2862795,1.2564809,1.4244744,0.9271993,1.3622475,1.2930157,0.94272584,0.9781248,0.97844434,0.9621353,0.9366281,1.1274409,1.1437579,1.2089123,1.0607784,0.94477916,1.1362975,1.3119419,1.1105931,0.9834198,0.9848939,0.96634805,1.1188656,1.3202688,1.7799666,1.622339,1.1477517,1.2126981,1.0152149,1.0701647,1.0305122,1.0729381,1.022254,1.0021769,1.0642236,1.1019977,0.9017431,1.0917752,0.95444494,1.2022883,1.0910205,1.2455677,1.2721891,1.1026438,1.0211331,1.7782229,1.4319081,0.22097173,0.10373758,1.0406275,1.3835353,1.1192298,1.2287523,1.1442597,0.9629452,0.17504026,0.12517816,0.097856425,0.07692634,0.06478389,0.066652924,0.055762384,0.056572575,0.05123833,0.048089087,0.046671335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.033051755,0.031555347,0.033081736,0.032335013,0.033573836,0.033111643,0.031279314,0.04719784,0.037921567,0.07110043,0.059484784,0.09782797,0.13281888,0.733068,1.4435898,0.922734,1.6054456,1.2961655,0.7719407,0.286344,0.881448,1.9159368,1.267297,1.1906024,0.9980845,1.1766814,1.2016265,1.1480142,1.010905,0.95021516,1.0004078,1.1155994,1.2482442,1.1454148,1.0229316,0.96681803,1.1759833,1.5300885,1.2762481,1.0794526,1.0271431,1.2874161,1.1070551,0.98053193,1.7740238,1.2543684,1.0570068,0.9246012,0.9818715,0.8754443,0.9438509,0.825602,1.1827917,1.2355018,1.5274007,1.4373367,0.99673486,0.95856655,1.0282863,0.9828201,1.2489883,1.1848722,0.7953869,0.8345725,1.3551675,1.7129157,2.3278105,1.4203627,0.2174624,0.110889524,1.2003392,1.0184484,1.4434832,1.2101172,1.4758872,0.6760404,0.2617661,0.17247726,0.11767817,0.0984561,0.092769735,0.07558423,0.0728203,0.063576385,0.058280777,0.05309541,0.05063186,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0363035,0.04005472,0.041186936,0.04519777,0.0476301,0.05200698,0.052567422,0.07659215,0.07464258,0.11541499,0.12955754,0.22041936,0.48652244,1.6541474,0.9967206,0.985322,1.4376374,0.9967331,0.15539084,0.5062977,1.2367296,1.8485032,1.347099,1.3314675,1.4462286,1.5196857,1.0990447,1.0578393,0.9561464,0.98049533,1.034832,1.2141713,1.1083496,1.1239824,0.8875313,1.299602,1.1872119,1.123301,0.92288035,1.0148703,1.0621159,1.4062698,1.4383818,1.2665879,1.9881394,1.7943265,1.1012375,1.1161127,1.3554499,1.3146114,1.2516361,1.1437689,1.10934,1.58835,1.456423,1.6346653,1.2976682,1.027577,0.8998726,1.0760068,1.1772234,1.2009835,1.1803772,1.1684318,1.0666558,1.437141,1.2346466,1.5955274,1.4738848,0.21124607,0.9269926,1.3442544,1.183349,1.171362,1.2408147,0.88888484,0.12098932,0.058861226,0.029572487,0.032705914,0.03021472,0.02436179,0.028334027,0.025678618,0.024524936,0.024945984,0.024097227,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0017809824,0.005026811,0.002793913,0.00469868,0.0035055403,0.004540825,0.00463812,0.008981902,0.008880873,0.013492377,0.04306859,0.018240688,0.013542798,0.68080086,1.3187882,0.7559379,1.4446173,1.157391,0.43876317,0.913062,0.4834032,2.1957881,1.1964228,1.4080445,1.078107,1.5747333,1.305208,1.3069512,1.1806645,1.0434227,0.9118734,1.0791337,0.97437185,0.9858616,0.9070299,1.1219674,1.1274683,1.3806735,1.8931037,1.6595645,1.42934,1.5584123,1.3384284,1.2620399,1.6523948,2.1695793,1.6904999,1.2416152,1.1034997,1.3632663,1.2541293,1.0263729,1.0878706,1.2812971,1.4011263,1.8516515,1.7810283,1.2723529,0.93183714,1.0174161,0.93146336,1.1720136,0.9692428,0.81366694,0.86844915,1.3768599,1.0063916,1.2829499,1.0402399,1.7364436,1.3528656,0.457663,0.7076184,1.4257482,1.3028948,0.73799753,1.6915528,0.46396157,0.15992135,0.16636202,0.07972228,0.060382925,0.049889684,0.038050015,0.03271649,0.027782327,0.023601882,0.019739235,0.017208869,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.04203837,0.042463154,0.045212165,0.047284152,0.050473873,0.05455695,0.059977997,0.070993654,0.06522747,0.07801631,0.12401577,0.12273743,0.20366676,1.2901484,0.94975615,1.2914917,1.2500519,0.7192303,0.5204146,1.3649045,1.2141867,1.3017938,1.3892003,1.0820252,1.1766464,1.1028708,1.1591375,1.1594334,1.0218084,1.0068264,0.94187295,0.9734686,1.0103621,1.0255007,0.9251501,1.23897,1.3218825,1.5689633,1.6964912,1.5782479,1.4885298,1.5169959,1.4052317,1.1635102,1.7013665,1.9102046,1.4958955,1.1934401,1.2410145,1.1330179,1.2002153,1.2083075,1.0758784,1.3771086,1.7027869,1.5723834,1.713666,1.2063514,1.0345463,0.8943015,1.0157678,0.86631465,1.04859,1.2492348,1.1685107,1.1751478,1.1343694,0.9823969,1.2064806,1.3071846,1.9670295,0.9008691,0.04008888,1.3087591,1.0013471,1.0026786,1.4774213,0.81213224,0.099205144,0.17171063,0.0644006,0.071310826,0.06020816,0.054749228,0.051172666,0.04739676,0.045370948,0.042923868,0.041711718,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.018895587,0.018287705,0.022821985,0.02369086,0.0277857,0.030392153,0.035064366,0.040051743,0.047544114,0.054099,0.042759243,0.13745324,0.09551918,0.8307884,1.5309805,0.9333159,1.0338135,1.3826662,0.29844275,1.0582135,1.8438188,2.275181,1.7374027,1.0611395,1.2744136,0.9858306,1.1178395,0.90257865,1.2335384,1.1552275,1.064172,0.92405695,1.0388826,0.85621715,1.0393176,0.86459047,1.2874438,1.3014977,1.2836595,1.2115903,1.0909914,1.1068988,1.076904,1.0381398,1.0267129,0.89517254,1.3574466,1.1232655,1.1263276,1.189529,1.0894926,1.0664943,0.9411787,1.0770962,1.3311243,1.4550138,1.3735029,1.1172185,1.1429311,0.8753613,1.0569042,0.9063211,1.0798783,1.1663829,1.0993495,1.1366249,1.4765421,1.1453165,1.6700867,1.7940509,2.025656,2.343593,1.2908638,0.2721091,1.1811596,1.5553722,1.3691305,0.9628012,1.4487988,0.39702827,0.06775895,0.055224553,0.03015373,0.02001673,0.01704472,0.010950691,0.006983351,0.0042666313,0.0020112682,0.0011525601,0.0023193858,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.022117449,0.01773629,0.019104624,0.015885416,0.016015613,0.01362925,0.012718025,0.010707066,0.009871523,0.01940582,0.031705678,0.080504015,0.14112738,1.4041286,1.2914786,1.1252891,1.5192062,0.8290694,0.22116722,1.3569045,1.7106178,1.3270632,1.4675905,1.8999408,1.4541155,1.2239399,1.1895427,1.1256064,1.0033206,1.0144,0.9858254,0.98625666,0.9337117,1.0263782,0.9592986,0.97998196,1.1059963,1.19385,0.9390913,1.0643175,0.92105925,1.1715955,1.1567134,1.0063896,1.0577711,1.2014818,1.5440801,1.1197063,1.2072835,1.1424756,1.2369775,1.2253249,1.3330206,0.9589471,1.0355887,1.2440255,1.1987928,1.2702767,1.1447911,1.0152675,0.92981595,0.95428437,1.0479703,1.2128373,1.241884,1.2396089,1.2331663,1.2398967,1.3200024,1.6245067,2.1042087,2.0740695,0.99436843,0.7641672,0.52614814,1.5322758,1.2314659,1.1912661,1.3563302,0.4209765,0.054376855,0.13087963,0.071681,0.06808407,0.057431597,0.051427655,0.047507145,0.043013636,0.040601112,0.03686096,0.035858866,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.014606723,0.0147609785,0.01683224,0.017451761,0.019989483,0.021056676,0.024490898,0.02756438,0.03357484,0.044959456,0.032035746,0.067462154,0.13445313,0.5171674,1.432167,0.9098826,1.4255636,1.6718545,0.6319779,0.5231607,1.9944173,1.151626,1.2118889,1.2272651,1.4617679,1.5518728,1.621712,1.2299095,1.3178499,1.2756561,1.190913,1.0466068,0.9591595,0.9855637,0.9393046,0.9450764,0.9313082,0.9830083,1.2427161,1.0948246,1.1828372,1.117933,1.3870438,1.078386,0.9720331,1.1293949,1.1016383,1.7246438,1.1946328,1.2168585,1.0721657,1.1107461,1.2111933,1.2388843,0.9941616,0.8345927,1.1104975,1.011124,1.096199,1.1091822,0.91783285,1.0139056,0.9894605,1.2240287,1.1750699,1.1350775,1.1183726,1.2130592,1.1181972,1.1695023,1.0245587,1.4717156,1.7752198,1.71216,0.67096275,0.14554736,1.2887529,1.5536847,1.2845808,1.0422105,1.3994157,0.43009314,0.053870037,0.018051567,0.01579287,0.006580135,0.008438636,0.008351327,0.008983191,0.008058719,0.009779258,0.008056616,0.010859875,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.039605107,0.037515,0.04248942,0.04165346,0.04644171,0.047368903,0.052120607,0.05571394,0.061824128,0.06827735,0.08538911,0.056004778,0.32104877,1.3578457,1.3432952,1.125729,1.3591896,1.2940683,0.30264074,1.5472078,2.2508705,1.4257237,1.3101099,0.9120173,1.2054876,1.1626834,1.2469326,1.1702542,1.6588637,1.3903279,1.1498601,1.2473694,1.0212898,0.9390311,0.988595,0.9994268,0.9755223,1.038214,1.2024891,1.3728409,1.4567893,1.2811975,1.2085476,1.0472009,1.2385185,1.2174745,1.2855738,1.7852883,1.458334,1.2348864,1.0514559,1.1875584,1.1395173,1.0781344,0.86528987,1.0183038,1.1201594,1.0565712,1.0062563,0.9863795,1.0209233,0.8997518,1.0364658,1.2250385,1.1646645,1.2456874,1.2540411,1.2007319,1.267275,1.2406017,1.2956973,1.1632124,1.3824788,1.8324646,1.5511742,0.26273912,0.3739384,1.4037431,1.1207721,1.2182927,1.2356861,0.4493989,0.07572503,0.06774901,0.04505064,0.048049893,0.042423178,0.038779777,0.037910186,0.035159595,0.03626735,0.03329599,0.035978578,0.0,0.0,0.0,0.0],[0.0,0.0,0.01809296,0.018751059,0.020666048,0.020466017,0.023632046,0.02413244,0.027539399,0.028870128,0.032679405,0.035116527,0.03560094,0.074922316,0.14488518,0.58684164,1.2523905,1.2124903,1.0278932,1.8379083,0.6100432,0.4370389,1.5692483,1.7396252,1.4783603,1.1593766,1.3564273,0.96964216,1.1787552,1.0381598,1.1087667,1.0776154,1.1995587,1.1678535,1.1986719,1.1099008,1.0531158,0.9657785,0.964114,1.0504184,1.054917,1.0796224,1.1361339,1.0984578,1.0378745,0.8756266,0.9812201,1.0887554,1.0989857,1.0926111,2.2245586,1.5137068,1.125113,1.1314267,1.053584,1.1669683,1.1806784,1.2832493,1.3468902,1.357695,1.0450498,0.9682283,0.9865703,0.92018235,1.0133342,0.9807776,1.1843328,0.9996027,1.0374795,1.1630381,1.133855,1.1037852,1.07693,1.14109,1.2634645,1.4451635,2.177064,2.0946362,0.818539,0.4684306,1.3896493,1.4071643,0.9900209,1.1169541,1.4002138,0.29011682,0.052649956,0.048722498,0.037670802,0.030965215,0.025921583,0.022933882,0.020582901,0.018695233,0.018031826,0.015961064,0.01722002,0.0,0.0,0.0],[0.0,0.0,0.034908663,0.034618177,0.040180925,0.04049171,0.047458205,0.049913336,0.05769427,0.06385731,0.07490433,0.08841863,0.112536594,0.13688569,0.2569414,1.2940702,1.3811771,1.0625271,1.4099871,1.4957764,0.53359884,1.4405155,1.7051704,0.8626007,1.3507155,1.1295023,1.4317474,0.9593127,1.001172,0.9694705,1.215371,1.0004224,1.124315,1.1351995,1.2804494,1.0275898,1.1460196,1.0560274,1.0764838,0.89649075,0.9913195,0.9454808,1.0083934,0.9654859,1.061458,1.0996106,1.111356,1.0459127,1.07893,1.1883782,2.0408866,1.1082444,1.2553726,1.152229,1.1500293,1.0321519,1.0521618,1.160752,1.08154,0.9083805,0.9634356,0.96879923,1.0010883,0.98746526,0.9470632,0.9442101,0.94769526,0.93312556,1.1937573,1.4296273,1.2760375,1.3849815,1.4445895,1.2626258,1.3317404,1.1523641,1.4339925,1.8870302,1.4647769,0.49820226,1.1880009,1.4842373,1.2434951,1.3541074,1.0462205,0.6271763,0.088037595,0.05200072,0.029307391,0.027255757,0.026070252,0.023812626,0.024708865,0.022538286,0.025158193,0.022648275,0.026344055,0.0,0.0,0.0],[0.0,0.0,0.040524326,0.041110322,0.044842374,0.047462825,0.051192563,0.056249924,0.06202409,0.07040913,0.08118629,0.09957647,0.13568708,0.16968946,0.6745729,1.1686183,1.0507605,1.4650856,1.4221276,1.4276837,0.90105224,1.2237092,1.2392713,1.1125317,1.094181,1.2251866,1.1709381,1.0563368,1.011885,1.0998741,1.3016609,1.3084344,1.2355165,1.1037678,1.1191745,0.94599235,1.1070247,0.9100822,0.9841593,0.97455454,0.9843978,0.94378626,1.0089405,0.9459039,1.1054856,1.1865501,1.196844,1.2277163,1.2107352,1.3189824,2.2113717,1.3076029,1.1806155,1.2093308,1.1753005,1.0356628,1.1137046,0.88154864,1.056526,0.968553,1.0123386,0.9164174,0.9875381,0.8918873,1.048778,0.93095005,1.0279596,0.948622,0.9593944,1.1480348,1.1472341,1.085938,1.3037592,1.0478759,1.0938143,1.1514245,1.466678,1.2350292,1.5360589,0.89051896,0.4903642,1.5474793,1.393853,1.0751016,1.2414204,1.3409216,0.34528303,0.1368901,0.09578347,0.06980675,0.056677185,0.04710523,0.042432252,0.037944905,0.036147032,0.03437276,0.033857137,0.0,0.0,0.0],[0.0,0.04356905,0.04498622,0.050009135,0.0510832,0.05801861,0.060719773,0.07007133,0.07695735,0.09005918,0.10527829,0.1311353,0.1734451,0.3092569,1.1368785,1.5472645,1.0890625,1.1774665,1.6677213,0.9011075,1.0856426,2.0363758,1.1257021,1.1751667,0.99779373,1.1395009,0.97603625,1.0474927,1.0050805,1.1587498,1.1130145,1.2834103,1.0476894,1.0647213,0.927812,0.9973313,0.9288144,1.0546643,1.1333382,0.9325973,0.9608682,0.98216635,0.93826246,0.98101526,1.1698291,1.2056838,1.2174594,1.164324,1.3828617,1.6467437,2.0119934,1.3185534,1.2947607,1.1852732,1.2162282,1.2733661,1.1293865,1.0199747,0.9414244,0.9320858,0.96598357,0.9878059,0.99172735,1.0009333,0.93061686,0.9570976,0.9505524,0.98317695,1.1402628,0.9710332,1.1089226,1.0774177,1.1569039,1.3212312,1.6752049,1.3885286,1.364952,0.66811174,1.6311219,1.569015,0.44119588,1.6220895,1.35936,1.6391463,0.7953577,1.1334261,0.79570425,0.19856232,0.13224065,0.09539253,0.076339334,0.065185286,0.05637349,0.052052688,0.0460602,0.045728024,0.04106596,0.043508425,0.0,0.0],[0.0,0.07531598,0.07438487,0.07843255,0.07717581,0.082514495,0.083645046,0.09116079,0.096342884,0.10772164,0.12118181,0.14598362,0.19306822,0.27034026,1.0063561,1.2043805,1.1288905,1.4709442,1.6867081,0.81091183,1.3294497,2.3690307,1.1334088,1.4273428,1.0857892,1.3427391,1.1768686,1.2553735,1.0680254,1.0618024,0.8126597,0.88145596,0.8702557,0.98490435,0.92119366,1.0098543,1.0063654,1.2319223,1.4633281,1.3452743,1.0493423,0.9476048,0.9831975,0.9570422,0.92712057,1.1044291,1.0434357,1.159349,1.3237418,1.4229395,2.1555727,1.3617412,1.227415,1.2053415,1.1143887,1.1442361,1.0931365,0.96087945,0.96830136,1.0200384,0.9473725,0.9718639,0.9134794,0.9461984,0.97524494,1.0096395,0.9241796,1.1314185,1.1359705,1.2417511,1.2129081,1.2987208,1.1594087,1.2620481,1.1975402,1.4398428,1.0884429,1.3207339,1.2853777,2.2170095,0.82262075,0.94477504,1.7956078,1.446451,0.9792198,1.2439355,1.17809,0.34365058,0.20537104,0.16095085,0.13388933,0.118285075,0.10501395,0.098497115,0.0894144,0.08748507,0.08057383,0.081368305,0.0,0.0],[0.0,0.06857911,0.06699326,0.07276538,0.07125715,0.078098826,0.0799179,0.088785306,0.095651805,0.10892595,0.12587479,0.15534039,0.2156883,0.38216847,1.1363739,1.1742829,1.1510465,1.6067685,1.5639722,0.41012728,1.259054,2.4337964,1.8928989,2.0060453,1.3371792,1.690685,1.4270605,1.6626425,1.2600026,1.3124189,1.3277508,1.2204434,0.959789,1.0323772,0.9357881,1.0008804,1.1152557,1.0933392,1.4080652,1.4135802,1.2094592,0.98840827,0.93871254,1.0066996,0.98912406,1.0227041,0.9730418,1.0122594,1.0801139,1.4563261,1.9184272,1.5542071,1.0798017,0.98844135,0.9612301,1.0827988,0.9203006,1.0361919,0.89803374,0.98151815,0.9185591,1.0597564,0.9677734,1.0937508,0.8537438,1.0227711,0.8759993,1.1180496,1.2095716,1.2002343,1.133915,1.6356708,1.054563,1.3581002,0.9602022,1.0148121,0.8883713,1.277184,0.8835361,2.2396417,1.2677356,0.7061203,1.7324541,1.4986749,0.90547466,0.9645979,0.9614161,0.276669,0.19387282,0.14811057,0.12226117,0.10752995,0.09486475,0.08854918,0.080084585,0.07800857,0.0720406,0.0721036,0.0,0.0],[0.0,0.05675413,0.052784692,0.05553893,0.05142522,0.054263927,0.051036596,0.05334611,0.05140148,0.05216674,0.049303424,0.043889474,0.018483294,0.30415118,1.6133218,0.9602178,1.1693343,1.4341068,1.5514257,0.5235842,1.1199907,2.3680198,1.4283274,1.3820583,1.3882251,1.1783761,1.1976554,1.2110944,1.1282924,1.4454216,1.4463792,0.9877174,0.92622924,0.9256041,0.970124,0.95668304,1.0685121,0.9541943,1.3188032,1.3002671,1.4092174,1.422175,0.9141962,0.95347905,0.9333062,0.92708373,0.9788653,0.92363995,1.3855891,1.5250044,1.1737467,1.5542327,1.144786,1.0189888,0.9718615,0.9205872,0.9585646,0.95217824,0.98299676,1.0126507,0.8965001,1.2330697,1.6256404,1.183916,1.0152749,0.9582361,0.966678,0.9736635,0.9697403,1.0701694,1.1415128,1.1321882,1.0094936,0.9415502,0.92628074,1.1347001,1.1538756,1.1453369,1.3037788,1.6230159,1.2803755,0.85199577,1.4862311,1.5661592,1.0320266,1.2165747,0.9941146,0.42837867,0.20397665,0.14621553,0.117619246,0.1013244,0.08925925,0.08168803,0.07452966,0.070589185,0.06600387,0.063654244,0.0,0.0],[0.0,0.041117605,0.041118115,0.038665682,0.040584754,0.03817758,0.04052005,0.039948784,0.043761354,0.04678234,0.05619832,0.073355876,0.13325775,0.29470113,1.3498538,1.1518068,1.1335471,1.5341183,1.263582,0.2831969,1.3720019,1.7616836,1.4376434,1.9165045,1.2098972,1.3692487,1.0511272,1.2491468,1.0945559,1.1566392,1.0010803,1.2388055,1.0201963,1.0875556,0.9425266,1.0033501,0.91779673,1.2293276,1.0994737,1.2741292,1.3324431,1.3042359,0.9569728,1.0788343,0.9329544,1.1210611,1.1065717,1.2303529,1.2048272,2.2761726,2.3465812,1.1541436,1.1040268,1.0832411,1.043518,1.0112224,0.9968706,0.9675398,0.96305424,0.8159901,0.85379297,1.3820826,1.4200661,1.101986,0.9005269,0.97051185,0.9529344,0.9570998,1.0068169,0.94755507,0.9156927,0.9594719,1.0212489,1.1535788,1.1485974,1.054952,1.117611,1.1090047,1.2943099,1.1424398,2.1909192,0.83544517,1.1096022,1.7638565,1.1524855,1.0198514,1.4002124,0.58142304,0.16617031,0.11111658,0.08877042,0.07448682,0.06746793,0.059407443,0.057397544,0.051221002,0.05128977,0.045363836,0.0,0.0],[0.060720254,0.060335565,0.06071788,0.057472914,0.06124858,0.05902772,0.06359842,0.06420215,0.070961945,0.076735415,0.09009818,0.112330444,0.17598566,0.6779284,1.3501457,0.9677397,1.3546902,1.7739747,0.9364069,0.4472941,2.295164,1.4569229,2.0515683,1.7983676,1.1058836,1.6931946,1.4144897,1.3328322,0.93847674,0.9550619,1.0809438,1.0216812,1.1891029,1.1757364,1.0495974,0.9714814,0.983457,0.91978693,1.0326848,1.3703656,1.6237749,1.5865889,0.7633141,0.96561146,0.882992,1.108267,1.1010016,1.2882642,1.2059203,1.6830515,1.5836391,1.2006376,1.1800733,1.1623584,1.0185673,0.89623463,0.94959694,0.97229767,1.0523576,1.2535836,1.2087715,1.3948529,1.3058616,0.91470945,1.0482965,0.94772166,0.99492043,0.9587436,0.95737493,0.9502181,1.0475433,0.9481161,1.0155485,0.9657689,1.0292597,1.0696176,1.2765517,1.1415627,1.276191,1.5410525,2.5468457,0.8421619,1.1558478,1.6904861,1.0957388,1.0695333,1.5192221,0.85498625,0.3238505,0.2020376,0.1540157,0.12558709,0.10958537,0.094981596,0.08835064,0.07866296,0.07632603,0.068416685,0.06824031,0.0],[0.077642225,0.08192218,0.08382161,0.08416697,0.090077,0.091312565,0.09929175,0.10426926,0.1164734,0.12929492,0.15285172,0.19117275,0.28454584,0.8796401,1.6826283,1.0743518,1.0533676,1.7847277,0.84970134,0.89309406,2.3567743,1.3433903,1.5184574,1.4570768,2.0285242,1.4955622,1.8916059,1.5320609,1.656704,1.5413764,1.6001164,1.8486524,1.5246122,1.3773408,1.4339432,0.9083973,1.110245,0.9146947,1.0882988,1.1271393,1.6423856,2.0954344,1.5158466,1.4245374,1.0997066,0.91212463,1.0961516,1.1152023,1.0694131,1.2924948,1.3748693,1.1024269,1.2006834,1.097033,1.0959079,0.95642424,1.0497819,0.9257814,1.2637129,1.17397,1.0935602,1.4749687,1.199814,0.96252763,0.948777,0.91678625,1.0106655,0.9014316,1.0448883,0.891939,0.971762,0.92514735,1.0407058,0.9220371,1.0994681,0.9529776,1.3158613,1.2926376,1.6972203,1.417364,2.3831441,0.5804176,0.8508735,1.8157114,1.0860853,0.8732548,1.2382,0.8812866,0.2219851,0.16599001,0.1368399,0.11743763,0.10727228,0.09676983,0.09333828,0.08630491,0.086656734,0.08089297,0.082983464,0.0],[0.048234005,0.050628323,0.052388575,0.05201912,0.05721494,0.057599,0.064629234,0.0684088,0.07914304,0.090165555,0.111823104,0.14783406,0.24391237,0.7159967,1.6117452,1.0476135,0.9699785,1.7242076,0.8294506,0.9407289,2.2307453,1.4369639,1.4969189,1.1529642,1.279584,1.2303213,1.3164308,1.2090393,1.3867695,1.2711297,1.3937147,1.4496756,1.6341995,1.2376503,1.4788852,1.1526434,1.092769,0.9401525,1.0359972,0.88359565,1.793859,2.2011504,2.1826286,1.9460748,1.3921865,0.99955004,0.92280054,1.0187609,1.0974039,0.9326165,1.4677794,1.0503421,1.0989155,1.0133979,0.95060027,0.9151591,0.93883365,1.5302055,2.0400817,1.4227536,1.0281318,1.1133057,1.042157,0.86826986,1.0889916,0.92990303,1.0076959,0.9747343,1.1254805,1.0988557,1.2072979,1.0455083,1.1250224,1.0479888,1.0756971,1.030098,1.3120626,1.2883916,1.5215456,1.1417621,2.2235847,0.98108876,0.93230605,1.7259021,1.3978864,1.1577829,1.5455288,0.9388764,0.16929175,0.12508526,0.10012607,0.08298316,0.07445158,0.06490876,0.062395524,0.055662215,0.056221668,0.05078639,0.052489623,0.0],[0.07061847,0.07367519,0.07513297,0.07571927,0.0804998,0.08198894,0.0890413,0.09381704,0.104850024,0.11643179,0.13804066,0.1710468,0.24054967,0.95844173,1.6279507,1.1593894,1.0067014,1.6652597,0.5641966,1.0681795,2.284756,1.3286548,1.6669168,1.0374367,1.3038585,1.0742861,1.1893533,1.0278215,1.198251,0.90881515,1.193518,0.89062834,1.1141542,0.9362895,1.2280188,0.94933784,1.486495,1.2046659,1.0218244,0.9111423,1.4050125,2.349046,2.1681354,2.2543879,1.6233289,0.71311873,1.0479764,0.9287538,0.99907047,1.057204,1.1876019,1.0637901,1.0040817,0.91853315,1.0077567,1.026105,1.0760933,2.0297203,2.2438731,1.6435616,1.2355523,1.0759687,1.0017192,0.99774885,0.9020881,1.0227524,1.0428176,1.1524556,1.2930429,1.1477909,1.2896408,1.5348829,1.7536843,1.4660946,1.3666083,0.93907964,1.1312506,0.97993314,1.268418,0.9201924,2.0379803,0.8959416,0.87404996,1.8062727,1.3749012,1.3245004,1.5141932,0.9388392,0.18917902,0.14734484,0.12278528,0.10562193,0.097155675,0.087492764,0.0848729,0.07784874,0.0789507,0.072981685,0.075033315,0.0],[0.045242146,0.045055322,0.04569767,0.042573802,0.0458645,0.043026164,0.04677068,0.046130307,0.051233467,0.053991262,0.06317042,0.07736384,0.15681428,1.2018808,1.6431478,1.0385103,1.1193364,1.6240271,0.5670954,1.284607,2.0449152,1.5565212,1.4308907,1.0968761,1.2236403,1.2688558,1.5230511,1.4540917,1.2947654,1.120932,1.1244643,0.9006354,1.1425738,1.1758108,1.2091041,1.1829172,1.689471,1.1497318,1.0464001,0.88519216,1.2748736,1.9846115,2.3247552,2.2550015,1.726513,1.463714,0.7958996,1.0071404,1.1099923,0.96772516,0.9833422,0.95492107,1.0293212,0.9549842,1.0530115,0.72741663,1.7787098,1.5495406,2.2912576,1.7963091,0.8472642,1.0413511,0.8917059,1.0701137,1.3575549,1.2874521,1.0052142,1.2256545,1.3576,1.0960432,1.6950203,1.5459945,1.6784062,1.8985971,1.7213115,1.4315599,1.2367406,1.0394734,1.3919572,0.9285046,1.9153746,0.7511873,0.5829919,1.7053804,1.4787679,1.2866368,1.2386531,0.8291922,0.16260347,0.12831478,0.105887555,0.08899964,0.08023457,0.06987436,0.06653371,0.058501583,0.058312688,0.051278327,0.051709495,0.0],[0.055363607,0.05496591,0.056843024,0.05419769,0.0589674,0.057021078,0.0626996,0.06423879,0.072094135,0.07934895,0.094652824,0.12032465,0.1951837,0.8352015,1.660767,1.1079856,1.121817,1.6448449,0.6050796,0.8100379,2.1953433,1.6914471,1.360821,1.2496161,1.2162328,1.6216116,1.2752311,1.0101014,1.1106596,1.073443,1.0771716,1.015526,1.1367191,1.1050978,1.0936413,1.1331724,1.0842849,1.1363636,0.9306661,1.0566117,0.8105407,1.7743816,2.0009203,1.7864497,1.9564598,1.429122,0.9391205,1.0547513,1.3387239,1.3213536,1.3322654,1.2666396,1.3249907,1.2733029,0.9815481,0.8798173,1.6013336,2.0300534,2.043728,1.4908699,0.88394356,0.97832704,0.99747133,1.20712,1.5670886,1.4612955,1.1669362,1.0968294,1.3166434,1.1568327,1.2049074,1.498381,1.0502604,1.1867512,1.1790112,1.5651362,1.7467505,0.96330714,1.2979944,0.8814391,2.1558971,0.7961801,0.6341528,1.7555296,1.4379239,1.164166,1.0799005,0.95547336,0.15565427,0.13821831,0.11604863,0.09870405,0.089332916,0.0785263,0.07482334,0.06696758,0.06655256,0.059992693,0.06029029,0.0],[0.058910154,0.057834,0.0601912,0.057127144,0.06201907,0.05976431,0.06504563,0.06579498,0.072703384,0.0775921,0.08916655,0.10413965,0.11678739,0.98545957,1.5956562,1.0734264,0.9994227,1.6789109,0.8099171,0.9905196,2.011346,1.4437295,1.7866497,1.9016255,1.4763212,1.4357709,1.5906154,1.244659,1.194838,1.1006768,1.1909232,1.6502904,1.2193948,1.1744384,1.1284522,0.9187837,1.1926411,1.086738,0.9281918,0.9860518,0.92238617,1.4136783,2.0177226,1.821164,1.8070873,1.3621789,1.2694596,0.96287686,1.3263265,1.3655754,1.4821421,1.4914284,1.289458,1.1343108,0.68011767,1.2868688,1.7920064,1.8839713,1.9647989,0.7689722,1.0946853,0.8893475,0.99781585,1.0281513,1.3398652,1.0050224,1.2866423,1.1110195,0.99326485,1.1048017,1.3538578,0.8980477,1.2019234,0.96519744,1.2165976,0.9756111,1.7503107,1.4413737,1.3929471,1.1652436,2.020847,0.6689235,0.7021012,1.6806422,1.5039353,1.2499784,1.1580715,0.97176796,0.33310017,0.17925218,0.13502307,0.10994977,0.09654542,0.08449512,0.079082236,0.071561374,0.06961572,0.06410273,0.06310006,0.0],[0.048771597,0.04610468,0.0474584,0.042681072,0.046227634,0.042334903,0.04605663,0.04536216,0.050557446,0.054083847,0.06479144,0.08259011,0.13744974,0.9174063,1.67506,1.0565494,1.0852823,1.5946589,1.0562266,0.72569,2.358835,1.4819022,1.7764922,1.7695811,1.3578343,1.3340698,1.603935,1.3297839,1.5688632,1.6804343,1.1802552,1.115717,1.4541732,1.2646161,1.4858027,1.4093883,1.2235041,1.0708257,0.9679749,0.97557914,0.9571629,0.98504215,1.6533918,1.9411266,1.9005036,1.8663918,1.3553461,1.1064109,1.0952021,1.536331,1.3542821,1.3186277,1.287644,1.23451,0.86151296,1.4930708,1.8620666,1.9680054,1.4542905,0.92924064,0.9858786,0.9317262,1.0002534,1.0975116,1.0657225,1.0380014,1.3983757,1.0680102,1.1817467,1.0914551,1.099051,1.3233982,1.2534888,0.9765318,1.1607454,1.247142,1.0684845,1.2193474,1.2578841,1.00205,1.8106176,0.696776,0.7665515,1.6570449,1.515324,1.2185031,1.4291542,1.128706,0.34377825,0.19548014,0.14546894,0.11619553,0.09953356,0.08528748,0.077450514,0.06853893,0.06440156,0.058172658,0.055066016,0.0],[0.058507957,0.06158542,0.06414,0.06486113,0.07070236,0.07202335,0.07944906,0.08430773,0.095394485,0.10669665,0.12760857,0.16089816,0.24216951,0.9192643,1.5665377,1.0788985,0.91834253,1.8015496,0.965742,0.76611125,2.3144429,1.2423986,1.4405466,1.5527273,1.2394077,1.1261215,1.154589,1.1602819,1.3174244,1.1706383,1.2966766,1.0741444,1.0842382,1.1689609,1.5276965,1.1231693,1.0554192,0.88276803,1.0140681,0.89876276,1.0460856,0.96160865,1.5366105,2.084366,2.0721335,1.5376697,1.3918043,1.0163628,1.1035377,1.2216494,1.0184518,1.3305498,1.5555263,0.9707767,1.2530024,1.7304279,2.0123143,1.7328013,0.9783939,0.9530709,0.9792031,0.9745285,0.9473644,0.96215594,1.1179886,1.281522,1.5370954,1.659549,1.4182193,1.3981165,1.492154,1.2135956,1.470966,1.4684709,1.4387708,1.3954841,1.362689,1.7683592,1.8692539,1.237077,1.8477058,0.8491416,0.8333428,1.6342211,1.4847876,1.2828119,1.5949101,0.9272755,0.26470152,0.13300605,0.10004051,0.082418986,0.075058095,0.06690388,0.06587395,0.060274914,0.06251408,0.057611883,0.060769264,0.0],[0.05499536,0.056806833,0.05960179,0.058942575,0.06469875,0.06515048,0.07210068,0.07577444,0.08608381,0.09549588,0.11314801,0.13824703,0.17608945,0.93430394,1.6174464,1.1923686,1.04806,1.7572281,0.75247407,0.7193297,1.9765623,0.97997105,1.336768,1.1646324,1.3929569,1.0640743,0.9793371,0.98032653,1.1008549,1.1472092,1.0702102,1.0852039,1.0751637,1.0043547,1.2661216,1.0215973,1.0108217,0.9818004,0.9974007,0.95858103,0.9705916,0.89161396,1.1530429,1.6587487,2.1442745,2.1722476,1.7494774,1.172209,1.2129084,1.4543197,1.0299603,1.2838614,1.1582276,1.2117559,1.5945921,1.8920567,2.206713,1.1848677,1.0486022,0.9442711,0.98542386,0.9288162,1.0213832,0.9679852,1.1104623,1.212348,1.290323,1.209102,1.5430547,1.2447648,1.2850035,1.2041578,1.1653547,1.4094067,1.462162,1.7830775,2.0365448,1.8782953,2.2589223,1.7992027,2.4076304,0.7881609,0.80021244,1.646994,1.5105047,1.146475,1.5568329,0.9139292,0.3336031,0.17222014,0.12529483,0.09971672,0.086818285,0.07490212,0.070741214,0.06340956,0.0630573,0.05739131,0.05878478,0.056773033],[0.056557417,0.05904598,0.061978437,0.061540324,0.067319356,0.06849587,0.07544345,0.07888509,0.08894131,0.09798547,0.11469563,0.13820535,0.17935102,0.8986317,1.4981796,1.2308469,0.97711676,1.7752173,0.8306373,1.200412,2.005759,1.0422257,1.4091084,1.0630411,1.3207843,1.1310233,1.1071045,1.0700853,1.0319984,0.8965514,1.1232287,0.94086504,0.9787962,1.1131899,1.272237,1.1314784,0.98987794,0.9359881,0.9656517,0.95641696,0.9820345,1.0062246,1.0998939,1.6109256,1.9862822,2.1424124,1.7765987,1.3324344,1.2439585,0.9918071,1.3507608,1.2910424,1.2533956,1.1399623,1.88231,2.152098,1.729572,1.1257176,0.9664327,0.91336197,1.0141582,0.933035,0.9943899,0.8986798,1.1804137,1.0423312,1.1592635,1.2210388,1.0453472,1.1626035,1.1016545,1.0838307,1.0509765,0.9141954,1.2879438,1.4051342,1.1766211,1.0781718,2.1806836,2.1115906,1.863475,0.21350202,1.1012045,1.6316377,1.5123491,1.3237747,1.7203158,0.84933853,0.35312244,0.17512386,0.12415844,0.09754967,0.08446286,0.07304455,0.06925118,0.062363476,0.06259129,0.05790327,0.059548136,0.0],[0.025531126,0.027566666,0.026931265,0.027355278,0.02835795,0.028198961,0.030377181,0.030424688,0.033649012,0.035070725,0.03972237,0.044431247,0.05020722,0.48776063,1.2998554,1.4644907,0.9402364,1.632464,1.1896628,1.200619,1.7095418,0.9568721,1.0602269,1.0283395,1.2236553,0.9938225,1.0310427,1.0096806,1.1476659,1.0638719,1.3675859,1.0325855,1.3891567,1.1665076,1.0574452,1.171482,0.95304006,0.9936465,0.97488666,0.9713287,0.9552186,0.9144186,1.0997711,1.5581539,2.1905534,2.1665769,1.5746647,1.2778883,0.9903151,1.2260872,1.4552155,1.4225248,1.1346558,1.2894176,1.8434511,2.1415336,1.6148484,1.1633294,0.99005765,0.98524845,0.95507455,0.9584107,0.9853772,1.0035517,0.9913203,1.1161623,1.1087291,0.94317853,1.118128,1.1354817,1.1299022,1.0743403,1.1978697,1.4425231,1.1946577,1.5118827,1.3757532,1.4388468,1.6205171,1.9835032,1.4427017,0.68140864,1.2983948,1.5839329,1.5899698,1.1996629,1.7713648,0.9221624,0.24784654,0.09661147,0.061349176,0.045014545,0.03941806,0.033121396,0.03304923,0.028486477,0.030708518,0.026192244,0.02932912,0.0],[0.015499428,0.016204702,0.01635392,0.020295816,0.018611643,0.022192592,0.020834709,0.024116846,0.021976091,0.022344803,0.017093498,0.009622747,0.05381014,0.29923117,1.4947902,1.4253722,1.3823944,1.3817774,1.8142636,0.30882642,0.94691056,2.1015115,1.117293,1.0788097,0.8915419,1.0653354,1.0463986,1.2941183,1.2739031,1.4405079,1.133855,1.3759983,1.2782038,1.1621462,1.0686618,1.143154,0.9488333,0.9792142,0.9222262,0.9866024,0.95923054,1.0210001,1.1049724,1.6347628,1.9537129,1.7917328,1.3513558,1.1590314,0.7187501,0.7991266,1.4869734,1.462844,0.89091665,1.156362,1.5656793,2.0318303,1.2061644,1.1597983,0.92660767,0.9768511,0.96059203,0.99840224,0.929686,0.9338309,1.1213741,1.2084537,1.1054841,1.0332637,0.879925,1.1677496,1.0338367,1.3595011,1.1934078,1.3261877,1.2107233,1.5618006,1.8899711,1.4435725,1.2787772,1.9117619,1.5986032,0.35976186,1.2608596,1.4395049,1.5685784,1.1006088,1.6384158,1.0183231,0.10700826,0.045721192,0.025295643,0.012281634,0.006922333,0.00066892215,0.0015704251,0.0068277554,0.006237402,0.0114130005,0.010200858,0.0],[0.02225683,0.023519991,0.023816628,0.02870381,0.028090825,0.033280782,0.033403248,0.039230753,0.040694732,0.046177298,0.04938947,0.054665722,0.056494493,0.21570851,1.3481013,1.3805989,1.1931208,1.2881343,1.8159769,0.7755342,0.7344419,2.0095286,1.165101,1.1164049,0.9738885,1.1818849,0.9837495,0.8744072,1.1967474,1.2725515,1.1190383,1.1173908,0.97632277,0.92792225,1.0121369,1.0680411,0.9085035,1.0316663,0.9556539,0.98486054,0.95330936,0.896262,1.0136439,1.4014177,1.615565,1.9641279,1.530065,1.0661263,0.71328443,0.8580354,1.191207,1.288157,0.8624331,1.0749868,1.8595771,1.482663,1.1832399,1.1912733,0.95827335,0.9878537,0.9463162,0.9562184,0.9915315,0.9846691,1.0569707,1.0829988,1.2426096,1.4423846,1.0991422,1.2729355,0.9653727,1.1654304,1.0791597,1.288404,1.1232314,1.4821678,1.5538201,1.3760626,1.1721407,1.9103453,1.4474453,0.5090465,1.523194,1.5032551,1.4452823,1.0024743,1.3778949,0.6215107,0.10729637,0.048045862,0.024725031,0.011646818,0.0060862205,0.0060167736,0.0066282065,0.011758632,0.011468029,0.016550973,0.016012473,0.0],[0.03797774,0.036561586,0.034189988,0.03744777,0.034879636,0.03894178,0.038375653,0.044148725,0.04723714,0.056273602,0.068019256,0.09163791,0.14550836,0.35272783,1.0066186,1.6544534,0.83981085,1.167403,1.5569755,1.1675254,0.2862409,1.009721,1.7327436,1.101392,1.0596253,1.1281279,1.0016364,1.0914046,1.1408651,1.0869085,1.029129,1.0507679,0.9406882,0.99973303,0.9524053,0.9887055,0.9730916,0.9662388,0.92269033,1.0035276,0.910644,1.268423,1.3098216,1.1009886,1.6329075,2.142968,1.8549016,1.4224819,0.9417523,0.657368,0.8608365,0.8136457,0.8048473,1.624982,1.5442349,1.3521069,1.2077771,1.1326936,0.9582449,0.9536229,0.9827724,0.9739386,0.9531465,0.96198606,1.4032662,1.3036643,1.3834853,1.427701,1.1849209,1.2839528,0.9649456,1.0244087,1.000284,1.1686475,1.0073755,1.1992109,0.88030136,1.3017331,0.90321404,1.7483528,1.2614024,0.28557703,1.636334,1.4279505,1.175186,1.2788469,1.190153,0.13337147,0.09386095,0.08313754,0.07203093,0.065361254,0.057559893,0.054661203,0.047892436,0.047421135,0.04204121,0.042273175,0.038268153,0.0],[0.022483468,0.01800998,0.013903159,0.013692067,0.008051432,0.008621099,0.0045053996,0.006916614,0.0083009135,0.01249492,0.019295067,0.030920772,0.058232926,0.28020293,1.1554393,1.738022,1.232017,1.3078597,1.3592479,1.6857755,0.34598595,1.372793,2.1936457,0.9056151,1.1873192,0.8090609,1.0376457,0.8767217,1.022888,0.9270251,1.0619044,0.9339494,1.218749,0.7288654,0.9385327,0.97023416,0.9603671,0.9775084,0.998056,0.953761,0.9573515,1.0664613,1.1478925,1.0986907,1.7484275,1.9804492,1.717492,1.7585609,0.8702709,1.0982329,0.9025868,0.7141076,1.3879719,0.9967861,1.4546504,1.8478693,1.174524,1.2189898,0.92553055,1.018355,0.9126902,0.99546987,0.9441324,1.0527484,1.0802538,1.0164002,0.9534296,1.129799,1.2006695,1.2233692,0.8628539,1.1346327,1.1125759,1.0502683,0.82125187,1.3409507,0.8641686,1.2862033,1.122515,2.1997263,0.9886969,0.6185766,1.8472487,1.4448007,1.3618194,1.615133,1.4291816,0.24902068,0.13559611,0.10209025,0.08258579,0.07106752,0.059578605,0.053901028,0.04473945,0.04219354,0.034432765,0.033001233,0.026325976,0.0],[0.022196008,0.017021665,0.014851081,0.013012879,0.010255586,0.008939727,0.007153492,0.0059133144,0.0055964626,0.004648995,0.003976279,0.0036756995,0.014203683,0.06149747,0.5141715,1.512886,1.4141835,1.2428572,1.1592412,1.8333906,0.37360227,1.3840133,1.7704153,1.1026405,1.1085038,0.86380666,1.0837532,0.934972,1.0945866,0.9131291,1.0072464,1.032877,1.8022332,1.1580374,0.98207104,0.9403595,1.0259013,0.89093965,1.0029656,0.9122971,1.0446001,0.85310394,1.1585332,1.1243939,1.6615919,1.965617,1.8076012,1.3991045,1.0535388,1.3802704,0.9405036,0.9014971,0.87962365,1.1762154,1.3910749,1.6360667,1.170356,1.1613001,0.9265494,0.9833783,0.9514116,1.0039635,0.934625,0.9635978,0.9116953,1.021181,1.0560308,1.0939419,0.95289147,0.96681726,0.9684881,1.3962659,0.90615183,1.0856229,1.0337979,1.3409535,0.95259535,1.2077577,1.0267369,2.0882466,1.1863015,0.77543414,1.7121087,1.5448787,1.3054035,1.5183524,1.179315,0.15652266,0.13633843,0.10263667,0.08213848,0.06950277,0.057882555,0.05180733,0.0427695,0.040635288,0.032673713,0.031789374,0.024603143,0.0],[0.02835402,0.026649114,0.028370457,0.024927814,0.02830004,0.025848674,0.03000912,0.029079385,0.033532742,0.03551638,0.042005133,0.050271917,0.07050509,0.103511505,0.33546188,1.409105,1.4783913,1.2151805,1.1638175,1.7183875,1.1836137,0.6378066,0.7717003,1.015525,1.094395,1.0119997,0.9182319,0.9895024,1.0675192,1.2052522,1.107582,1.0425192,1.3130502,1.2206434,1.1297468,0.9427106,0.9908662,0.96426606,1.0129356,0.95380497,0.98297125,0.95293957,1.1049516,1.135155,1.8085436,2.0369132,1.6695274,1.439245,1.1461751,1.2623138,1.2419169,1.278553,1.2291493,0.9307984,1.5088667,1.4510535,1.1379135,1.107244,0.92873627,0.9979218,0.9521119,0.97749686,0.96587574,1.0323788,1.0112804,0.96147233,0.96260494,0.96689504,0.9597066,0.9733605,0.95870006,1.0036545,1.1088967,1.1069738,1.116497,1.0705519,1.3225604,1.2616061,1.7495184,1.2440214,0.3382345,1.4946873,1.4778235,1.4906154,1.1676826,1.638843,0.66500455,0.20295985,0.102821946,0.08120229,0.06808255,0.058333896,0.052211944,0.046014316,0.042462453,0.038189843,0.03608288,0.03327791,0.031102952,0.0],[0.023424357,0.020085188,0.01993159,0.014085067,0.015304169,0.009880661,0.010662565,0.006393291,0.006217109,0.0042859036,0.004040029,0.005820424,0.0068777786,0.036787037,0.23185731,1.0226144,1.7141222,1.3437996,1.2862854,1.5673333,1.3492926,0.27048245,0.8115455,1.3638664,0.93919337,1.0608231,1.2103289,1.3116856,1.3281868,1.2061124,1.1540283,1.2482476,1.1613214,0.9371179,1.0986667,1.0546569,0.9626511,0.96889776,0.9407116,0.96463686,0.98770964,0.92785907,1.1262897,1.2101105,2.1096413,1.8134748,1.3789963,1.2789375,1.3423982,1.0852407,1.3536493,1.1979846,1.4684361,0.9009112,1.2301872,1.2589734,1.118397,1.0843778,0.93564266,0.96938795,0.9698021,0.97352284,0.96316224,0.92668706,0.98090744,0.9696528,1.043862,0.9698565,1.0599136,0.99251693,1.0185428,0.89282995,0.984168,0.9507869,1.0373458,0.98380387,1.3985267,1.4614323,2.091943,1.4594995,0.6579753,1.807924,1.4227908,1.3465682,1.2880403,1.2914084,0.6867014,0.20568578,0.14123009,0.10281202,0.08332975,0.069096,0.060783666,0.051552277,0.04712723,0.04029391,0.03779492,0.032371856,0.02981965,0.0],[0.0,0.012182462,0.00996045,0.01442639,0.012768097,0.018059254,0.01789917,0.023450365,0.02520031,0.03102865,0.03536657,0.042267673,0.048065793,0.07356853,0.14175792,0.5193589,1.5953096,1.4075037,1.2475488,1.4471897,1.7658166,0.30218998,1.4430606,1.5220346,0.9600281,1.2026348,0.9608682,1.4665761,1.489595,1.2694967,1.1758084,1.1832433,0.9892175,0.97157645,0.9961973,0.9939992,0.96463275,1.0051738,0.98408765,0.9662989,0.9560096,0.97409517,1.1304591,1.2526976,1.931308,1.5223981,1.1104269,1.3271123,1.2170111,1.4353322,1.2715576,1.1562234,1.2701502,1.0751722,1.0262941,1.1311293,1.1528523,0.9430212,0.9813568,0.9670426,0.9686558,0.94307876,1.0081038,1.0150402,1.0935037,0.92894524,1.0640094,1.0221564,1.2079676,1.2079352,1.1419749,1.0316828,1.0351741,0.9044181,1.1239984,0.87320626,1.2433369,1.0546647,1.8715378,1.6158797,0.7757458,1.607305,1.5323136,1.300424,1.4385974,1.1960634,0.097794026,0.066367105,0.062357765,0.05044591,0.04292969,0.035872143,0.032207604,0.026063558,0.024523426,0.018674549,0.019155135,0.013676544,0.0,0.0],[0.0,0.006064856,0.0028921028,0.0037063954,0.004498664,0.011117504,0.0128122065,0.019375362,0.022304466,0.029276798,0.03446282,0.042698666,0.05253831,0.067257956,0.08628582,0.1285741,1.2801843,1.4610192,1.1691693,1.1591351,1.8476357,0.3958541,1.7092785,1.6909965,0.9915462,1.482379,1.2814742,1.395775,1.0993968,1.1025254,1.0739923,1.1824151,1.0101273,0.99646735,0.98848826,1.0047423,1.0206146,0.9594627,0.9579306,0.9504661,1.0061313,0.91186535,1.128802,1.1177064,1.3416526,1.0846503,0.831482,1.3617227,1.1555297,1.2777016,1.1902583,1.1090332,1.3543694,0.99853647,0.82353896,1.0129713,1.0700003,0.963317,0.96472704,0.9505186,0.98484373,0.9614497,1.005557,0.92162687,1.0889845,1.1168267,1.1512501,1.0655444,1.1949109,1.121909,1.2582912,1.1265584,1.2055541,1.123354,1.1051133,0.95405465,1.2975152,0.98969936,1.5080686,1.788242,1.086036,1.8229277,1.373602,1.302573,1.6297817,1.3036135,0.31074363,0.16718979,0.11459586,0.08916027,0.073178284,0.06020377,0.052205563,0.042499155,0.038334213,0.029677672,0.028016822,0.019991137,0.0,0.0],[0.0,0.002011646,0.003927094,0.006313278,0.008259753,0.010578123,0.0131009845,0.01602477,0.019119017,0.023279956,0.027761932,0.034606915,0.046708837,0.04245803,0.054260947,0.14342126,0.59339315,1.4723666,1.3583025,1.277492,1.801314,0.93847114,1.4597331,2.2161171,1.5236433,1.0233344,1.5181229,1.2376184,1.0479568,0.97280294,1.0072703,0.9801474,1.0026757,0.9711884,1.0049324,0.9857445,0.98746294,1.0099195,0.98570704,0.9648425,0.9556149,0.9959538,1.0887648,1.078961,1.0364373,0.87136936,0.9724618,1.3755223,1.3547561,1.9003009,1.4457446,1.5755504,1.3653743,1.1774426,1.050908,1.0015029,1.0402594,0.9429297,0.97554606,0.9634017,0.9696561,0.9412721,1.0171622,0.9859145,1.0841694,1.2301639,1.068948,1.0540822,1.1162393,1.1985536,1.1575557,1.2142056,1.2159284,1.245891,1.3999798,0.91679907,1.098607,1.22006,1.884386,1.4828973,1.1958449,1.6227659,1.2608414,1.2697182,1.5302619,0.71315366,0.12498278,0.069292925,0.05891582,0.043395,0.03451551,0.028179131,0.023813609,0.019033244,0.016828815,0.012151208,0.011665134,0.0066340356,0.0,0.0],[0.0,0.017154267,0.01554206,0.017014245,0.014668718,0.017168418,0.016106585,0.018168883,0.018438522,0.02083986,0.022329846,0.025078345,0.025320109,0.044503298,0.055837505,0.05386778,0.5575013,1.5980616,1.2899181,1.4019061,1.5528082,1.3011485,0.677811,1.7759452,1.5333276,1.0802635,1.0013154,1.0256715,1.1567973,0.99824625,0.97171074,0.9445649,0.98123825,0.9412971,0.9768611,0.96047246,1.0356152,0.9383463,0.98603165,0.9425644,1.0080328,0.94694453,1.0737205,0.9608459,1.0345759,0.8821736,1.0985537,1.5172577,1.6956449,1.0982206,1.2240152,1.3464892,1.6838725,1.2914524,0.8063916,1.01672,0.89513576,1.0079337,0.92019665,1.0005426,0.9309793,1.0377613,0.9456984,1.0295831,1.2225473,1.1644938,1.0263362,1.1693408,1.0421134,1.066287,1.1779281,0.9779218,1.1385546,1.6116809,1.3028171,1.5506488,1.1112072,1.6121181,1.6268638,0.94217414,1.7013807,1.6210749,1.177261,1.3244416,1.4200368,0.27309304,0.09992606,0.08012786,0.06366151,0.055619594,0.047547117,0.04253468,0.03657416,0.03417128,0.028769042,0.028280167,0.022918027,0.023923501,0.0,0.0],[0.0,0.014706607,0.014317696,0.015913315,0.017304406,0.017795268,0.020382334,0.02107668,0.02403499,0.025511054,0.029017318,0.03171093,0.036085404,0.048847944,0.057719152,0.056021865,0.057375316,0.7904381,1.6661558,1.2906088,1.2654917,1.8555098,0.30475584,1.6976618,1.1753191,1.087624,1.2056535,1.061538,1.2215846,1.2058953,1.2057112,1.1123816,0.9675511,0.9785247,0.9857672,0.9619266,0.9595706,1.0120683,1.0035647,0.95569515,0.9584538,0.9693194,0.94785655,0.9576016,0.99665684,0.96913934,1.5522012,1.3799603,1.4995766,1.2780848,1.2253189,1.4951699,1.4137813,1.2099373,0.98672587,1.04598,0.95856386,0.9974879,0.9403155,1.0063791,0.9325554,0.989371,0.9721026,1.118768,0.91906434,1.0986822,0.95374906,1.1823006,1.1771467,1.2189173,1.0115538,1.0731157,1.1525756,1.5838233,1.5560503,1.5103482,1.4093673,1.9321661,1.8027835,1.0166731,1.6671482,1.4621241,1.3685205,1.4216849,0.94008934,0.059481915,0.06570549,0.044861693,0.03515196,0.027566312,0.021916324,0.019329015,0.01589711,0.014922398,0.013088658,0.012716889,0.012284191,0.011408604,0.0,0.0],[0.0,0.0,0.008972329,0.012623986,0.009998988,0.013686203,0.013223111,0.016057812,0.017574128,0.020344764,0.023796717,0.028277902,0.037739873,0.0311696,0.04311586,0.069951445,0.12054226,0.6859722,1.7472125,1.337317,1.2945164,1.7939388,0.2556109,1.8246784,1.6449943,1.1504707,1.2259501,1.2114967,1.2404692,1.0825921,1.1721134,1.0437187,1.0823013,0.8996845,0.99034315,0.93075955,1.079092,0.9293806,1.0070037,0.92547566,1.0194843,0.914267,1.0369693,0.9444974,1.0000336,1.0066235,1.2686352,1.0717725,1.3442597,0.07395189,0.50777936,1.1953374,1.2309178,1.1900584,0.8854467,0.97173417,0.9470713,0.9966959,0.95339626,0.95998114,0.96625894,0.98791546,0.9820814,0.9697116,1.0485694,0.9988626,0.95958096,1.0049815,1.1148945,1.1733984,1.1790868,1.091508,1.0658343,1.0549418,1.3431971,1.9331864,1.7755103,2.1701083,1.1323396,1.1138966,1.6887525,1.3973396,1.136689,1.4288381,0.43075716,0.087320045,0.04832349,0.034305707,0.035188243,0.027770514,0.023439014,0.02105945,0.017781604,0.017371586,0.013608968,0.015157752,0.0107134245,0.0,0.0,0.0],[0.0,0.0,0.018368997,0.016569642,0.01836576,0.017175706,0.01810116,0.017826764,0.018652527,0.019184643,0.020308588,0.022506636,0.028511252,0.018582456,0.024780456,0.038874656,0.055344015,0.47868413,1.5632076,1.3057351,1.321548,1.6504952,0.8040942,0.37361595,2.1236072,1.6353369,1.2972378,1.090641,1.0688751,1.1493275,0.93146557,0.986579,1.0605528,0.95198196,1.0564547,0.9855962,0.94671196,1.0249699,1.0111604,0.9342115,0.9863738,0.94270647,0.9915478,0.953921,1.0646149,0.9622491,1.0345699,0.9085441,1.2479116,0.6727593,0.813447,1.2057885,1.0946529,1.0355896,0.99778086,1.0506709,1.0037655,0.9885962,0.970994,0.9730974,0.9693613,0.9386165,0.9915907,1.004544,0.95227903,0.94905776,0.9796312,0.95652264,0.9753398,1.1535937,1.248058,1.1612109,1.2749624,1.473586,1.3425907,1.2860017,2.2479432,1.949274,0.5299908,1.3720448,1.6215559,1.1686214,1.0168376,1.5234737,0.12315371,0.096930474,0.043537367,0.041440632,0.031123813,0.030117815,0.028440658,0.025898153,0.024534883,0.02275319,0.021783857,0.020739436,0.019612428,0.0,0.0,0.0],[0.0,0.0,0.011931122,0.010634517,0.010367901,0.01101411,0.009948421,0.011110307,0.010211787,0.011635772,0.011750575,0.014168738,0.01832636,0.019451205,0.021098072,0.026616292,0.03275219,0.12798648,0.9218022,1.5269833,0.9461534,1.4975398,1.2146829,0.6666999,2.442993,1.9884648,1.3955677,1.157106,0.8164861,1.1395274,1.1556652,1.1069744,1.0602747,1.0112695,0.9787556,1.0441705,0.9849047,0.9620868,1.0069216,0.94119537,1.0095812,0.92692906,1.0330398,0.96570414,0.99271554,0.95185244,0.9979546,0.94011575,1.3487135,0.521683,1.009667,1.1708907,1.0824885,1.0261116,0.92753744,0.9768404,0.9591369,0.97073185,0.96074295,0.9546137,0.9732247,0.97420233,1.0368549,1.0143921,1.0322773,0.9948824,0.94972736,0.94938827,0.9473487,1.0552057,1.1854749,1.2184473,1.2075585,1.1239125,1.2405881,1.6205622,2.1610525,1.7654576,0.59145796,1.6955211,1.4007676,1.4106077,1.3542005,1.5419877,0.26397327,0.039415028,0.044497322,0.031411104,0.032955363,0.025745139,0.022890246,0.020197473,0.018813731,0.017156336,0.015997164,0.015331584,0.013765832,0.0,0.0,0.0],[0.0,0.0,0.0,0.024934897,0.022709744,0.025692176,0.024468651,0.027115203,0.026983188,0.0289549,0.029800763,0.031078927,0.029292047,0.04379507,0.04642231,0.05267211,0.07634029,0.13314652,0.68595445,1.818586,1.4126176,1.3671032,1.6062886,0.43233526,1.5729474,1.9572371,0.77471614,1.3441132,1.0010269,1.1465578,1.0259103,1.049073,1.0540982,1.0995797,0.9557225,1.0408623,0.96019524,1.0437844,0.96866226,0.9759938,0.9446813,0.9884639,0.9377711,0.9937397,1.0075186,1.0328082,1.0923085,1.1196766,1.1672214,0.8428505,1.2643749,1.2755048,1.0321481,1.0712817,1.169788,1.0062402,0.9771368,0.987319,0.94925225,0.99303114,0.95063084,0.9619421,1.012823,1.1349015,1.0135714,0.9470446,1.0394769,1.0937295,1.0738355,1.0744046,0.9699812,1.1251662,1.2373027,1.4734085,1.301029,1.6492984,2.0313096,0.8566392,1.2020278,1.6633834,1.276659,0.98328245,1.608862,1.3451563,0.08925898,0.03200613,0.036251675,0.02844322,0.03129889,0.027001828,0.024574725,0.023784557,0.022586333,0.022379024,0.021838374,0.021731336,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.034960918,0.032271553,0.03523981,0.033544336,0.03590957,0.035667654,0.037559,0.03862645,0.041397166,0.04756858,0.039558284,0.04601492,0.052413303,0.062486477,0.05921962,0.4728706,1.3215193,1.4355785,1.163964,1.735156,0.6611852,0.3049094,2.0709853,1.3309044,1.1848077,1.1131264,1.1444521,1.0959618,1.1932714,1.1353499,1.1549386,1.0095246,0.943912,0.9913661,0.99832183,0.9630985,0.9608202,0.9849197,0.9425699,1.0007155,0.9620459,1.0452198,1.28684,1.3038261,1.1562617,1.0968704,1.8808151,1.9824238,1.3157825,1.1111463,0.89528644,0.9866318,0.9838507,1.1264133,0.92359823,1.0070688,0.9119716,1.0129488,0.9455975,0.9949882,0.8484832,1.0364627,1.0393977,1.1723957,1.1826822,1.2456261,1.189015,1.254439,0.99606997,1.2178665,1.3903807,1.9012567,2.0615568,2.3550208,0.3824424,1.2687056,1.527054,1.3623729,1.2084813,1.5098685,0.38306117,0.06203552,0.07017026,0.057172544,0.05300585,0.041519966,0.041074127,0.039054807,0.0376968,0.036329724,0.035287943,0.034734346,0.033991024,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.02253595,0.020746797,0.025545638,0.025013927,0.02870345,0.030463664,0.034689747,0.03918549,0.048436575,0.04509234,0.056800865,0.07164584,0.09525857,0.12297298,0.15751232,0.9877637,1.766571,1.1887406,1.4714214,1.1206529,0.2759899,1.657885,1.6824138,1.1283814,1.2463145,1.4976782,1.6242617,1.0948526,1.271236,1.1277074,1.0866817,0.9961045,0.9512067,0.97207,0.97942144,0.9600623,0.96038014,0.9817792,0.93899596,1.0798633,1.2868333,1.2192272,1.1599709,1.1017492,1.2082411,1.0121579,1.8166203,1.3401697,1.1094664,1.0429347,0.99156433,1.0193192,0.98058075,0.98908824,0.94815654,0.996637,0.9445082,0.96087855,0.9645847,1.0617895,0.9534494,1.0846632,1.0351764,1.1507021,1.1311259,1.5061619,1.2157491,1.2378347,1.1720285,1.6106946,1.5473329,2.3833337,1.0455949,0.116449766,1.79326,1.2863767,1.125065,1.2870594,1.6747094,0.10350792,0.08928801,0.055025786,0.023951827,0.017416906,0.018271068,0.01513867,0.014299752,0.012916764,0.013873204,0.012213559,0.014518549,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.026090022,0.02452051,0.02500529,0.024061207,0.024190318,0.02371248,0.023477862,0.022914471,0.019402154,0.031234378,0.027754385,0.030190377,0.036632247,0.0635764,0.13123758,0.726049,1.7484709,1.3555044,1.4360029,1.4761083,0.36606067,1.2763747,2.0828443,0.92695725,1.3236976,1.1051666,1.3243163,1.1612821,1.1207111,1.0329996,1.0729376,0.89438665,1.043695,0.9119116,1.0014278,0.9357378,1.0129597,0.9120132,1.0312613,0.95117223,1.1293106,1.1267912,1.2878222,1.3413153,1.2276148,1.2966555,1.522591,1.0691065,1.2340075,0.9166413,0.98139304,0.8810895,1.00628,0.91775423,1.0153317,0.9053849,1.0155087,0.94373596,0.99156785,0.84077203,1.0115911,0.9541302,1.1368977,1.0147063,1.2157079,1.2145325,1.6816278,1.0749887,1.7106367,1.4405932,1.8771551,1.532019,0.42686334,1.1087995,1.4284873,1.2819875,1.2591534,1.3884236,1.0780797,0.08233578,0.094465666,0.06354838,0.06535739,0.053496525,0.054364264,0.047176756,0.043551885,0.040416133,0.03802658,0.036204536,0.034053955,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.027634725,0.030585747,0.03126055,0.03425267,0.035843514,0.039211757,0.041754093,0.046236422,0.052525785,0.054841947,0.062292885,0.05788275,0.095094696,0.12295771,0.61862344,1.1610811,1.4349127,1.176661,1.7295097,0.9512379,0.9376072,1.8417115,1.1032196,1.3502959,1.0055939,1.1884094,1.2004236,1.2218415,0.98253375,1.0958976,0.9465883,0.94752085,0.96694845,0.9914411,0.9434522,0.9709395,0.9757168,0.9387222,1.050172,1.1944896,1.1980587,1.0361053,0.8481863,1.2564387,0.9382844,1.1970958,1.3282967,1.1567175,1.1689982,1.0611113,1.0075268,0.9835934,0.9639481,0.9689489,0.98018736,0.9624316,0.9468416,0.9911792,1.047345,0.94554055,0.94585705,1.0402356,1.077972,1.1196781,1.1216543,1.1180146,1.3072201,1.8540407,2.157488,1.701685,0.982441,0.18831117,1.5196227,1.5656333,1.229656,1.1924481,1.5926294,0.8018622,0.10141308,0.0682275,0.03109211,0.040133897,0.028455991,0.027146632,0.021956824,0.018850334,0.017781781,0.01695725,0.016609848,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.029945081,0.028806938,0.031295042,0.031229025,0.03330276,0.033837467,0.03595044,0.038232513,0.04002922,0.038991075,0.043130577,0.033792887,0.055162966,0.08896248,0.2916248,1.2342278,1.8086045,1.5911736,1.2097411,1.3991029,0.12399371,1.3308733,1.7583958,0.95287186,1.2722361,1.3053267,1.1184032,1.0909173,1.3127707,1.2547477,1.07388,0.9772425,0.9912443,0.9317946,1.0076898,0.94083375,0.9803048,0.95891726,0.9966553,1.0789684,1.2754971,0.9117718,0.62693703,1.4846257,2.127935,1.2202233,0.99465644,1.2342469,1.1675644,1.1280282,1.0193298,0.985042,0.9470196,0.9804599,0.9373167,0.985935,0.9709283,0.94382805,0.8702456,1.004766,1.1400604,1.0249244,1.0143169,1.0994632,1.2455777,1.2633518,1.179934,1.6512465,2.1288521,1.2444323,0.44096026,1.1653454,1.4663709,1.3564452,1.3482513,1.7061952,1.1233265,0.2950221,0.07136721,0.0074737407,0.022756834,0.0040057446,0.008579322,0.008688799,0.011794101,0.01310917,0.015377314,0.015674748,0.01853595,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.020513743,0.016810175,0.016247826,0.013209454,0.011998392,0.00946384,0.008598078,0.012391532,0.01003122,0.01584899,0.026597967,0.05335243,0.10316899,0.24895245,0.9758053,1.410177,1.373735,1.3479952,1.468351,1.0067087,0.26687452,1.7696469,1.4491925,1.4288354,1.3004241,1.0781192,1.2962514,1.077019,1.0846167,1.1215357,1.1326816,0.9667924,0.9714665,0.93051755,0.9903293,0.9527376,0.9772723,0.9204355,1.168433,0.9689894,1.4688704,1.9292271,1.3012356,1.9666523,2.1886587,1.6582011,1.1653315,1.2004726,1.2983902,1.045667,0.9555619,0.9677259,0.9765171,0.9652557,0.97899956,0.9580776,1.129985,1.0705023,1.0034527,0.90029025,1.2331665,0.9875903,1.1743844,0.8211409,1.178226,0.9587974,1.7934961,1.4494752,1.0500298,0.5418494,0.8217046,1.638414,1.1677072,1.6190661,1.1022744,0.6101299,0.34138635,0.14768304,0.11308136,0.10647556,0.07680478,0.07261135,0.06682705,0.0625902,0.05916051,0.054632396,0.052296992,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.03451163,0.034162305,0.037128866,0.03804498,0.040392295,0.041640386,0.04090862,0.053894527,0.054060254,0.059908174,0.067183636,0.08881023,0.1132264,0.16114894,0.5082779,1.2349436,1.509443,1.3815513,1.1498965,1.2573876,0.22165929,1.4596839,1.6642047,1.1326628,1.3300905,1.3501608,1.2291377,1.0764316,1.1450883,1.2357558,1.1327946,0.9985988,1.0939559,1.0030262,0.97274035,0.9372427,1.0024034,0.9601655,1.0150808,0.9525157,0.91073626,0.9669223,1.1763443,1.2363442,1.3901988,1.426867,1.1920754,1.1915463,1.0839256,1.0165509,0.92784965,0.992056,0.93652886,0.97438973,0.95058227,1.2149673,1.2207378,1.1392733,1.1071279,1.0376332,1.0197648,1.2372131,1.1840482,1.1389853,1.223884,1.1066128,1.3584808,1.2065905,0.8993254,1.1187606,1.1246903,1.3702887,1.1932127,1.8617148,0.8389529,0.3541176,0.19219837,0.07914634,0.04436742,0.034076825,0.013151117,0.010408917,0.016567603,0.015227445,0.01633236,0.016921544,0.018430663,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014128879,0.0131208645,0.014431129,0.013949722,0.014741953,0.013517462,0.018196814,0.018958481,0.018537909,0.030846484,0.027632577,0.030627666,0.06034795,0.11916539,0.70561594,1.4304974,1.5584433,1.621215,1.4050931,0.83565634,0.59720385,1.9318634,1.4541103,1.1909629,1.685314,1.1207368,1.2419107,1.0790858,1.2332981,0.88642335,1.2033752,1.2477951,1.1081479,0.92354774,1.0113463,0.916515,0.97692764,0.98307145,1.0930883,1.33691,1.485215,1.1755617,0.94875216,0.7925301,1.0524012,1.1603681,1.0366576,1.1326164,1.094102,0.991974,0.97017944,0.9633801,0.9743941,1.019286,1.1524675,1.1643562,1.2873676,1.1714556,1.130143,1.0420063,1.0031917,1.1540257,1.1804788,1.1308408,1.3825295,1.7196476,1.0576046,0.7747547,0.9278284,1.5436866,1.362364,1.6364425,1.2142707,0.34041795,0.09410691,0.05586735,0.0877034,0.031934798,0.032358415,0.02618909,0.025050785,0.018998941,0.018652122,0.017631117,0.017027617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02214355,0.020875175,0.021793183,0.021992832,0.023413124,0.027598916,0.01939033,0.02739657,0.026757628,0.041775446,0.027154332,0.024726309,0.039767932,0.046322778,0.35491994,0.8142459,1.8848804,1.4805477,1.4041538,0.9119759,0.60892516,1.1861075,1.8037062,1.6894405,1.6407776,1.448447,1.0924793,1.2665225,1.0244843,1.2428539,1.1633556,1.1914325,1.1414093,0.9314435,0.96544755,0.96963066,1.0038034,0.89563423,0.9943548,0.953097,1.1218377,1.4651273,1.5626656,1.0694488,1.1885065,1.1992688,1.1628036,1.1878403,1.1046073,0.9995851,0.9450829,0.98921734,1.0161047,0.9895047,1.2470657,1.3002162,1.1627584,1.1400644,1.2916386,1.0999596,1.21973,1.0739206,1.5523578,1.0342029,1.9489079,1.7780027,0.99606705,0.85609657,0.9245168,1.7459013,1.4231918,1.6776624,0.87505853,0.27603984,0.123269096,0.08577904,0.06992348,0.060260553,0.06103891,0.040816702,0.043023247,0.03896522,0.039427128,0.03751905,0.03694509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019706694,0.020418622,0.02226116,0.02449077,0.029555662,0.022719827,0.030766394,0.031969793,0.043586824,0.03264981,0.032351445,0.031019934,0.061501287,0.10358227,0.57164645,1.4512291,1.3677568,1.5463829,0.8163882,0.7961704,1.2771175,1.026089,2.2134755,1.791688,1.1933415,1.1463027,1.0800916,1.070598,1.1788663,1.1720763,1.2892318,1.0683957,1.1075691,0.98819613,0.9647097,0.92268884,1.03434,0.98184985,1.1939223,1.2209771,1.2260015,1.0765067,1.4518006,1.1704501,1.1410682,1.3983718,1.0258284,1.2570964,0.8988787,1.0462214,1.0284293,1.2912333,1.0459415,1.0927514,1.196011,1.596323,1.1933712,1.1103188,1.1949296,1.1498212,1.2097012,1.2814785,1.6950157,2.0432954,0.75050676,0.6974675,0.61863863,1.0897602,1.6518619,1.426907,1.162382,0.25577787,0.13753289,0.0518507,0.0033108378,0.052655134,0.015427087,0.0202616,0.023093665,0.022147615,0.017400075,0.017362075,0.01689027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019444078,0.021010257,0.023720227,0.029074326,0.022322522,0.030482197,0.03146458,0.041657142,0.031349458,0.033092607,0.027600221,0.055862002,0.09570471,0.28027877,0.7729531,1.6563956,1.2179704,1.2078551,1.012058,1.2663144,0.92622566,1.6302264,1.6184536,1.0107976,1.1993643,1.11053,1.2870021,1.2453437,1.2114118,1.0697246,1.1371713,1.0356995,1.0183814,0.9380995,1.0319437,0.8962116,1.1634971,1.1155862,1.0930274,1.233716,1.2989986,1.7670978,1.5488888,1.4868249,1.0581156,1.2039042,1.0048077,0.9807236,0.9456595,0.9741593,1.2225713,1.1424456,1.2364335,1.2140437,1.4870754,1.1971191,1.238657,1.1868039,1.1390353,1.3581289,1.4643033,2.1167843,0.3796401,0.57565945,1.1601819,1.1048677,1.5337545,1.4119796,1.188306,0.91567266,0.10547771,0.12700766,0.0813502,0.05191263,0.01361592,0.02525935,0.013572252,0.022942951,0.01597485,0.016798057,0.012442842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01406303,0.013622888,0.014503016,0.014085216,0.016262032,0.018270826,0.015450229,0.028006447,0.020000324,0.016105967,0.02497981,0.011218098,0.015516341,0.032774374,0.23426627,0.81295305,1.4613293,1.5730404,0.7331459,0.93248737,1.3162175,1.1206806,1.6817017,1.1957943,1.1696163,1.1620108,1.1982205,1.028209,1.0775616,1.0314349,1.0379103,1.0745561,1.0066679,0.9478957,0.93160087,1.0503651,1.09381,1.2552376,1.3409923,1.1181091,1.0239841,2.2495513,1.3467516,1.0511743,1.3079518,1.2115129,1.0961255,0.91551447,1.0416125,1.061475,1.2510616,1.153516,1.3199672,1.1578664,1.1875161,0.94419825,1.0691631,1.2800322,1.1731194,1.690805,2.155504,1.595876,0.14750144,1.0022458,0.83630663,1.1610218,1.4772019,1.5311619,0.8099788,0.19922452,0.23280093,0.11806679,0.08285178,0.061584678,0.014156116,0.037961923,0.027809376,0.0294901,0.023415642,0.02459042,0.02092819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015007398,0.014619679,0.015709205,0.014503543,0.018450456,0.0138701005,0.027476182,0.014969016,0.009794104,0.01469285,0.0063664685,0.022810623,0.045767352,0.20782535,0.6768613,1.721905,1.0218505,1.6841321,0.46575704,0.90684974,0.88551956,1.8364764,1.219205,1.5630533,1.3799489,1.1558151,1.2933065,1.0917428,1.1222105,1.1598974,1.0466864,0.9151377,0.99561644,0.9862199,0.9313233,1.0593125,1.0983534,1.047671,1.4414911,1.8273236,2.2123492,1.574089,1.3320535,1.1679361,1.240077,0.97484756,0.97295785,1.0649617,1.1571405,1.1947676,1.1897643,1.3774424,1.1487087,1.0394864,1.2196537,1.4597343,1.1128783,1.1860374,1.3952972,2.3520656,0.9570988,0.3551669,0.0872991,0.7676053,1.2718805,1.4011672,1.2931433,0.29494965,0.11105651,0.037356857,0.076039426,0.028240297,0.011091295,0.037168264,0.01101386,0.012930264,0.024149636,0.021112889,0.019928645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009452331,0.010798625,0.005795046,0.009283499,0.0040346794,0.014881151,0.0043504327,0.011894954,0.022623379,0.016555982,0.03468543,0.026824255,0.17646575,0.31222588,0.93085057,1.6647638,1.123912,1.029253,0.5097645,0.7982521,0.35536203,1.99577,1.988608,1.9134064,1.1700294,1.1133351,1.20051,1.5335747,1.0208061,1.2046672,1.0539346,0.97762287,0.88174444,1.069329,0.97234964,1.2465237,1.2461677,1.4151196,1.5827887,2.2443416,2.3043556,1.8393883,1.3202158,1.2635359,1.0633439,0.9600926,1.1166923,1.1624349,1.078549,1.1730233,0.9476319,1.3711958,1.254293,1.3528363,1.4660764,1.5168918,1.2671663,2.0768166,1.5288495,0.58119154,0.11249819,0.6595935,1.418366,1.2966205,1.835169,0.83957493,0.24816276,0.08575836,0.046419185,0.047013782,0.036836933,0.0378566,0.059946317,0.034387074,0.03530671,0.028557226,0.02898538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009410618,0.0075156074,0.010161364,0.004774735,0.016971713,0.011278795,0.015701897,0.028405242,0.025947405,0.030182643,0.019626293,0.10802447,0.31906742,0.69714844,1.8079604,1.4965212,1.456688,0.45341113,0.31631365,1.1174736,0.6153864,1.6225424,1.8268634,1.9676458,1.9241787,1.8782549,1.5751646,1.2292765,1.0736933,0.9801446,1.0855529,1.0708587,0.9293269,0.8934418,1.0157168,1.1289539,1.2049268,1.0243393,2.1274555,2.240133,1.624059,1.270317,1.2271991,1.0004102,0.9501516,1.2209294,1.1898137,1.0979146,1.1298741,1.2453268,1.4223505,1.1105347,1.2592087,2.2059193,1.7080487,1.9204953,1.761383,0.96658415,0.54398483,0.5175476,1.033142,0.8519816,1.5204922,0.99450564,0.13751443,0.032480758,0.043866113,0.0344937,0.06226156,0.024122857,0.010422399,0.030201081,0.006448742,0.010273087,0.020279929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.027617013,0.023240978,0.029210033,0.01881632,0.032599337,0.04266324,0.05367223,0.047436435,0.060243346,0.044354234,0.104448214,0.07438933,0.1490482,0.7261964,1.6745926,1.3924614,1.298421,0.2577919,0.55443954,0.80968523,0.63888633,1.8630741,2.0449054,2.0334253,2.1638713,1.5735445,1.0636824,1.3455248,1.1272869,1.1352566,1.1570736,1.2319318,1.0510451,1.2020581,1.1629598,1.1769005,1.2952458,2.21897,1.5066047,1.1406229,1.1771352,1.11287,1.0977373,1.0873579,1.1763675,1.2251185,1.2566347,1.188709,1.0852042,1.1716009,1.4011062,1.3664268,2.026485,2.1751754,1.6009302,0.68075246,0.6211836,0.3223902,0.9947747,1.2776703,1.4514356,1.404297,0.6528112,0.064620025,0.06440487,0.004461426,0.018311141,0.039429158,0.016823804,0.025684161,0.005982785,0.02152337,0.016634654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038206081,0.009716162,0.005176027,0.008450534,0.016931865,0.024722246,0.015056233,0.025078788,0.014586084,0.035254244,0.040873624,0.08943725,0.2908133,1.4923948,1.5515944,1.1310947,1.2131509,0.435228,0.73062414,1.0827382,0.86247665,2.2577012,1.4125234,2.0015392,1.9530293,1.3067888,1.0670156,1.0862358,1.1859373,1.3270527,1.1409806,1.0381709,0.92310065,1.0559921,1.2541288,1.0231997,2.0673983,1.3788755,1.2090831,1.0046922,1.108368,1.1185398,1.2284404,1.0427341,1.201426,1.8768737,1.0747768,1.5278836,1.2343293,1.41874,2.1815982,2.220318,1.5857974,0.38027403,0.63802105,0.11789033,0.87276936,1.3154575,1.1137415,1.5991297,0.92353994,0.08992259,0.08276145,0.08112969,0.058311652,0.053114425,0.054121885,0.040438186,0.04807506,0.017154643,0.03979872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04034508,0.0527334,0.043051757,0.03614899,0.035038568,0.045606557,0.03268776,0.05863641,0.04549437,0.10228871,0.12520857,0.19707511,0.7280429,1.783273,1.3933382,1.2697903,0.94906276,0.5667123,0.608782,0.7293182,1.1643374,1.5851989,2.6240332,2.3536692,1.6776527,1.4568055,1.5267351,1.3451108,1.6471328,1.4126081,1.1741649,1.1197814,1.3083943,1.0997572,1.4157978,2.289331,1.5522525,1.1052103,0.98583394,1.1985681,1.3307146,1.2713649,1.3312571,1.3727076,2.3187478,1.9263722,1.3685381,1.5205077,2.417159,1.7972875,1.5970353,0.4909556,0.42171186,0.25413248,0.34769815,1.202975,1.1194165,1.661578,0.77379066,0.39686793,0.13986146,0.07981614,0.11123256,0.064615585,0.050421424,0.05545373,0.049191087,0.03666692,0.06138451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031136248,0.021003822,0.015845845,0.009643137,0.023169445,0.025921656,0.052504085,0.03398235,0.07782638,0.11726234,0.16759801,0.2642537,0.90300393,1.4665226,1.5161096,1.4477357,0.9272602,0.10872374,0.759605,1.0286037,0.8566601,1.6858716,2.1365898,2.4369729,2.1078017,2.0295472,2.3083723,1.8338671,0.97637194,1.041743,1.0174199,1.024641,1.4001528,1.9090004,0.6943739,1.7612197,1.1091589,1.3413986,1.1271647,1.3603883,1.7015636,2.0078049,2.2642305,1.9509829,1.9705721,2.3550289,1.7347622,0.95898235,1.0222502,0.7417975,0.6667713,0.066825606,0.11393881,1.0773026,1.1314267,1.5737603,1.5597366,0.48321903,0.32372087,0.07763892,0.026066657,0.073284455,0.036686867,0.023004914,0.0037790195,0.020851145,0.027137766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0050220056,0.01061868,0.016436543,0.0063389125,0.014339691,0.027349107,0.007529616,0.03973907,0.08904812,0.089578874,0.12936798,0.100162014,1.0784153,1.4913892,1.5018882,1.391373,0.92955226,0.4243373,0.5291135,1.11939,0.31621802,1.100453,1.2911161,2.0140512,2.2839346,1.8083861,1.9475265,1.4907643,1.1384357,1.539435,1.7471198,1.9655367,2.0734549,1.2697505,2.2377036,1.1712396,1.1875193,1.0721751,1.377087,1.4054893,1.7044455,1.8122156,2.355331,2.1498299,1.5259433,1.1600779,0.4929836,0.82365483,1.0112756,0.156146,0.3280033,1.4156541,1.2076249,1.4782137,1.689732,0.58219224,0.20764871,0.1896038,0.046134263,0.05931643,0.033317138,0.038646944,0.03999281,0.044566184,0.026711069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020553991,0.026096445,0.028958216,0.012781526,0.022269899,0.026623342,0.05566825,0.050908882,0.07934855,0.06371726,0.10821384,0.5387373,1.1344088,1.4622667,1.458739,1.4075944,1.267894,0.3504865,0.33368695,0.60800195,0.34511107,0.2363438,1.1730245,1.3983023,2.2582128,2.1969087,1.8533751,1.853169,2.0814145,2.0154967,2.2546074,1.9064639,2.3874233,1.7980205,2.1019769,1.8661674,1.5371803,1.4624614,2.0916483,2.4862833,2.1306674,1.4106991,1.2216163,0.97520626,0.24951997,0.71104646,0.13762274,0.35529846,0.6786355,1.246084,1.394946,1.096759,1.8528146,0.57614875,0.30436635,0.15624039,0.1518173,0.04920972,0.063166395,0.041842394,0.04454862,0.041180097,0.04375745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022248812,0.037191268,0.025019428,0.050047737,0.044830836,0.071063586,0.068255216,0.08844891,0.0608057,0.07129864,0.27668795,0.73587126,1.110651,1.6419059,1.4661018,1.2398204,1.4478669,1.0969515,0.21673149,0.24235474,0.70825386,0.20572986,0.66010666,1.0038856,0.973948,2.019897,1.9337772,1.8511105,1.5388408,1.4440508,0.6150255,0.9548889,0.8371188,0.85922664,1.5342815,2.1261292,2.1249318,1.5695984,0.8126002,1.1771092,1.1361736,0.6733192,0.7039511,0.31742978,0.3030873,0.28122258,1.3263015,1.3343575,1.561853,1.3293328,1.772478,0.69639987,0.10461896,0.20588404,0.08287306,0.0964912,0.020705521,0.03399586,0.045354433,0.034999352,0.02409221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.033715952,0.011969725,0.023202062,0.026294243,0.042373538,0.018734906,0.022222899,0.028502855,0.038017187,0.055787176,0.14601555,0.91578263,1.7546363,1.4511635,1.442815,1.1088593,1.5451826,0.73674303,0.1259746,0.16363636,0.11844665,0.4901608,0.08545514,0.9165531,1.2144067,0.8930736,1.167066,0.98311836,0.94238394,1.158052,0.81080747,1.0994607,1.369675,1.369354,1.2912127,1.162542,0.80672187,0.6884003,0.41892755,0.030947188,0.4025401,0.27509534,1.5715146,1.1226847,1.3173474,1.5202011,1.4649391,1.7110451,0.7158209,0.13825901,0.08442098,0.17046441,0.08098446,0.0693696,0.032265704,0.036974337,0.010628286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.033990134,0.016916206,0.017897235,0.07011377,0.033325728,0.01761129,0.06559555,0.06919668,0.07329947,0.11657323,0.076291785,0.90779644,1.4740633,1.441592,1.5927385,1.3175113,1.131849,1.4341768,1.0725931,0.2288829,0.18585701,0.22609216,0.22220483,0.25355715,0.9353414,0.75619966,1.1356407,0.8559868,0.8557564,0.9597194,0.9755902,0.7004708,0.5162483,0.35085306,0.34459728,0.23229975,0.22320417,0.2834204,0.7461112,1.5818964,1.2969799,1.1711377,1.5863918,1.4939831,1.4525888,1.6054682,0.6755237,0.3106442,0.10434961,0.075737394,0.1565429,0.075548805,0.06556785,0.028203472,0.03268207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03150632,0.055858273,0.0416594,0.01854225,0.050209876,0.040721275,0.03414569,0.04545312,0.07121043,0.17386419,0.6819956,1.2003502,1.4200817,1.6181477,1.5541319,1.3726358,1.248105,1.4460021,1.4925535,1.2406212,0.33694473,0.36597294,0.14579672,0.11798323,0.16514702,0.037214875,0.09812379,0.34636152,0.053129885,0.0882767,0.37450647,0.41504493,0.47456944,0.6588288,1.2824552,1.5316384,1.2911065,1.3980236,1.4758736,1.6632242,1.3229159,1.1206347,1.117738,0.29816607,0.13644464,0.13051467,0.05990434,0.068762645,0.15621254,0.0689332,0.08035231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.044950124,0.03807745,0.03857464,0.017686756,0.02599045,0.036234174,0.022073861,0.05814886,0.11490734,0.330301,0.44965172,1.0625588,1.1330258,1.5565823,1.4557588,1.2912757,1.2324989,1.3275869,1.4735398,1.519151,1.5551395,1.2166908,1.1493803,0.92347014,0.61834526,0.95938045,1.2433219,1.2303808,1.6526148,1.6405438,1.4733881,1.447871,1.4330465,1.44149,1.4428215,1.8300773,1.1270665,0.99931556,0.7751442,0.40412095,0.21443866,0.10403467,0.06261948,0.011806247,0.039021246,0.03278565,0.11539596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.035578195,0.036785416,0.016019499,0.008807371,0.05329821,0.05177276,0.02593879,0.057767764,0.11414009,0.46959403,0.20927271,0.6546345,1.1121147,1.6775521,1.6842886,1.3167509,1.4537629,1.380807,1.3594626,1.2281446,1.2275534,1.2799839,1.496951,1.4740095,1.5071295,1.4055998,1.3704605,1.4192582,1.3623171,1.633818,1.7672703,1.735752,0.98625726,0.9928961,0.3761608,0.3129689,0.18806408,0.20571765,0.11415992,0.023627447,0.041800212,0.05871236,0.0120903915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.024147945,0.020869244,0.031527095,0.041722767,0.016378205,0.021446574,0.08236121,0.08862673,0.17019801,0.10376718,0.48108754,0.35845113,0.65622514,1.6990082,1.7405336,1.7054318,1.8068277,1.6412617,1.5257565,1.5925654,1.5614831,1.6731963,1.6241608,1.6075416,1.7015811,1.6342981,1.7672639,1.1434617,0.6830526,0.43768826,0.29573306,0.29403237,0.18683414,0.15785418,0.06283727,0.09085996,0.09085359,0.023473836,0.062150534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04494401,0.033171125,0.02893129,0.01855719,0.040979836,0.05620914,0.14963748,0.03725946,0.10443747,0.024820644,0.17415677,0.16589855,0.3275076,0.22055005,0.6831543,0.76319855,1.1475832,0.95877,1.1268324,0.8946365,1.1224763,0.7900472,0.68730736,0.556376,0.16272785,0.066798724,0.15196696,0.03418897,0.052167382,0.06887072,0.14397393,0.07893534,0.034355737,0.07809252,0.047417495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031860765,0.048204076,0.027257083,0.123340055,0.052142043,0.091577545,0.015825752,0.098658085,0.038217213,0.06874633,0.052373525,0.050015163,0.028586768,0.03263528,0.032838684,0.055782158,0.037838005,0.038491476,0.052153364,0.047854777,0.09426479,0.10284812,0.026598407,0.058595736,0.038882338,0.032380905,0.03743822,0.106586486,0.070323735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07586654,0.017299527,0.05823615,0.029504653,0.047472365,0.04039996,0.04020775,0.024153808,0.02816926,0.01970217,0.046918657,0.055083994,0.03299619,0.01605297,0.02515895,0.06510495,0.0938285,0.04021042,0.030441346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020097716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]],"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":360,"yaxis":{"gridcolor":"white","scaleanchor":"x","title":{"text":"y"},"zerolinecolor":"white"},"font":{"color":"gray"},"title":"Slice 3","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/3-seq.html b/dev/assets/examples/3-seq.html index c1afccd21..967c4209b 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('7ebd92b7-0ac0-4974-b09d-1f827d377c9f')) { + if (document.getElementById('e4b230d4-a2bc-40b0-a505-53369c50ad2a')) { Plotly.newPlot( - '7ebd92b7-0ac0-4974-b09d-1f827d377c9f', + 'e4b230d4-a2bc-40b0-a505-53369c50ad2a', [{"showlegend":true,"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],"xaxis":"x","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","yaxis":"y","legendgroup":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#636EFA"}},{"showlegend":true,"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],"xaxis":"x","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","yaxis":"y","legendgroup":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#EF553B"}},{"showlegend":true,"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],"xaxis":"x","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","yaxis":"y","legendgroup":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#00CC96"}},{"showlegend":true,"x":[0.0,0.10049999999999999,0.10049999999999999,0.10149999999999999,0.10149999999999999,0.10249999999999998,0.10249999999999998,0.1035,0.1035,0.1045,0.1045,0.10549999999999998,0.10549999999999998,0.10649999999999998,0.10649999999999998,0.10749999999999998,0.10749999999999998,0.1085,0.1085,0.10949999999999999,0.10949999999999999,0.11049999999999999,0.11049999999999999,0.11149999999999999,0.11149999999999999,0.1125,0.1125,0.11349999999999999,0.11349999999999999,0.11449999999999999,0.11449999999999999,0.11549999999999999,0.11549999999999999,0.11649999999999999,0.11649999999999999,0.1175,0.1175,0.1185,0.1185,0.1195,0.1195,0.1205,0.1205,0.1215,0.1215,0.1225,0.1225,0.1235,0.1235,0.12449999999999999,0.12449999999999999,0.1255,0.1255,0.12649999999999997,0.12649999999999997,0.1275,0.1275,0.1285,0.1285,0.1295,0.1295,0.1305,0.1305,0.1315,0.1315,0.1325,0.1325,0.13349999999999998,0.13349999999999998,0.13449999999999998,0.13449999999999998,0.13549999999999998,0.13549999999999998,0.13649999999999998,0.13649999999999998,0.13749999999999998,0.13749999999999998,0.13849999999999998,0.13849999999999998,0.13949999999999999,0.13949999999999999,0.14049999999999999,0.14049999999999999,0.14149999999999996,0.14149999999999996,0.14249999999999996,0.14249999999999996,0.14349999999999996,0.14349999999999996,0.14449999999999996,0.14449999999999996,0.14549999999999996,0.14549999999999996,0.14649999999999996,0.14649999999999996,0.14749999999999996,0.14749999999999996,0.14849999999999994,0.14849999999999994,0.14949999999999994,0.14949999999999994,0.15049999999999994,0.15049999999999994,0.15149999999999994,0.15149999999999994,0.15249999999999994,0.15249999999999994,0.15349999999999994,0.15349999999999994,0.15449999999999994,0.15449999999999994,0.15549999999999994,0.15549999999999994,0.15649999999999992,0.15649999999999992,0.15749999999999992,0.15749999999999992,0.15849999999999992,0.15849999999999992,0.15949999999999992,0.15949999999999992,0.16049999999999992,0.16049999999999992,0.16149999999999992,0.16149999999999992,0.16249999999999992,0.16249999999999992,0.1634999999999999,0.1634999999999999,0.1644999999999999,0.1644999999999999,0.1654999999999999,0.1654999999999999,0.1664999999999999,0.1664999999999999,0.1674999999999999,0.1674999999999999,0.1684999999999999,0.1684999999999999,0.1694999999999999,0.1694999999999999,0.1704999999999999,0.1704999999999999,0.17149999999999987,0.17149999999999987,0.17249999999999988,0.17249999999999988,0.17349999999999988,0.17349999999999988,0.17449999999999988,0.17449999999999988,0.17549999999999988,0.17549999999999988,0.17649999999999988,0.17649999999999988,0.17749999999999988,0.17749999999999988,0.17849999999999985,0.17849999999999985,0.17949999999999985,0.17949999999999985,0.18049999999999986,0.18049999999999986,0.18149999999999986,0.18149999999999986,0.18249999999999986,0.18249999999999986,0.18349999999999986,0.18349999999999986,0.18449999999999986,0.18449999999999986,0.18549999999999986,0.18549999999999986,0.18649999999999983,0.18649999999999983,0.18749999999999983,0.18749999999999983,0.18849999999999983,0.18849999999999983,0.18949999999999984,0.18949999999999984,0.19049999999999984,0.19049999999999984,0.19149999999999984,0.19149999999999984,0.19249999999999984,0.19249999999999984,0.1934999999999998,0.1934999999999998,0.1944999999999998,0.1944999999999998,0.1954999999999998,0.1954999999999998,0.19649999999999984,0.19649999999999984,0.19749999999999981,0.19749999999999981,0.19849999999999984,0.19849999999999984,0.19949999999999982,0.19949999999999982,0.20049999999999985,0.20049999999999985,0.20149999999999982,0.20149999999999982,0.20249999999999982,0.20249999999999982,0.20349999999999982,0.20349999999999982,0.20449999999999982,0.20449999999999982,0.20549999999999985,0.20549999999999985,0.20649999999999982,0.20649999999999982,0.20749999999999985,0.20749999999999985,0.2084999999999998,0.2084999999999998,0.20949999999999983,0.20949999999999983,0.21049999999999983,0.21049999999999983,0.21149999999999983,0.21149999999999983,0.21249999999999983,0.21249999999999983,0.21349999999999983,0.21349999999999983,0.21449999999999986,0.21449999999999986,0.21549999999999983,0.21549999999999983,0.21649999999999983,0.21649999999999983,0.2174999999999998,0.2174999999999998,0.21849999999999983,0.21849999999999983,0.21949999999999983,0.21949999999999983,0.22049999999999984,0.22049999999999984,0.22149999999999986,0.22149999999999986,0.22249999999999984,0.22249999999999984,0.22349999999999984,0.22349999999999984,0.2244999999999998,0.2244999999999998,0.22549999999999984,0.22549999999999984,0.2264999999999998,0.2264999999999998,0.22749999999999984,0.22749999999999984,0.22849999999999981,0.22849999999999981,0.22949999999999984,0.22949999999999984,0.23049999999999982,0.23049999999999982,0.23149999999999982,0.23149999999999982,0.2324999999999998,0.2324999999999998,0.23349999999999982,0.23349999999999982,0.2344999999999998,0.2344999999999998,0.23549999999999982,0.23549999999999982,0.2364999999999998,0.2364999999999998,0.23749999999999982,0.23749999999999982,0.23849999999999977,0.23849999999999977,0.2394999999999998,0.2394999999999998,0.24049999999999977,0.24049999999999977,0.2414999999999998,0.2414999999999998,0.24249999999999977,0.24249999999999977,0.2434999999999998,0.2434999999999998,0.24449999999999977,0.24449999999999977,0.24549999999999977,0.24549999999999977,0.24649999999999975,0.24649999999999975,0.24749999999999978,0.24749999999999978,0.24849999999999975,0.24849999999999975,0.24949999999999978,0.24949999999999978,0.2504999999999997,0.2504999999999997,0.2514999999999998,0.2514999999999998,0.2524999999999997,0.2524999999999997,0.2534999999999998,0.2534999999999998,0.2544999999999997,0.2544999999999997,0.2554999999999998,0.2554999999999998,0.25649999999999973,0.25649999999999973,0.25749999999999973,0.25749999999999973,0.25849999999999973,0.25849999999999973,0.25949999999999973,0.25949999999999973,0.26049999999999973,0.26049999999999973,0.26149999999999973,0.26149999999999973,0.26249999999999973,0.26249999999999973,0.26349999999999973,0.26349999999999973,0.2644999999999997,0.2644999999999997,0.26549999999999974,0.26549999999999974,0.2664999999999997,0.2664999999999997,0.26749999999999974,0.26749999999999974,0.2684999999999997,0.2684999999999997,0.26949999999999974,0.26949999999999974,0.2704999999999997,0.2704999999999997,0.27149999999999974,0.27149999999999974,0.2724999999999997,0.2724999999999997,0.2734999999999997,0.2734999999999997,0.2744999999999997,0.2744999999999997,0.2754999999999997,0.2754999999999997,0.2764999999999997,0.2764999999999997,0.2774999999999997,0.2774999999999997,0.2784999999999997,0.2784999999999997,0.2794999999999997,0.2794999999999997,0.28049999999999964,0.28049999999999964,0.2814999999999997,0.2814999999999997,0.28249999999999964,0.28249999999999964,0.2834999999999997,0.2834999999999997,0.28449999999999964,0.28449999999999964,0.2854999999999997,0.2854999999999997,0.28649999999999964,0.28649999999999964,0.28749999999999964,0.28749999999999964,0.28849999999999965,0.28849999999999965,0.28949999999999965,0.28949999999999965,0.29049999999999965,0.29049999999999965,0.29149999999999965,0.29149999999999965,0.2924999999999997,0.2924999999999997,0.29349999999999965,0.29349999999999965,0.29449999999999965,0.29449999999999965,0.29549999999999965,0.29549999999999965,0.29649999999999965,0.29649999999999965,0.29749999999999965,0.29749999999999965,0.29849999999999965,0.29849999999999965,0.29949999999999966,0.29949999999999966,0.30049999999999966,0.30049999999999966,0.30149999999999966,0.30149999999999966,0.30249999999999966,0.30249999999999966,0.30349999999999966,0.30349999999999966,0.30449999999999966,0.30449999999999966,0.30549999999999966,0.30549999999999966,0.30649999999999966,0.30649999999999966,0.30749999999999966,0.30749999999999966,0.30849999999999966,0.30849999999999966,0.30949999999999966,0.30949999999999966,0.31049999999999967,0.31049999999999967,0.31149999999999967,0.31149999999999967,0.31249999999999967,0.31249999999999967,0.31349999999999967,0.31349999999999967,0.31449999999999967,0.31449999999999967,0.31549999999999967,0.31549999999999967,0.31649999999999967,0.31649999999999967,0.31749999999999967,0.31749999999999967,0.3184999999999997,0.3184999999999997,0.3194999999999997,0.3194999999999997,0.3204999999999997,0.3204999999999997,0.3214999999999997,0.3214999999999997,0.3224999999999997,0.3224999999999997,0.3234999999999997,0.3234999999999997,0.3244999999999996,0.3244999999999996,0.3254999999999997,0.3254999999999997,0.3264999999999996,0.3264999999999996,0.3274999999999997,0.3274999999999997,0.3284999999999996,0.3284999999999996,0.3294999999999997,0.3294999999999997,0.3304999999999996,0.3304999999999996,0.33149999999999963,0.33149999999999963,0.33249999999999963,0.33249999999999963,0.33349999999999963,0.33349999999999963,0.33449999999999963,0.33449999999999963,0.33549999999999963,0.33549999999999963,0.33649999999999963,0.33649999999999963,0.33749999999999963,0.33749999999999963,0.33849999999999963,0.33849999999999963,0.33949999999999964,0.33949999999999964,0.3404999999999996,0.3404999999999996,0.34149999999999964,0.34149999999999964,0.3424999999999996,0.3424999999999996,0.34349999999999964,0.34349999999999964,0.3444999999999996,0.3444999999999996,0.34549999999999964,0.34549999999999964,0.3464999999999996,0.3464999999999996,0.3474999999999996,0.3474999999999996,0.3484999999999996,0.3484999999999996,0.3494999999999996,0.3494999999999996,0.3504999999999996,0.3504999999999996,0.3514999999999996,0.3514999999999996,0.3524999999999996,0.3524999999999996,0.3534999999999996,0.3534999999999996,0.35449999999999954,0.35449999999999954,0.3554999999999996,0.3554999999999996,0.35649999999999954,0.35649999999999954,0.3574999999999996,0.3574999999999996,0.35849999999999954,0.35849999999999954,0.3594999999999996,0.3594999999999996,0.36049999999999954,0.36049999999999954,0.36149999999999954,0.36149999999999954,0.36249999999999954,0.36249999999999954,0.36349999999999955,0.36349999999999955,0.36449999999999955,0.36449999999999955,0.36549999999999955,0.36549999999999955,0.36649999999999955,0.36649999999999955,0.36749999999999955,0.36749999999999955,0.36849999999999955,0.36849999999999955,0.36949999999999955,0.36949999999999955,0.3704999999999995,0.3704999999999995,0.37149999999999955,0.37149999999999955,0.3724999999999995,0.3724999999999995,0.37349999999999955,0.37349999999999955,0.3744999999999995,0.3744999999999995,0.37549999999999956,0.37549999999999956,0.3764999999999995,0.3764999999999995,0.3774999999999995,0.3774999999999995,0.3784999999999995,0.3784999999999995,0.3794999999999995,0.3794999999999995,0.3804999999999995,0.3804999999999995,0.3814999999999995,0.3814999999999995,0.3824999999999995,0.3824999999999995,0.3834999999999995,0.3834999999999995,0.38449999999999945,0.38449999999999945,0.3854999999999995,0.3854999999999995,0.38649999999999946,0.38649999999999946,0.3874999999999995,0.3874999999999995,0.38849999999999946,0.38849999999999946,0.3894999999999995,0.3894999999999995,0.3904999999999995,0.3904999999999995,0.3914999999999995,0.3914999999999995,0.3924999999999995,0.3924999999999995,0.39349999999999946,0.39349999999999946,0.3944999999999995,0.3944999999999995,0.39549999999999946,0.39549999999999946,0.3964999999999995,0.3964999999999995,0.39749999999999946,0.39749999999999946,0.3984999999999995,0.3984999999999995,0.3994999999999995,0.3994999999999995,0.40049999999999947,0.40049999999999947,0.4014999999999995,0.4014999999999995,0.40249999999999947,0.40249999999999947,0.4034999999999995,0.4034999999999995,0.40449999999999947,0.40449999999999947,0.4054999999999995,0.4054999999999995,0.40649999999999953,0.40649999999999953,0.4074999999999995,0.4074999999999995,0.40849999999999953,0.40849999999999953,0.4094999999999995,0.4094999999999995,0.41049999999999953,0.41049999999999953,0.4114999999999995,0.4114999999999995,0.41249999999999953,0.41249999999999953,0.4134999999999995,0.4134999999999995,0.4144999999999995,0.4144999999999995,0.4154999999999995,0.4154999999999995,0.4164999999999995,0.4164999999999995,0.4174999999999995,0.4174999999999995,0.4184999999999995,0.4184999999999995,0.4194999999999995,0.4194999999999995,0.4204999999999995,0.4204999999999995,0.42149999999999943,0.42149999999999943,0.4224999999999995,0.4224999999999995,0.42349999999999943,0.42349999999999943,0.4244999999999995,0.4244999999999995,0.42549999999999943,0.42549999999999943,0.4264999999999995,0.4264999999999995,0.42749999999999944,0.42749999999999944,0.4284999999999995,0.4284999999999995,0.42949999999999944,0.42949999999999944,0.43049999999999944,0.43049999999999944,0.43149999999999944,0.43149999999999944,0.43249999999999944,0.43249999999999944,0.43349999999999944,0.43349999999999944,0.43449999999999944,0.43449999999999944,0.43549999999999944,0.43549999999999944,0.43649999999999944,0.43649999999999944,0.4374999999999994,0.4374999999999994,0.43849999999999945,0.43849999999999945,0.4394999999999994,0.4394999999999994,0.44049999999999945,0.44049999999999945,0.4414999999999994,0.4414999999999994,0.44249999999999945,0.44249999999999945,0.4434999999999994,0.4434999999999994,0.4444999999999994,0.4444999999999994,0.4454999999999994,0.4454999999999994,0.4464999999999994,0.4464999999999994,0.4474999999999994,0.4474999999999994,0.4484999999999994,0.4484999999999994,0.4494999999999994,0.4494999999999994,0.4504999999999994,0.4504999999999994,0.45149999999999935,0.45149999999999935,0.4524999999999994,0.4524999999999994,0.45349999999999935,0.45349999999999935,0.4544999999999994,0.4544999999999994,0.45549999999999935,0.45549999999999935,0.4564999999999994,0.4564999999999994,0.45749999999999935,0.45749999999999935,0.4584999999999994,0.4584999999999994,0.45949999999999935,0.45949999999999935,0.46049999999999935,0.46049999999999935,0.46149999999999936,0.46149999999999936,0.46249999999999936,0.46249999999999936,0.46349999999999936,0.46349999999999936,0.46449999999999936,0.46449999999999936,0.46549999999999936,0.46549999999999936,0.46649999999999936,0.46649999999999936,0.4674999999999993,0.4674999999999993,0.46849999999999936,0.46849999999999936,0.4694999999999993,0.4694999999999993,0.47049999999999936,0.47049999999999936,0.4714999999999993,0.4714999999999993,0.47249999999999936,0.47249999999999936,0.4734999999999993,0.4734999999999993,0.4744999999999993,0.4744999999999993,0.47549999999999937,0.47549999999999937,0.4764999999999993,0.4764999999999993,0.47749999999999937,0.47749999999999937,0.4784999999999993,0.4784999999999993,0.47949999999999937,0.47949999999999937,0.4804999999999993,0.4804999999999993,0.4814999999999993,0.4814999999999993,0.4824999999999993,0.4824999999999993,0.4834999999999993,0.4834999999999993,0.4844999999999994,0.4844999999999994,0.4854999999999993,0.4854999999999993,0.4864999999999994,0.4864999999999994,0.4874999999999993,0.4874999999999993,0.4884999999999994,0.4884999999999994,0.48949999999999927,0.48949999999999927,0.49049999999999927,0.49049999999999927,0.4914999999999993,0.4914999999999993,0.4924999999999993,0.4924999999999993,0.4934999999999994,0.4934999999999994,0.4944999999999993,0.4944999999999993,0.49549999999999933,0.49549999999999933,0.49649999999999933,0.49649999999999933,0.49749999999999933,0.49749999999999933,0.4984999999999993,0.4984999999999993,0.4994999999999993,0.4994999999999993,0.5004999999999993,0.5004999999999993,0.5014999999999994,0.5014999999999994,0.5024999999999994,0.5024999999999994,0.5034999999999993,0.5034999999999993,0.5044999999999993,0.5044999999999993,0.5054999999999993,0.5054999999999993,0.5064999999999994,0.5064999999999994,0.5074999999999993,0.5074999999999993,0.5084999999999993,0.5084999999999993,0.5094999999999993,0.5094999999999993,0.5104999999999994,0.5104999999999994,0.5114999999999993,0.5114999999999993,0.5124999999999993,0.5124999999999993,0.5134999999999993,0.5134999999999993,0.5144999999999993,0.5144999999999993,0.5154999999999993,0.5154999999999993,0.5164999999999993,0.5164999999999993,0.5174999999999993,0.5174999999999993,0.5184999999999993,0.5184999999999993,0.5194999999999992,0.5194999999999992,0.5204999999999993,0.5204999999999993,0.5214999999999993,0.5214999999999993,0.5224999999999993,0.5224999999999993,0.5234999999999992,0.5234999999999992,0.5244999999999993,0.5244999999999993,0.5254999999999993,0.5254999999999993,0.5264999999999993,0.5264999999999993,0.5274999999999992,0.5274999999999992,0.5284999999999992,0.5284999999999992,0.5294999999999993,0.5294999999999993,0.5304999999999993,0.5304999999999993,0.5314999999999992,0.5314999999999992,0.5324999999999992,0.5324999999999992,0.5334999999999992,0.5334999999999992,0.5344999999999993,0.5344999999999993,0.5354999999999992,0.5354999999999992,0.5364999999999992,0.5364999999999992,0.5374999999999992,0.5374999999999992,0.5384999999999993,0.5384999999999993,0.5394999999999992,0.5394999999999992,0.5404999999999992,0.5404999999999992,0.5414999999999992,0.5414999999999992,0.5424999999999992,0.5424999999999992,0.5434999999999992,0.5434999999999992,0.5444999999999992,0.5444999999999992,0.5454999999999992,0.5454999999999992,0.5464999999999992,0.5464999999999992,0.5474999999999992,0.5474999999999992,0.5484999999999992,0.5484999999999992,0.5494999999999992,0.5494999999999992,0.5504999999999992,0.5504999999999992,0.5514999999999991,0.5514999999999991,0.5524999999999992,0.5524999999999992,0.5534999999999992,0.5534999999999992,0.5544999999999992,0.5544999999999992,0.5554999999999991,0.5554999999999991,0.5564999999999991,0.5564999999999991,0.5574999999999992,0.5574999999999992,0.5584999999999992,0.5584999999999992,0.5594999999999991,0.5594999999999991,0.5604999999999991,0.5604999999999991,0.5614999999999992,0.5614999999999992,0.5624999999999992,0.5624999999999992,0.5634999999999991,0.5634999999999991,0.5644999999999991,0.5644999999999991,0.5654999999999991,0.5654999999999991,0.5664999999999992,0.5664999999999992,0.5674999999999991,0.5674999999999991,0.5684999999999991,0.5684999999999991,0.5694999999999991,0.5694999999999991,0.5704999999999992,0.5704999999999992,0.5714999999999991,0.5714999999999991,0.5724999999999991,0.5724999999999991,0.5734999999999991,0.5734999999999991,0.5744999999999991,0.5744999999999991,0.5754999999999991,0.5754999999999991,0.5764999999999991,0.5764999999999991,0.5774999999999991,0.5774999999999991,0.5784999999999991,0.5784999999999991,0.5794999999999991,0.5794999999999991,0.5804999999999991,0.5804999999999991,0.5814999999999991,0.5814999999999991,0.5824999999999991,0.5824999999999991,0.5834999999999991,0.5834999999999991,0.5844999999999991,0.5844999999999991,0.5854999999999991,0.5854999999999991,0.5864999999999991,0.5864999999999991,0.5874999999999991,0.5874999999999991,0.5884999999999991,0.5884999999999991,0.5894999999999992,0.5894999999999992,0.5904999999999991,0.5904999999999991,0.5914999999999991,0.5914999999999991,0.5924999999999991,0.5924999999999991,0.5934999999999991,0.5934999999999991,0.5944999999999993,0.5944999999999993,0.5954999999999991,0.5954999999999991,0.5964999999999991,0.5964999999999991,0.5974999999999991,0.5974999999999991,0.5984999999999993,0.5984999999999993,0.5994999999999991,0.5994999999999991,0.6004999999999991,0.6004999999999991,0.6014999999999991,0.6014999999999991,0.6024999999999991,0.6024999999999991,0.6034999999999991,0.6034999999999991,0.6044999999999991,0.6044999999999991,0.6054999999999992,0.6054999999999992,0.6064999999999992,0.6064999999999992,0.6074999999999992,0.6074999999999992,0.6084999999999992,0.6084999999999992,0.6094999999999992,0.6094999999999992,0.6104999999999992,0.6104999999999992,0.611499999999999,0.611499999999999,0.6124999999999992,0.6124999999999992,0.6134999999999992,0.6134999999999992,0.6144999999999992,0.6144999999999992,0.615499999999999,0.615499999999999,0.616499999999999,0.616499999999999,0.6174999999999992,0.6174999999999992,0.6184999999999992,0.6184999999999992,0.619499999999999,0.619499999999999,0.620499999999999,0.620499999999999,0.6214999999999992,0.6214999999999992,0.6224999999999992,0.6224999999999992,0.623499999999999,0.623499999999999,0.6244999999999991,0.6244999999999991,0.6254999999999991,0.6254999999999991,0.6264999999999992,0.6264999999999992,0.6274999999999991,0.6274999999999991,0.6284999999999991,0.6284999999999991,0.6294999999999991,0.6294999999999991,0.6304999999999992,0.6304999999999992,0.6314999999999991,0.6314999999999991,0.6324999999999991,0.6324999999999991,0.6334999999999991,0.6334999999999991,0.6344999999999991,0.6344999999999991,0.6354999999999991,0.6354999999999991,0.6364999999999991,0.6364999999999991,0.6374999999999991,0.6374999999999991,0.6384999999999991,0.6384999999999991,0.639499999999999,0.639499999999999,0.6404999999999991,0.6404999999999991,0.6414999999999991,0.6414999999999991,0.6424999999999991,0.6424999999999991,0.643499999999999,0.643499999999999,0.6444999999999991,0.6444999999999991,0.6454999999999991,0.6454999999999991,0.6464999999999991,0.6464999999999991,0.647499999999999,0.647499999999999,0.648499999999999,0.648499999999999,0.6494999999999991,0.6494999999999991,0.6504999999999991,0.6504999999999991,0.651499999999999,0.651499999999999,0.652499999999999,0.652499999999999,0.653499999999999,0.653499999999999,0.6544999999999991,0.6544999999999991,0.655499999999999,0.655499999999999,0.656499999999999,0.656499999999999,0.657499999999999,0.657499999999999,0.6584999999999991,0.6584999999999991,0.659499999999999,0.659499999999999,0.660499999999999,0.660499999999999,0.661499999999999,0.661499999999999,0.662499999999999,0.662499999999999,0.6634999999999991,0.6634999999999991,0.664499999999999,0.664499999999999,0.665499999999999,0.665499999999999,0.666499999999999,0.666499999999999,0.6674999999999991,0.6674999999999991,0.668499999999999,0.668499999999999,0.669499999999999,0.669499999999999,0.670499999999999,0.670499999999999,0.671499999999999,0.671499999999999,0.6724999999999991,0.6724999999999991,0.673499999999999,0.673499999999999,0.674499999999999,0.674499999999999,0.675499999999999,0.675499999999999,0.676499999999999,0.676499999999999,0.677499999999999,0.677499999999999,0.678499999999999,0.678499999999999,0.679499999999999,0.679499999999999,0.680499999999999,0.680499999999999,0.6814999999999991,0.6814999999999991,0.682499999999999,0.682499999999999,0.683499999999999,0.683499999999999,0.684499999999999,0.684499999999999,0.685499999999999,0.685499999999999,0.686499999999999,0.686499999999999,0.687499999999999,0.687499999999999,0.688499999999999,0.688499999999999,0.689499999999999,0.689499999999999,0.690499999999999,0.690499999999999,0.691499999999999,0.691499999999999,0.692499999999999,0.692499999999999,0.693499999999999,0.693499999999999,0.694499999999999,0.694499999999999,0.695499999999999,0.695499999999999,0.696499999999999,0.696499999999999,0.697499999999999,0.697499999999999,0.698499999999999,0.698499999999999,0.6994999999999989,0.6994999999999989,0.700499999999999,0.700499999999999,0.701499999999999,0.701499999999999,0.702499999999999,0.702499999999999,0.7034999999999989,0.7034999999999989,0.704499999999999,0.704499999999999,0.705499999999999,0.705499999999999,0.706499999999999,0.706499999999999,0.7074999999999989,0.7074999999999989,0.7084999999999989,0.7084999999999989,0.709499999999999,0.709499999999999,0.710499999999999,0.710499999999999,0.7114999999999989,0.7114999999999989,0.7124999999999989,0.7124999999999989,0.7134999999999989,0.7134999999999989,0.714499999999999,0.714499999999999,0.7154999999999989,0.7154999999999989,0.7164999999999989,0.7164999999999989,0.7174999999999989,0.7174999999999989,0.718499999999999,0.718499999999999,0.7194999999999989,0.7194999999999989,0.7204999999999989,0.7204999999999989,0.7214999999999989,0.7214999999999989,0.7224999999999989,0.7224999999999989,0.7234999999999989,0.7234999999999989,0.7244999999999989,0.7244999999999989,0.7254999999999989,0.7254999999999989,0.7264999999999989,0.7264999999999989,0.7274999999999989,0.7274999999999989,0.7284999999999989,0.7284999999999989,0.7294999999999989,0.7294999999999989,0.7304999999999989,0.7304999999999989,0.7314999999999988,0.7314999999999988,0.7324999999999989,0.7324999999999989,0.7334999999999989,0.7334999999999989,0.7344999999999989,0.7344999999999989,0.7354999999999988,0.7354999999999988,0.7364999999999988,0.7364999999999988,0.7374999999999989,0.7374999999999989,0.7384999999999989,0.7384999999999989,0.7394999999999988,0.7394999999999988,0.7404999999999988,0.7404999999999988,0.7414999999999989,0.7414999999999989,0.7424999999999989,0.7424999999999989,0.7434999999999988,0.7434999999999988,0.7444999999999988,0.7444999999999988,0.7454999999999988,0.7454999999999988,0.7464999999999989,0.7464999999999989,0.7474999999999988,0.7474999999999988,0.7484999999999988,0.7484999999999988,0.7494999999999988,0.7494999999999988,0.7504999999999988,0.7504999999999988,0.7514999999999988,0.7514999999999988,0.7524999999999988,0.7524999999999988,0.7534999999999988,0.7534999999999988,0.7544999999999988,0.7544999999999988,0.7554999999999988,0.7554999999999988,0.7564999999999988,0.7564999999999988,0.7574999999999988,0.7574999999999988,0.7584999999999987,0.7584999999999987,0.7594999999999987,0.7594999999999987,0.7604999999999988,0.7604999999999988,0.7614999999999988,0.7614999999999988,0.7624999999999987,0.7624999999999987,0.7634999999999987,0.7634999999999987,0.7644999999999988,0.7644999999999988,0.7654999999999988,0.7654999999999988,0.7664999999999988,0.7664999999999988,0.7674999999999987,0.7674999999999987,0.7684999999999987,0.7684999999999987,0.7694999999999989,0.7694999999999989,0.7704999999999989,0.7704999999999989,0.7714999999999987,0.7714999999999987,0.7724999999999987,0.7724999999999987,0.7734999999999987,0.7734999999999987,0.7744999999999989,0.7744999999999989,0.7754999999999989,0.7754999999999989,0.7764999999999987,0.7764999999999987,0.7774999999999987,0.7774999999999987,0.7784999999999989,0.7784999999999989,0.7794999999999989,0.7794999999999989,0.7804999999999988,0.7804999999999988,0.7814999999999988,0.7814999999999988,0.7824999999999988,0.7824999999999988,0.7834999999999989,0.7834999999999989,0.7844999999999989,0.7844999999999989,0.7854999999999988,0.7854999999999988,0.7864999999999988,0.7864999999999988,0.7874999999999989,0.7874999999999989,0.7884999999999989,0.7884999999999989,0.7894999999999988,0.7894999999999988,0.7904999999999988,0.7904999999999988,0.7914999999999988,0.7914999999999988,0.7924999999999989,0.7924999999999989,0.7934999999999988,0.7934999999999988,0.7944999999999988,0.7944999999999988,0.7954999999999988,0.7954999999999988,0.7964999999999988,0.7964999999999988,0.7974999999999988,0.7974999999999988,0.7984999999999988,0.7984999999999988,0.7994999999999988,0.7994999999999988,0.8004999999999988,0.8004999999999988,0.8014999999999988,0.8014999999999988,0.8024999999999988,0.8024999999999988,0.8034999999999988,0.8034999999999988,0.8044999999999988,0.8044999999999988,0.8054999999999987,0.8054999999999987,0.8064999999999988,0.8064999999999988,0.8074999999999988,0.8074999999999988,0.8084999999999988,0.8084999999999988,0.8094999999999987,0.8094999999999987,0.8104999999999987,0.8104999999999987,0.8114999999999988,0.8114999999999988,0.8124999999999988,0.8124999999999988,0.8134999999999987,0.8134999999999987,0.8144999999999987,0.8144999999999987,0.8154999999999988,0.8154999999999988,0.8164999999999988,0.8164999999999988,0.8174999999999987,0.8174999999999987,0.8184999999999987,0.8184999999999987,0.8194999999999987,0.8194999999999987,0.8204999999999988,0.8204999999999988,0.8214999999999987,0.8214999999999987,0.8224999999999987,0.8224999999999987,0.8234999999999987,0.8234999999999987,0.8244999999999988,0.8244999999999988,0.8254999999999987,0.8254999999999987,0.8264999999999987,0.8264999999999987,0.8274999999999987,0.8274999999999987,0.8284999999999987,0.8284999999999987,0.8294999999999987,0.8294999999999987,0.8304999999999987,0.8304999999999987,0.8314999999999987,0.8314999999999987,0.8324999999999987,0.8324999999999987,0.8334999999999986,0.8334999999999986,0.8344999999999987,0.8344999999999987,0.8354999999999987,0.8354999999999987,0.8364999999999987,0.8364999999999987,0.8374999999999986,0.8374999999999986,0.8384999999999987,0.8384999999999987,0.8394999999999987,0.8394999999999987,0.8404999999999987,0.8404999999999987,0.8414999999999986,0.8414999999999986,0.8424999999999986,0.8424999999999986,0.8434999999999987,0.8434999999999987,0.8444999999999987,0.8444999999999987,0.8454999999999986,0.8454999999999986,0.8464999999999986,0.8464999999999986,0.8474999999999987,0.8474999999999987,0.8484999999999987,0.8484999999999987,0.8494999999999986,0.8494999999999986,0.8504999999999987,0.8504999999999987,0.8514999999999987,0.8514999999999987,0.8524999999999987,0.8524999999999987,0.8534999999999987,0.8534999999999987,0.8544999999999987,0.8544999999999987,0.8554999999999987,0.8554999999999987,0.8564999999999986,0.8564999999999986,0.8574999999999987,0.8574999999999987,0.8584999999999987,0.8584999999999987,0.8594999999999987,0.8594999999999987,0.8604999999999987,0.8604999999999987,0.8614999999999987,0.8614999999999987,0.8624999999999987,0.8624999999999987,0.8634999999999987,0.8634999999999987,0.8644999999999987,0.8644999999999987,0.8654999999999986,0.8654999999999986,0.8664999999999987,0.8664999999999987,0.8674999999999987,0.8674999999999987,0.8684999999999987,0.8684999999999987,0.8694999999999987,0.8694999999999987,0.8704999999999986,0.8704999999999986,0.8714999999999987,0.8714999999999987,0.8724999999999987,0.8724999999999987,0.8734999999999987,0.8734999999999987,0.8744999999999986,0.8744999999999986,0.8754999999999987,0.8754999999999987,0.8764999999999987,0.8764999999999987,0.8774999999999987,0.8774999999999987,0.8784999999999987,0.8784999999999987,0.8794999999999986,0.8794999999999986,0.8804999999999987,0.8804999999999987,0.8814999999999987,0.8814999999999987,0.8824999999999987,0.8824999999999987,0.8834999999999986,0.8834999999999986,0.8844999999999987,0.8844999999999987,0.8854999999999987,0.8854999999999987,0.8864999999999987,0.8864999999999987,0.8874999999999986,0.8874999999999986,0.8884999999999986,0.8884999999999986,0.8894999999999987,0.8894999999999987,0.8904999999999987,0.8904999999999987,0.8914999999999986,0.8914999999999986,0.8924999999999986,0.8924999999999986,0.8934999999999986,0.8934999999999986,0.8944999999999987,0.8944999999999987,0.8954999999999986,0.8954999999999986,0.8964999999999986,0.8964999999999986,0.8974999999999986,0.8974999999999986,0.8984999999999987,0.8984999999999987,0.8994999999999986,0.8994999999999986,0.9004999999999986,0.9004999999999986,0.9014999999999986,0.9014999999999986,0.9024999999999986,0.9024999999999986,0.9034999999999986,0.9034999999999986,0.9044999999999986,0.9044999999999986,0.9054999999999986,0.9054999999999986,0.9064999999999986,0.9064999999999986,0.9074999999999986,0.9074999999999986,0.9084999999999986,0.9084999999999986,0.9094999999999986,0.9094999999999986,0.9104999999999986,0.9104999999999986,0.9114999999999985,0.9114999999999985,0.9124999999999986,0.9124999999999986,0.9134999999999986,0.9134999999999986,0.9144999999999986,0.9144999999999986,0.9154999999999985,0.9154999999999985,0.9164999999999985,0.9164999999999985,0.9174999999999986,0.9174999999999986,0.9184999999999987,0.9184999999999987,0.9194999999999985,0.9194999999999985,0.9204999999999985,0.9204999999999985,0.9214999999999987,0.9214999999999987,0.9224999999999987,0.9224999999999987,0.9234999999999985,0.9234999999999985,0.9244999999999985,0.9244999999999985,0.9254999999999985,0.9254999999999985,0.9264999999999987,0.9264999999999987,0.9274999999999985,0.9274999999999985,0.9284999999999985,0.9284999999999985,0.9294999999999985,0.9294999999999985,0.9304999999999986,0.9304999999999986,0.9314999999999986,0.9314999999999986,0.9324999999999986,0.9324999999999986,0.9334999999999986,0.9334999999999986,0.9344999999999986,0.9344999999999986,0.9354999999999986,0.9354999999999986,0.9364999999999986,0.9364999999999986,0.9374999999999986,0.9374999999999986,0.9384999999999986,0.9384999999999986,0.9394999999999984,0.9394999999999984,0.9404999999999986,0.9404999999999986,0.9414999999999986,0.9414999999999986,0.9424999999999986,0.9424999999999986,0.9434999999999986,0.9434999999999986,0.9444999999999986,0.9444999999999986,0.9454999999999986,0.9454999999999986,0.9464999999999986,0.9464999999999986,0.9474999999999986,0.9474999999999986,0.9484999999999986,0.9484999999999986,0.9494999999999986,0.9494999999999986,0.9504999999999986,0.9504999999999986,0.9514999999999986,0.9514999999999986,0.9524999999999986,0.9524999999999986,0.9534999999999986,0.9534999999999986,0.9544999999999986,0.9544999999999986,0.9554999999999986,0.9554999999999986,0.9564999999999986,0.9564999999999986,0.9574999999999986,0.9574999999999986,0.9584999999999986,0.9584999999999986,0.9594999999999986,0.9594999999999986,0.9604999999999986,0.9604999999999986,0.9614999999999986,0.9614999999999986,0.9624999999999986,0.9624999999999986,0.9634999999999986,0.9634999999999986,0.9644999999999986,0.9644999999999986,0.9654999999999986,0.9654999999999986,0.9664999999999986,0.9664999999999986,0.9674999999999985,0.9674999999999985,0.9684999999999986,0.9684999999999986,0.9694999999999986,0.9694999999999986,0.9704999999999986,0.9704999999999986,0.9714999999999986,0.9714999999999986,0.9724999999999986,0.9724999999999986,0.9734999999999986,0.9734999999999986,0.9744999999999986,0.9744999999999986,0.9754999999999986,0.9754999999999986,0.9764999999999985,0.9764999999999985,0.9774999999999986,0.9774999999999986,0.9784999999999985,0.9784999999999985,0.9794999999999986,0.9794999999999986,0.9804999999999985,0.9804999999999985,0.9814999999999985,0.9814999999999985,0.9824999999999986,0.9824999999999986,0.9834999999999985,0.9834999999999985,0.9844999999999984,0.9844999999999984,0.9854999999999985,0.9854999999999985,0.9864999999999985,0.9864999999999985,0.9874999999999986,0.9874999999999986,0.9884999999999985,0.9884999999999985,0.9894999999999984,0.9894999999999984,0.9904999999999985,0.9904999999999985,0.9914999999999985,0.9914999999999985,0.9924999999999984,0.9924999999999984,0.9934999999999985,0.9934999999999985,0.9944999999999984,0.9944999999999984,0.9954999999999986,0.9954999999999986,0.9964999999999985,0.9964999999999985,0.9974999999999984,0.9974999999999984,0.9984999999999985,0.9984999999999985,0.9994999999999984,0.9994999999999984,1.0004999999999984,1.0004999999999984,1.0014999999999985,1.0014999999999985,1.0024999999999984,1.0024999999999984,1.0034999999999985,1.0034999999999985,1.0044999999999984,1.0044999999999984,1.0054999999999983,1.0054999999999983,1.0064999999999984,1.0064999999999984,1.0074999999999985,1.0074999999999985,1.0084999999999984,1.0084999999999984,1.0094999999999985,1.0094999999999985,1.0104999999999984,1.0104999999999984,1.0114999999999985,1.0114999999999985,1.0124999999999984,1.0124999999999984,1.0134999999999983,1.0134999999999983,1.0144999999999984,1.0144999999999984,1.0154999999999983,1.0154999999999983,1.0164999999999984,1.0164999999999984,1.0174999999999985,1.0174999999999985,1.0184999999999984,1.0184999999999984,1.0194999999999985,1.0194999999999985,1.0204999999999984,1.0204999999999984,1.0214999999999983,1.0214999999999983,1.0224999999999984,1.0224999999999984,1.0234999999999983,1.0234999999999983,1.0244999999999982,1.0244999999999982,1.0254999999999985,1.0254999999999985,1.0264999999999984,1.0264999999999984,1.0274999999999985,1.0274999999999985,1.0284999999999984,1.0284999999999984,1.0294999999999983,1.0294999999999983,1.0304999999999984,1.0304999999999984,1.0314999999999983,1.0314999999999983,1.0324999999999982,1.0324999999999982,1.0334999999999983,1.0334999999999983,1.0344999999999984,1.0344999999999984,1.0354999999999985,1.0354999999999985,1.0364999999999984,1.0364999999999984,1.0374999999999983,1.0374999999999983,1.0384999999999984,1.0384999999999984,1.0394999999999983,1.0394999999999983,1.0404999999999982,1.0404999999999982,1.0414999999999983,1.0414999999999983,1.0424999999999982,1.0424999999999982,1.043499999999998,1.043499999999998,1.0444999999999984,1.0444999999999984,1.0454999999999983,1.0454999999999983,1.0464999999999984,1.0464999999999984,1.0474999999999983,1.0474999999999983,1.0484999999999982,1.0484999999999982,1.0494999999999983,1.0494999999999983,1.0504999999999982,1.0504999999999982,1.0514999999999983,1.0514999999999983,1.0524999999999982,1.0524999999999982,1.0534999999999983,1.0534999999999983,1.0544999999999984,1.0544999999999984,1.0554999999999983,1.0554999999999983,1.0564999999999984,1.0564999999999984,1.0574999999999983,1.0574999999999983,1.0584999999999982,1.0584999999999982,1.0594999999999983,1.0594999999999983,1.0604999999999982,1.0604999999999982,1.0614999999999981,1.0614999999999981,1.0624999999999984,1.0624999999999984,1.0634999999999983,1.0634999999999983,1.0644999999999984,1.0644999999999984,1.0654999999999983,1.0654999999999983,1.0664999999999982,1.0664999999999982,1.0674999999999983,1.0674999999999983,1.0684999999999982,1.0684999999999982,1.0694999999999983,1.0694999999999983,1.0704999999999982,1.0704999999999982,1.0714999999999983,1.0714999999999983,1.0724999999999985,1.0724999999999985,1.0734999999999983,1.0734999999999983,1.0744999999999982,1.0744999999999982,1.0754999999999983,1.0754999999999983,1.0764999999999982,1.0764999999999982,1.0774999999999981,1.0774999999999981,1.0784999999999982,1.0784999999999982,1.0794999999999981,1.0794999999999981,1.080499999999998,1.080499999999998,1.0814999999999984,1.0814999999999984,1.0824999999999982,1.0824999999999982,1.0834999999999984,1.0834999999999984,1.0844999999999982,1.0844999999999982,1.0854999999999981,1.0854999999999981,1.0864999999999982,1.0864999999999982,1.0874999999999981,1.0874999999999981,1.088499999999998,1.088499999999998,1.0894999999999981,1.0894999999999981,1.0904999999999982,1.0904999999999982,1.0914999999999984,1.0914999999999984,1.0924999999999983,1.0924999999999983,1.0934999999999981,1.0934999999999981,1.0944999999999983,1.0944999999999983,1.0954999999999981,1.0954999999999981,1.096499999999998,1.096499999999998,1.0974999999999981,1.0974999999999981,1.098499999999998,1.098499999999998,1.0994999999999984,1.0994999999999984,1.1004999999999983,1.1004999999999983,1.1014999999999981,1.1014999999999981,1.1024999999999983,1.1024999999999983,1.1034999999999981,1.1034999999999981,1.104499999999998,1.104499999999998,1.1054999999999982,1.1054999999999982,1.106499999999998,1.106499999999998,1.1074999999999982,1.1074999999999982,1.1084999999999983,1.1084999999999983,1.1094999999999982,1.1094999999999982,1.1104999999999983,1.1104999999999983,1.1114999999999982,1.1114999999999982,1.112499999999998,1.112499999999998,1.1134999999999982,1.1134999999999982,1.114499999999998,1.114499999999998,1.1154999999999982,1.1154999999999982,1.116499999999998,1.116499999999998,1.1174999999999982,1.1174999999999982,1.1184999999999983,1.1184999999999983,1.1194999999999982,1.1194999999999982,1.120499999999998,1.120499999999998,1.1214999999999982,1.1214999999999982,1.122499999999998,1.122499999999998,1.1234999999999982,1.1234999999999982,1.124499999999998,1.124499999999998,1.125499999999998,1.125499999999998,1.126499999999998,1.126499999999998,1.1274999999999982,1.1274999999999982,1.128499999999998,1.128499999999998,1.1294999999999982,1.1294999999999982,1.130499999999998,1.130499999999998,1.131499999999998,1.131499999999998,1.132499999999998,1.132499999999998,1.133499999999998,1.133499999999998,1.134499999999998,1.134499999999998,1.135499999999998,1.135499999999998,1.136499999999998,1.136499999999998,1.1374999999999982,1.1374999999999982,1.138499999999998,1.138499999999998,1.139499999999998,1.139499999999998,1.140499999999998,1.140499999999998,1.141499999999998,1.141499999999998,1.142499999999998,1.142499999999998,1.143499999999998,1.143499999999998,1.1444999999999979,1.1444999999999979,1.1454999999999982,1.1454999999999982,1.146499999999998,1.146499999999998,1.1474999999999982,1.1474999999999982,1.148499999999998,1.148499999999998,1.149499999999998,1.149499999999998,1.150499999999998,1.150499999999998,1.151499999999998,1.151499999999998,1.152499999999998,1.152499999999998,1.153499999999998,1.153499999999998,1.154499999999998,1.154499999999998,1.1554999999999982,1.1554999999999982,1.156499999999998,1.156499999999998,1.1574999999999982,1.1574999999999982,1.158499999999998,1.158499999999998,1.159499999999998,1.159499999999998,1.160499999999998,1.160499999999998,1.161499999999998,1.161499999999998,1.1624999999999979,1.1624999999999979,1.163499999999998,1.163499999999998,1.164499999999998,1.164499999999998,1.1654999999999982,1.1654999999999982,1.166499999999998,1.166499999999998,1.167499999999998,1.167499999999998,1.168499999999998,1.168499999999998,1.169499999999998,1.169499999999998,1.1704999999999979,1.1704999999999979,1.171499999999998,1.171499999999998,1.1724999999999979,1.1724999999999979,1.1734999999999982,1.1734999999999982,1.174499999999998,1.174499999999998,1.175499999999998,1.175499999999998,1.176499999999998,1.176499999999998,1.177499999999998,1.177499999999998,1.1784999999999979,1.1784999999999979,1.179499999999998,1.179499999999998,1.1804999999999979,1.1804999999999979,1.181499999999998,1.181499999999998,1.182499999999998,1.182499999999998,1.183499999999998,1.183499999999998,1.184499999999998,1.184499999999998,1.185499999999998,1.185499999999998,1.186499999999998,1.186499999999998,1.187499999999998,1.187499999999998,1.188499999999998,1.188499999999998,1.189499999999998,1.189499999999998,1.190499999999998,1.190499999999998,1.191499999999998,1.191499999999998,1.1924999999999981,1.1924999999999981,1.193499999999998,1.193499999999998,1.194499999999998,1.194499999999998,1.195499999999998,1.195499999999998,1.196499999999998,1.196499999999998,1.197499999999998,1.197499999999998,1.198499999999998,1.198499999999998,1.1994999999999978,1.1994999999999978,1.200499999999998,1.200499999999998,1.201499999999998,1.201499999999998,1.202499999999998,1.202499999999998,1.203499999999998,1.203499999999998,1.204499999999998,1.204499999999998,1.205499999999998,1.205499999999998,1.206499999999998,1.206499999999998,1.2074999999999978,1.2074999999999978,1.208499999999998,1.208499999999998,1.2094999999999978,1.2094999999999978,1.210499999999998,1.210499999999998,1.211499999999998,1.211499999999998,1.212499999999998,1.212499999999998,1.213499999999998,1.213499999999998,1.214499999999998,1.214499999999998,1.2154999999999978,1.2154999999999978,1.216499999999998,1.216499999999998,1.2174999999999978,1.2174999999999978,1.2184999999999977,1.2184999999999977,1.219499999999998,1.219499999999998,1.220499999999998,1.220499999999998,1.221499999999998,1.221499999999998,1.222499999999998,1.222499999999998,1.2234999999999978,1.2234999999999978,1.224499999999998,1.224499999999998,1.2254999999999978,1.2254999999999978,1.226499999999998,1.226499999999998,1.2274999999999978,1.2274999999999978,1.2284999999999981,1.2284999999999981,1.229499999999998,1.229499999999998,1.230499999999998,1.230499999999998,1.231499999999998,1.231499999999998,1.232499999999998,1.232499999999998,1.2334999999999978,1.2334999999999978,1.234499999999998,1.234499999999998,1.2354999999999978,1.2354999999999978,1.236499999999998,1.236499999999998,1.2374999999999978,1.2374999999999978,1.238499999999998,1.238499999999998,1.239499999999998,1.239499999999998,1.240499999999998,1.240499999999998,1.241499999999998,1.241499999999998,1.242499999999998,1.242499999999998,1.2434999999999978,1.2434999999999978,1.244499999999998,1.244499999999998,1.2454999999999978,1.2454999999999978,1.246499999999998,1.246499999999998,1.247499999999998,1.247499999999998,1.248499999999998,1.248499999999998,1.249499999999998,1.249499999999998,1.250499999999998,1.250499999999998,1.251499999999998,1.251499999999998,1.252499999999998,1.252499999999998,1.2534999999999978,1.2534999999999978,1.254499999999998,1.254499999999998,1.2554999999999978,1.2554999999999978,1.256499999999998,1.256499999999998,1.257499999999998,1.257499999999998,1.258499999999998,1.258499999999998,1.259499999999998,1.259499999999998,1.260499999999998,1.260499999999998,1.2614999999999978,1.2614999999999978,1.262499999999998,1.262499999999998,1.2634999999999978,1.2634999999999978,1.2644999999999977,1.2644999999999977,1.265499999999998,1.265499999999998,1.266499999999998,1.266499999999998,1.267499999999998,1.267499999999998,1.268499999999998,1.268499999999998,1.2694999999999979,1.2694999999999979,1.270499999999998,1.270499999999998,1.2714999999999979,1.2714999999999979,1.2724999999999977,1.2724999999999977,1.2734999999999979,1.2734999999999979,1.274499999999998,1.274499999999998,1.275499999999998,1.275499999999998,1.276499999999998,1.276499999999998,1.2774999999999979,1.2774999999999979,1.278499999999998,1.278499999999998,1.2794999999999979,1.2794999999999979,1.2804999999999978,1.2804999999999978,1.2814999999999979,1.2814999999999979,1.2824999999999978,1.2824999999999978,1.2834999999999979,1.2834999999999979,1.284499999999998,1.284499999999998,1.2854999999999979,1.2854999999999979,1.286499999999998,1.286499999999998,1.2874999999999979,1.2874999999999979,1.2884999999999978,1.2884999999999978,1.2894999999999979,1.2894999999999979,1.2904999999999978,1.2904999999999978,1.2914999999999979,1.2914999999999979,1.2924999999999978,1.2924999999999978,1.2934999999999979,1.2934999999999979,1.294499999999998,1.294499999999998,1.2954999999999979,1.2954999999999979,1.2964999999999978,1.2964999999999978,1.2974999999999979,1.2974999999999979,1.2984999999999978,1.2984999999999978,1.2994999999999979,1.2994999999999979,1.3004999999999978,1.3004999999999978,1.3014999999999977,1.3014999999999977,1.302499999999998,1.302499999999998,1.3034999999999979,1.3034999999999979,1.3044999999999978,1.3044999999999978,1.3054999999999979,1.3054999999999979,1.3064999999999978,1.3064999999999978,1.3074999999999979,1.3074999999999979,1.3084999999999978,1.3084999999999978,1.3094999999999977,1.3094999999999977,1.3104999999999978,1.3104999999999978,1.311499999999998,1.311499999999998,1.3124999999999978,1.3124999999999978,1.313499999999998,1.313499999999998,1.3144999999999978,1.3144999999999978,1.315499999999998,1.315499999999998,1.3164999999999978,1.3164999999999978,1.3174999999999977,1.3174999999999977,1.3184999999999976,1.3184999999999976,1.3194999999999977,1.3194999999999977,1.3204999999999976,1.3204999999999976,1.321499999999998,1.321499999999998,1.3224999999999978,1.3224999999999978,1.3234999999999977,1.3234999999999977,1.3244999999999978,1.3244999999999978,1.3254999999999977,1.3254999999999977,1.3264999999999976,1.3264999999999976,1.3274999999999977,1.3274999999999977,1.3284999999999976,1.3284999999999976,1.3294999999999977,1.3294999999999977,1.3304999999999978,1.3304999999999978,1.3314999999999977,1.3314999999999977,1.3324999999999978,1.3324999999999978,1.3334999999999977,1.3334999999999977,1.3344999999999978,1.3344999999999978,1.3354999999999977,1.3354999999999977,1.3364999999999976,1.3364999999999976,1.3374999999999977,1.3374999999999977,1.3384999999999976,1.3384999999999976,1.339499999999998,1.339499999999998,1.3404999999999978,1.3404999999999978,1.3414999999999977,1.3414999999999977,1.3424999999999978,1.3424999999999978,1.3434999999999977,1.3434999999999977,1.3444999999999978,1.3444999999999978,1.3454999999999977,1.3454999999999977,1.3464999999999976,1.3464999999999976,1.3474999999999977,1.3474999999999977,1.3484999999999978,1.3484999999999978,1.3494999999999977,1.3494999999999977,1.3504999999999978,1.3504999999999978,1.3514999999999977,1.3514999999999977,1.3524999999999978,1.3524999999999978,1.3534999999999977,1.3534999999999977,1.3544999999999976,1.3544999999999976,1.3554999999999977,1.3554999999999977,1.3564999999999976,1.3564999999999976,1.3574999999999977,1.3574999999999977,1.3584999999999978,1.3584999999999978,1.3594999999999977,1.3594999999999977,1.3604999999999978,1.3604999999999978,1.3614999999999977,1.3614999999999977,1.3624999999999976,1.3624999999999976,1.3634999999999977,1.3634999999999977,1.3644999999999976,1.3644999999999976,1.3654999999999975,1.3654999999999975,1.3664999999999976,1.3664999999999976,1.3674999999999977,1.3674999999999977,1.3684999999999978,1.3684999999999978,1.3694999999999977,1.3694999999999977,1.3704999999999976,1.3704999999999976,1.3714999999999977,1.3714999999999977,1.3724999999999976,1.3724999999999976,1.3734999999999975,1.3734999999999975,1.3744999999999976,1.3744999999999976,1.3754999999999975,1.3754999999999975,1.3764999999999978,1.3764999999999978,1.3774999999999977,1.3774999999999977,1.3784999999999976,1.3784999999999976,1.3794999999999977,1.3794999999999977,1.3804999999999976,1.3804999999999976,1.3814999999999975,1.3814999999999975,1.3824999999999976,1.3824999999999976,1.3834999999999975,1.3834999999999975,1.3844999999999976,1.3844999999999976,1.3854999999999977,1.3854999999999977,1.3864999999999976,1.3864999999999976,1.3874999999999977,1.3874999999999977,1.3884999999999976,1.3884999999999976,1.3894999999999975,1.3894999999999975,1.3904999999999976,1.3904999999999976,1.3914999999999975,1.3914999999999975,1.3924999999999976,1.3924999999999976,1.3934999999999975,1.3934999999999975,1.3944999999999976,1.3944999999999976,1.3954999999999977,1.3954999999999977,1.3964999999999976,1.3964999999999976,1.3974999999999975,1.3974999999999975,1.3984999999999976,1.3984999999999976,1.3994999999999975,1.3994999999999975,1.4004999999999976,1.4004999999999976,1.4014999999999975,1.4014999999999975,1.4024999999999974,1.4024999999999974,1.4034999999999975,1.4034999999999975,1.4044999999999976,1.4044999999999976,1.4054999999999975,1.4054999999999975,1.4064999999999976,1.4064999999999976,1.4074999999999975,1.4074999999999975,1.4084999999999976,1.4084999999999976,1.4094999999999975,1.4094999999999975,1.4104999999999974,1.4104999999999974,1.4114999999999975,1.4114999999999975,1.4124999999999974,1.4124999999999974,1.4134999999999978,1.4134999999999978,1.4144999999999976,1.4144999999999976,1.4154999999999978,1.4154999999999978,1.4164999999999976,1.4164999999999976,1.4174999999999975,1.4174999999999975,1.4184999999999977,1.4184999999999977,1.4194999999999975,1.4194999999999975,1.4204999999999974,1.4204999999999974,1.4214999999999975,1.4214999999999975,1.4224999999999977,1.4224999999999977,1.4234999999999978,1.4234999999999978,1.4244999999999977,1.4244999999999977,1.4254999999999975,1.4254999999999975,1.4264999999999977,1.4264999999999977,1.4274999999999975,1.4274999999999975,1.4284999999999977,1.4284999999999977,1.4294999999999976,1.4294999999999976,1.4304999999999974,1.4304999999999974,1.4314999999999976,1.4314999999999976,1.4324999999999977,1.4324999999999977,1.4334999999999978,1.4334999999999978,1.4344999999999977,1.4344999999999977,1.4354999999999976,1.4354999999999976,1.4364999999999977,1.4364999999999977,1.4374999999999976,1.4374999999999976,1.4384999999999977,1.4384999999999977,1.4394999999999976,1.4394999999999976,1.4404999999999974,1.4404999999999974,1.4414999999999978,1.4414999999999978,1.4424999999999977,1.4424999999999977,1.4434999999999976,1.4434999999999976,1.4444999999999977,1.4444999999999977,1.4454999999999976,1.4454999999999976,1.4464999999999977,1.4464999999999977,1.4474999999999976,1.4474999999999976,1.4484999999999975,1.4484999999999975,1.4494999999999976,1.4494999999999976,1.4504999999999977,1.4504999999999977,1.4514999999999976,1.4514999999999976,1.4524999999999977,1.4524999999999977,1.4534999999999976,1.4534999999999976,1.4544999999999977,1.4544999999999977,1.4554999999999976,1.4554999999999976,1.4564999999999975,1.4564999999999975,1.4574999999999976,1.4574999999999976,1.4584999999999975,1.4584999999999975,1.4594999999999976,1.4594999999999976,1.4604999999999977,1.4604999999999977,1.4614999999999976,1.4614999999999976,1.4624999999999977,1.4624999999999977,1.4634999999999976,1.4634999999999976,1.4644999999999975,1.4644999999999975,1.4654999999999976,1.4654999999999976,1.4664999999999975,1.4664999999999975,1.4674999999999974,1.4674999999999974,1.4684999999999975,1.4684999999999975,1.4694999999999976,1.4694999999999976,1.4704999999999977,1.4704999999999977,1.4714999999999976,1.4714999999999976,1.4724999999999975,1.4724999999999975,1.4734999999999976,1.4734999999999976,1.4744999999999975,1.4744999999999975,1.4754999999999974,1.4754999999999974,1.4764999999999975,1.4764999999999975,1.4774999999999974,1.4774999999999974,1.4784999999999977,1.4784999999999977,1.4794999999999976,1.4794999999999976,1.4804999999999975,1.4804999999999975,1.4814999999999976,1.4814999999999976,1.4824999999999975,1.4824999999999975,1.4834999999999974,1.4834999999999974,1.4844999999999975,1.4844999999999975,1.4854999999999974,1.4854999999999974,1.4864999999999975,1.4864999999999975,1.4874999999999976,1.4874999999999976,1.4884999999999975,1.4884999999999975,1.4894999999999976,1.4894999999999976,1.4904999999999975,1.4904999999999975,1.4914999999999974,1.4914999999999974,1.4924999999999975,1.4924999999999975,1.4934999999999974,1.4934999999999974,1.4944999999999975,1.4944999999999975,1.4954999999999974,1.4954999999999974,1.4964999999999975,1.4964999999999975,1.4974999999999976,1.4974999999999976,1.4984999999999975,1.4984999999999975,1.4994999999999974,1.4994999999999974,1.5004999999999975,1.5004999999999975,1.5014999999999974,1.5014999999999974,1.5024999999999975,1.5024999999999975,1.5034999999999974,1.5034999999999974,1.5044999999999973,1.5044999999999973,1.5054999999999976,1.5054999999999976,1.5064999999999975,1.5064999999999975,1.5074999999999976,1.5074999999999976,1.5084999999999975,1.5084999999999975,1.5094999999999976,1.5094999999999976,1.5104999999999975,1.5104999999999975,1.5114999999999974,1.5114999999999974,1.5124999999999975,1.5124999999999975,1.5134999999999974,1.5134999999999974,1.5144999999999973,1.5144999999999973,1.5154999999999976,1.5154999999999976,1.5164999999999975,1.5164999999999975,1.5174999999999976,1.5174999999999976,1.5184999999999975,1.5184999999999975,1.5194999999999974,1.5194999999999974,1.5204999999999975,1.5204999999999975,1.5214999999999974,1.5214999999999974,1.5224999999999975,1.5224999999999975,1.5234999999999974,1.5234999999999974,1.5244999999999975,1.5244999999999975,1.5254999999999976,1.5254999999999976,1.5264999999999975,1.5264999999999975,1.5274999999999976,1.5274999999999976,1.5284999999999975,1.5284999999999975,1.5294999999999974,1.5294999999999974,1.5304999999999975,1.5304999999999975,1.5314999999999974,1.5314999999999974,1.5324999999999975,1.5324999999999975,1.5334999999999976,1.5334999999999976,1.5344999999999975,1.5344999999999975,1.5354999999999976,1.5354999999999976,1.5364999999999975,1.5364999999999975,1.5374999999999974,1.5374999999999974,1.5384999999999975,1.5384999999999975,1.5394999999999974,1.5394999999999974,1.5404999999999975,1.5404999999999975,1.5414999999999974,1.5414999999999974,1.5424999999999975,1.5424999999999975,1.5434999999999977,1.5434999999999977,1.5444999999999975,1.5444999999999975,1.5454999999999974,1.5454999999999974,1.5464999999999975,1.5464999999999975,1.5474999999999974,1.5474999999999974,1.5484999999999975,1.5484999999999975,1.5494999999999974,1.5494999999999974,1.5504999999999973,1.5504999999999973,1.5514999999999974,1.5514999999999974,1.5524999999999975,1.5524999999999975,1.5534999999999974,1.5534999999999974,1.5544999999999976,1.5544999999999976,1.5554999999999974,1.5554999999999974,1.5564999999999976,1.5564999999999976,1.5574999999999974,1.5574999999999974,1.5584999999999973,1.5584999999999973,1.5594999999999974,1.5594999999999974,1.5604999999999973,1.5604999999999973,1.5614999999999974,1.5614999999999974,1.5624999999999976,1.5624999999999976,1.5634999999999974,1.5634999999999974,1.5644999999999976,1.5644999999999976,1.5654999999999974,1.5654999999999974,1.5664999999999973,1.5664999999999973,1.5674999999999975,1.5674999999999975,1.5684999999999973,1.5684999999999973,1.5694999999999972,1.5694999999999972,1.5704999999999976,1.5704999999999976,1.5714999999999975,1.5714999999999975,1.5724999999999976,1.5724999999999976,1.5734999999999975,1.5734999999999975,1.5744999999999973,1.5744999999999973,1.5754999999999975,1.5754999999999975,1.5764999999999973,1.5764999999999973,1.5774999999999972,1.5774999999999972,1.5784999999999973,1.5784999999999973,1.5794999999999975,1.5794999999999975,1.5804999999999976,1.5804999999999976,1.5814999999999975,1.5814999999999975,1.5824999999999974,1.5824999999999974,1.5834999999999975,1.5834999999999975,1.5844999999999974,1.5844999999999974,1.5854999999999972,1.5854999999999972,1.5864999999999974,1.5864999999999974,1.5874999999999972,1.5874999999999972,1.5884999999999974,1.5884999999999974,1.5894999999999975,1.5894999999999975,1.5904999999999974,1.5904999999999974,1.5914999999999975,1.5914999999999975,1.5924999999999974,1.5924999999999974,1.5934999999999973,1.5934999999999973,1.5944999999999974,1.5944999999999974,1.5954999999999973,1.5954999999999973,1.5964999999999974,1.5964999999999974,1.5974999999999973,1.5974999999999973,1.5984999999999974,1.5984999999999974,1.5994999999999975,1.5994999999999975,1.6004999999999971,1.6004999999999971,1.6014999999999973,1.6014999999999973,1.6024999999999971,1.6024999999999971,1.6034999999999973,1.6034999999999973,1.6044999999999972,1.6044999999999972,1.605499999999997,1.605499999999997,1.6064999999999972,1.6064999999999972,1.6074999999999973,1.6074999999999973,1.6084999999999972,1.6084999999999972,1.6094999999999973,1.6094999999999973,1.6104999999999972,1.6104999999999972,1.6114999999999973,1.6114999999999973,1.6124999999999972,1.6124999999999972,1.613499999999997,1.613499999999997,1.6144999999999972,1.6144999999999972,1.615499999999997,1.615499999999997,1.6164999999999974,1.6164999999999974,1.6174999999999973,1.6174999999999973,1.6184999999999972,1.6184999999999972,1.6194999999999973,1.6194999999999973,1.6204999999999972,1.6204999999999972,1.6214999999999973,1.6214999999999973,1.6224999999999972,1.6224999999999972,1.623499999999997,1.623499999999997,1.6244999999999972,1.6244999999999972,1.6254999999999973,1.6254999999999973,1.6264999999999974,1.6264999999999974,1.6274999999999973,1.6274999999999973,1.6284999999999972,1.6284999999999972,1.6294999999999973,1.6294999999999973,1.6304999999999972,1.6304999999999972,1.631499999999997,1.631499999999997,1.6324999999999972,1.6324999999999972,1.633499999999997,1.633499999999997,1.6344999999999972,1.6344999999999972,1.6354999999999973,1.6354999999999973,1.6364999999999972,1.6364999999999972,1.6374999999999973,1.6374999999999973,1.6384999999999972,1.6384999999999972,1.639499999999997,1.639499999999997,1.6404999999999972,1.6404999999999972,1.641499999999997,1.641499999999997,1.6424999999999972,1.6424999999999972,1.643499999999997,1.643499999999997,1.6444999999999972,1.6444999999999972,1.6454999999999973,1.6454999999999973,1.6464999999999972,1.6464999999999972,1.647499999999997,1.647499999999997,1.6484999999999972,1.6484999999999972,1.649499999999997,1.649499999999997,1.6504999999999972,1.6504999999999972,1.651499999999997,1.651499999999997,1.652499999999997,1.652499999999997,1.6534999999999973,1.6534999999999973,1.6544999999999972,1.6544999999999972,1.655499999999997,1.655499999999997,1.6564999999999972,1.6564999999999972,1.657499999999997,1.657499999999997,1.6584999999999972,1.6584999999999972,1.659499999999997,1.659499999999997,1.660499999999997,1.660499999999997,1.661499999999997,1.661499999999997,1.6624999999999972,1.6624999999999972,1.663499999999997,1.663499999999997,1.6644999999999972,1.6644999999999972,1.665499999999997,1.665499999999997,1.6664999999999972,1.6664999999999972,1.667499999999997,1.667499999999997,1.668499999999997,1.668499999999997,1.669499999999997,1.669499999999997,1.670499999999997,1.670499999999997,1.671499999999997,1.671499999999997,1.6724999999999972,1.6724999999999972,1.673499999999997,1.673499999999997,1.6744999999999972,1.6744999999999972,1.675499999999997,1.675499999999997,1.676499999999997,1.676499999999997,1.677499999999997,1.677499999999997,1.678499999999997,1.678499999999997,1.6794999999999969,1.6794999999999969,1.680499999999997,1.680499999999997,1.681499999999997,1.681499999999997,1.6824999999999972,1.6824999999999972,1.683499999999997,1.683499999999997,1.684499999999997,1.684499999999997,1.6854999999999971,1.6854999999999971,1.686499999999997,1.686499999999997,1.687499999999997,1.687499999999997,1.688499999999997,1.688499999999997,1.689499999999997,1.689499999999997,1.6904999999999972,1.6904999999999972,1.6914999999999971,1.6914999999999971,1.692499999999997,1.692499999999997,1.693499999999997,1.693499999999997,1.694499999999997,1.694499999999997,1.695499999999997,1.695499999999997,1.696499999999997,1.696499999999997,1.697499999999997,1.697499999999997,1.6984999999999968,1.6984999999999968,1.6994999999999971,1.6994999999999971,1.700499999999997,1.700499999999997,1.701499999999997,1.701499999999997,1.702499999999997,1.702499999999997,1.703499999999997,1.703499999999997,1.704499999999997,1.704499999999997,1.705499999999997,1.705499999999997,1.7064999999999968,1.7064999999999968,1.707499999999997,1.707499999999997,1.708499999999997,1.708499999999997,1.7094999999999971,1.7094999999999971,1.710499999999997,1.710499999999997,1.711499999999997,1.711499999999997,1.712499999999997,1.712499999999997,1.713499999999997,1.713499999999997,1.714499999999997,1.714499999999997,1.715499999999997,1.715499999999997,1.7164999999999968,1.7164999999999968,1.717499999999997,1.717499999999997,1.718499999999997,1.718499999999997,1.7194999999999971,1.7194999999999971,1.720499999999997,1.720499999999997,1.721499999999997,1.721499999999997,1.722499999999997,1.722499999999997,1.723499999999997,1.723499999999997,1.7244999999999968,1.7244999999999968,1.725499999999997,1.725499999999997,1.7264999999999968,1.7264999999999968,1.7274999999999971,1.7274999999999971,1.728499999999997,1.728499999999997,1.729499999999997,1.729499999999997,1.730499999999997,1.730499999999997,1.731499999999997,1.731499999999997,1.7324999999999968,1.7324999999999968,1.733499999999997,1.733499999999997,1.7344999999999968,1.7344999999999968,1.735499999999997,1.735499999999997,1.736499999999997,1.736499999999997,1.737499999999997,1.737499999999997,1.738499999999997,1.738499999999997,1.739499999999997,1.739499999999997,1.7404999999999968,1.7404999999999968,1.741499999999997,1.741499999999997,1.7424999999999968,1.7424999999999968,1.743499999999997,1.743499999999997,1.7444999999999968,1.7444999999999968,1.745499999999997,1.745499999999997,1.746499999999997,1.746499999999997,1.747499999999997,1.747499999999997,1.7484999999999968,1.7484999999999968,1.749499999999997,1.749499999999997,1.7504999999999968,1.7504999999999968,1.751499999999997,1.751499999999997,1.7524999999999968,1.7524999999999968,1.7534999999999967,1.7534999999999967,1.7544999999999968,1.7544999999999968,1.755499999999997,1.755499999999997,1.7564999999999968,1.7564999999999968,1.757499999999997,1.757499999999997,1.7584999999999968,1.7584999999999968,1.759499999999997,1.759499999999997,1.7604999999999968,1.7604999999999968,1.7614999999999967,1.7614999999999967,1.7624999999999968,1.7624999999999968,1.7634999999999967,1.7634999999999967,1.7644999999999968,1.7644999999999968,1.765499999999997,1.765499999999997,1.7664999999999969,1.7664999999999969,1.767499999999997,1.767499999999997,1.7684999999999969,1.7684999999999969,1.7694999999999967,1.7694999999999967,1.7704999999999969,1.7704999999999969,1.7714999999999967,1.7714999999999967,1.7724999999999966,1.7724999999999966,1.773499999999997,1.773499999999997,1.7744999999999969,1.7744999999999969,1.775499999999997,1.775499999999997,1.7764999999999969,1.7764999999999969,1.7774999999999967,1.7774999999999967,1.7784999999999969,1.7784999999999969,1.7794999999999968,1.7794999999999968,1.7804999999999966,1.7804999999999966,1.7814999999999968,1.7814999999999968,1.7824999999999969,1.7824999999999969,1.783499999999997,1.783499999999997,1.7844999999999969,1.7844999999999969,1.7854999999999968,1.7854999999999968,1.7864999999999969,1.7864999999999969,1.7874999999999968,1.7874999999999968,1.7884999999999969,1.7884999999999969,1.7894999999999968,1.7894999999999968,1.7904999999999969,1.7904999999999969,1.7914999999999968,1.7914999999999968,1.7924999999999969,1.7924999999999969,1.793499999999997,1.793499999999997,1.7944999999999969,1.7944999999999969,1.7954999999999968,1.7954999999999968,1.7964999999999969,1.7964999999999969,1.7974999999999968,1.7974999999999968,1.7984999999999969,1.7984999999999969,1.7994999999999968,1.7994999999999968,1.8004999999999967,1.8004999999999967,1.801499999999997,1.801499999999997,1.8024999999999969,1.8024999999999969,1.803499999999997,1.803499999999997,1.8044999999999969,1.8044999999999969,1.8054999999999968,1.8054999999999968,1.8064999999999969,1.8064999999999969,1.8074999999999968,1.8074999999999968,1.8084999999999969,1.8084999999999969,1.8094999999999968,1.8094999999999968,1.810499999999997,1.810499999999997,1.811499999999997,1.811499999999997,1.812499999999997,1.812499999999997,1.813499999999997,1.813499999999997,1.814499999999997,1.814499999999997,1.8154999999999968,1.8154999999999968,1.816499999999997,1.816499999999997,1.8174999999999968,1.8174999999999968,1.8184999999999967,1.8184999999999967,1.819499999999997,1.819499999999997,1.820499999999997,1.820499999999997,1.821499999999997,1.821499999999997,1.822499999999997,1.822499999999997,1.8234999999999968,1.8234999999999968,1.824499999999997,1.824499999999997,1.8254999999999968,1.8254999999999968,1.8264999999999967,1.8264999999999967,1.8274999999999968,1.8274999999999968,1.828499999999997,1.828499999999997,1.829499999999997,1.829499999999997,1.830499999999997,1.830499999999997,1.8314999999999968,1.8314999999999968,1.832499999999997,1.832499999999997,1.8334999999999968,1.8334999999999968,1.8344999999999967,1.8344999999999967,1.8354999999999968,1.8354999999999968,1.8364999999999967,1.8364999999999967,1.8374999999999968,1.8374999999999968,1.838499999999997,1.838499999999997,1.8394999999999968,1.8394999999999968,1.840499999999997,1.840499999999997,1.8414999999999968,1.8414999999999968,1.8424999999999967,1.8424999999999967,1.8434999999999968,1.8434999999999968,1.8444999999999967,1.8444999999999967,1.8454999999999968,1.8454999999999968,1.8464999999999967,1.8464999999999967,1.8474999999999968,1.8474999999999968,1.848499999999997,1.848499999999997,1.8494999999999968,1.8494999999999968,1.8504999999999967,1.8504999999999967,1.8514999999999968,1.8514999999999968,1.8524999999999967,1.8524999999999967,1.8534999999999968,1.8534999999999968,1.8544999999999967,1.8544999999999967,1.8554999999999966,1.8554999999999966,1.856499999999997,1.856499999999997,1.8574999999999968,1.8574999999999968,1.8584999999999967,1.8584999999999967,1.8594999999999968,1.8594999999999968,1.8604999999999967,1.8604999999999967,1.8614999999999968,1.8614999999999968,1.8624999999999967,1.8624999999999967,1.8634999999999966,1.8634999999999966,1.8644999999999967,1.8644999999999967,1.8654999999999968,1.8654999999999968,1.8664999999999967,1.8664999999999967,1.8674999999999968,1.8674999999999968,1.8684999999999967,1.8684999999999967,1.8694999999999968,1.8694999999999968,1.8704999999999967,1.8704999999999967,1.8714999999999966,1.8714999999999966,1.8724999999999967,1.8724999999999967,1.8734999999999966,1.8734999999999966,1.8744999999999965,1.8744999999999965,1.8754999999999968,1.8754999999999968,1.8764999999999967,1.8764999999999967,1.8774999999999968,1.8774999999999968,1.8784999999999967,1.8784999999999967,1.8794999999999966,1.8794999999999966,1.8804999999999967,1.8804999999999967,1.8814999999999966,1.8814999999999966,1.8824999999999967,1.8824999999999967,1.8834999999999966,1.8834999999999966,1.884499999999997,1.884499999999997,1.8854999999999968,1.8854999999999968,1.8864999999999967,1.8864999999999967,1.8874999999999968,1.8874999999999968,1.8884999999999967,1.8884999999999967,1.8894999999999966,1.8894999999999966,1.8904999999999967,1.8904999999999967,1.8914999999999966,1.8914999999999966,1.8924999999999967,1.8924999999999967,1.8934999999999969,1.8934999999999969,1.8944999999999967,1.8944999999999967,1.8954999999999969,1.8954999999999969,1.8964999999999967,1.8964999999999967,1.8974999999999969,1.8974999999999969,1.8984999999999967,1.8984999999999967,1.8994999999999966,1.8994999999999966,1.9004999999999967,1.9004999999999967,1.9014999999999966,1.9014999999999966,1.9024999999999967,1.9024999999999967,1.9034999999999969,1.9034999999999969,1.9044999999999968,1.9044999999999968,1.9054999999999969,1.9054999999999969,1.9064999999999968,1.9064999999999968,1.9074999999999969,1.9074999999999969,1.9084999999999968,1.9084999999999968,1.9094999999999966,1.9094999999999966,1.9104999999999968,1.9104999999999968,1.9114999999999966,1.9114999999999966,1.9124999999999968,1.9124999999999968,1.9134999999999969,1.9134999999999969,1.9144999999999968,1.9144999999999968,1.9154999999999969,1.9154999999999969,1.9164999999999968,1.9164999999999968,1.9174999999999967,1.9174999999999967,1.9184999999999968,1.9184999999999968,1.9194999999999967,1.9194999999999967,1.9204999999999965,1.9204999999999965,1.9214999999999969,1.9214999999999969,1.9224999999999968,1.9224999999999968,1.9234999999999969,1.9234999999999969,1.9244999999999968,1.9244999999999968,1.9254999999999967,1.9254999999999967,1.9264999999999968,1.9264999999999968,1.9274999999999967,1.9274999999999967,1.9284999999999966,1.9284999999999966,1.9294999999999967,1.9294999999999967,1.9304999999999968,1.9304999999999968,1.9314999999999969,1.9314999999999969,1.9324999999999968,1.9324999999999968,1.9334999999999967,1.9334999999999967,1.9344999999999968,1.9344999999999968,1.9354999999999967,1.9354999999999967,1.9364999999999966,1.9364999999999966,1.9374999999999967,1.9374999999999967,1.9384999999999966,1.9384999999999966,1.9394999999999967,1.9394999999999967,1.9404999999999968,1.9404999999999968,1.9414999999999967,1.9414999999999967,1.9424999999999968,1.9424999999999968,1.9434999999999967,1.9434999999999967,1.9444999999999966,1.9444999999999966,1.9454999999999967,1.9454999999999967,1.9464999999999966,1.9464999999999966,1.9474999999999967,1.9474999999999967,1.9484999999999966,1.9484999999999966,1.9494999999999967,1.9494999999999967,1.9504999999999968,1.9504999999999968,1.9514999999999967,1.9514999999999967,1.9524999999999966,1.9524999999999966,1.953499999999997,1.953499999999997,1.9544999999999966,1.9544999999999966,1.9554999999999967,1.9554999999999967,1.9564999999999968,1.9564999999999968,1.9574999999999965,1.9574999999999965,1.9584999999999968,1.9584999999999968,1.959499999999997,1.959499999999997,1.9604999999999966,1.9604999999999966,1.9614999999999967,1.9614999999999967,1.9624999999999968,1.9624999999999968,1.963499999999997,1.963499999999997,1.9644999999999966,1.9644999999999966,1.9654999999999967,1.9654999999999967,1.9664999999999968,1.9664999999999968,1.9674999999999967,1.9674999999999967,1.9684999999999968,1.9684999999999968,1.969499999999997,1.969499999999997,1.9704999999999966,1.9704999999999966,1.9714999999999967,1.9714999999999967,1.9724999999999968,1.9724999999999968,1.9734999999999965,1.9734999999999965,1.9744999999999966,1.9744999999999966,1.9754999999999967,1.9754999999999967,1.9764999999999968,1.9764999999999968,1.9774999999999967,1.9774999999999967,1.9784999999999968,1.9784999999999968,1.979499999999997,1.979499999999997,1.9804999999999966,1.9804999999999966,1.9814999999999967,1.9814999999999967,1.9824999999999968,1.9824999999999968,1.9834999999999965,1.9834999999999965,1.9844999999999966,1.9844999999999966,1.9854999999999967,1.9854999999999967,1.986499999999997,1.986499999999997,1.9874999999999967,1.9874999999999967,1.9884999999999968,1.9884999999999968,1.989499999999997,1.989499999999997,1.9904999999999966,1.9904999999999966,1.9914999999999967,1.9914999999999967,1.9924999999999968,1.9924999999999968,1.9934999999999965,1.9934999999999965,1.9944999999999966,1.9944999999999966,1.995499999999997,1.995499999999997,1.996499999999997,1.996499999999997,1.9974999999999967,1.9974999999999967,1.9984999999999968,1.9984999999999968,1.999499999999997,1.999499999999997,2.0004999999999966,2.0004999999999966,2.001499999999997,2.001499999999997,2.002499999999997,2.002499999999997,2.0034999999999967,2.0034999999999967,2.0044999999999966,2.0044999999999966,2.005499999999997,2.005499999999997,2.0064999999999964,2.0064999999999964,2.0074999999999967,2.0074999999999967,2.0084999999999966,2.0084999999999966,2.009499999999997,2.009499999999997,2.010499999999997,2.010499999999997,2.0114999999999967,2.0114999999999967,2.012499999999997,2.012499999999997,2.0134999999999965,2.0134999999999965,2.014499999999997,2.014499999999997,2.0154999999999967,2.0154999999999967,2.0164999999999966,2.0164999999999966,2.0174999999999965,2.0174999999999965,2.018499999999997,2.018499999999997,2.0194999999999967,2.0194999999999967,2.0204999999999966,2.0204999999999966,2.021499999999997,2.021499999999997,2.0224999999999964,2.0224999999999964,2.0234999999999967,2.0234999999999967,2.0244999999999966,2.0244999999999966,2.025499999999997,2.025499999999997,2.0264999999999964,2.0264999999999964,2.0274999999999967,2.0274999999999967,2.028499999999997,2.028499999999997,2.0294999999999965,2.0294999999999965,2.030499999999997,2.030499999999997,2.0314999999999968,2.0314999999999968,2.0324999999999966,2.0324999999999966,2.0334999999999965,2.0334999999999965,2.034499999999997,2.034499999999997,2.0354999999999963,2.0354999999999963,2.0364999999999966,2.0364999999999966,2.037499999999997,2.037499999999997,2.0384999999999964,2.0384999999999964,2.0394999999999968,2.0394999999999968,2.0404999999999966,2.0404999999999966,2.041499999999997,2.041499999999997,2.0424999999999964,2.0424999999999964,2.0434999999999968,2.0434999999999968,2.0444999999999967,2.0444999999999967,2.0454999999999965,2.0454999999999965,2.046499999999997,2.046499999999997,2.0474999999999968,2.0474999999999968,2.0484999999999967,2.0484999999999967,2.0494999999999965,2.0494999999999965,2.050499999999997,2.050499999999997,2.0514999999999963,2.0514999999999963,2.0524999999999967,2.0524999999999967,2.0534999999999966,2.0534999999999966,2.0544999999999964,2.0544999999999964,2.0554999999999968,2.0554999999999968,2.0564999999999967,2.0564999999999967,2.0574999999999966,2.0574999999999966,2.0584999999999964,2.0584999999999964,2.0594999999999968,2.0594999999999968,2.0604999999999962,2.0604999999999962,2.0614999999999966,2.0614999999999966,2.0624999999999964,2.0624999999999964,2.0634999999999963,2.0634999999999963,2.0644999999999967,2.0644999999999967,2.0654999999999966,2.0654999999999966,2.0664999999999965,2.0664999999999965,2.0674999999999963,2.0674999999999963,2.0684999999999967,2.0684999999999967,2.069499999999996,2.069499999999996,2.0704999999999965,2.0704999999999965,2.0714999999999963,2.0714999999999963,2.0724999999999962,2.0724999999999962,2.0734999999999966,2.0734999999999966,2.0744999999999965,2.0744999999999965,2.075499999999997,2.075499999999997,2.0764999999999962,2.0764999999999962,2.0774999999999966,2.0774999999999966,2.0784999999999965,2.0784999999999965,2.0794999999999964,2.0794999999999964,2.0804999999999962,2.0804999999999962,2.0814999999999966,2.0814999999999966,2.0824999999999965,2.0824999999999965,2.0834999999999964,2.0834999999999964,2.0844999999999967,2.0844999999999967,2.085499999999996,2.085499999999996,2.0864999999999965,2.0864999999999965,2.0874999999999964,2.0874999999999964,2.0884999999999967,2.0884999999999967,2.089499999999996,2.089499999999996,2.0904999999999965,2.0904999999999965,2.0914999999999964,2.0914999999999964,2.0924999999999963,2.0924999999999963,2.0934999999999966,2.0934999999999966,2.0944999999999965,2.0944999999999965,2.0954999999999964,2.0954999999999964,2.0964999999999963,2.0964999999999963,2.0974999999999966,2.0974999999999966,2.0984999999999965,2.0984999999999965,2.0994999999999964,2.0994999999999964,2.1004999999999963,2.1004999999999963,2.1014999999999966,2.1014999999999966,2.1024999999999965,2.1024999999999965,2.1034999999999964,2.1034999999999964,2.1044999999999967,2.1044999999999967,2.105499999999996,2.105499999999996,2.1064999999999965,2.1064999999999965,2.1074999999999964,2.1074999999999964,2.1084999999999963,2.1084999999999963,2.109499999999996,2.109499999999996,2.1104999999999965,2.1104999999999965,2.1114999999999964,2.1114999999999964,2.1124999999999963,2.1124999999999963,2.1134999999999966,2.1134999999999966,2.1144999999999965,2.1144999999999965,2.1154999999999964,2.1154999999999964,2.1164999999999963,2.1164999999999963,2.1174999999999966,2.1174999999999966,2.118499999999996,2.118499999999996,2.1194999999999964,2.1194999999999964,2.1204999999999967,2.1204999999999967,2.121499999999996,2.121499999999996,2.1224999999999965,2.1224999999999965,2.1234999999999964,2.1234999999999964,2.1244999999999963,2.1244999999999963,2.125499999999996,2.125499999999996,2.1264999999999965,2.1264999999999965,2.127499999999996,2.127499999999996,2.1284999999999963,2.1284999999999963,2.1294999999999966,2.1294999999999966,2.1304999999999965,2.1304999999999965,2.1314999999999964,2.1314999999999964,2.1324999999999963,2.1324999999999963,2.1334999999999966,2.1334999999999966,2.134499999999996,2.134499999999996,2.1354999999999964,2.1354999999999964,2.1364999999999963,2.1364999999999963,2.137499999999996,2.137499999999996,2.1384999999999965,2.1384999999999965,2.1394999999999964,2.1394999999999964,2.1404999999999963,2.1404999999999963,2.141499999999996,2.141499999999996,2.1424999999999965,2.1424999999999965,2.143499999999996,2.143499999999996,2.1444999999999963,2.1444999999999963,2.145499999999996,2.145499999999996,2.1464999999999965,2.1464999999999965,2.1474999999999964,2.1474999999999964,2.1484999999999963,2.1484999999999963,2.1494999999999966,2.1494999999999966,2.150499999999996,2.150499999999996,2.1514999999999964,2.1514999999999964,2.1524999999999963,2.1524999999999963,2.153499999999996,2.153499999999996,2.154499999999996,2.154499999999996,2.1554999999999964,2.1554999999999964,2.1564999999999963,2.1564999999999963,2.157499999999996,2.157499999999996,2.1584999999999965,2.1584999999999965,2.159499999999996,2.159499999999996,2.1604999999999963,2.1604999999999963,2.161499999999996,2.161499999999996,2.1624999999999965,2.1624999999999965,2.163499999999996,2.163499999999996,2.1644999999999963,2.1644999999999963,2.165499999999996,2.165499999999996,2.166499999999996,2.166499999999996,2.1674999999999964,2.1674999999999964,2.1684999999999963,2.1684999999999963,2.1694999999999967,2.1694999999999967,2.170499999999996,2.170499999999996,2.1714999999999964,2.1714999999999964,2.1724999999999963,2.1724999999999963,2.173499999999996,2.173499999999996,2.174499999999996,2.174499999999996,2.1754999999999964,2.1754999999999964,2.1764999999999963,2.1764999999999963,2.177499999999996,2.177499999999996,2.1784999999999966,2.1784999999999966,2.1794999999999964,2.1794999999999964,2.1804999999999963,2.1804999999999963,2.181499999999996,2.181499999999996,2.1824999999999966,2.1824999999999966,2.183499999999996,2.183499999999996,2.1844999999999963,2.1844999999999963,2.1854999999999967,2.1854999999999967,2.186499999999996,2.186499999999996,2.1874999999999964,2.1874999999999964,2.1884999999999963,2.1884999999999963,2.1894999999999962,2.1894999999999962,2.190499999999996,2.190499999999996,2.1914999999999965,2.1914999999999965,2.1924999999999963,2.1924999999999963,2.1934999999999962,2.1934999999999962,2.1944999999999966,2.1944999999999966,2.1954999999999965,2.1954999999999965,2.1964999999999963,2.1964999999999963,2.1974999999999962,2.1974999999999962,2.1984999999999966,2.1984999999999966,2.199499999999996,2.199499999999996,2.2004999999999963,2.2004999999999963,2.2014999999999962,2.2014999999999962,2.202499999999996,2.202499999999996,2.2034999999999965,2.2034999999999965,2.2044999999999964,2.2044999999999964,2.2054999999999962,2.2054999999999962,2.206499999999996,2.206499999999996,2.2074999999999965,2.2074999999999965,2.2084999999999964,2.2084999999999964,2.2094999999999962,2.2094999999999962,2.210499999999996,2.210499999999996,2.2114999999999965,2.2114999999999965,2.2124999999999964,2.2124999999999964,2.2134999999999962,2.2134999999999962,2.2144999999999966,2.2144999999999966,2.215499999999996,2.215499999999996,2.2164999999999964,2.2164999999999964,2.2174999999999963,2.2174999999999963,2.218499999999996,2.218499999999996,2.219499999999996,2.219499999999996,2.2204999999999964,2.2204999999999964,2.2214999999999963,2.2214999999999963,2.222499999999996,2.222499999999996,2.2234999999999965,2.2234999999999965,2.2244999999999964,2.2244999999999964,2.2254999999999963,2.2254999999999963,2.226499999999996,2.226499999999996,2.2274999999999965,2.2274999999999965,2.228499999999996,2.228499999999996,2.2294999999999963,2.2294999999999963,2.2304999999999966,2.2304999999999966,2.231499999999996,2.231499999999996,2.2324999999999964,2.2324999999999964,2.2334999999999963,2.2334999999999963,2.234499999999996,2.234499999999996,2.235499999999996,2.235499999999996,2.2364999999999964,2.2364999999999964,2.237499999999996,2.237499999999996,2.238499999999996,2.238499999999996,2.239499999999996,2.239499999999996,2.2404999999999964,2.2404999999999964,2.2414999999999963,2.2414999999999963,2.242499999999996,2.242499999999996,2.2434999999999965,2.2434999999999965,2.244499999999996,2.244499999999996,2.2454999999999963,2.2454999999999963,2.246499999999996,2.246499999999996,2.247499999999996,2.247499999999996,2.248499999999996,2.248499999999996,2.2494999999999963,2.2494999999999963,2.250499999999996,2.250499999999996,2.251499999999996,2.251499999999996,2.2524999999999964,2.2524999999999964,2.253499999999996,2.253499999999996,2.254499999999996,2.254499999999996,2.255499999999996,2.255499999999996,2.2564999999999964,2.2564999999999964,2.257499999999996,2.257499999999996,2.258499999999996,2.258499999999996,2.2594999999999965,2.2594999999999965,2.260499999999996,2.260499999999996,2.2614999999999963,2.2614999999999963,2.262499999999996,2.262499999999996,2.2634999999999965,2.2634999999999965,2.264499999999996,2.264499999999996,2.2654999999999963,2.2654999999999963,2.266499999999996,2.266499999999996,2.267499999999996,2.267499999999996,2.2684999999999964,2.2684999999999964,2.2694999999999963,2.2694999999999963,2.270499999999996,2.270499999999996,2.271499999999996,2.271499999999996,2.2724999999999964,2.2724999999999964,2.273499999999996,2.273499999999996,2.274499999999996,2.274499999999996,2.275499999999996,2.275499999999996,2.2764999999999964,2.2764999999999964,2.2774999999999963,2.2774999999999963,2.278499999999996,2.278499999999996,2.2794999999999965,2.2794999999999965,2.280499999999996,2.280499999999996,2.2814999999999963,2.2814999999999963,2.282499999999996,2.282499999999996,2.283499999999996,2.283499999999996,2.284499999999996,2.284499999999996,2.2854999999999963,2.2854999999999963,2.2864999999999966,2.2864999999999966,2.287499999999996,2.287499999999996,2.2884999999999964,2.2884999999999964,2.2894999999999963,2.2894999999999963,2.290499999999996,2.290499999999996,2.291499999999996,2.291499999999996,2.2924999999999964,2.2924999999999964,2.293499999999996,2.293499999999996,2.294499999999996,2.294499999999996,2.2954999999999965,2.2954999999999965,2.296499999999996,2.296499999999996,2.2974999999999963,2.2974999999999963,2.298499999999996,2.298499999999996,2.299499999999996,2.299499999999996,2.300499999999996,2.300499999999996,2.3014999999999963,2.3014999999999963,2.302499999999996,2.302499999999996,2.303499999999996,2.303499999999996,2.3044999999999964,2.3044999999999964,2.3054999999999963,2.3054999999999963,2.306499999999996,2.306499999999996,2.307499999999996,2.307499999999996,2.3084999999999964,2.3084999999999964,2.309499999999996,2.309499999999996,2.3104999999999962,2.3104999999999962,2.311499999999996,2.311499999999996,2.312499999999996,2.312499999999996,2.313499999999996,2.313499999999996,2.3144999999999962,2.3144999999999962,2.315499999999996,2.315499999999996,2.316499999999996,2.316499999999996,2.3174999999999963,2.3174999999999963,2.3184999999999962,2.3184999999999962,2.319499999999996,2.319499999999996,2.320499999999996,2.320499999999996,2.3214999999999963,2.3214999999999963,2.322499999999996,2.322499999999996,2.323499999999996,2.323499999999996,2.3244999999999965,2.3244999999999965,2.325499999999996,2.325499999999996,2.3264999999999962,2.3264999999999962,2.327499999999996,2.327499999999996,2.328499999999996,2.328499999999996,2.329499999999996,2.329499999999996,2.3304999999999962,2.3304999999999962,2.3314999999999957,2.3314999999999957,2.332499999999996,2.332499999999996,2.3334999999999964,2.3334999999999964,2.3344999999999962,2.3344999999999962,2.335499999999996,2.335499999999996,2.336499999999996,2.336499999999996,2.3374999999999964,2.3374999999999964,2.338499999999996,2.338499999999996,2.339499999999996,2.339499999999996,2.340499999999996,2.340499999999996,2.341499999999996,2.341499999999996,2.3424999999999963,2.3424999999999963,2.343499999999996,2.343499999999996,2.344499999999996,2.344499999999996,2.345499999999996,2.345499999999996,2.3464999999999963,2.3464999999999963,2.3474999999999957,2.3474999999999957,2.348499999999996,2.348499999999996,2.349499999999996,2.349499999999996,2.350499999999996,2.350499999999996,2.3514999999999957,2.3514999999999957,2.3524999999999956,2.3524999999999956,2.353499999999996,2.353499999999996,2.3544999999999954,2.3544999999999954,2.3554999999999957,2.3554999999999957,2.3564999999999956,2.3564999999999956,2.357499999999996,2.357499999999996,2.3584999999999954,2.3584999999999954,2.3594999999999957,2.3594999999999957,2.360499999999996,2.360499999999996,2.3614999999999955,2.3614999999999955,2.362499999999996,2.362499999999996,2.3634999999999957,2.3634999999999957,2.3644999999999956,2.3644999999999956,2.3654999999999955,2.3654999999999955,2.366499999999996,2.366499999999996,2.3674999999999953,2.3674999999999953,2.3684999999999956,2.3684999999999956,2.369499999999996,2.369499999999996,2.370499999999996,2.370499999999996,2.3714999999999957,2.3714999999999957,2.3724999999999956,2.3724999999999956,2.373499999999996,2.373499999999996,2.3744999999999954,2.3744999999999954,2.3754999999999957,2.3754999999999957,2.3764999999999956,2.3764999999999956,2.3774999999999955,2.3774999999999955,2.378499999999996,2.378499999999996,2.3794999999999957,2.3794999999999957,2.380499999999996,2.380499999999996,2.3814999999999955,2.3814999999999955,2.382499999999996,2.382499999999996,2.3834999999999957,2.3834999999999957,2.3844999999999956,2.3844999999999956,2.3854999999999955,2.3854999999999955,2.386499999999996,2.386499999999996,2.3874999999999957,2.3874999999999957,2.3884999999999956,2.3884999999999956,2.389499999999996,2.389499999999996,2.3904999999999954,2.3904999999999954,2.3914999999999957,2.3914999999999957,2.3924999999999956,2.3924999999999956,2.3934999999999955,2.3934999999999955,2.3944999999999954,2.3944999999999954,2.3954999999999957,2.3954999999999957,2.396499999999996,2.396499999999996,2.3974999999999955,2.3974999999999955,2.398499999999996,2.398499999999996,2.3994999999999957,2.3994999999999957,2.4004999999999956,2.4004999999999956,2.4014999999999955,2.4014999999999955,2.402499999999996,2.402499999999996,2.4034999999999953,2.4034999999999953,2.4044999999999956,2.4044999999999956,2.4054999999999955,2.4054999999999955,2.4064999999999954,2.4064999999999954,2.4074999999999958,2.4074999999999958,2.4084999999999956,2.4084999999999956,2.4094999999999955,2.4094999999999955,2.4104999999999954,2.4104999999999954,2.4114999999999958,2.4114999999999958,2.4124999999999956,2.4124999999999956,2.4134999999999955,2.4134999999999955,2.4144999999999954,2.4144999999999954,2.4154999999999958,2.4154999999999958,2.4164999999999957,2.4164999999999957,2.4174999999999955,2.4174999999999955,2.418499999999996,2.418499999999996,2.4194999999999953,2.4194999999999953,2.4204999999999957,2.4204999999999957,2.4214999999999955,2.4214999999999955,2.4224999999999954,2.4224999999999954,2.4234999999999953,2.4234999999999953,2.4244999999999957,2.4244999999999957,2.4254999999999955,2.4254999999999955,2.4264999999999954,2.4264999999999954,2.4274999999999958,2.4274999999999958,2.4284999999999957,2.4284999999999957,2.4294999999999956,2.4294999999999956,2.4304999999999954,2.4304999999999954,2.4314999999999958,2.4314999999999958,2.432499999999995,2.432499999999995,2.4334999999999956,2.4334999999999956,2.434499999999996,2.434499999999996,2.4354999999999953,2.4354999999999953,2.4364999999999957,2.4364999999999957,2.4374999999999956,2.4374999999999956,2.4384999999999954,2.4384999999999954,2.4394999999999953,2.4394999999999953,2.4404999999999957,2.4404999999999957,2.441499999999995,2.441499999999995,2.4424999999999955,2.4424999999999955,2.443499999999996,2.443499999999996,2.4444999999999952,2.4444999999999952,2.4454999999999956,2.4454999999999956,2.4464999999999955,2.4464999999999955,2.4474999999999953,2.4474999999999953,2.4484999999999952,2.4484999999999952,2.4494999999999956,2.4494999999999956,2.4504999999999955,2.4504999999999955,2.4514999999999953,2.4514999999999953,2.4524999999999957,2.4524999999999957,2.4534999999999956,2.4534999999999956,2.4544999999999955,2.4544999999999955,2.4554999999999954,2.4554999999999954,2.4564999999999957,2.4564999999999957,2.457499999999995,2.457499999999995,2.4584999999999955,2.4584999999999955,2.4594999999999954,2.4594999999999954,2.4604999999999957,2.4604999999999957,2.4614999999999956,2.4614999999999956,2.4624999999999955,2.4624999999999955,2.463499999999996,2.463499999999996,2.4644999999999953,2.4644999999999953,2.4654999999999956,2.4654999999999956,2.4664999999999955,2.4664999999999955,2.4674999999999954,2.4674999999999954,2.4684999999999953,2.4684999999999953,2.4694999999999956,2.4694999999999956,2.4704999999999955,2.4704999999999955,2.4714999999999954,2.4714999999999954,2.4724999999999957,2.4724999999999957,2.4734999999999956,2.4734999999999956,2.4744999999999955,2.4744999999999955,2.4754999999999954,2.4754999999999954,2.4764999999999957,2.4764999999999957,2.477499999999995,2.477499999999995,2.4784999999999955,2.4784999999999955,2.4794999999999954,2.4794999999999954,2.4804999999999953,2.4804999999999953,2.4814999999999956,2.4814999999999956,2.4824999999999955,2.4824999999999955,2.4834999999999954,2.4834999999999954,2.4844999999999953,2.4844999999999953,2.4854999999999956,2.4854999999999956,2.486499999999995,2.486499999999995,2.4874999999999954,2.4874999999999954,2.4884999999999953,2.4884999999999953,2.4894999999999956,2.4894999999999956,2.4904999999999955,2.4904999999999955,2.4914999999999954,2.4914999999999954,2.4924999999999957,2.4924999999999957,2.493499999999995,2.493499999999995,2.4944999999999955,2.4944999999999955,2.4954999999999954,2.4954999999999954,2.4964999999999953,2.4964999999999953,2.497499999999995,2.497499999999995,2.4984999999999955,2.4984999999999955,2.4994999999999954,2.4994999999999954,2.5004999999999953,2.5004999999999953,2.5014999999999956,2.5014999999999956,2.502499999999995,2.502499999999995,2.5034999999999954,2.5034999999999954,2.5044999999999953,2.5044999999999953,2.5054999999999956,2.5054999999999956,2.506499999999995,2.506499999999995,2.5074999999999954,2.5074999999999954,2.5084999999999957,2.5084999999999957,2.509499999999995,2.509499999999995,2.5104999999999955,2.5104999999999955,2.5114999999999954,2.5114999999999954,2.5124999999999953,2.5124999999999953,2.513499999999995,2.513499999999995,2.5144999999999955,2.5144999999999955,2.515499999999995,2.515499999999995,2.5164999999999953,2.5164999999999953,2.5174999999999956,2.5174999999999956,2.518499999999995,2.518499999999995,2.5194999999999954,2.5194999999999954,2.5204999999999953,2.5204999999999953,2.5214999999999956,2.5214999999999956,2.522499999999995,2.522499999999995,2.5234999999999954,2.5234999999999954,2.5244999999999953,2.5244999999999953,2.525499999999995,2.525499999999995,2.5264999999999955,2.5264999999999955,2.5274999999999954,2.5274999999999954,2.5284999999999953,2.5284999999999953,2.529499999999995,2.529499999999995,2.5304999999999955,2.5304999999999955,2.531499999999995,2.531499999999995,2.5324999999999953,2.5324999999999953,2.533499999999995,2.533499999999995,2.534499999999995,2.534499999999995,2.5354999999999954,2.5354999999999954,2.5364999999999953,2.5364999999999953,2.5374999999999956,2.5374999999999956,2.538499999999995,2.538499999999995,2.5394999999999954,2.5394999999999954,2.5404999999999953,2.5404999999999953,2.541499999999995,2.541499999999995,2.542499999999995,2.542499999999995,2.5434999999999954,2.5434999999999954,2.5444999999999958,2.5444999999999958,2.545499999999995,2.545499999999995,2.5464999999999955,2.5464999999999955,2.5474999999999954,2.5474999999999954,2.5484999999999953,2.5484999999999953,2.549499999999995,2.549499999999995,2.5504999999999955,2.5504999999999955,2.551499999999995,2.551499999999995,2.5524999999999953,2.5524999999999953,2.5534999999999957,2.5534999999999957,2.554499999999995,2.554499999999995,2.5554999999999954,2.5554999999999954,2.5564999999999953,2.5564999999999953,2.5574999999999957,2.5574999999999957,2.558499999999995,2.558499999999995,2.5594999999999954,2.5594999999999954,2.5604999999999953,2.5604999999999953,2.5614999999999952,2.5614999999999952,2.5624999999999956,2.5624999999999956,2.5634999999999954,2.5634999999999954,2.5644999999999953,2.5644999999999953,2.5654999999999952,2.5654999999999952,2.5664999999999956,2.5664999999999956,2.5674999999999955,2.5674999999999955,2.5684999999999953,2.5684999999999953,2.5694999999999952,2.5694999999999952,2.5704999999999956,2.5704999999999956,2.571499999999995,2.571499999999995,2.5724999999999953,2.5724999999999953,2.5734999999999957,2.5734999999999957,2.574499999999995,2.574499999999995,2.5754999999999955,2.5754999999999955,2.5764999999999953,2.5764999999999953,2.5774999999999952,2.5774999999999952,2.578499999999995,2.578499999999995,2.5794999999999955,2.5794999999999955,2.580499999999995,2.580499999999995,2.5814999999999952,2.5814999999999952,2.5824999999999956,2.5824999999999956,2.5834999999999955,2.5834999999999955,2.5844999999999954,2.5844999999999954,2.5854999999999952,2.5854999999999952,2.5864999999999956,2.5864999999999956,2.587499999999995,2.587499999999995,2.5884999999999954,2.5884999999999954,2.5894999999999953,2.5894999999999953,2.590499999999995,2.590499999999995,2.5914999999999955,2.5914999999999955,2.5924999999999954,2.5924999999999954,2.5934999999999953,2.5934999999999953,2.594499999999995,2.594499999999995,2.5954999999999955,2.5954999999999955,2.596499999999995,2.596499999999995,2.5974999999999953,2.5974999999999953,2.598499999999995,2.598499999999995,2.5994999999999955,2.5994999999999955,2.6004999999999954,2.6004999999999954,2.6014999999999953,2.6014999999999953,2.6024999999999956,2.6024999999999956,2.603499999999995,2.603499999999995,2.6044999999999954,2.6044999999999954,2.6054999999999953,2.6054999999999953,2.606499999999995,2.606499999999995,2.607499999999995,2.607499999999995,2.6084999999999954,2.6084999999999954,2.6094999999999953,2.6094999999999953,2.610499999999995,2.610499999999995,2.6114999999999955,2.6114999999999955,2.612499999999995,2.612499999999995,2.6134999999999953,2.6134999999999953,2.614499999999995,2.614499999999995,2.6154999999999955,2.6154999999999955,2.616499999999995,2.616499999999995,2.6174999999999953,2.6174999999999953,2.6184999999999956,2.6184999999999956,2.619499999999995,2.619499999999995,2.6204999999999954,2.6204999999999954,2.6214999999999953,2.6214999999999953,2.622499999999995,2.622499999999995,2.623499999999995,2.623499999999995,2.6244999999999954,2.6244999999999954,2.625499999999995,2.625499999999995,2.626499999999995,2.626499999999995,2.6274999999999955,2.6274999999999955,2.628499999999995,2.628499999999995,2.6294999999999953,2.6294999999999953,2.630499999999995,2.630499999999995,2.6314999999999955,2.6314999999999955,2.632499999999995,2.632499999999995,2.6334999999999953,2.6334999999999953,2.634499999999995,2.634499999999995,2.635499999999995,2.635499999999995,2.6364999999999954,2.6364999999999954,2.6374999999999953,2.6374999999999953,2.6384999999999956,2.6384999999999956,2.639499999999995,2.639499999999995,2.6404999999999954,2.6404999999999954,2.6414999999999953,2.6414999999999953,2.642499999999995,2.642499999999995,2.643499999999995,2.643499999999995,2.6444999999999954,2.6444999999999954,2.645499999999995,2.645499999999995,2.646499999999995,2.646499999999995,2.6474999999999955,2.6474999999999955,2.6484999999999954,2.6484999999999954,2.6494999999999953,2.6494999999999953,2.650499999999995,2.650499999999995,2.6514999999999955,2.6514999999999955,2.652499999999995,2.652499999999995,2.6534999999999953,2.6534999999999953,2.654499999999995,2.654499999999995,2.655499999999995,2.655499999999995,2.6564999999999954,2.6564999999999954,2.6574999999999953,2.6574999999999953,2.658499999999995,2.658499999999995,2.659499999999995,2.659499999999995,2.6604999999999954,2.6604999999999954,2.6614999999999953,2.6614999999999953,2.662499999999995,2.662499999999995,2.663499999999995,2.663499999999995,2.6644999999999954,2.6644999999999954,2.6654999999999953,2.6654999999999953,2.666499999999995,2.666499999999995,2.6674999999999955,2.6674999999999955,2.668499999999995,2.668499999999995,2.6694999999999953,2.6694999999999953,2.670499999999995,2.670499999999995,2.671499999999995,2.671499999999995,2.672499999999995,2.672499999999995,2.6734999999999953,2.6734999999999953,2.674499999999995,2.674499999999995,2.675499999999995,2.675499999999995,2.6764999999999954,2.6764999999999954,2.6774999999999953,2.6774999999999953,2.678499999999995,2.678499999999995,2.679499999999995,2.679499999999995,2.6804999999999954,2.6804999999999954,2.681499999999995,2.681499999999995,2.682499999999995,2.682499999999995,2.6834999999999956,2.6834999999999956,2.684499999999995,2.684499999999995,2.6854999999999953,2.6854999999999953,2.6864999999999952,2.6864999999999952,2.687499999999995,2.687499999999995,2.688499999999995,2.688499999999995,2.6894999999999953,2.6894999999999953,2.690499999999995,2.690499999999995,2.691499999999995,2.691499999999995,2.6924999999999955,2.6924999999999955,2.6934999999999953,2.6934999999999953,2.6944999999999952,2.6944999999999952,2.695499999999995,2.695499999999995,2.6964999999999955,2.6964999999999955,2.697499999999995,2.697499999999995,2.6984999999999952,2.6984999999999952,2.699499999999995,2.699499999999995,2.700499999999995,2.700499999999995,2.7014999999999953,2.7014999999999953,2.7024999999999952,2.7024999999999952,2.703499999999995,2.703499999999995,2.704499999999995,2.704499999999995,2.7054999999999954,2.7054999999999954,2.706499999999995,2.706499999999995,2.707499999999995,2.707499999999995,2.708499999999995,2.708499999999995,2.7094999999999954,2.7094999999999954,2.7104999999999952,2.7104999999999952,2.711499999999995,2.711499999999995,2.7124999999999955,2.7124999999999955,2.713499999999995,2.713499999999995,2.7144999999999953,2.7144999999999953,2.715499999999995,2.715499999999995,2.716499999999995,2.716499999999995,2.717499999999995,2.717499999999995,2.7184999999999953,2.7184999999999953,2.719499999999995,2.719499999999995,2.720499999999995,2.720499999999995,2.7214999999999954,2.7214999999999954,2.722499999999995,2.722499999999995,2.723499999999995,2.723499999999995,2.724499999999995,2.724499999999995,2.7254999999999954,2.7254999999999954,2.726499999999995,2.726499999999995,2.727499999999995,2.727499999999995,2.728499999999995,2.728499999999995,2.729499999999995,2.729499999999995,2.7304999999999953,2.7304999999999953,2.731499999999995,2.731499999999995,2.7324999999999955,2.7324999999999955,2.733499999999995,2.733499999999995,2.7344999999999953,2.7344999999999953,2.735499999999995,2.735499999999995,2.736499999999995,2.736499999999995,2.737499999999995,2.737499999999995,2.7384999999999953,2.7384999999999953,2.739499999999995,2.739499999999995,2.740499999999995,2.740499999999995,2.7414999999999954,2.7414999999999954,2.742499999999995,2.742499999999995,2.743499999999995,2.743499999999995,2.744499999999995,2.744499999999995,2.7454999999999954,2.7454999999999954,2.746499999999995,2.746499999999995,2.747499999999995,2.747499999999995,2.7484999999999955,2.7484999999999955,2.749499999999995,2.749499999999995,2.7504999999999953,2.7504999999999953,2.751499999999995,2.751499999999995,2.752499999999995,2.752499999999995,2.753499999999995,2.753499999999995,2.7544999999999953,2.7544999999999953,2.755499999999995,2.755499999999995,2.756499999999995,2.756499999999995,2.7574999999999954,2.7574999999999954,2.7584999999999953,2.7584999999999953,2.759499999999995,2.759499999999995,2.760499999999995,2.760499999999995,2.7614999999999954,2.7614999999999954,2.762499999999995,2.762499999999995,2.763499999999995,2.763499999999995,2.764499999999995,2.764499999999995,2.765499999999995,2.765499999999995,2.7664999999999953,2.7664999999999953,2.767499999999995,2.767499999999995,2.768499999999995,2.768499999999995,2.769499999999995,2.769499999999995,2.7704999999999953,2.7704999999999953,2.771499999999995,2.771499999999995,2.772499999999995,2.772499999999995,2.773499999999995,2.773499999999995,2.7744999999999953,2.7744999999999953,2.775499999999995,2.775499999999995,2.776499999999995,2.776499999999995,2.7774999999999954,2.7774999999999954,2.778499999999995,2.778499999999995,2.779499999999995,2.779499999999995,2.780499999999995,2.780499999999995,2.781499999999995,2.781499999999995,2.782499999999995,2.782499999999995,2.783499999999995,2.783499999999995,2.784499999999995,2.784499999999995,2.785499999999995,2.785499999999995,2.7864999999999953,2.7864999999999953,2.787499999999995,2.787499999999995,2.788499999999995,2.788499999999995,2.789499999999995,2.789499999999995,2.7904999999999953,2.7904999999999953,2.7914999999999948,2.7914999999999948,2.792499999999995,2.792499999999995,2.793499999999995,2.793499999999995,2.794499999999995,2.794499999999995,2.795499999999995,2.795499999999995,2.796499999999995,2.796499999999995,2.797499999999995,2.797499999999995,2.798499999999995,2.798499999999995,2.799499999999995,2.799499999999995,2.8004999999999947,2.8004999999999947,2.801499999999995,2.801499999999995,2.802499999999995,2.802499999999995,2.803499999999995,2.803499999999995,2.804499999999995,2.804499999999995,2.805499999999995,2.805499999999995,2.8064999999999953,2.8064999999999953,2.8074999999999948,2.8074999999999948,2.808499999999995,2.808499999999995,2.809499999999995,2.809499999999995,2.810499999999995,2.810499999999995,2.811499999999995,2.811499999999995,2.812499999999995,2.812499999999995,2.813499999999995,2.813499999999995,2.814499999999995,2.814499999999995,2.8154999999999952,2.8154999999999952,2.8164999999999947,2.8164999999999947,2.817499999999995,2.817499999999995,2.818499999999995,2.818499999999995,2.819499999999995,2.819499999999995,2.8204999999999947,2.8204999999999947,2.821499999999995,2.821499999999995,2.822499999999995,2.822499999999995,2.823499999999995,2.823499999999995,2.824499999999995,2.824499999999995,2.825499999999995,2.825499999999995,2.826499999999995,2.826499999999995,2.827499999999995,2.827499999999995,2.828499999999995,2.828499999999995,2.8294999999999946,2.8294999999999946,2.830499999999995,2.830499999999995,2.8314999999999952,2.8314999999999952,2.8324999999999947,2.8324999999999947,2.833499999999995,2.833499999999995,2.834499999999995,2.834499999999995,2.8354999999999952,2.8354999999999952,2.8364999999999947,2.8364999999999947,2.837499999999995,2.837499999999995,2.838499999999995,2.838499999999995,2.839499999999995,2.839499999999995,2.840499999999995,2.840499999999995,2.841499999999995,2.841499999999995,2.842499999999995,2.842499999999995,2.843499999999995,2.843499999999995,2.844499999999995,2.844499999999995,2.8454999999999946,2.8454999999999946,2.846499999999995,2.846499999999995,2.847499999999995,2.847499999999995,2.848499999999995,2.848499999999995,2.849499999999995,2.849499999999995,2.850499999999995,2.850499999999995,2.8514999999999953,2.8514999999999953,2.8524999999999947,2.8524999999999947,2.853499999999995,2.853499999999995,2.854499999999995,2.854499999999995,2.855499999999995,2.855499999999995,2.8564999999999947,2.8564999999999947,2.857499999999995,2.857499999999995,2.858499999999995,2.858499999999995,2.859499999999995,2.859499999999995,2.860499999999995,2.860499999999995,2.8614999999999946,2.8614999999999946,2.862499999999995,2.862499999999995,2.863499999999995,2.863499999999995,2.864499999999995,2.864499999999995,2.8654999999999946,2.8654999999999946,2.866499999999995,2.866499999999995,2.8674999999999953,2.8674999999999953,2.8684999999999947,2.8684999999999947,2.869499999999995,2.869499999999995,2.870499999999995,2.870499999999995,2.871499999999995,2.871499999999995,2.8724999999999947,2.8724999999999947,2.873499999999995,2.873499999999995,2.8744999999999945,2.8744999999999945,2.875499999999995,2.875499999999995,2.8764999999999947,2.8764999999999947,2.8774999999999946,2.8774999999999946,2.878499999999995,2.878499999999995,2.879499999999995,2.879499999999995,2.880499999999995,2.880499999999995,2.8814999999999946,2.8814999999999946,2.882499999999995,2.882499999999995,2.883499999999995,2.883499999999995,2.8844999999999947,2.8844999999999947,2.8854999999999946,2.8854999999999946,2.886499999999995,2.886499999999995,2.887499999999995,2.887499999999995,2.8884999999999947,2.8884999999999947,2.889499999999995,2.889499999999995,2.8904999999999945,2.8904999999999945,2.891499999999995,2.891499999999995,2.8924999999999947,2.8924999999999947,2.8934999999999946,2.8934999999999946,2.8944999999999945,2.8944999999999945,2.895499999999995,2.895499999999995,2.896499999999995,2.896499999999995,2.8974999999999946,2.8974999999999946,2.898499999999995,2.898499999999995,2.899499999999995,2.899499999999995,2.9004999999999947,2.9004999999999947,2.9014999999999946,2.9014999999999946,2.902499999999995,2.902499999999995,2.9034999999999944,2.9034999999999944,2.9044999999999948,2.9044999999999948,2.905499999999995,2.905499999999995,2.9064999999999945,2.9064999999999945,2.907499999999995,2.907499999999995,2.9084999999999948,2.9084999999999948,2.9094999999999946,2.9094999999999946,2.9104999999999945,2.9104999999999945,2.911499999999995,2.911499999999995,2.9124999999999948,2.9124999999999948,2.9134999999999946,2.9134999999999946,2.914499999999995,2.914499999999995,2.915499999999995,2.915499999999995,2.9164999999999948,2.9164999999999948,2.9174999999999947,2.9174999999999947,2.918499999999995,2.918499999999995,2.919499999999995,2.919499999999995,2.9204999999999948,2.9204999999999948,2.9214999999999947,2.9214999999999947,2.922499999999995,2.922499999999995,2.923499999999995,2.923499999999995,2.9244999999999948,2.9244999999999948,2.925499999999995,2.925499999999995,2.9264999999999946,2.9264999999999946,2.927499999999995,2.927499999999995,2.9284999999999948,2.9284999999999948,2.9294999999999947,2.9294999999999947,2.9304999999999946,2.9304999999999946,2.931499999999995,2.931499999999995,2.932499999999995,2.932499999999995,2.9334999999999947,2.9334999999999947,2.934499999999995,2.934499999999995,2.935499999999995,2.935499999999995,2.936499999999995,2.936499999999995,2.9374999999999947,2.9374999999999947,2.938499999999995,2.938499999999995,2.9394999999999945,2.9394999999999945,2.940499999999995,2.940499999999995,2.941499999999995,2.941499999999995,2.942499999999995,2.942499999999995,2.943499999999995,2.943499999999995,2.944499999999995,2.944499999999995,2.945499999999995,2.945499999999995,2.9464999999999946,2.9464999999999946,2.947499999999995,2.947499999999995,2.948499999999995,2.948499999999995,2.9494999999999947,2.9494999999999947,2.9504999999999946,2.9504999999999946,2.951499999999995,2.951499999999995,2.952499999999995,2.952499999999995,2.9534999999999947,2.9534999999999947,2.954499999999995,2.954499999999995,2.9554999999999945,2.9554999999999945,2.956499999999995,2.956499999999995,2.9574999999999947,2.9574999999999947,2.958499999999995,2.958499999999995,2.9594999999999945,2.9594999999999945,2.960499999999995,2.960499999999995,2.961499999999995,2.961499999999995,2.9624999999999946,2.9624999999999946,2.963499999999995,2.963499999999995,2.964499999999995,2.964499999999995,2.9654999999999947,2.9654999999999947,2.9664999999999946,2.9664999999999946,2.967499999999995,2.967499999999995,2.9684999999999944,2.9684999999999944,2.9694999999999947,2.9694999999999947,2.970499999999995,2.970499999999995,2.9714999999999945,2.9714999999999945,2.972499999999995,2.972499999999995,2.9734999999999947,2.9734999999999947,2.974499999999995,2.974499999999995,2.9754999999999945,2.9754999999999945,2.976499999999995,2.976499999999995,2.9774999999999947,2.9774999999999947,2.9784999999999946,2.9784999999999946,2.979499999999995,2.979499999999995,2.980499999999995,2.980499999999995,2.9814999999999947,2.9814999999999947,2.9824999999999946,2.9824999999999946,2.983499999999995,2.983499999999995,2.9844999999999944,2.9844999999999944,2.9854999999999947,2.9854999999999947,2.9864999999999946,2.9864999999999946,2.9874999999999945,2.9874999999999945,2.988499999999995,2.988499999999995,2.9894999999999947,2.9894999999999947,2.990499999999995,2.990499999999995,2.9914999999999945,2.9914999999999945,2.992499999999995,2.992499999999995,2.9934999999999947,2.9934999999999947,2.9944999999999946,2.9944999999999946,2.9954999999999945,2.9954999999999945,2.996499999999995,2.996499999999995,2.9974999999999947,2.9974999999999947,2.9984999999999946,2.9984999999999946,2.999499999999995,2.999499999999995,3.0004999999999944,3.0004999999999944,3.0014999999999947,3.0014999999999947,3.0024999999999946,3.0024999999999946,3.0034999999999945,3.0034999999999945,3.0044999999999944,3.0044999999999944,3.0054999999999947,3.0054999999999947,3.006499999999995,3.006499999999995,3.0074999999999945,3.0074999999999945,3.008499999999995,3.008499999999995,3.0094999999999947,3.0094999999999947,3.0104999999999946,3.0104999999999946,3.0114999999999945,3.0114999999999945,3.012499999999995,3.012499999999995,3.0134999999999947,3.0134999999999947,3.0144999999999946,3.0144999999999946,3.015499999999995,3.015499999999995,3.016499999999995,3.016499999999995,3.0174999999999947,3.0174999999999947,3.0184999999999946,3.0184999999999946,3.019499999999995,3.019499999999995,3.0204999999999944,3.0204999999999944,3.0214999999999947,3.0214999999999947,3.0224999999999946,3.0224999999999946,3.023499999999995,3.023499999999995,3.024499999999995,3.024499999999995,3.0254999999999947,3.0254999999999947,3.026499999999995,3.026499999999995,3.0274999999999945,3.0274999999999945,3.028499999999995,3.028499999999995,3.0294999999999948,3.0294999999999948,3.0304999999999946,3.0304999999999946,3.0314999999999945,3.0314999999999945,3.032499999999995,3.032499999999995,3.0334999999999948,3.0334999999999948,3.0344999999999946,3.0344999999999946,3.035499999999995,3.035499999999995,3.036499999999995,3.036499999999995,3.0374999999999948,3.0374999999999948,3.0384999999999946,3.0384999999999946,3.039499999999995,3.039499999999995,3.0404999999999944,3.0404999999999944,3.0414999999999948,3.0414999999999948,3.0424999999999947,3.0424999999999947,3.0434999999999945,3.0434999999999945,3.044499999999995,3.044499999999995,3.0454999999999948,3.0454999999999948,3.0464999999999947,3.0464999999999947,3.0474999999999945,3.0474999999999945,3.048499999999995,3.048499999999995,3.0494999999999943,3.0494999999999943,3.0504999999999947,3.0504999999999947,3.0514999999999946,3.0514999999999946,3.052499999999995,3.052499999999995,3.0534999999999948,3.0534999999999948,3.0544999999999947,3.0544999999999947,3.055499999999995,3.055499999999995,3.0564999999999944,3.0564999999999944,3.0574999999999948,3.0574999999999948,3.0584999999999947,3.0584999999999947,3.0594999999999946,3.0594999999999946,3.0604999999999944,3.0604999999999944,3.061499999999995,3.061499999999995,3.0624999999999947,3.0624999999999947,3.0634999999999946,3.0634999999999946,3.064499999999995,3.064499999999995,3.0654999999999943,3.0654999999999943,3.0664999999999947,3.0664999999999947,3.0674999999999946,3.0674999999999946,3.068499999999995,3.068499999999995,3.0694999999999943,3.0694999999999943,3.0704999999999947,3.0704999999999947,3.071499999999995,3.071499999999995,3.0724999999999945,3.0724999999999945,3.073499999999995,3.073499999999995,3.0744999999999947,3.0744999999999947,3.0754999999999946,3.0754999999999946,3.0764999999999945,3.0764999999999945,3.077499999999995,3.077499999999995,3.0784999999999942,3.0784999999999942,3.0794999999999946,3.0794999999999946,3.080499999999995,3.080499999999995,3.0814999999999944,3.0814999999999944,3.0824999999999947,3.0824999999999947,3.0834999999999946,3.0834999999999946,3.084499999999995,3.084499999999995,3.0854999999999944,3.0854999999999944,3.0864999999999947,3.0864999999999947,3.0874999999999946,3.0874999999999946,3.0884999999999945,3.0884999999999945,3.089499999999995,3.089499999999995,3.0904999999999947,3.0904999999999947,3.0914999999999946,3.0914999999999946,3.0924999999999945,3.0924999999999945,3.093499999999995,3.093499999999995,3.0944999999999943,3.0944999999999943,3.0954999999999946,3.0954999999999946,3.0964999999999945,3.0964999999999945,3.0974999999999944,3.0974999999999944,3.0984999999999947,3.0984999999999947,3.0994999999999946,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.82049999999998,110.82149999999999,110.82149999999999,110.82249999999999,110.82249999999999,110.8235,110.8235,110.82449999999997,110.82449999999997,110.82549999999998,110.82549999999998,110.82649999999998,110.82649999999998,110.82749999999999,110.82749999999999,110.82849999999998,110.82849999999998,110.82949999999998,110.82949999999998,110.83049999999999,110.83049999999999,110.83149999999999,110.83149999999999,110.83249999999998,110.83249999999998,110.83349999999999,110.83349999999999,110.83449999999999,110.83449999999999,110.8355,110.8355,110.83649999999999,110.83649999999999,110.83749999999999,110.83749999999999,110.83849999999998,110.83849999999998,110.83949999999999,110.83949999999999,110.84049999999998,110.84049999999998,110.84149999999998,110.84149999999998,110.84249999999999,110.84249999999999,110.84349999999998,110.84349999999998,110.84449999999998,110.84449999999998,110.84549999999999,110.84549999999999,110.84649999999999,110.84649999999999,110.84749999999998,110.84749999999998,110.84849999999999,110.84849999999999,110.84949999999999,110.84949999999999,110.8505,110.8505,110.85149999999999,110.85149999999999,110.85249999999998,110.85249999999998,110.85349999999998,110.85349999999998,110.85449999999999,110.85449999999999,110.85549999999998,110.85549999999998,110.85649999999998,110.85649999999998,110.85749999999999,110.85749999999999,110.85849999999998,110.85849999999998,110.85949999999998,110.85949999999998,110.86049999999999,110.86049999999999,110.86149999999999,110.86149999999999,110.86249999999998,110.86249999999998,110.86349999999999,110.86349999999999,110.86449999999999,110.86449999999999,110.8655,110.8655,110.86649999999997,110.86649999999997,110.86749999999998,110.86749999999998,110.86849999999998,110.86849999999998,110.86949999999999,110.86949999999999,110.87049999999998,110.87049999999998,110.87149999999998,110.87149999999998,110.87249999999999,110.87249999999999,110.87349999999999,110.87349999999999,110.87449999999998,110.87449999999998,110.87549999999999,110.87549999999999,110.8765,110.8765,110.87749999999998,110.87749999999998,110.87849999999999,110.87849999999999,110.8795,110.8795,110.88049999999998,110.88049999999998,110.88149999999997,110.88149999999997,110.88249999999998,110.88249999999998,110.88349999999998,110.88349999999998,110.88449999999999,110.88449999999999,110.88549999999998,110.88549999999998,110.88649999999998,110.88649999999998,110.88749999999999,110.88749999999999,110.8885,110.8885,110.88949999999998,110.88949999999998,110.89049999999999,110.89049999999999,110.8915,110.8915,110.89249999999998,110.89249999999998,110.89349999999997,110.89349999999997,110.89449999999998,110.89449999999998,110.89549999999998,110.89549999999998,110.89649999999997,110.89649999999997,110.89749999999998,110.89749999999998,110.89849999999998,110.89849999999998,110.89949999999999,110.89949999999999,110.90049999999998,110.90049999999998,110.90149999999998,110.90149999999998,110.90249999999999,110.90249999999999,110.9035,110.9035,110.90449999999998,110.90449999999998,110.90549999999999,110.90549999999999,110.9065,110.9065,110.90749999999998,110.90749999999998,110.90849999999998,110.90849999999998,110.90949999999998,110.90949999999998,110.91049999999998,110.91049999999998,110.91149999999998,110.91149999999998,110.91249999999998,110.91249999999998,110.91349999999998,110.91349999999998,110.91449999999999,110.91449999999999,110.91549999999998,110.91549999999998,110.91649999999998,110.91649999999998,110.91749999999999,110.91749999999999,110.9185,110.9185,110.91949999999999,110.91949999999999,110.92049999999999,110.92049999999999,110.92149999999998,110.92149999999998,110.92249999999999,110.92249999999999,110.92349999999998,110.92349999999998,110.92449999999998,110.92449999999998,110.92549999999999,110.92549999999999,110.92649999999999,110.92649999999999,110.92749999999998,110.92749999999998,110.92849999999999,110.92849999999999,110.92949999999999,110.92949999999999,110.93049999999998,110.93049999999998,110.93149999999999,110.93149999999999,110.93249999999999,110.93249999999999,110.9335,110.9335,110.93449999999999,110.93449999999999,110.93549999999998,110.93549999999998,110.93649999999998,110.93649999999998,110.93749999999999,110.93749999999999,110.93849999999998,110.93849999999998,110.93949999999998,110.93949999999998,110.94049999999999,110.94049999999999,110.94149999999999,110.94149999999999,110.94249999999998,110.94249999999998,110.94349999999999,110.94349999999999,110.94449999999999,110.94449999999999,110.9455,110.9455,110.94649999999999,110.94649999999999,110.94749999999999,110.94749999999999,110.9485,110.9485,110.94949999999997,110.94949999999997,110.95049999999998,110.95049999999998,110.95149999999998,110.95149999999998,110.95249999999999,110.95249999999999,110.95349999999998,110.95349999999998,110.95449999999998,110.95449999999998,110.95549999999999,110.95549999999999,110.95649999999999,110.95649999999999,110.95749999999998,110.95749999999998,110.95849999999999,110.95849999999999,110.95949999999999,110.95949999999999,110.9605,110.9605,110.96149999999999,110.96149999999999,110.96249999999999,110.96249999999999,110.96349999999998,110.96349999999998,110.96449999999999,110.96449999999999,110.96549999999998,110.96549999999998,110.96649999999998,110.96649999999998,110.96749999999999,110.96749999999999,110.96849999999998,110.96849999999998,110.96949999999998,110.96949999999998,110.97049999999999,110.97049999999999,110.97149999999999,110.97149999999999,110.97249999999998,110.97249999999998,110.97349999999999,110.97349999999999,110.97449999999999,110.97449999999999,110.9755,110.9755,110.97649999999997,110.97649999999997,110.97749999999998,110.97749999999998,110.97849999999998,110.97849999999998,110.97949999999999,110.97949999999999,110.98049999999998,110.98049999999998,110.98149999999998,110.98149999999998,110.98249999999999,110.98249999999999,110.98349999999998,110.98349999999998,110.98449999999998,110.98449999999998,110.98549999999999,110.98549999999999,110.98649999999999,110.98649999999999,110.98749999999998,110.98749999999998,110.98849999999999,110.98849999999999,110.98949999999999,110.98949999999999,110.99049999999998,110.99049999999998,110.99149999999997,110.99149999999997,110.99249999999998,110.99249999999998,110.99349999999998,110.99349999999998,110.99449999999999,110.99449999999999,110.99549999999998,110.99549999999998,110.99649999999998,110.99649999999998,110.99749999999999,110.99749999999999,110.99849999999999,110.99849999999999,110.99949999999998,110.99949999999998,111.00049999999999,111.00049999999999,111.0015,111.0015,111.00249999999998,111.00249999999998,111.00349999999999,111.00349999999999,111.00449999999998,111.00449999999998,111.00549999999998,111.00549999999998,111.00649999999997,111.00649999999997,111.00749999999998,111.00749999999998,111.00849999999998,111.00849999999998,111.00949999999999,111.00949999999999,111.01049999999998,111.01049999999998,111.01149999999998,111.01149999999998,111.01249999999999,111.01249999999999,111.0135,111.0135,111.01449999999998,111.01449999999998,111.01549999999999,111.01549999999999,111.0165,111.0165,111.01749999999998,111.01749999999998,111.01849999999997,111.01849999999997,111.01949999999998,111.01949999999998,111.02049999999998,111.02049999999998,111.02149999999997,111.02149999999997,111.02249999999998,111.02249999999998,111.02349999999998,111.02349999999998,111.02449999999999,111.02449999999999,111.02549999999998,111.02549999999998,111.02649999999998,111.02649999999998,111.02749999999999,111.02749999999999,111.0285,111.0285,111.02949999999998,111.02949999999998,111.03049999999999,111.03049999999999,111.0315,111.0315,111.03249999999998,111.03249999999998,111.03349999999998,111.03349999999998,111.03449999999998,111.03449999999998,111.03549999999998,111.03549999999998,111.03649999999999,111.03649999999999,111.03749999999998,111.03749999999998,111.03849999999998,111.03849999999998,111.03949999999999,111.03949999999999,111.04049999999998,111.04049999999998,111.04149999999998,111.04149999999998,111.04249999999999,111.04249999999999,111.0435,111.0435,111.04449999999999,111.04449999999999,111.04549999999999,111.04549999999999,111.04649999999998,111.04649999999998,111.04749999999999,111.04749999999999,111.04849999999998,111.04849999999998,111.04949999999998,111.04949999999998,111.05049999999999,111.05049999999999,111.05149999999999,111.05149999999999,111.05249999999998,111.05249999999998,111.05349999999999,111.05349999999999,111.05449999999999,111.05449999999999,111.05549999999998,111.05549999999998,111.05649999999999,111.05649999999999,111.05749999999999,111.05749999999999,111.0585,111.0585,111.05949999999999,111.05949999999999,111.06049999999998,111.06049999999998,111.06149999999998,111.06149999999998,111.06249999999999,111.06249999999999,111.06349999999998,111.06349999999998,111.06449999999998,111.06449999999998,111.06549999999999,111.06549999999999,111.06649999999999,111.06649999999999,111.06749999999998,111.06749999999998,111.06849999999999,111.06849999999999,111.06949999999999,111.06949999999999,111.0705,111.0705,111.07149999999999,111.07149999999999,111.07249999999999,111.07249999999999,111.07349999999998,111.07349999999998,111.07449999999997,111.07449999999997,111.07549999999998,111.07549999999998,111.07649999999998,111.07649999999998,111.07749999999999,111.07749999999999,111.07849999999998,111.07849999999998,111.07949999999998,111.07949999999998,111.08049999999999,111.08049999999999,111.08149999999999,111.08149999999999,111.08249999999998,111.08249999999998,111.08349999999999,111.08349999999999,111.08449999999999,111.08449999999999,111.0855,111.0855,111.08649999999999,111.08649999999999,111.08749999999998,111.08749999999998,111.08849999999998,111.08849999999998,111.08949999999999,111.08949999999999,111.09049999999998,111.09049999999998,111.09149999999998,111.09149999999998,111.09249999999999,111.09249999999999,111.09349999999998,111.09349999999998,111.09449999999998,111.09449999999998,111.09549999999999,111.09549999999999,111.09649999999999,111.09649999999999,111.09749999999998,111.09749999999998,111.09849999999999,111.09849999999999,111.09949999999999,111.09949999999999,111.1005,111.1005,111.10149999999997,111.10149999999997,111.10249999999998,111.10249999999998,111.10349999999998,111.10349999999998,111.10449999999999,111.10449999999999,111.10549999999998,111.10549999999998,111.10649999999998,111.10649999999998,111.10749999999999,111.10749999999999,111.10849999999998,111.10849999999998,111.10949999999998,111.10949999999998,111.11049999999999,111.11049999999999,111.11149999999999,111.11149999999999,111.11249999999998,111.11249999999998,111.11349999999999,111.11349999999999,111.11449999999999,111.11449999999999,111.11549999999998,111.11549999999998,111.11649999999997,111.11649999999997,111.11749999999998,111.11749999999998,111.11849999999998,111.11849999999998,111.11949999999999,111.11949999999999,111.12049999999998,111.12049999999998,111.12149999999998,111.12149999999998,111.12249999999999,111.12249999999999,111.12349999999999,111.12349999999999,111.12449999999998,111.12449999999998,111.12549999999999,111.12549999999999,111.1265,111.1265,111.12749999999998,111.12749999999998,111.12849999999999,111.12849999999999,111.12949999999998,111.12949999999998,111.13049999999998,111.13049999999998,111.13149999999997,111.13149999999997,111.13249999999998,111.13249999999998,111.13349999999998,111.13349999999998,111.13449999999999,111.13449999999999,111.13549999999998,111.13549999999998,111.13649999999998,111.13649999999998,111.13749999999999,111.13749999999999,111.1385,111.1385,111.13949999999998,111.13949999999998,111.14049999999999,111.14049999999999,111.1415,111.1415,111.1425,111.1425,111.14349999999997,111.14349999999997,111.14449999999998,111.14449999999998,111.14549999999998,111.14549999999998,111.14649999999997,111.14649999999997,111.14749999999998,111.14749999999998,111.14849999999998,111.14849999999998,111.14949999999999,111.14949999999999,111.15049999999998,111.15049999999998,111.15149999999998,111.15149999999998,111.15249999999999,111.15249999999999,111.1535,111.1535,111.15449999999998,111.15449999999998,111.15549999999999,111.15549999999999,111.1565,111.1565,111.15749999999998,111.15749999999998,111.15849999999998,111.15849999999998,111.15949999999998,111.15949999999998,111.16049999999998,111.16049999999998,111.16149999999999,111.16149999999999,111.16249999999998,111.16249999999998,111.16349999999998,111.16349999999998,111.16449999999999,111.16449999999999,111.16549999999998,111.16549999999998,111.16649999999998,111.16649999999998,111.16749999999999,111.16749999999999,111.1685,111.1685,111.16949999999999,111.16949999999999,111.17049999999998,111.17049999999998,111.17149999999998,111.17149999999998,111.17249999999999,111.17249999999999,111.17349999999998,111.17349999999998,111.17449999999998,111.17449999999998,111.17549999999999,111.17549999999999,111.17649999999999,111.17649999999999,111.17749999999998,111.17749999999998,111.17849999999999,111.17849999999999,111.17949999999999,111.17949999999999,111.18049999999998,111.18049999999998,111.18149999999999,111.18149999999999,111.18249999999999,111.18249999999999,111.1835,111.1835,111.18449999999997,111.18449999999997,111.18549999999998,111.18549999999998,111.18649999999998,111.18649999999998,111.18749999999999,111.18749999999999,111.18849999999998,111.18849999999998,111.18949999999998,111.18949999999998,111.19049999999999,111.19049999999999,111.19149999999999,111.19149999999999,111.19249999999998,111.19249999999998,111.19349999999999,111.19349999999999,111.19449999999999,111.19449999999999,111.1955,111.1955,111.19649999999999,111.19649999999999,111.19749999999999,111.19749999999999,111.19849999999998,111.19849999999998,111.19949999999997,111.19949999999997,111.20049999999998,111.20049999999998,111.20149999999998,111.20149999999998,111.20249999999999,111.20249999999999,111.20349999999998,111.20349999999998,111.20449999999998,111.20449999999998,111.20549999999999,111.20549999999999,111.20649999999999,111.20649999999999,111.20749999999998,111.20749999999998,111.20849999999999,111.20849999999999,111.20949999999999,111.20949999999999,111.2105,111.2105,111.21149999999999,111.21149999999999,111.21249999999998,111.21249999999998,111.21349999999998,111.21349999999998,111.21449999999999,111.21449999999999,111.21549999999998,111.21549999999998,111.21649999999998,111.21649999999998,111.21749999999999,111.21749999999999,111.21849999999998,111.21849999999998,111.21949999999998,111.21949999999998,111.22049999999999,111.22049999999999,111.22149999999999,111.22149999999999,111.22249999999998,111.22249999999998,111.22349999999999,111.22349999999999,111.22449999999999,111.22449999999999,111.2255,111.2255,111.22649999999997,111.22649999999997,111.22749999999998,111.22749999999998,111.22849999999998,111.22849999999998,111.22949999999999,111.22949999999999,111.23049999999998,111.23049999999998,111.23149999999998,111.23149999999998,111.23249999999999,111.23249999999999,111.23349999999999,111.23349999999999,111.23449999999998,111.23449999999998,111.23549999999999,111.23549999999999,111.23649999999999,111.23649999999999,111.23749999999998,111.23749999999998,111.23849999999999,111.23849999999999,111.23949999999999,111.23949999999999,111.24049999999998,111.24049999999998,111.24149999999997,111.24149999999997,111.24249999999998,111.24249999999998,111.24349999999998,111.24349999999998,111.24449999999999,111.24449999999999,111.24549999999998,111.24549999999998,111.24649999999998,111.24649999999998,111.24749999999999,111.24749999999999,111.24849999999999,111.24849999999999,111.24949999999998,111.24949999999998,111.25049999999999,111.25049999999999,111.2515,111.2515,111.25249999999998,111.25249999999998,111.25349999999997,111.25349999999997,111.25449999999998,111.25449999999998,111.25549999999998,111.25549999999998,111.25649999999997,111.25649999999997,111.25749999999998,111.25749999999998,111.25849999999998,111.25849999999998,111.25949999999999,111.25949999999999,111.26049999999998,111.26049999999998,111.26149999999998,111.26149999999998,111.26249999999999,111.26249999999999,111.2635,111.2635,111.26449999999998,111.26449999999998,111.26549999999999,111.26549999999999,111.2665,111.2665,111.26749999999998,111.26749999999998,111.26849999999997,111.26849999999997,111.26949999999998,111.26949999999998,111.27049999999998,111.27049999999998,111.27149999999997,111.27149999999997,111.27249999999998,111.27249999999998,111.27349999999998,111.27349999999998,111.27449999999999,111.27449999999999,111.27549999999998,111.27549999999998,111.27649999999998,111.27649999999998,111.27749999999999,111.27749999999999,111.2785,111.2785,111.27949999999998,111.27949999999998,111.28049999999999,111.28049999999999,111.28149999999998,111.28149999999998,111.28249999999998,111.28249999999998,111.28349999999998,111.28349999999998,111.28449999999998,111.28449999999998,111.28549999999998,111.28549999999998,111.28649999999999,111.28649999999999,111.28749999999998,111.28749999999998,111.28849999999998,111.28849999999998,111.28949999999999,111.28949999999999,111.29049999999998,111.29049999999998,111.29149999999998,111.29149999999998,111.29249999999999,111.29249999999999,111.2935,111.2935,111.29449999999999,111.29449999999999,111.29549999999998,111.29549999999998,111.29649999999998,111.29649999999998,111.29749999999999,111.29749999999999,111.29849999999998,111.29849999999998,111.29949999999998,111.29949999999998,111.30049999999999,111.30049999999999,111.30149999999999,111.30149999999999,111.30249999999998,111.30249999999998,111.30349999999999,111.30349999999999,111.30449999999999,111.30449999999999,111.30549999999998,111.30549999999998,111.30649999999999,111.30649999999999,111.30749999999999,111.30749999999999,111.3085,111.3085,111.30949999999997,111.30949999999997,111.31049999999998,111.31049999999998,111.31149999999998,111.31149999999998,111.31249999999999,111.31249999999999,111.31349999999998,111.31349999999998,111.31449999999998,111.31449999999998,111.31549999999999,111.31549999999999,111.31649999999999,111.31649999999999,111.31749999999998,111.31749999999998,111.31849999999999,111.31849999999999,111.31949999999999,111.31949999999999,111.3205,111.3205,111.32149999999999,111.32149999999999,111.32249999999999,111.32249999999999,111.32349999999998,111.32349999999998,111.32449999999997,111.32449999999997,111.32549999999998,111.32549999999998,111.32649999999998,111.32649999999998,111.32749999999999,111.32749999999999,111.32849999999998,111.32849999999998,111.32949999999998,111.32949999999998,111.33049999999999,111.33049999999999,111.33149999999999,111.33149999999999,111.33249999999998,111.33249999999998,111.33349999999999,111.33349999999999,111.33449999999999,111.33449999999999,111.3355,111.3355,111.33649999999999,111.33649999999999,111.33749999999998,111.33749999999998,111.33849999999998,111.33849999999998,111.33949999999999,111.33949999999999,111.34049999999998,111.34049999999998,111.34149999999998,111.34149999999998,111.34249999999999,111.34249999999999,111.34349999999998,111.34349999999998,111.34449999999998,111.34449999999998,111.34549999999999,111.34549999999999,111.34649999999999,111.34649999999999,111.34749999999998,111.34749999999998,111.34849999999999,111.34849999999999,111.34949999999999,111.34949999999999,111.3505,111.3505,111.35149999999997,111.35149999999997,111.35249999999998,111.35249999999998,111.35349999999998,111.35349999999998,111.35449999999999,111.35449999999999,111.35549999999998,111.35549999999998,111.35649999999998,111.35649999999998,111.35749999999999,111.35749999999999,111.35849999999999,111.35849999999999,111.35949999999998,111.35949999999998,111.36049999999999,111.36049999999999,111.36149999999999,111.36149999999999,111.36249999999998,111.36249999999998,111.36349999999999,111.36349999999999,111.36449999999998,111.36449999999998,111.36549999999998,111.36549999999998,111.36649999999997,111.36649999999997,111.36749999999998,111.36749999999998,111.36849999999998,111.36849999999998,111.36949999999999,111.36949999999999,111.37049999999998,111.37049999999998,111.37149999999998,111.37149999999998,111.37249999999999,111.37249999999999,111.37349999999999,111.37349999999999,111.37449999999998,111.37449999999998,111.37549999999999,111.37549999999999,111.3765,111.3765,111.37749999999998,111.37749999999998,111.37849999999997,111.37849999999997,111.37949999999998,111.37949999999998,111.38049999999998,111.38049999999998,111.38149999999997,111.38149999999997,111.38249999999998,111.38249999999998,111.38349999999998,111.38349999999998,111.38449999999999,111.38449999999999,111.38549999999998,111.38549999999998,111.38649999999998,111.38649999999998,111.38749999999999,111.38749999999999,111.3885,111.3885,111.38949999999998,111.38949999999998,111.39049999999999,111.39049999999999,111.3915,111.3915,111.39249999999998,111.39249999999998,111.39349999999997,111.39349999999997,111.39449999999998,111.39449999999998,111.39549999999998,111.39549999999998,111.39649999999997,111.39649999999997,111.39749999999998,111.39749999999998,111.39849999999998,111.39849999999998,111.39949999999999,111.39949999999999,111.40049999999998,111.40049999999998,111.40149999999998,111.40149999999998,111.40249999999999,111.40249999999999,111.4035,111.4035,111.40449999999998,111.40449999999998,111.40549999999999,111.40549999999999,111.40649999999998,111.40649999999998,111.40749999999998,111.40749999999998,111.40849999999998,111.40849999999998,111.40949999999998,111.40949999999998,111.41049999999998,111.41049999999998,111.41149999999999,111.41149999999999,111.41249999999998,111.41249999999998,111.41349999999998,111.41349999999998,111.41449999999999,111.41449999999999,111.41549999999998,111.41549999999998,111.41649999999998,111.41649999999998,111.41749999999999,111.41749999999999,111.4185,111.4185,111.41949999999999,111.41949999999999,111.42049999999998,111.42049999999998,111.42149999999998,111.42149999999998,111.42249999999999,111.42249999999999,111.42349999999998,111.42349999999998,111.42449999999998,111.42449999999998,111.42549999999999,111.42549999999999,111.42649999999999,111.42649999999999,111.42749999999998,111.42749999999998,111.42849999999999,111.42849999999999,111.42949999999999,111.42949999999999,111.4305,111.4305,111.43149999999999,111.43149999999999,111.43249999999999,111.43249999999999,111.4335,111.4335,111.43449999999997,111.43449999999997,111.43549999999998,111.43549999999998,111.43649999999998,111.43649999999998,111.43749999999999,111.43749999999999,111.43849999999998,111.43849999999998,111.43949999999998,111.43949999999998,111.44049999999999,111.44049999999999,111.44149999999999,111.44149999999999,111.44249999999998,111.44249999999998,111.44349999999999,111.44349999999999,111.44449999999999,111.44449999999999,111.4455,111.4455,111.44649999999999,111.44649999999999,111.44749999999998,111.44749999999998,111.44849999999998,111.44849999999998,111.44949999999997,111.44949999999997,111.45049999999998,111.45049999999998,111.45149999999998,111.45149999999998,111.45249999999999,111.45249999999999,111.45349999999998,111.45349999999998,111.45449999999998,111.45449999999998,111.45549999999999,111.45549999999999,111.45649999999999,111.45649999999999,111.45749999999998,111.45749999999998,111.45849999999999,111.45849999999999,111.45949999999999,111.45949999999999,111.4605,111.4605,111.46149999999997,111.46149999999997,111.46249999999998,111.46249999999998,111.46349999999998,111.46349999999998,111.46449999999999,111.46449999999999,111.46549999999998,111.46549999999998,111.46649999999998,111.46649999999998,111.46749999999999,111.46749999999999,111.46849999999998,111.46849999999998,111.46949999999998,111.46949999999998,111.47049999999999,111.47049999999999,111.47149999999999,111.47149999999999,111.47249999999998,111.47249999999998,111.47349999999999,111.47349999999999,111.47449999999999,111.47449999999999,111.47549999999998,111.47549999999998,111.47649999999997,111.47649999999997,111.47749999999998,111.47749999999998,111.47849999999998,111.47849999999998,111.47949999999999,111.47949999999999,111.48049999999998,111.48049999999998,111.48149999999998,111.48149999999998,111.48249999999999,111.48249999999999,111.48349999999999,111.48349999999999,111.48449999999998,111.48449999999998,111.48549999999999,111.48549999999999,111.48649999999999,111.48649999999999,111.48749999999998,111.48749999999998,111.48849999999999,111.48849999999999,111.48949999999998,111.48949999999998,111.49049999999998,111.49049999999998,111.49149999999997,111.49149999999997,111.49249999999998,111.49249999999998,111.49349999999998,111.49349999999998,111.49449999999999,111.49449999999999,111.49549999999998,111.49549999999998,111.49649999999998,111.49649999999998,111.49749999999999,111.49749999999999,111.49849999999999,111.49849999999999,111.49949999999998,111.49949999999998,111.50049999999999,111.50049999999999,111.5015,111.5015,111.50249999999998,111.50249999999998,111.50349999999997,111.50349999999997,111.50449999999998,111.50449999999998,111.50549999999998,111.50549999999998,111.50649999999997,111.50649999999997,111.50749999999998,111.50749999999998,111.50849999999998,111.50849999999998,111.50949999999999,111.50949999999999,111.51049999999998,111.51049999999998,111.51149999999998,111.51149999999998,111.51249999999999,111.51249999999999,111.5135,111.5135,111.51449999999998,111.51449999999998,111.51549999999999,111.51549999999999,111.5165,111.5165,111.51749999999998,111.51749999999998,111.51849999999997,111.51849999999997,111.51949999999998,111.51949999999998,111.52049999999998,111.52049999999998,111.52149999999997,111.52149999999997,111.52249999999998,111.52249999999998,111.52349999999998,111.52349999999998,111.52449999999999,111.52449999999999,111.52549999999998,111.52549999999998,111.52649999999998,111.52649999999998,111.52749999999999,111.52749999999999,111.5285,111.5285,111.52949999999998,111.52949999999998,111.53049999999998,111.53049999999998,111.53149999999998,111.53149999999998,111.53249999999998,111.53249999999998,111.53349999999998,111.53349999999998,111.53449999999998,111.53449999999998,111.53549999999998,111.53549999999998,111.53649999999999,111.53649999999999,111.53749999999998,111.53749999999998,111.53849999999998,111.53849999999998,111.53949999999999,111.53949999999999,111.54049999999998,111.54049999999998,111.54149999999998,111.54149999999998,111.54249999999999,111.54249999999999,111.5435,111.5435,111.54449999999997,111.54449999999997,111.54549999999998,111.54549999999998,111.54649999999998,111.54649999999998,111.54749999999999,111.54749999999999,111.54849999999998,111.54849999999998,111.54949999999998,111.54949999999998,111.55049999999999,111.55049999999999,111.55149999999999,111.55149999999999,111.55249999999998,111.55249999999998,111.55349999999999,111.55349999999999,111.55449999999999,111.55449999999999,111.5555,111.5555,111.55649999999999,111.55649999999999,111.55749999999999,111.55749999999999,111.55849999999998,111.55849999999998,111.55949999999997,111.55949999999997,111.56049999999998,111.56049999999998,111.56149999999998,111.56149999999998,111.56249999999999,111.56249999999999,111.56349999999998,111.56349999999998,111.56449999999998,111.56449999999998,111.56549999999999,111.56549999999999,111.56649999999999,111.56649999999999,111.56749999999998,111.56749999999998,111.56849999999999,111.56849999999999,111.56949999999999,111.56949999999999,111.5705,111.5705,111.57149999999999,111.57149999999999,111.57249999999998,111.57249999999998,111.57349999999998,111.57349999999998,111.57449999999999,111.57449999999999,111.57549999999998,111.57549999999998,111.57649999999998,111.57649999999998,111.57749999999999,111.57749999999999,111.57849999999998,111.57849999999998,111.57949999999998,111.57949999999998,111.58049999999999,111.58049999999999,111.58149999999999,111.58149999999999,111.58249999999998,111.58249999999998,111.58349999999999,111.58349999999999,111.58449999999999,111.58449999999999,111.5855,111.5855,111.58649999999997,111.58649999999997,111.58749999999998,111.58749999999998,111.58849999999998,111.58849999999998,111.58949999999999,111.58949999999999,111.59049999999998,111.59049999999998,111.59149999999998,111.59149999999998,111.59249999999999,111.59249999999999,111.59349999999998,111.59349999999998,111.59449999999998,111.59449999999998,111.59549999999999,111.59549999999999,111.59649999999999,111.59649999999999,111.59749999999998,111.59749999999998,111.59849999999999,111.59849999999999,111.59949999999999,111.59949999999999,111.60049999999998,111.60049999999998,111.60149999999997,111.60149999999997,111.60249999999998,111.60249999999998,111.60349999999998,111.60349999999998,111.60449999999999,111.60449999999999,111.60549999999998,111.60549999999998,111.60649999999998,111.60649999999998,111.60749999999999,111.60749999999999,111.60849999999999,111.60849999999999,111.60949999999998,111.60949999999998,111.61049999999999,111.61049999999999,111.61149999999999,111.61149999999999,111.61249999999998,111.61249999999998,111.61349999999999,111.61349999999999,111.61449999999998,111.61449999999998,111.61549999999998,111.61549999999998,111.61649999999997,111.61649999999997,111.61749999999998,111.61749999999998,111.61849999999998,111.61849999999998,111.61949999999999,111.61949999999999,111.62049999999998,111.62049999999998,111.62149999999998,111.62149999999998,111.62249999999999,111.62249999999999,111.62349999999999,111.62349999999999,111.62449999999998,111.62449999999998,111.62549999999999,111.62549999999999,111.6265,111.6265,111.6275,111.6275,111.62849999999997,111.62849999999997,111.62949999999998,111.62949999999998,111.63049999999998,111.63049999999998,111.63149999999997,111.63149999999997,111.63249999999998,111.63249999999998,111.63349999999998,111.63349999999998,111.63449999999999,111.63449999999999,111.63549999999998,111.63549999999998,111.63649999999998,111.63649999999998,111.63749999999999,111.63749999999999,111.6385,111.6385,111.63949999999998,111.63949999999998,111.64049999999999,111.64049999999999,111.64149999999998,111.64149999999998,111.64249999999998,111.64249999999998,111.64349999999997,111.64349999999997,111.64449999999998,111.64449999999998,111.64549999999998,111.64549999999998,111.64649999999997,111.64649999999997,111.64749999999998,111.64749999999998,111.64849999999998,111.64849999999998,111.64949999999999,111.64949999999999,111.65049999999998,111.65049999999998,111.65149999999998,111.65149999999998,111.65249999999999,111.65249999999999,111.6535,111.6535,111.65449999999998,111.65449999999998,111.65549999999998,111.65549999999998,111.65649999999998,111.65649999999998,111.65749999999998,111.65749999999998,111.65849999999998,111.65849999999998,111.65949999999998,111.65949999999998,111.66049999999998,111.66049999999998,111.66149999999999,111.66149999999999,111.66249999999998,111.66249999999998,111.66349999999998,111.66349999999998,111.66449999999999,111.66449999999999,111.66549999999998,111.66549999999998,111.66649999999998,111.66649999999998,111.66749999999999,111.66749999999999,111.6685,111.6685,111.66949999999997,111.66949999999997,111.67049999999998,111.67049999999998,111.67149999999998,111.67149999999998,111.67249999999999,111.67249999999999,111.67349999999998,111.67349999999998,111.67449999999998,111.67449999999998,111.67549999999999,111.67549999999999,111.67649999999999,111.67649999999999,111.67749999999998,111.67749999999998,111.67849999999999,111.67849999999999,111.67949999999999,111.67949999999999,111.6805,111.6805,111.68149999999999,111.68149999999999,111.68249999999999,111.68249999999999,111.68349999999998,111.68349999999998,111.68449999999997,111.68449999999997,111.68549999999998,111.68549999999998,111.68649999999998,111.68649999999998,111.68749999999999,111.68749999999999,111.68849999999998,111.68849999999998,111.68949999999998,111.68949999999998,111.69049999999999,111.69049999999999,111.69149999999999,111.69149999999999,111.69249999999998,111.69249999999998,111.69349999999999,111.69349999999999,111.69449999999999,111.69449999999999,111.6955,111.6955,111.69649999999999,111.69649999999999,111.69749999999998,111.69749999999998,111.69849999999998,111.69849999999998,111.69949999999999,111.69949999999999,111.70049999999998,111.70049999999998,111.70149999999998,111.70149999999998,111.70249999999999,111.70249999999999,111.70349999999998,111.70349999999998,111.70449999999998,111.70449999999998,111.70549999999999,111.70549999999999,111.70649999999999,111.70649999999999,111.70749999999998,111.70749999999998,111.70849999999999,111.70849999999999,111.70949999999999,111.70949999999999,111.7105,111.7105,111.71149999999997,111.71149999999997,111.71249999999998,111.71249999999998,111.71349999999998,111.71349999999998,111.71449999999999,111.71449999999999,111.71549999999998,111.71549999999998,111.71649999999998,111.71649999999998,111.71749999999999,111.71749999999999,111.71849999999998,111.71849999999998,111.71949999999998,111.71949999999998,111.72049999999999,111.72049999999999,111.72149999999999,111.72149999999999,111.72249999999998,111.72249999999998,111.72349999999999,111.72349999999999,111.72449999999998,111.72449999999998,111.72549999999998,111.72549999999998,111.72649999999997,111.72649999999997,111.72749999999998,111.72749999999998,111.72849999999998,111.72849999999998,111.72949999999999,111.72949999999999,111.73049999999998,111.73049999999998,111.73149999999998,111.73149999999998,111.73249999999999,111.73249999999999,111.73349999999999,111.73349999999999,111.73449999999998,111.73449999999998,111.73549999999999,111.73549999999999,111.73649999999999,111.73649999999999,111.73749999999998,111.73749999999998,111.73849999999997,111.73849999999997,111.73949999999998,111.73949999999998,111.74049999999998,111.74049999999998,111.74149999999997,111.74149999999997,111.74249999999998,111.74249999999998,111.74349999999998,111.74349999999998,111.74449999999999,111.74449999999999,111.74549999999998,111.74549999999998,111.74649999999998,111.74649999999998,111.74749999999999,111.74749999999999,111.74849999999999,111.74849999999999,111.74949999999998,111.74949999999998,111.75049999999999,111.75049999999999,111.7515,111.7515,111.75249999999998,111.75249999999998,111.75349999999997,111.75349999999997,111.75449999999998,111.75449999999998,111.75549999999998,111.75549999999998,111.75649999999997,111.75649999999997,111.75749999999998,111.75749999999998,111.75849999999998,111.75849999999998,111.75949999999999,111.75949999999999,111.76049999999998,111.76049999999998,111.76149999999998,111.76149999999998,111.76249999999999,111.76249999999999,111.7635,111.7635,111.76449999999998,111.76449999999998,111.76549999999999,111.76549999999999,111.76649999999998,111.76649999999998,111.76749999999998,111.76749999999998,111.76849999999997,111.76849999999997,111.76949999999998,111.76949999999998,111.77049999999998,111.77049999999998,111.77149999999999,111.77149999999999,111.77249999999998,111.77249999999998,111.77349999999998,111.77349999999998,111.77449999999999,111.77449999999999,111.77549999999998,111.77549999999998,111.77649999999998,111.77649999999998,111.77749999999999,111.77749999999999,111.7785,111.7785,111.77949999999998,111.77949999999998,111.78049999999998,111.78049999999998,111.78149999999998,111.78149999999998,111.78249999999998,111.78249999999998,111.78349999999998,111.78349999999998,111.78449999999998,111.78449999999998,111.78549999999998,111.78549999999998,111.78649999999999,111.78649999999999,111.78749999999998,111.78749999999998,111.78849999999998,111.78849999999998,111.78949999999999,111.78949999999999,111.79049999999998,111.79049999999998,111.79149999999998,111.79149999999998,111.79249999999999,111.79249999999999,111.7935,111.7935,111.79449999999997,111.79449999999997,111.79549999999998,111.79549999999998,111.79649999999998,111.79649999999998,111.79749999999999,111.79749999999999,111.79849999999998,111.79849999999998,111.79949999999998,111.79949999999998,111.80049999999999,111.80049999999999,111.80149999999999,111.80149999999999,111.80249999999998,111.80249999999998,111.80349999999999,111.80349999999999,111.80449999999999,111.80449999999999,111.8055,111.8055,111.80649999999999,111.80649999999999,111.80749999999998,111.80749999999998,111.80849999999998,111.80849999999998,111.80949999999997,111.80949999999997,111.81049999999998,111.81049999999998,111.81149999999998,111.81149999999998,111.81249999999999,111.81249999999999,111.81349999999998,111.81349999999998,111.81449999999998,111.81449999999998,111.81549999999999,111.81549999999999,111.81649999999999,111.81649999999999,111.81749999999998,111.81749999999998,111.81849999999999,111.81849999999999,111.81949999999999,111.81949999999999,111.8205,111.8205,111.82149999999997,111.82149999999997,111.82249999999998,111.82249999999998,111.82349999999998,111.82349999999998,111.82449999999999,111.82449999999999,111.82549999999998,111.82549999999998,111.82649999999998,111.82649999999998,111.82749999999999,111.82749999999999,111.82849999999998,111.82849999999998,111.82949999999998,111.82949999999998,111.83049999999999,111.83049999999999,111.83149999999999,111.83149999999999,111.83249999999998,111.83249999999998,111.83349999999999,111.83349999999999,111.83449999999999,111.83449999999999,111.83549999999998,111.83549999999998,111.83649999999997,111.83649999999997,111.83749999999998,111.83749999999998,111.83849999999998,111.83849999999998,111.83949999999999,111.83949999999999,111.84049999999998,111.84049999999998,111.84149999999998,111.84149999999998,111.84249999999999,111.84249999999999,111.84349999999998,111.84349999999998,111.84449999999998,111.84449999999998,111.84549999999999,111.84549999999999,111.84649999999999,111.84649999999999,111.84749999999998,111.84749999999998,111.84849999999999,111.84849999999999,111.84949999999998,111.84949999999998,111.85049999999998,111.85049999999998,111.85149999999997,111.85149999999997,111.85249999999998,111.85249999999998,111.85349999999998,111.85349999999998,111.85449999999999,111.85449999999999,111.85549999999998,111.85549999999998,111.85649999999998,111.85649999999998,111.85749999999999,111.85749999999999,111.85849999999999,111.85849999999999,111.85949999999998,111.85949999999998,111.86049999999999,111.86049999999999,111.86149999999999,111.86149999999999,111.86249999999998,111.86249999999998,111.86349999999997,111.86349999999997,111.86449999999998,111.86449999999998,111.86549999999998,111.86549999999998,111.86649999999997,111.86649999999997,111.86749999999998,111.86749999999998,111.86849999999998,111.86849999999998,111.86949999999999,111.86949999999999,111.87049999999998,111.87049999999998,111.87149999999998,111.87149999999998,111.87249999999999,111.87249999999999,111.87349999999999,111.87349999999999,111.87449999999998,111.87449999999998,111.87549999999999,111.87549999999999,111.8765,111.8765,111.87749999999998,111.87749999999998,111.87849999999997,111.87849999999997,111.87949999999998,111.87949999999998,111.88049999999998,111.88049999999998,111.88149999999997,111.88149999999997,111.88249999999998,111.88249999999998,111.88349999999998,111.88349999999998,111.88449999999999,111.88449999999999,111.88549999999998,111.88549999999998,111.88649999999998,111.88649999999998,111.88749999999999,111.88749999999999,111.8885,111.8885,111.88949999999998,111.88949999999998,111.89049999999997,111.89049999999997,111.89149999999998,111.89149999999998,111.89249999999998,111.89249999999998,111.89349999999997,111.89349999999997,111.89449999999998,111.89449999999998,111.89549999999998,111.89549999999998,111.89649999999999,111.89649999999999,111.89749999999998,111.89749999999998,111.89849999999998,111.89849999999998,111.89949999999999,111.89949999999999,111.90049999999998,111.90049999999998,111.90149999999998,111.90149999999998,111.90249999999999,111.90249999999999,111.9035,111.9035,111.90449999999998,111.90449999999998,111.90549999999998,111.90549999999998,111.90649999999998,111.90649999999998,111.90749999999998,111.90749999999998,111.90849999999998,111.90849999999998,111.90949999999998,111.90949999999998,111.91049999999998,111.91049999999998,111.91149999999999,111.91149999999999,111.91249999999998,111.91249999999998,111.91349999999998,111.91349999999998,111.91449999999999,111.91449999999999,111.91549999999998,111.91549999999998,111.91649999999998,111.91649999999998,111.91749999999999,111.91749999999999,111.91849999999998,111.91849999999998,111.91949999999997,111.91949999999997,111.92049999999998,111.92049999999998,111.92149999999998,111.92149999999998,111.92249999999999,111.92249999999999,111.92349999999998,111.92349999999998,111.92449999999998,111.92449999999998,111.92549999999999,111.92549999999999,111.92649999999999,111.92649999999999,111.92749999999998,111.92749999999998,111.92849999999999,111.92849999999999,111.92949999999999,111.92949999999999,111.9305,111.9305,111.93149999999999,111.93149999999999,111.93249999999998,111.93249999999998,111.93349999999998,111.93349999999998,111.93449999999997,111.93449999999997,111.93549999999998,111.93549999999998,111.93649999999998,111.93649999999998,111.93749999999999,111.93749999999999,111.93849999999998,111.93849999999998,111.93949999999998,111.93949999999998,111.94049999999999,111.94049999999999,111.94149999999999,111.94149999999999,111.94249999999998,111.94249999999998,111.94349999999999,111.94349999999999,111.94449999999999,111.94449999999999,111.9455,111.9455,111.94649999999997,111.94649999999997,111.94749999999998,111.94749999999998,111.94849999999998,111.94849999999998,111.94949999999999,111.94949999999999,111.95049999999998,111.95049999999998,111.95149999999998,111.95149999999998,111.95249999999999,111.95249999999999,111.95349999999998,111.95349999999998,111.95449999999998,111.95449999999998,111.95549999999999,111.95549999999999,111.95649999999999,111.95649999999999,111.95749999999998,111.95749999999998,111.95849999999999,111.95849999999999,111.95949999999999,111.95949999999999,111.96049999999998,111.96049999999998,111.96149999999997,111.96149999999997,111.96249999999998,111.96249999999998,111.96349999999998,111.96349999999998,111.96449999999999,111.96449999999999,111.96549999999998,111.96549999999998,111.96649999999998,111.96649999999998,111.96749999999999,111.96749999999999,111.96849999999999,111.96849999999999,111.96949999999998,111.96949999999998,111.97049999999999,111.97049999999999,111.97149999999999,111.97149999999999,111.97249999999998,111.97249999999998,111.97349999999999,111.97349999999999,111.97449999999998,111.97449999999998,111.97549999999998,111.97549999999998,111.97649999999997,111.97649999999997,111.97749999999998,111.97749999999998,111.97849999999998,111.97849999999998,111.97949999999999,111.97949999999999,111.98049999999998,111.98049999999998,111.98149999999998,111.98149999999998,111.98249999999999,111.98249999999999,111.98349999999999,111.98349999999999,111.98449999999998,111.98449999999998,111.98549999999999,111.98549999999999,111.98649999999999,111.98649999999999,111.98749999999998,111.98749999999998,111.98849999999997,111.98849999999997,111.98949999999998,111.98949999999998,111.99049999999998,111.99049999999998,111.99149999999997,111.99149999999997,111.99249999999998,111.99249999999998,111.99349999999998,111.99349999999998,111.99449999999999,111.99449999999999,111.99549999999998,111.99549999999998,111.99649999999998,111.99649999999998,111.99749999999999,111.99749999999999,111.99849999999999,111.99849999999999,111.99949999999998,111.99949999999998,112.00049999999999,112.00049999999999,112.00149999999998,112.00149999999998,112.00249999999998,112.00249999999998,112.00349999999997,112.00349999999997,112.00449999999998,112.00449999999998,112.00549999999998,112.00549999999998,112.00649999999997,112.00649999999997,112.00749999999998,112.00749999999998,112.00849999999998,112.00849999999998,112.00949999999999,112.00949999999999,112.01049999999998,112.01049999999998,112.01149999999998,112.01149999999998,112.01249999999999,112.01249999999999,112.0135,112.0135,112.01449999999998,112.01449999999998,112.01549999999997,112.01549999999997,112.01649999999998,112.01649999999998,112.01749999999998,112.01749999999998,112.01849999999997,112.01849999999997,112.01949999999998,112.01949999999998,112.02049999999998,112.02049999999998,112.02149999999999,112.02149999999999,112.02249999999998,112.02249999999998,112.02349999999998,112.02349999999998,112.02449999999999,112.02449999999999,112.02549999999998,112.02549999999998,112.02649999999998,112.02649999999998,112.02749999999999,112.02749999999999,112.0285,112.0285,112.02949999999997,112.02949999999997,112.03049999999998,112.03049999999998,112.03149999999998,112.03149999999998,112.03249999999998,112.03249999999998,112.03349999999998,112.03349999999998,112.03449999999998,112.03449999999998,112.03549999999998,112.03549999999998,112.03649999999999,112.03649999999999,112.03749999999998,112.03749999999998,112.03849999999998,112.03849999999998,112.03949999999999,112.03949999999999,112.04049999999998,112.04049999999998,112.04149999999998,112.04149999999998,112.04249999999999,112.04249999999999,112.04349999999998,112.04349999999998,112.04449999999997,112.04449999999997,112.04549999999998,112.04549999999998,112.04649999999998,112.04649999999998,112.04749999999999,112.04749999999999,112.04849999999998,112.04849999999998,112.04949999999998,112.04949999999998,112.05049999999999,112.05049999999999,112.05149999999999,112.05149999999999,112.05249999999998,112.05249999999998,112.05349999999999,112.05349999999999,112.05449999999999,112.05449999999999,112.0555,112.0555,112.05649999999999,112.05649999999999,112.05749999999998,112.05749999999998,112.05849999999998,112.05849999999998,112.05949999999999,112.05949999999999,112.06049999999998,112.06049999999998,112.06149999999998,112.06149999999998,112.06249999999999,112.06249999999999,112.06349999999998,112.06349999999998,112.06449999999998,112.06449999999998,112.06549999999999,112.06549999999999,112.06649999999999,112.06649999999999,112.06749999999998,112.06749999999998,112.06849999999999,112.06849999999999,112.06949999999999,112.06949999999999,112.0705,112.0705,112.07149999999997,112.07149999999997,112.07249999999998,112.07249999999998,112.07349999999998,112.07349999999998,112.07449999999999,112.07449999999999,112.07549999999998,112.07549999999998,112.07649999999998,112.07649999999998,112.07749999999999,112.07749999999999,112.07849999999998,112.07849999999998,112.07949999999998,112.07949999999998,112.08049999999999,112.08049999999999,112.08149999999999,112.08149999999999,112.08249999999998,112.08249999999998,112.08349999999999,112.08349999999999,112.08449999999998,112.08449999999998,112.08549999999998,112.08549999999998,112.08649999999997,112.08649999999997,112.08749999999998,112.08749999999998,112.08849999999998,112.08849999999998,112.08949999999999,112.08949999999999,112.09049999999998,112.09049999999998,112.09149999999998,112.09149999999998,112.09249999999999,112.09249999999999,112.09349999999999,112.09349999999999,112.09449999999998,112.09449999999998,112.09549999999999,112.09549999999999,112.09649999999999,112.09649999999999,112.09749999999998,112.09749999999998,112.09849999999997,112.09849999999997,112.09949999999998,112.09949999999998,112.10049999999998,112.10049999999998,112.10149999999997,112.10149999999997,112.10249999999998,112.10249999999998,112.10349999999998,112.10349999999998,112.10449999999999,112.10449999999999,112.10549999999998,112.10549999999998,112.10649999999998,112.10649999999998,112.10749999999999,112.10749999999999,112.10849999999999,112.10849999999999,112.10949999999998,112.10949999999998,112.11049999999999,112.11049999999999,112.11149999999999,112.11149999999999,112.11249999999998,112.11249999999998,112.11349999999997,112.11349999999997,112.11449999999998,112.11449999999998,112.11549999999998,112.11549999999998,112.11649999999997,112.11649999999997,112.11749999999998,112.11749999999998,112.11849999999998,112.11849999999998,112.11949999999999,112.11949999999999,112.12049999999998,112.12049999999998,112.12149999999998,112.12149999999998,112.12249999999999,112.12249999999999,112.12349999999999,112.12349999999999,112.12449999999998,112.12449999999998,112.12549999999999,112.12549999999999,112.12649999999998,112.12649999999998,112.12749999999998,112.12749999999998,112.12849999999997,112.12849999999997,112.12949999999998,112.12949999999998,112.13049999999998,112.13049999999998,112.13149999999997,112.13149999999997,112.13249999999998,112.13249999999998,112.13349999999998,112.13349999999998,112.13449999999999,112.13449999999999,112.13549999999998,112.13549999999998,112.13649999999998,112.13649999999998,112.13749999999999,112.13749999999999,112.1385,112.1385,112.13949999999998,112.13949999999998,112.14049999999997,112.14049999999997,112.14149999999998,112.14149999999998,112.14249999999998,112.14249999999998,112.14349999999997,112.14349999999997,112.14449999999998,112.14449999999998,112.14549999999998,112.14549999999998,112.14649999999999,112.14649999999999,112.14749999999998,112.14749999999998,112.14849999999998,112.14849999999998,112.14949999999999,112.14949999999999,112.15049999999998,112.15049999999998,112.15149999999998,112.15149999999998,112.15249999999999,112.15249999999999,112.1535,112.1535,112.15449999999997,112.15449999999997,112.15549999999998,112.15549999999998,112.15649999999998,112.15649999999998,112.15749999999998,112.15749999999998,112.15849999999998,112.15849999999998,112.15949999999998,112.15949999999998,112.16049999999998,112.16049999999998,112.16149999999999,112.16149999999999,112.16249999999998,112.16249999999998,112.16349999999998,112.16349999999998,112.16449999999999,112.16449999999999,112.1655,112.1655,112.16649999999998,112.16649999999998,112.16749999999999,112.16749999999999,112.16849999999998,112.16849999999998,112.16949999999997,112.16949999999997,112.17049999999998,112.17049999999998,112.17149999999998,112.17149999999998,112.17249999999999,112.17249999999999,112.17349999999998,112.17349999999998,112.17449999999998,112.17449999999998,112.17549999999999,112.17549999999999,112.17649999999999,112.17649999999999,112.17749999999998,112.17749999999998,112.17849999999999,112.17849999999999,112.17949999999999,112.17949999999999,112.1805,112.1805,112.18149999999999,112.18149999999999,112.18249999999998,112.18249999999998,112.18349999999998,112.18349999999998,112.18449999999999,112.18449999999999,112.18549999999998,112.18549999999998,112.18649999999998,112.18649999999998,112.18749999999999,112.18749999999999,112.18849999999998,112.18849999999998,112.18949999999998,112.18949999999998,112.19049999999999,112.19049999999999,112.19149999999999,112.19149999999999,112.19249999999998,112.19249999999998,112.19349999999999,112.19349999999999,112.19449999999999,112.19449999999999,112.19549999999998,112.19549999999998,112.19649999999997,112.19649999999997,112.19749999999998,112.19749999999998,112.19849999999998,112.19849999999998,112.19949999999999,112.19949999999999,112.20049999999998,112.20049999999998,112.20149999999998,112.20149999999998,112.20249999999999,112.20249999999999,112.20349999999998,112.20349999999998,112.20449999999998,112.20449999999998,112.20549999999999,112.20549999999999,112.20649999999999,112.20649999999999,112.20749999999998,112.20749999999998,112.20849999999999,112.20849999999999,112.20949999999998,112.20949999999998,112.21049999999998,112.21049999999998,112.21149999999997,112.21149999999997,112.21249999999998,112.21249999999998,112.21349999999998,112.21349999999998,112.21449999999999,112.21449999999999,112.21549999999998,112.21549999999998,112.21649999999998,112.21649999999998,112.21749999999999,112.21749999999999,112.21849999999999,112.21849999999999,112.21949999999998,112.21949999999998,112.22049999999999,112.22049999999999,112.22149999999999,112.22149999999999,112.22249999999998,112.22249999999998,112.22349999999997,112.22349999999997,112.22449999999998,112.22449999999998,112.22549999999998,112.22549999999998,112.22649999999997,112.22649999999997,112.22749999999998,112.22749999999998,112.22849999999998,112.22849999999998,112.22949999999999,112.22949999999999,112.23049999999998,112.23049999999998,112.23149999999998,112.23149999999998,112.23249999999999,112.23249999999999,112.23349999999999,112.23349999999999,112.23449999999998,112.23449999999998,112.23549999999999,112.23549999999999,112.23649999999999,112.23649999999999,112.23749999999998,112.23749999999998,112.23849999999997,112.23849999999997,112.23949999999998,112.23949999999998,112.24049999999998,112.24049999999998,112.24149999999997,112.24149999999997,112.24249999999998,112.24249999999998,112.24349999999998,112.24349999999998,112.24449999999999,112.24449999999999,112.24549999999998,112.24549999999998,112.24649999999998,112.24649999999998,112.24749999999999,112.24749999999999,112.24849999999999,112.24849999999999,112.24949999999998,112.24949999999998,112.25049999999999,112.25049999999999,112.25149999999998,112.25149999999998,112.25249999999998,112.25249999999998,112.25349999999997,112.25349999999997,112.25449999999998,112.25449999999998,112.25549999999998,112.25549999999998,112.25649999999999,112.25649999999999,112.25749999999998,112.25749999999998,112.25849999999998,112.25849999999998,112.25949999999999,112.25949999999999,112.26049999999998,112.26049999999998,112.26149999999998,112.26149999999998,112.26249999999999,112.26249999999999,112.2635,112.2635,112.26449999999998,112.26449999999998,112.26549999999997,112.26549999999997,112.26649999999998,112.26649999999998,112.26749999999998,112.26749999999998,112.26849999999997,112.26849999999997,112.26949999999998,112.26949999999998,112.27049999999998,112.27049999999998,112.27149999999999,112.27149999999999,112.27249999999998,112.27249999999998,112.27349999999998,112.27349999999998,112.27449999999999,112.27449999999999,112.27549999999998,112.27549999999998,112.27649999999998,112.27649999999998,112.27749999999999,112.27749999999999,112.27849999999998,112.27849999999998,112.27949999999997,112.27949999999997,112.28049999999998,112.28049999999998,112.28149999999998,112.28149999999998,112.28249999999998,112.28249999999998,112.28349999999998,112.28349999999998,112.28449999999998,112.28449999999998,112.28549999999998,112.28549999999998,112.28649999999999,112.28649999999999,112.28749999999998,112.28749999999998,112.28849999999998,112.28849999999998,112.28949999999999,112.28949999999999,112.2905,112.2905,112.29149999999998,112.29149999999998,112.29249999999999,112.29249999999999,112.29349999999998,112.29349999999998,112.29449999999997,112.29449999999997,112.29549999999998,112.29549999999998,112.29649999999998,112.29649999999998,112.29749999999999,112.29749999999999,112.29849999999998,112.29849999999998,112.29949999999998,112.29949999999998,112.30049999999999,112.30049999999999,112.30149999999999,112.30149999999999,112.30249999999998,112.30249999999998,112.30349999999999,112.30349999999999,112.30449999999999,112.30449999999999,112.3055,112.3055,112.30649999999997,112.30649999999997,112.30749999999998,112.30749999999998,112.30849999999998,112.30849999999998,112.30949999999999,112.30949999999999,112.31049999999998,112.31049999999998,112.31149999999998,112.31149999999998,112.31249999999999,112.31249999999999,112.31349999999998,112.31349999999998,112.31449999999998,112.31449999999998,112.31549999999999,112.31549999999999,112.31649999999999,112.31649999999999,112.31749999999998,112.31749999999998,112.31849999999999,112.31849999999999,112.31949999999999,112.31949999999999,112.32049999999998,112.32049999999998,112.32149999999997,112.32149999999997,112.32249999999998,112.32249999999998,112.32349999999998,112.32349999999998,112.32449999999999,112.32449999999999,112.32549999999998,112.32549999999998,112.32649999999998,112.32649999999998,112.32749999999999,112.32749999999999,112.32849999999998,112.32849999999998,112.32949999999998,112.32949999999998,112.33049999999999,112.33049999999999,112.33149999999999,112.33149999999999,112.33249999999998,112.33249999999998,112.33349999999999,112.33349999999999,112.33449999999998,112.33449999999998,112.33549999999998,112.33549999999998,112.33649999999997,112.33649999999997,112.33749999999998,112.33749999999998,112.33849999999998,112.33849999999998,112.33949999999999,112.33949999999999,112.34049999999998,112.34049999999998,112.34149999999998,112.34149999999998,112.34249999999999,112.34249999999999,112.34349999999999,112.34349999999999,112.34449999999998,112.34449999999998,112.34549999999999,112.34549999999999,112.34649999999999,112.34649999999999,112.34749999999998,112.34749999999998,112.34849999999997,112.34849999999997,112.34949999999998,112.34949999999998,112.35049999999998,112.35049999999998,112.35149999999997,112.35149999999997,112.35249999999998,112.35249999999998,112.35349999999998,112.35349999999998,112.35449999999999,112.35449999999999,112.35549999999998,112.35549999999998,112.35649999999998,112.35649999999998,112.35749999999999,112.35749999999999,112.35849999999999,112.35849999999999,112.35949999999998,112.35949999999998,112.36049999999999,112.36049999999999,112.36149999999998,112.36149999999998,112.36249999999998,112.36249999999998,112.36349999999997,112.36349999999997,112.36449999999998,112.36449999999998,112.36549999999998,112.36549999999998,112.36649999999997,112.36649999999997,112.36749999999998,112.36749999999998,112.36849999999998,112.36849999999998,112.36949999999999,112.36949999999999,112.37049999999998,112.37049999999998,112.37149999999998,112.37149999999998,112.37249999999999,112.37249999999999,112.37349999999999,112.37349999999999,112.37449999999998,112.37449999999998,112.37549999999997,112.37549999999997,112.37649999999998,112.37649999999998,112.37749999999998,112.37749999999998,112.37849999999997,112.37849999999997,112.37949999999998,112.37949999999998,112.38049999999998,112.38049999999998,112.38149999999999,112.38149999999999,112.38249999999998,112.38249999999998,112.38349999999998,112.38349999999998,112.38449999999999,112.38449999999999,112.38549999999998,112.38549999999998,112.38649999999998,112.38649999999998,112.38749999999999,112.38749999999999,112.3885,112.3885,112.38949999999997,112.38949999999997,112.39049999999997,112.39049999999997,112.39149999999998,112.39149999999998,112.39249999999998,112.39249999999998,112.39349999999997,112.39349999999997,112.39449999999998,112.39449999999998,112.39549999999998,112.39549999999998,112.39649999999999,112.39649999999999,112.39749999999998,112.39749999999998,112.39849999999998,112.39849999999998,112.39949999999999,112.39949999999999,112.40049999999998,112.40049999999998,112.40149999999998,112.40149999999998,112.40249999999999,112.40249999999999,112.40349999999998,112.40349999999998,112.40449999999997,112.40449999999997,112.40549999999998,112.40549999999998,112.40649999999998,112.40649999999998,112.40749999999998,112.40749999999998,112.40849999999998,112.40849999999998,112.40949999999998,112.40949999999998,112.41049999999998,112.41049999999998,112.41149999999999,112.41149999999999,112.41249999999998,112.41249999999998,112.41349999999998,112.41349999999998,112.41449999999999,112.41449999999999,112.4155,112.4155,112.41649999999998,112.41649999999998,112.41749999999998,112.41749999999998,112.41849999999998,112.41849999999998,112.41949999999997,112.41949999999997,112.42049999999998,112.42049999999998,112.42149999999998,112.42149999999998,112.42249999999999,112.42249999999999,112.42349999999998,112.42349999999998,112.42449999999998,112.42449999999998,112.42549999999999,112.42549999999999,112.42649999999999,112.42649999999999,112.42749999999998,112.42749999999998,112.42849999999999,112.42849999999999,112.42949999999999,112.42949999999999,112.4305,112.4305,112.43149999999997,112.43149999999997,112.43249999999998,112.43249999999998,112.43349999999998,112.43349999999998,112.43449999999999,112.43449999999999,112.43549999999998,112.43549999999998,112.43649999999998,112.43649999999998,112.43749999999999,112.43749999999999,112.43849999999998,112.43849999999998,112.43949999999998,112.43949999999998,112.44049999999999,112.44049999999999,112.44149999999999,112.44149999999999,112.44249999999998,112.44249999999998,112.44349999999999,112.44349999999999,112.44449999999998,112.44449999999998,112.44549999999998,112.44549999999998,112.44649999999997,112.44649999999997,112.44749999999998,112.44749999999998,112.44849999999998,112.44849999999998,112.44949999999999,112.44949999999999,112.45049999999998,112.45049999999998,112.45149999999998,112.45149999999998,112.45249999999999,112.45249999999999,112.45349999999999,112.45349999999999,112.45449999999998,112.45449999999998,112.45549999999999,112.45549999999999,112.45649999999999,112.45649999999999,112.45749999999998,112.45749999999998,112.45849999999999,112.45849999999999,112.45949999999998,112.45949999999998,112.46049999999998,112.46049999999998,112.46149999999997,112.46149999999997,112.46249999999998,112.46249999999998,112.46349999999998,112.46349999999998,112.46449999999999,112.46449999999999,112.46549999999998,112.46549999999998,112.46649999999998,112.46649999999998,112.46749999999999,112.46749999999999,112.46849999999999,112.46849999999999,112.46949999999998,112.46949999999998,112.47049999999999,112.47049999999999,112.47149999999999,112.47149999999999,112.47249999999997,112.47249999999997,112.47349999999997,112.47349999999997,112.47449999999998,112.47449999999998,112.47549999999998,112.47549999999998,112.47649999999997,112.47649999999997,112.47749999999998,112.47749999999998,112.47849999999998,112.47849999999998,112.47949999999999,112.47949999999999,112.48049999999998,112.48049999999998,112.48149999999998,112.48149999999998,112.48249999999999,112.48249999999999,112.48349999999999,112.48349999999999,112.48449999999998,112.48449999999998,112.48549999999999,112.48549999999999,112.48649999999998,112.48649999999998,112.48749999999998,112.48749999999998,112.48849999999997,112.48849999999997,112.48949999999998,112.48949999999998,112.49049999999998,112.49049999999998,112.49149999999997,112.49149999999997,112.49249999999998,112.49249999999998,112.49349999999998,112.49349999999998,112.49449999999999,112.49449999999999,112.49549999999998,112.49549999999998,112.49649999999998,112.49649999999998,112.49749999999999,112.49749999999999,112.49849999999999,112.49849999999999,112.49949999999998,112.49949999999998,112.50049999999997,112.50049999999997,112.50149999999998,112.50149999999998,112.50249999999998,112.50249999999998,112.50349999999997,112.50349999999997,112.50449999999998,112.50449999999998,112.50549999999998,112.50549999999998,112.50649999999999,112.50649999999999,112.50749999999998,112.50749999999998,112.50849999999998,112.50849999999998,112.50949999999999,112.50949999999999,112.51049999999998,112.51049999999998,112.51149999999998,112.51149999999998,112.51249999999999,112.51249999999999,112.5135,112.5135,112.51449999999997,112.51449999999997,112.51549999999997,112.51549999999997,112.51649999999998,112.51649999999998,112.51749999999998,112.51749999999998,112.51849999999997,112.51849999999997,112.51949999999998,112.51949999999998,112.52049999999998,112.52049999999998,112.52149999999999,112.52149999999999,112.52249999999998,112.52249999999998,112.52349999999998,112.52349999999998,112.52449999999999,112.52449999999999,112.52549999999998,112.52549999999998,112.52649999999998,112.52649999999998,112.52749999999999,112.52749999999999,112.52849999999998,112.52849999999998,112.52949999999997,112.52949999999997,112.53049999999998,112.53049999999998,112.53149999999998,112.53149999999998,112.53249999999998,112.53249999999998,112.53349999999998,112.53349999999998,112.53449999999998,112.53449999999998,112.53549999999998,112.53549999999998,112.53649999999999,112.53649999999999,112.53749999999998,112.53749999999998,112.53849999999998,112.53849999999998,112.53949999999999,112.53949999999999,112.5405,112.5405,112.54149999999998,112.54149999999998,112.54249999999998,112.54249999999998,112.54349999999998,112.54349999999998,112.54449999999997,112.54449999999997,112.54549999999998,112.54549999999998,112.54649999999998,112.54649999999998,112.54749999999999,112.54749999999999,112.54849999999998,112.54849999999998,112.54949999999998,112.54949999999998,112.55049999999999,112.55049999999999,112.55149999999999,112.55149999999999,112.55249999999998,112.55249999999998,112.55349999999999,112.55349999999999,112.55449999999999,112.55449999999999,112.55549999999998,112.55549999999998,112.55649999999997,112.55649999999997,112.55749999999998,112.55749999999998,112.55849999999998,112.55849999999998,112.55949999999999,112.55949999999999,112.56049999999998,112.56049999999998,112.56149999999998,112.56149999999998,112.56249999999999,112.56249999999999,112.56349999999998,112.56349999999998,112.56449999999998,112.56449999999998,112.56549999999999,112.56549999999999,112.56649999999999,112.56649999999999,112.56749999999998,112.56749999999998,112.56849999999999,112.56849999999999,112.56949999999998,112.56949999999998,112.57049999999998,112.57049999999998,112.57149999999997,112.57149999999997,112.57249999999998,112.57249999999998,112.57349999999998,112.57349999999998,112.57449999999999,112.57449999999999,112.57549999999998,112.57549999999998,112.57649999999998,112.57649999999998,112.57749999999999,112.57749999999999,112.57849999999999,112.57849999999999,112.57949999999998,112.57949999999998,112.58049999999999,112.58049999999999,112.58149999999999,112.58149999999999,112.58249999999998,112.58249999999998,112.58349999999997,112.58349999999997,112.58449999999998,112.58449999999998,112.58549999999998,112.58549999999998,112.58649999999997,112.58649999999997,112.58749999999998,112.58749999999998,112.58849999999998,112.58849999999998,112.58949999999999,112.58949999999999,112.59049999999998,112.59049999999998,112.59149999999998,112.59149999999998,112.59249999999999,112.59249999999999,112.59349999999999,112.59349999999999,112.59449999999998,112.59449999999998,112.59549999999999,112.59549999999999,112.59649999999999,112.59649999999999,112.59749999999998,112.59749999999998,112.59849999999997,112.59849999999997,112.59949999999998,112.59949999999998,112.60049999999998,112.60049999999998,112.60149999999997,112.60149999999997,112.60249999999998,112.60249999999998,112.60349999999998,112.60349999999998,112.60449999999999,112.60449999999999,112.60549999999998,112.60549999999998,112.60649999999998,112.60649999999998,112.60749999999999,112.60749999999999,112.60849999999999,112.60849999999999,112.60949999999998,112.60949999999998,112.61049999999999,112.61049999999999,112.61149999999998,112.61149999999998,112.61249999999998,112.61249999999998,112.61349999999997,112.61349999999997,112.61449999999998,112.61449999999998,112.61549999999998,112.61549999999998,112.61649999999997,112.61649999999997,112.61749999999998,112.61749999999998,112.61849999999998,112.61849999999998,112.61949999999999,112.61949999999999,112.62049999999998,112.62049999999998,112.62149999999998,112.62149999999998,112.62249999999999,112.62249999999999,112.62349999999999,112.62349999999999,112.62449999999998,112.62449999999998,112.62549999999997,112.62549999999997,112.62649999999998,112.62649999999998,112.62749999999998,112.62749999999998,112.62849999999997,112.62849999999997,112.62949999999998,112.62949999999998,112.63049999999998,112.63049999999998,112.63149999999999,112.63149999999999,112.63249999999998,112.63249999999998,112.63349999999998,112.63349999999998,112.63449999999999,112.63449999999999,112.63549999999998,112.63549999999998,112.63649999999998,112.63649999999998,112.63749999999999,112.63749999999999,112.6385,112.6385,112.63949999999997,112.63949999999997,112.64049999999997,112.64049999999997,112.64149999999998,112.64149999999998,112.64249999999998,112.64249999999998,112.64349999999997,112.64349999999997,112.64449999999998,112.64449999999998,112.64549999999998,112.64549999999998,112.64649999999999,112.64649999999999,112.64749999999998,112.64749999999998,112.64849999999998,112.64849999999998,112.64949999999999,112.64949999999999,112.6505,112.6505,112.65149999999998,112.65149999999998,112.65249999999999,112.65249999999999,112.65349999999998,112.65349999999998,112.65449999999997,112.65449999999997,112.65549999999998,112.65549999999998,112.65649999999998,112.65649999999998,112.65749999999998,112.65749999999998,112.65849999999998,112.65849999999998,112.65949999999998,112.65949999999998,112.66049999999998,112.66049999999998,112.66149999999999,112.66149999999999,112.66249999999998,112.66249999999998,112.66349999999998,112.66349999999998,112.66449999999999,112.66449999999999,112.6655,112.6655,112.66649999999997,112.66649999999997,112.66749999999998,112.66749999999998,112.66849999999998,112.66849999999998,112.66949999999997,112.66949999999997,112.67049999999998,112.67049999999998,112.67149999999998,112.67149999999998,112.67249999999999,112.67249999999999,112.67349999999998,112.67349999999998,112.67449999999998,112.67449999999998,112.67549999999999,112.67549999999999,112.67649999999999,112.67649999999999,112.67749999999998,112.67749999999998,112.67849999999999,112.67849999999999,112.67949999999999,112.67949999999999,112.68049999999998,112.68049999999998,112.68149999999997,112.68149999999997,112.68249999999998,112.68249999999998,112.68349999999998,112.68349999999998,112.68449999999999,112.68449999999999,112.68549999999998,112.68549999999998,112.68649999999998,112.68649999999998,112.68749999999999,112.68749999999999,112.68849999999998,112.68849999999998,112.68949999999998,112.68949999999998,112.69049999999999,112.69049999999999,112.69149999999999,112.69149999999999,112.69249999999998,112.69249999999998,112.69349999999999,112.69349999999999,112.69449999999998,112.69449999999998,112.69549999999998,112.69549999999998,112.69649999999997,112.69649999999997,112.69749999999998,112.69749999999998,112.69849999999998,112.69849999999998,112.69949999999999,112.69949999999999,112.70049999999998,112.70049999999998,112.70149999999998,112.70149999999998,112.70249999999999,112.70249999999999,112.70349999999999,112.70349999999999,112.70449999999998,112.70449999999998,112.70549999999999,112.70549999999999,112.70649999999999,112.70649999999999,112.70749999999998,112.70749999999998,112.70849999999997,112.70849999999997,112.70949999999998,112.70949999999998,112.71049999999998,112.71049999999998,112.71149999999997,112.71149999999997,112.71249999999998,112.71249999999998,112.71349999999998,112.71349999999998,112.71449999999999,112.71449999999999,112.71549999999998,112.71549999999998,112.71649999999998,112.71649999999998,112.71749999999999,112.71749999999999,112.71849999999999,112.71849999999999,112.71949999999998,112.71949999999998,112.72049999999999,112.72049999999999,112.72149999999999,112.72149999999999,112.72249999999998,112.72249999999998,112.72349999999997,112.72349999999997,112.72449999999998,112.72449999999998,112.72549999999998,112.72549999999998,112.72649999999997,112.72649999999997,112.72749999999998,112.72749999999998,112.72849999999998,112.72849999999998,112.72949999999999,112.72949999999999,112.73049999999998,112.73049999999998,112.73149999999998,112.73149999999998,112.73249999999999,112.73249999999999,112.73349999999999,112.73349999999999,112.73449999999998,112.73449999999998,112.73549999999999,112.73549999999999,112.73649999999998,112.73649999999998,112.73749999999998,112.73749999999998,112.73849999999997,112.73849999999997,112.73949999999998,112.73949999999998,112.74049999999998,112.74049999999998,112.74149999999997,112.74149999999997,112.74249999999998,112.74249999999998,112.74349999999998,112.74349999999998,112.74449999999999,112.74449999999999,112.74549999999998,112.74549999999998,112.74649999999998,112.74649999999998,112.74749999999999,112.74749999999999,112.74849999999999,112.74849999999999,112.74949999999997,112.74949999999997,112.75049999999997,112.75049999999997,112.75149999999998,112.75149999999998,112.75249999999998,112.75249999999998,112.75349999999997,112.75349999999997,112.75449999999998,112.75449999999998,112.75549999999998,112.75549999999998,112.75649999999999,112.75649999999999,112.75749999999998,112.75749999999998,112.75849999999998,112.75849999999998,112.75949999999999,112.75949999999999,112.76049999999998,112.76049999999998,112.76149999999998,112.76149999999998,112.76249999999999,112.76249999999999,112.7635,112.7635,112.76449999999997,112.76449999999997,112.76549999999997,112.76549999999997,112.76649999999998,112.76649999999998,112.76749999999998,112.76749999999998,112.76849999999997,112.76849999999997,112.76949999999998,112.76949999999998,112.77049999999998,112.77049999999998,112.77149999999999,112.77149999999999,112.77249999999998,112.77249999999998,112.77349999999998,112.77349999999998,112.77449999999999,112.77449999999999,112.7755,112.7755,112.77649999999998,112.77649999999998,112.77749999999997,112.77749999999997,112.77849999999998,112.77849999999998,112.77949999999997,112.77949999999997,112.78049999999998,112.78049999999998,112.78149999999998,112.78149999999998,112.78249999999998,112.78249999999998,112.78349999999998,112.78349999999998,112.78449999999998,112.78449999999998,112.78549999999998,112.78549999999998,112.78649999999999,112.78649999999999,112.78749999999998,112.78749999999998,112.78849999999998,112.78849999999998,112.78949999999999,112.78949999999999,112.7905,112.7905,112.79149999999997,112.79149999999997,112.79249999999998,112.79249999999998,112.79349999999998,112.79349999999998,112.79449999999999,112.79449999999999,112.79549999999998,112.79549999999998,112.79649999999998,112.79649999999998,112.79749999999999,112.79749999999999,112.79849999999998,112.79849999999998,112.79949999999998,112.79949999999998,112.80049999999999,112.80049999999999,112.80149999999999,112.80149999999999,112.80249999999998,112.80249999999998,112.80349999999999,112.80349999999999,112.80449999999999,112.80449999999999,112.80549999999998,112.80549999999998,112.80649999999997,112.80649999999997,112.80749999999998,112.80749999999998,112.80849999999998,112.80849999999998,112.80949999999999,112.80949999999999,112.81049999999998,112.81049999999998,112.81149999999998,112.81149999999998,112.81249999999999,112.81249999999999,112.81349999999998,112.81349999999998,112.81449999999998,112.81449999999998,112.81549999999999,112.81549999999999,112.81649999999999,112.81649999999999,112.81749999999998,112.81749999999998,112.81849999999999,112.81849999999999,112.81949999999998,112.81949999999998,112.82049999999998,112.82049999999998,112.82149999999997,112.82149999999997,112.82249999999998,112.82249999999998,112.82349999999998,112.82349999999998,112.82449999999999,112.82449999999999,112.82549999999998,112.82549999999998,112.82649999999998,112.82649999999998,112.82749999999999,112.82749999999999,112.82849999999999,112.82849999999999,112.82949999999998,112.82949999999998,112.83049999999999,112.83049999999999,112.83149999999999,112.83149999999999,112.83249999999997,112.83249999999997,112.83349999999997,112.83349999999997,112.83449999999998,112.83449999999998,112.83549999999998,112.83549999999998,112.83649999999997,112.83649999999997,112.83749999999998,112.83749999999998,112.83849999999998,112.83849999999998,112.83949999999999,112.83949999999999,112.84049999999998,112.84049999999998,112.84149999999998,112.84149999999998,112.84249999999999,112.84249999999999,112.84349999999999,112.84349999999999,112.84449999999998,112.84449999999998,112.84549999999999,112.84549999999999,112.84649999999999,112.84649999999999,112.84749999999998,112.84749999999998,112.84849999999997,112.84849999999997,112.84949999999998,112.84949999999998,112.85049999999998,112.85049999999998,112.85149999999997,112.85149999999997,112.85249999999998,112.85249999999998,112.85349999999998,112.85349999999998,112.85449999999999,112.85449999999999,112.85549999999998,112.85549999999998,112.85649999999998,112.85649999999998,112.85749999999999,112.85749999999999,112.85849999999999,112.85849999999999,112.85949999999998,112.85949999999998,112.86049999999997,112.86049999999997,112.86149999999998,112.86149999999998,112.86249999999998,112.86249999999998,112.86349999999997,112.86349999999997,112.86449999999998,112.86449999999998,112.86549999999998,112.86549999999998,112.86649999999997,112.86649999999997,112.86749999999998,112.86749999999998,112.86849999999998,112.86849999999998,112.86949999999999,112.86949999999999,112.87049999999998,112.87049999999998,112.87149999999998,112.87149999999998,112.87249999999999,112.87249999999999,112.87349999999999,112.87349999999999,112.87449999999997,112.87449999999997,112.87549999999997,112.87549999999997,112.87649999999998,112.87649999999998,112.87749999999998,112.87749999999998,112.87849999999997,112.87849999999997,112.87949999999998,112.87949999999998,112.88049999999998,112.88049999999998,112.88149999999999,112.88149999999999,112.88249999999998,112.88249999999998,112.88349999999998,112.88349999999998,112.88449999999999,112.88449999999999,112.88549999999998,112.88549999999998,112.88649999999998,112.88649999999998,112.88749999999999,112.88749999999999,112.88849999999998,112.88849999999998,112.88949999999997,112.88949999999997,112.89049999999997,112.89049999999997,112.89149999999998,112.89149999999998,112.89249999999998,112.89249999999998,112.89349999999997,112.89349999999997,112.89449999999998,112.89449999999998,112.89549999999998,112.89549999999998,112.89649999999999,112.89649999999999,112.89749999999998,112.89749999999998,112.89849999999998,112.89849999999998,112.89949999999999,112.89949999999999,112.9005,112.9005,112.90149999999998,112.90149999999998,112.90249999999997,112.90249999999997,112.90349999999998,112.90349999999998,112.90449999999997,112.90449999999997,112.90549999999998,112.90549999999998,112.90649999999998,112.90649999999998,112.90749999999998,112.90749999999998,112.90849999999998,112.90849999999998,112.90949999999998,112.90949999999998,112.91049999999998,112.91049999999998,112.91149999999999,112.91149999999999,112.91249999999998,112.91249999999998,112.91349999999998,112.91349999999998,112.91449999999999,112.91449999999999,112.9155,112.9155,112.91649999999997,112.91649999999997,112.91749999999998,112.91749999999998,112.91849999999998,112.91849999999998,112.91949999999999,112.91949999999999,112.92049999999998,112.92049999999998,112.92149999999998,112.92149999999998,112.92249999999999,112.92249999999999,112.92349999999998,112.92349999999998,112.92449999999998,112.92449999999998,112.92549999999999,112.92549999999999,112.92649999999999,112.92649999999999,112.92749999999998,112.92749999999998,112.92849999999999,112.92849999999999,112.92949999999999,112.92949999999999,112.93049999999998,112.93049999999998,112.93149999999997,112.93149999999997,112.93249999999998,112.93249999999998,112.93349999999998,112.93349999999998,112.93449999999999,112.93449999999999,112.93549999999998,112.93549999999998,112.93649999999998,112.93649999999998,112.93749999999999,112.93749999999999,112.93849999999998,112.93849999999998,112.93949999999998,112.93949999999998,112.94049999999999,112.94049999999999,112.94149999999999,112.94149999999999,112.94249999999998,112.94249999999998,112.94349999999997,112.94349999999997,112.94449999999998,112.94449999999998,112.94549999999998,112.94549999999998,112.94649999999997,112.94649999999997,112.94749999999998,112.94749999999998,112.94849999999998,112.94849999999998,112.94949999999999,112.94949999999999,112.95049999999998,112.95049999999998,112.95149999999998,112.95149999999998,112.95249999999999,112.95249999999999,112.95349999999999,112.95349999999999,112.95449999999998,112.95449999999998,112.95549999999999,112.95549999999999,112.95649999999999,112.95649999999999,112.95749999999997,112.95749999999997,112.95849999999997,112.95849999999997,112.95949999999998,112.95949999999998,112.96049999999998,112.96049999999998,112.96149999999997,112.96149999999997,112.96249999999998,112.96249999999998,112.96349999999998,112.96349999999998,112.96449999999999,112.96449999999999,112.96549999999998,112.96549999999998,112.96649999999998,112.96649999999998,112.96749999999999,112.96749999999999,112.96849999999999,112.96849999999999,112.96949999999998,112.96949999999998,112.97049999999999,112.97049999999999,112.97149999999998,112.97149999999998,112.97249999999998,112.97249999999998,112.97349999999997,112.97349999999997,112.97449999999998,112.97449999999998,112.97549999999998,112.97549999999998,112.97649999999997,112.97649999999997,112.97749999999998,112.97749999999998,112.97849999999998,112.97849999999998,112.97949999999999,112.97949999999999,112.98049999999998,112.98049999999998,112.98149999999998,112.98149999999998,112.98249999999999,112.98249999999999,112.98349999999999,112.98349999999999,112.98449999999998,112.98449999999998,112.98549999999997,112.98549999999997,112.98649999999998,112.98649999999998,112.98749999999998,112.98749999999998,112.98849999999997,112.98849999999997,112.98949999999998,112.98949999999998,112.99049999999998,112.99049999999998,112.99149999999999,112.99149999999999,112.99249999999998,112.99249999999998,112.99349999999998,112.99349999999998,112.99449999999999,112.99449999999999,112.99549999999998,112.99549999999998,112.99649999999998,112.99649999999998,112.99749999999999,112.99749999999999,112.99849999999999,112.99849999999999,112.99949999999997,112.99949999999997,113.00049999999997,113.00049999999997,113.00149999999998,113.00149999999998,113.00249999999998,113.00249999999998,113.00349999999997,113.00349999999997,113.00449999999998,113.00449999999998,113.00549999999998,113.00549999999998,113.00649999999999,113.00649999999999,113.00749999999998,113.00749999999998,113.00849999999998,113.00849999999998,113.00949999999999,113.00949999999999,113.01049999999998,113.01049999999998,113.01149999999998,113.01149999999998,113.01249999999999,113.01249999999999,113.01349999999998,113.01349999999998,113.01449999999997,113.01449999999997,113.01549999999997,113.01549999999997,113.01649999999998,113.01649999999998,113.01749999999998,113.01749999999998,113.01849999999997,113.01849999999997,113.01949999999998,113.01949999999998,113.02049999999998,113.02049999999998,113.02149999999999,113.02149999999999,113.02249999999998,113.02249999999998,113.02349999999998,113.02349999999998,113.02449999999999,113.02449999999999,113.0255,113.0255,113.02649999999997,113.02649999999997,113.02749999999997,113.02749999999997,113.02849999999998,113.02849999999998,113.02949999999997,113.02949999999997,113.03049999999998,113.03049999999998,113.03149999999998,113.03149999999998,113.03249999999998,113.03249999999998,113.03349999999998,113.03349999999998,113.03449999999998,113.03449999999998,113.03549999999998,113.03549999999998,113.03649999999999,113.03649999999999,113.03749999999998,113.03749999999998,113.03849999999998,113.03849999999998,113.03949999999999,113.03949999999999,113.0405,113.0405,113.04149999999997,113.04149999999997,113.04249999999998,113.04249999999998,113.04349999999998,113.04349999999998,113.04449999999999,113.04449999999999,113.04549999999998,113.04549999999998,113.04649999999998,113.04649999999998,113.04749999999999,113.04749999999999,113.04849999999998,113.04849999999998,113.04949999999998,113.04949999999998,113.05049999999999,113.05049999999999,113.05149999999999,113.05149999999999,113.05249999999998,113.05249999999998,113.05349999999999,113.05349999999999,113.05449999999998,113.05449999999998,113.05549999999998,113.05549999999998,113.05649999999997,113.05649999999997,113.05749999999998,113.05749999999998,113.05849999999998,113.05849999999998,113.05949999999999,113.05949999999999,113.06049999999998,113.06049999999998,113.06149999999998,113.06149999999998,113.06249999999999,113.06249999999999,113.06349999999998,113.06349999999998,113.06449999999998,113.06449999999998,113.06549999999999,113.06549999999999,113.06649999999999,113.06649999999999,113.06749999999998,113.06749999999998,113.06849999999997,113.06849999999997,113.06949999999998,113.06949999999998,113.07049999999998,113.07049999999998,113.07149999999997,113.07149999999997,113.07249999999998,113.07249999999998,113.07349999999998,113.07349999999998,113.07449999999999,113.07449999999999,113.07549999999998,113.07549999999998,113.07649999999998,113.07649999999998,113.07749999999999,113.07749999999999,113.07849999999999,113.07849999999999,113.07949999999998,113.07949999999998,113.08049999999999,113.08049999999999,113.08149999999998,113.08149999999998,113.08249999999998,113.08249999999998,113.08349999999997,113.08349999999997,113.08449999999998,113.08449999999998,113.08549999999998,113.08549999999998,113.08649999999997,113.08649999999997,113.08749999999998,113.08749999999998,113.08849999999998,113.08849999999998,113.08949999999999,113.08949999999999,113.09049999999998,113.09049999999998,113.09149999999998,113.09149999999998,113.09249999999999,113.09249999999999,113.09349999999999,113.09349999999999,113.09449999999998,113.09449999999998,113.09549999999999,113.09549999999999,113.09649999999998,113.09649999999998,113.09749999999998,113.09749999999998,113.09849999999997,113.09849999999997,113.09949999999998,113.09949999999998,113.10049999999998,113.10049999999998,113.10149999999997,113.10149999999997,113.10249999999998,113.10249999999998,113.10349999999998,113.10349999999998,113.10449999999999,113.10449999999999,113.10549999999998,113.10549999999998,113.10649999999998,113.10649999999998,113.10749999999999,113.10749999999999,113.10849999999999,113.10849999999999,113.10949999999997,113.10949999999997,113.11049999999997,113.11049999999997,113.11149999999998,113.11149999999998,113.11249999999998,113.11249999999998,113.11349999999997,113.11349999999997,113.11449999999998,113.11449999999998,113.11549999999998,113.11549999999998,113.11649999999999,113.11649999999999,113.11749999999998,113.11749999999998,113.11849999999998,113.11849999999998,113.11949999999999,113.11949999999999,113.12049999999998,113.12049999999998,113.12149999999998,113.12149999999998,113.12249999999999,113.12249999999999,113.12349999999998,113.12349999999998,113.12449999999997,113.12449999999997,113.12549999999997,113.12549999999997,113.12649999999998,113.12649999999998,113.12749999999998,113.12749999999998,113.12849999999997,113.12849999999997,113.12949999999998,113.12949999999998,113.13049999999998,113.13049999999998,113.13149999999999,113.13149999999999,113.13249999999998,113.13249999999998,113.13349999999998,113.13349999999998,113.13449999999999,113.13449999999999,113.13549999999998,113.13549999999998,113.13649999999998,113.13649999999998,113.13749999999997,113.13749999999997,113.13849999999998,113.13849999999998,113.13949999999997,113.13949999999997,113.14049999999997,113.14049999999997,113.14149999999998,113.14149999999998,113.14249999999998,113.14249999999998,113.14349999999997,113.14349999999997,113.14449999999998,113.14449999999998,113.14549999999998,113.14549999999998,113.14649999999999,113.14649999999999,113.14749999999998,113.14749999999998,113.14849999999998,113.14849999999998,113.14949999999999,113.14949999999999,113.1505,113.1505,113.15149999999997,113.15149999999997,113.15249999999997,113.15249999999997,113.15349999999998,113.15349999999998,113.15449999999997,113.15449999999997,113.15549999999998,113.15549999999998,113.15649999999998,113.15649999999998,113.15749999999998,113.15749999999998,113.15849999999998,113.15849999999998,113.15949999999998,113.15949999999998,113.16049999999998,113.16049999999998,113.16149999999999,113.16149999999999,113.16249999999998,113.16249999999998,113.16349999999998,113.16349999999998,113.16449999999998,113.16449999999998,113.16549999999998,113.16549999999998,113.16649999999997,113.16649999999997,113.16749999999998,113.16749999999998,113.16849999999998,113.16849999999998,113.16949999999999,113.16949999999999,113.17049999999998,113.17049999999998,113.17149999999998,113.17149999999998,113.17249999999999,113.17249999999999,113.17349999999998,113.17349999999998,113.17449999999998,113.17449999999998,113.17549999999999,113.17549999999999,113.17649999999999,113.17649999999999,113.17749999999998,113.17749999999998,113.17849999999999,113.17849999999999,113.17949999999998,113.17949999999998,113.18049999999998,113.18049999999998,113.18149999999997,113.18149999999997,113.18249999999998,113.18249999999998,113.18349999999998,113.18349999999998,113.18449999999999,113.18449999999999,113.18549999999998,113.18549999999998,113.18649999999998,113.18649999999998,113.18749999999999,113.18749999999999,113.18849999999999,113.18849999999999,113.18949999999998,113.18949999999998,113.19049999999999,113.19049999999999,113.19149999999999,113.19149999999999,113.19249999999997,113.19249999999997,113.19349999999997,113.19349999999997,113.19449999999998,113.19449999999998,113.19549999999998,113.19549999999998,113.19649999999997,113.19649999999997,113.19749999999998,113.19749999999998,113.19849999999998,113.19849999999998,113.19949999999999,113.19949999999999,113.20049999999998,113.20049999999998,113.20149999999998,113.20149999999998,113.20249999999999,113.20249999999999,113.20349999999999,113.20349999999999,113.20449999999998,113.20449999999998,113.20549999999999,113.20549999999999,113.20649999999998,113.20649999999998,113.20749999999998,113.20749999999998,113.20849999999997,113.20849999999997,113.20949999999998,113.20949999999998,113.21049999999998,113.21049999999998,113.21149999999997,113.21149999999997,113.21249999999998,113.21249999999998,113.21349999999998,113.21349999999998,113.21449999999999,113.21449999999999,113.21549999999998,113.21549999999998,113.21649999999998,113.21649999999998,113.21749999999999,113.21749999999999,113.21849999999999,113.21849999999999,113.21949999999998,113.21949999999998,113.22049999999997,113.22049999999997,113.22149999999998,113.22149999999998,113.22249999999998,113.22249999999998,113.22349999999997,113.22349999999997,113.22449999999998,113.22449999999998,113.22549999999998,113.22549999999998,113.22649999999997,113.22649999999997,113.22749999999998,113.22749999999998,113.22849999999998,113.22849999999998,113.22949999999999,113.22949999999999,113.23049999999998,113.23049999999998,113.23149999999998,113.23149999999998,113.23249999999999,113.23249999999999,113.23349999999999,113.23349999999999,113.23449999999997,113.23449999999997,113.23549999999997,113.23549999999997,113.23649999999998,113.23649999999998,113.23749999999998,113.23749999999998,113.23849999999997,113.23849999999997,113.23949999999998,113.23949999999998,113.24049999999998,113.24049999999998,113.24149999999999,113.24149999999999,113.24249999999998,113.24249999999998,113.24349999999998,113.24349999999998,113.24449999999999,113.24449999999999,113.24549999999998,113.24549999999998,113.24649999999998,113.24649999999998,113.24749999999999,113.24749999999999,113.24849999999998,113.24849999999998,113.24949999999997,113.24949999999997,113.25049999999997,113.25049999999997,113.25149999999998,113.25149999999998,113.25249999999998,113.25249999999998,113.25349999999997,113.25349999999997,113.25449999999998,113.25449999999998,113.25549999999998,113.25549999999998,113.25649999999999,113.25649999999999,113.25749999999998,113.25749999999998,113.25849999999998,113.25849999999998,113.25949999999999,113.25949999999999,113.26049999999998,113.26049999999998,113.26149999999998,113.26149999999998,113.26249999999997,113.26249999999997,113.26349999999998,113.26349999999998,113.26449999999997,113.26449999999997,113.26549999999997,113.26549999999997,113.26649999999998,113.26649999999998,113.26749999999998,113.26749999999998,113.26849999999997,113.26849999999997,113.26949999999998,113.26949999999998,113.27049999999998,113.27049999999998,113.27149999999999,113.27149999999999,113.27249999999998,113.27249999999998,113.27349999999998,113.27349999999998,113.27449999999999,113.27449999999999,113.27549999999998,113.27549999999998,113.27649999999997,113.27649999999997,113.27749999999997,113.27749999999997,113.27849999999998,113.27849999999998,113.27949999999998,113.27949999999998,113.28049999999998,113.28049999999998,113.28149999999998,113.28149999999998,113.28249999999998,113.28249999999998,113.28349999999998,113.28349999999998,113.28449999999998,113.28449999999998,113.28549999999998,113.28549999999998,113.28649999999999,113.28649999999999,113.28749999999998,113.28749999999998,113.28849999999998,113.28849999999998,113.28949999999999,113.28949999999999,113.29049999999998,113.29049999999998,113.29149999999997,113.29149999999997,113.29249999999998,113.29249999999998,113.29349999999998,113.29349999999998,113.29449999999999,113.29449999999999,113.29549999999998,113.29549999999998,113.29649999999998,113.29649999999998,113.29749999999999,113.29749999999999,113.29849999999998,113.29849999999998,113.29949999999998,113.29949999999998,113.30049999999999,113.30049999999999,113.30149999999999,113.30149999999999,113.30249999999998,113.30249999999998,113.30349999999997,113.30349999999997,113.30449999999998,113.30449999999998,113.30549999999998,113.30549999999998,113.30649999999997,113.30649999999997,113.30749999999998,113.30749999999998,113.30849999999998,113.30849999999998,113.30949999999999,113.30949999999999,113.31049999999998,113.31049999999998,113.31149999999998,113.31149999999998,113.31249999999999,113.31249999999999,113.31349999999999,113.31349999999999,113.31449999999998,113.31449999999998,113.31549999999999,113.31549999999999,113.31649999999999,113.31649999999999,113.31749999999997,113.31749999999997,113.31849999999997,113.31849999999997,113.31949999999998,113.31949999999998,113.32049999999998,113.32049999999998,113.32149999999997,113.32149999999997,113.32249999999998,113.32249999999998,113.32349999999998,113.32349999999998,113.32449999999999,113.32449999999999,113.32549999999998,113.32549999999998,113.32649999999998,113.32649999999998,113.32749999999999,113.32749999999999,113.32849999999999,113.32849999999999,113.32949999999998,113.32949999999998,113.33049999999999,113.33049999999999,113.33149999999998,113.33149999999998,113.33249999999998,113.33249999999998,113.33349999999997,113.33349999999997,113.33449999999998,113.33449999999998,113.33549999999998,113.33549999999998,113.33649999999997,113.33649999999997,113.33749999999998,113.33749999999998,113.33849999999998,113.33849999999998,113.33949999999999,113.33949999999999,113.34049999999998,113.34049999999998,113.34149999999998,113.34149999999998,113.34249999999999,113.34249999999999,113.34349999999999,113.34349999999999,113.34449999999998,113.34449999999998,113.34549999999997,113.34549999999997,113.34649999999998,113.34649999999998,113.34749999999998,113.34749999999998,113.34849999999997,113.34849999999997,113.34949999999998,113.34949999999998,113.35049999999998,113.35049999999998,113.35149999999997,113.35149999999997,113.35249999999998,113.35249999999998,113.35349999999998,113.35349999999998,113.35449999999999,113.35449999999999,113.35549999999998,113.35549999999998,113.35649999999998,113.35649999999998,113.35749999999999,113.35749999999999,113.35849999999999,113.35849999999999,113.35949999999997,113.35949999999997,113.36049999999997,113.36049999999997,113.36149999999998,113.36149999999998,113.36249999999998,113.36249999999998,113.36349999999997,113.36349999999997,113.36449999999998,113.36449999999998,113.36549999999998,113.36549999999998,113.36649999999999,113.36649999999999,113.36749999999998,113.36749999999998,113.36849999999998,113.36849999999998,113.36949999999999,113.36949999999999,113.37049999999998,113.37049999999998,113.37149999999998,113.37149999999998,113.37249999999999,113.37249999999999,113.37349999999998,113.37349999999998,113.37449999999997,113.37449999999997,113.37549999999997,113.37549999999997,113.37649999999998,113.37649999999998,113.37749999999998,113.37749999999998,113.37849999999997,113.37849999999997,113.37949999999998,113.37949999999998,113.38049999999998,113.38049999999998,113.38149999999999,113.38149999999999,113.38249999999998,113.38249999999998,113.38349999999998,113.38349999999998,113.38449999999999,113.38449999999999,113.3855,113.3855,113.38649999999997,113.38649999999997,113.38749999999997,113.38749999999997,113.38849999999998,113.38849999999998,113.38949999999997,113.38949999999997,113.39049999999997,113.39049999999997,113.39149999999998,113.39149999999998,113.39249999999998,113.39249999999998,113.39349999999997,113.39349999999997,113.39449999999998,113.39449999999998,113.39549999999998,113.39549999999998,113.39649999999999,113.39649999999999,113.39749999999998,113.39749999999998,113.39849999999998,113.39849999999998,113.39949999999999,113.39949999999999,113.4005,113.4005,113.40149999999997,113.40149999999997,113.40249999999997,113.40249999999997,113.40349999999998,113.40349999999998,113.40449999999998,113.40449999999998,113.40549999999998,113.40549999999998,113.40649999999998,113.40649999999998,113.40749999999998,113.40749999999998,113.40849999999998,113.40849999999998,113.40949999999998,113.40949999999998,113.41049999999998,113.41049999999998,113.41149999999999,113.41149999999999,113.41249999999998,113.41249999999998,113.41349999999998,113.41349999999998,113.41449999999998,113.41449999999998,113.41549999999998,113.41549999999998,113.41649999999997,113.41649999999997,113.41749999999998,113.41749999999998,113.41849999999998,113.41849999999998,113.41949999999999,113.41949999999999,113.42049999999998,113.42049999999998,113.42149999999998,113.42149999999998,113.42249999999999,113.42249999999999,113.42349999999998,113.42349999999998,113.42449999999998,113.42449999999998,113.42549999999999,113.42549999999999,113.42649999999999,113.42649999999999,113.42749999999998,113.42749999999998,113.42849999999997,113.42849999999997,113.42949999999998,113.42949999999998,113.43049999999998,113.43049999999998,113.43149999999997,113.43149999999997,113.43249999999998,113.43249999999998,113.43349999999998,113.43349999999998,113.43449999999999,113.43449999999999,113.43549999999998,113.43549999999998,113.43649999999998,113.43649999999998,113.43749999999999,113.43749999999999,113.43849999999999,113.43849999999999,113.43949999999998,113.43949999999998,113.44049999999999,113.44049999999999,113.44149999999999,113.44149999999999,113.44249999999997,113.44249999999997,113.44349999999997,113.44349999999997,113.44449999999998,113.44449999999998,113.44549999999998,113.44549999999998,113.44649999999997,113.44649999999997,113.44749999999998,113.44749999999998,113.44849999999998,113.44849999999998,113.44949999999999,113.44949999999999,113.45049999999998,113.45049999999998,113.45149999999998,113.45149999999998,113.45249999999999,113.45249999999999,113.45349999999999,113.45349999999999,113.45449999999998,113.45449999999998,113.45549999999999,113.45549999999999,113.45649999999998,113.45649999999998,113.45749999999998,113.45749999999998,113.45849999999997,113.45849999999997,113.45949999999998,113.45949999999998,113.46049999999998,113.46049999999998,113.46149999999997,113.46149999999997,113.46249999999998,113.46249999999998,113.46349999999998,113.46349999999998,113.46449999999999,113.46449999999999,113.46549999999998,113.46549999999998,113.46649999999998,113.46649999999998,113.46749999999999,113.46749999999999,113.46849999999999,113.46849999999999,113.46949999999997,113.46949999999997,113.47049999999997,113.47049999999997,113.47149999999998,113.47149999999998,113.47249999999998,113.47249999999998,113.47349999999997,113.47349999999997,113.47449999999998,113.47449999999998,113.47549999999998,113.47549999999998,113.47649999999999,113.47649999999999,113.47749999999998,113.47749999999998,113.47849999999998,113.47849999999998,113.47949999999999,113.47949999999999,113.48049999999998,113.48049999999998,113.48149999999998,113.48149999999998,113.48249999999999,113.48249999999999,113.48349999999999,113.48349999999999,113.48449999999997,113.48449999999997,113.48549999999997,113.48549999999997,113.48649999999998,113.48649999999998,113.48749999999998,113.48749999999998,113.48849999999997,113.48849999999997,113.48949999999998,113.48949999999998,113.49049999999998,113.49049999999998,113.49149999999999,113.49149999999999,113.49249999999998,113.49249999999998,113.49349999999998,113.49349999999998,113.49449999999999,113.49449999999999,113.49549999999998,113.49549999999998,113.49649999999998,113.49649999999998,113.49749999999997,113.49749999999997,113.49849999999998,113.49849999999998,113.49949999999997,113.49949999999997,113.50049999999997,113.50049999999997,113.50149999999998,113.50149999999998,113.50249999999998,113.50249999999998,113.50349999999997,113.50349999999997,113.50449999999998,113.50449999999998,113.50549999999998,113.50549999999998,113.50649999999999,113.50649999999999,113.50749999999998,113.50749999999998,113.50849999999998,113.50849999999998,113.50949999999999,113.50949999999999,113.5105,113.5105,113.51149999999997,113.51149999999997,113.51249999999997,113.51249999999997,113.51349999999998,113.51349999999998,113.51449999999997,113.51449999999997,113.51549999999997,113.51549999999997,113.51649999999998,113.51649999999998,113.51749999999998,113.51749999999998,113.51849999999997,113.51849999999997,113.51949999999998,113.51949999999998,113.52049999999998,113.52049999999998,113.52149999999999,113.52149999999999,113.52249999999998,113.52249999999998,113.52349999999998,113.52349999999998,113.52449999999999,113.52449999999999,113.52549999999998,113.52549999999998,113.52649999999997,113.52649999999997,113.52749999999997,113.52749999999997,113.52849999999998,113.52849999999998,113.52949999999998,113.52949999999998,113.53049999999998,113.53049999999998,113.53149999999998,113.53149999999998,113.53249999999998,113.53249999999998,113.53349999999998,113.53349999999998,113.53449999999998,113.53449999999998,113.53549999999998,113.53549999999998,113.53649999999999,113.53649999999999,113.53749999999998,113.53749999999998,113.53849999999998,113.53849999999998,113.53949999999998,113.53949999999998,113.54049999999998,113.54049999999998,113.54149999999997,113.54149999999997,113.54249999999998,113.54249999999998,113.54349999999998,113.54349999999998,113.54449999999999,113.54449999999999,113.54549999999998,113.54549999999998,113.54649999999998,113.54649999999998,113.54749999999999,113.54749999999999,113.54849999999998,113.54849999999998,113.54949999999998,113.54949999999998,113.55049999999999,113.55049999999999,113.55149999999999,113.55149999999999,113.55249999999997,113.55249999999997,113.55349999999997,113.55349999999997,113.55449999999998,113.55449999999998,113.55549999999998,113.55549999999998,113.55649999999997,113.55649999999997,113.55749999999998,113.55749999999998,113.55849999999998,113.55849999999998,113.55949999999999,113.55949999999999,113.56049999999998,113.56049999999998,113.56149999999998,113.56149999999998,113.56249999999999,113.56249999999999,113.56349999999999,113.56349999999999,113.56449999999998,113.56449999999998,113.56549999999999,113.56549999999999,113.56649999999999,113.56649999999999,113.56749999999997,113.56749999999997,113.56849999999997,113.56849999999997,113.56949999999998,113.56949999999998,113.57049999999998,113.57049999999998,113.57149999999997,113.57149999999997,113.57249999999998,113.57249999999998,113.57349999999998,113.57349999999998,113.57449999999999,113.57449999999999,113.57549999999998,113.57549999999998,113.57649999999998,113.57649999999998,113.57749999999999,113.57749999999999,113.57849999999999,113.57849999999999,113.57949999999998,113.57949999999998,113.58049999999997,113.58049999999997,113.58149999999998,113.58149999999998,113.58249999999998,113.58249999999998,113.58349999999997,113.58349999999997,113.58449999999998,113.58449999999998,113.58549999999998,113.58549999999998,113.58649999999997,113.58649999999997,113.58749999999998,113.58749999999998,113.58849999999998,113.58849999999998,113.58949999999999,113.58949999999999,113.59049999999998,113.59049999999998,113.59149999999998,113.59149999999998,113.59249999999999,113.59249999999999,113.59349999999999,113.59349999999999,113.59449999999997,113.59449999999997,113.59549999999997,113.59549999999997,113.59649999999998,113.59649999999998,113.59749999999998,113.59749999999998,113.59849999999997,113.59849999999997,113.59949999999998,113.59949999999998,113.60049999999998,113.60049999999998,113.60149999999999,113.60149999999999,113.60249999999998,113.60249999999998,113.60349999999998,113.60349999999998,113.60449999999999,113.60449999999999,113.60549999999998,113.60549999999998,113.60649999999998,113.60649999999998,113.60749999999999,113.60749999999999,113.60849999999998,113.60849999999998,113.60949999999997,113.60949999999997,113.61049999999997,113.61049999999997,113.61149999999998,113.61149999999998,113.61249999999998,113.61249999999998,113.61349999999997,113.61349999999997,113.61449999999998,113.61449999999998,113.61549999999998,113.61549999999998,113.61649999999999,113.61649999999999,113.61749999999998,113.61749999999998,113.61849999999998,113.61849999999998,113.61949999999999,113.61949999999999,113.62049999999998,113.62049999999998,113.62149999999998,113.62149999999998,113.62249999999997,113.62249999999997,113.62349999999998,113.62349999999998,113.62449999999997,113.62449999999997,113.62549999999997,113.62549999999997,113.62649999999998,113.62649999999998,113.62749999999998,113.62749999999998,113.62849999999997,113.62849999999997,113.62949999999998,113.62949999999998,113.63049999999998,113.63049999999998,113.63149999999999,113.63149999999999,113.63249999999998,113.63249999999998,113.63349999999998,113.63349999999998,113.63449999999999,113.63449999999999,113.6355,113.6355,113.63649999999997,113.63649999999997,113.63749999999997,113.63749999999997,113.63849999999998,113.63849999999998,113.63949999999997,113.63949999999997,113.64049999999997,113.64049999999997,113.64149999999998,113.64149999999998,113.64249999999998,113.64249999999998,113.64349999999997,113.64349999999997,113.64449999999998,113.64449999999998,113.64549999999998,113.64549999999998,113.64649999999999,113.64649999999999,113.64749999999998,113.64749999999998,113.64849999999998,113.64849999999998,113.64949999999999,113.64949999999999,113.65049999999998,113.65049999999998,113.65149999999997,113.65149999999997,113.65249999999997,113.65249999999997,113.65349999999998,113.65349999999998,113.65449999999998,113.65449999999998,113.65549999999998,113.65549999999998,113.65649999999998,113.65649999999998,113.65749999999998,113.65749999999998,113.65849999999998,113.65849999999998,113.65949999999998,113.65949999999998,113.66049999999998,113.66049999999998,113.66149999999999,113.66149999999999,113.66249999999998,113.66249999999998,113.66349999999997,113.66349999999997,113.66449999999998,113.66449999999998,113.66549999999998,113.66549999999998,113.66649999999997,113.66649999999997,113.66749999999998,113.66749999999998,113.66849999999998,113.66849999999998,113.66949999999999,113.66949999999999,113.67049999999998,113.67049999999998,113.67149999999998,113.67149999999998,113.67249999999999,113.67249999999999,113.67349999999999,113.67349999999999,113.67449999999998,113.67449999999998,113.67549999999999,113.67549999999999,113.67649999999999,113.67649999999999,113.67749999999998,113.67749999999998,113.67849999999997,113.67849999999997,113.67949999999998,113.67949999999998,113.68049999999998,113.68049999999998,113.68149999999997,113.68149999999997,113.68249999999998,113.68249999999998,113.68349999999998,113.68349999999998,113.68449999999999,113.68449999999999,113.68549999999998,113.68549999999998,113.68649999999998,113.68649999999998,113.68749999999999,113.68749999999999,113.68849999999999,113.68849999999999,113.68949999999998,113.68949999999998,113.69049999999999,113.69049999999999,113.69149999999998,113.69149999999998,113.69249999999997,113.69249999999997,113.69349999999997,113.69349999999997,113.69449999999998,113.69449999999998,113.69549999999998,113.69549999999998,113.69649999999997,113.69649999999997,113.69749999999998,113.69749999999998,113.69849999999998,113.69849999999998,113.69949999999999,113.69949999999999,113.70049999999998,113.70049999999998,113.70149999999998,113.70149999999998,113.70249999999999,113.70249999999999,113.70349999999999,113.70349999999999,113.70449999999998,113.70449999999998,113.70549999999997,113.70549999999997,113.70649999999998,113.70649999999998,113.70749999999998,113.70749999999998,113.70849999999997,113.70849999999997,113.70949999999998,113.70949999999998,113.71049999999998,113.71049999999998,113.71149999999997,113.71149999999997,113.71249999999998,113.71249999999998,113.71349999999998,113.71349999999998,113.71449999999999,113.71449999999999,113.71549999999998,113.71549999999998,113.71649999999998,113.71649999999998,113.71749999999999,113.71749999999999,113.71849999999999,113.71849999999999,113.71949999999997,113.71949999999997,113.72049999999997,113.72049999999997,113.72149999999998,113.72149999999998,113.72249999999998,113.72249999999998,113.72349999999997,113.72349999999997,113.72449999999998,113.72449999999998,113.72549999999998,113.72549999999998,113.72649999999999,113.72649999999999,113.72749999999998,113.72749999999998,113.72849999999998,113.72849999999998,113.72949999999999,113.72949999999999,113.73049999999998,113.73049999999998,113.73149999999998,113.73149999999998,113.73249999999999,113.73249999999999,113.73349999999998,113.73349999999998,113.73449999999997,113.73449999999997,113.73549999999997,113.73549999999997,113.73649999999998,113.73649999999998,113.73749999999998,113.73749999999998,113.73849999999997,113.73849999999997,113.73949999999998,113.73949999999998,113.74049999999998,113.74049999999998,113.74149999999999,113.74149999999999,113.74249999999998,113.74249999999998,113.74349999999998,113.74349999999998,113.74449999999999,113.74449999999999,113.74549999999998,113.74549999999998,113.74649999999998,113.74649999999998,113.74749999999997,113.74749999999997,113.74849999999998,113.74849999999998,113.74949999999997,113.74949999999997,113.75049999999997,113.75049999999997,113.75149999999998,113.75149999999998,113.75249999999998,113.75249999999998,113.75349999999997,113.75349999999997,113.75449999999998,113.75449999999998,113.75549999999998,113.75549999999998,113.75649999999999,113.75649999999999,113.75749999999998,113.75749999999998,113.75849999999998,113.75849999999998,113.75949999999999,113.75949999999999,113.7605,113.7605,113.76149999999997,113.76149999999997,113.76249999999997,113.76249999999997,113.76349999999998,113.76349999999998,113.76449999999997,113.76449999999997,113.76549999999997,113.76549999999997,113.76649999999998,113.76649999999998,113.76749999999998,113.76749999999998,113.76849999999997,113.76849999999997,113.76949999999998,113.76949999999998,113.77049999999998,113.77049999999998,113.77149999999999,113.77149999999999,113.77249999999998,113.77249999999998,113.77349999999998,113.77349999999998,113.77449999999997,113.77449999999997,113.77549999999998,113.77549999999998,113.77649999999997,113.77649999999997,113.77749999999997,113.77749999999997,113.77849999999998,113.77849999999998,113.77949999999998,113.77949999999998,113.78049999999998,113.78049999999998,113.78149999999998,113.78149999999998,113.78249999999998,113.78249999999998,113.78349999999998,113.78349999999998,113.78449999999998,113.78449999999998,113.78549999999998,113.78549999999998,113.78649999999999,113.78649999999999,113.78749999999998,113.78749999999998,113.78849999999998,113.78849999999998,113.78949999999998,113.78949999999998,113.79049999999998,113.79049999999998,113.79149999999997,113.79149999999997,113.79249999999998,113.79249999999998,113.79349999999998,113.79349999999998,113.79449999999999,113.79449999999999,113.79549999999998,113.79549999999998,113.79649999999998,113.79649999999998,113.79749999999999,113.79749999999999,113.79849999999999,113.79849999999999,113.79949999999998,113.79949999999998,113.80049999999999,113.80049999999999,113.80149999999999,113.80149999999999,113.80249999999997,113.80249999999997,113.80349999999997,113.80349999999997,113.80449999999998,113.80449999999998,113.80549999999998,113.80549999999998,113.80649999999997,113.80649999999997,113.80749999999998,113.80749999999998,113.80849999999998,113.80849999999998,113.80949999999999,113.80949999999999,113.81049999999998,113.81049999999998,113.81149999999998,113.81149999999998,113.81249999999999,113.81249999999999,113.81349999999999,113.81349999999999,113.81449999999998,113.81449999999998,113.81549999999999,113.81549999999999,113.81649999999998,113.81649999999998,113.81749999999998,113.81749999999998,113.81849999999997,113.81849999999997,113.81949999999998,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.54049999999998,221.54149999999998,221.54149999999998,221.54249999999996,221.54249999999996,221.54349999999997,221.54349999999997,221.54449999999997,221.54449999999997,221.54549999999998,221.54549999999998,221.54649999999998,221.54649999999998,221.54749999999999,221.54749999999999,221.5485,221.5485,221.5495,221.5495,221.55049999999997,221.55049999999997,221.55149999999995,221.55149999999995,221.55249999999995,221.55249999999995,221.55349999999996,221.55349999999996,221.55449999999996,221.55449999999996,221.55549999999997,221.55549999999997,221.55649999999997,221.55649999999997,221.55749999999998,221.55749999999998,221.55849999999995,221.55849999999995,221.55949999999996,221.55949999999996,221.56049999999996,221.56049999999996,221.56149999999997,221.56149999999997,221.56249999999997,221.56249999999997,221.56349999999998,221.56349999999998,221.56449999999998,221.56449999999998,221.56549999999996,221.56549999999996,221.56649999999996,221.56649999999996,221.56749999999997,221.56749999999997,221.56849999999997,221.56849999999997,221.56949999999998,221.56949999999998,221.57049999999998,221.57049999999998,221.5715,221.5715,221.5725,221.5725,221.57349999999997,221.57349999999997,221.57449999999997,221.57449999999997,221.57549999999998,221.57549999999998,221.57649999999998,221.57649999999998,221.5775,221.5775,221.5785,221.5785,221.57949999999997,221.57949999999997,221.58049999999997,221.58049999999997,221.58149999999995,221.58149999999995,221.58249999999995,221.58249999999995,221.58349999999996,221.58349999999996,221.58449999999996,221.58449999999996,221.58549999999997,221.58549999999997,221.58649999999997,221.58649999999997,221.58749999999998,221.58749999999998,221.58849999999995,221.58849999999995,221.58949999999996,221.58949999999996,221.59049999999996,221.59049999999996,221.59149999999997,221.59149999999997,221.59249999999997,221.59249999999997,221.59349999999998,221.59349999999998,221.59449999999998,221.59449999999998,221.5955,221.5955,221.59649999999996,221.59649999999996,221.59749999999997,221.59749999999997,221.59849999999997,221.59849999999997,221.59949999999998,221.59949999999998,221.60049999999998,221.60049999999998,221.6015,221.6015,221.6025,221.6025,221.60349999999997,221.60349999999997,221.60449999999997,221.60449999999997,221.60549999999998,221.60549999999998,221.60649999999995,221.60649999999995,221.60749999999996,221.60749999999996,221.60849999999996,221.60849999999996,221.60949999999997,221.60949999999997,221.61049999999997,221.61049999999997,221.61149999999995,221.61149999999995,221.61249999999995,221.61249999999995,221.61349999999996,221.61349999999996,221.61449999999996,221.61449999999996,221.61549999999997,221.61549999999997,221.61649999999997,221.61649999999997,221.61749999999998,221.61749999999998,221.61849999999995,221.61849999999995,221.61949999999996,221.61949999999996,221.62049999999996,221.62049999999996,221.62149999999997,221.62149999999997,221.62249999999997,221.62249999999997,221.62349999999998,221.62349999999998,221.62449999999998,221.62449999999998,221.6255,221.6255,221.62649999999996,221.62649999999996,221.62749999999997,221.62749999999997,221.62849999999997,221.62849999999997,221.62949999999998,221.62949999999998,221.63049999999998,221.63049999999998,221.6315,221.6315,221.6325,221.6325,221.63349999999997,221.63349999999997,221.63449999999995,221.63449999999995,221.63549999999995,221.63549999999995,221.63649999999996,221.63649999999996,221.63749999999996,221.63749999999996,221.63849999999996,221.63849999999996,221.63949999999997,221.63949999999997,221.64049999999997,221.64049999999997,221.64149999999995,221.64149999999995,221.64249999999996,221.64249999999996,221.64349999999996,221.64349999999996,221.64449999999997,221.64449999999997,221.64549999999997,221.64549999999997,221.64649999999997,221.64649999999997,221.64749999999998,221.64749999999998,221.64849999999998,221.64849999999998,221.64949999999996,221.64949999999996,221.65049999999997,221.65049999999997,221.65149999999997,221.65149999999997,221.65249999999997,221.65249999999997,221.65349999999998,221.65349999999998,221.65449999999998,221.65449999999998,221.6555,221.6555,221.65649999999997,221.65649999999997,221.65749999999997,221.65749999999997,221.65849999999998,221.65849999999998,221.65949999999998,221.65949999999998,221.66049999999998,221.66049999999998,221.6615,221.6615,221.66249999999997,221.66249999999997,221.66349999999997,221.66349999999997,221.66449999999995,221.66449999999995,221.66549999999995,221.66549999999995,221.66649999999996,221.66649999999996,221.66749999999996,221.66749999999996,221.66849999999997,221.66849999999997,221.66949999999997,221.66949999999997,221.67049999999998,221.67049999999998,221.67149999999995,221.67149999999995,221.67249999999996,221.67249999999996,221.67349999999996,221.67349999999996,221.67449999999997,221.67449999999997,221.67549999999997,221.67549999999997,221.67649999999998,221.67649999999998,221.67749999999998,221.67749999999998,221.67849999999999,221.67849999999999,221.67949999999996,221.67949999999996,221.68049999999997,221.68049999999997,221.68149999999997,221.68149999999997,221.68249999999998,221.68249999999998,221.68349999999998,221.68349999999998,221.68449999999999,221.68449999999999,221.6855,221.6855,221.68649999999997,221.68649999999997,221.68749999999997,221.68749999999997,221.68849999999998,221.68849999999998,221.68949999999998,221.68949999999998,221.69049999999996,221.69049999999996,221.69149999999996,221.69149999999996,221.69249999999997,221.69249999999997,221.69349999999997,221.69349999999997,221.69449999999995,221.69449999999995,221.69549999999995,221.69549999999995,221.69649999999996,221.69649999999996,221.69749999999996,221.69749999999996,221.69849999999997,221.69849999999997,221.69949999999997,221.69949999999997,221.70049999999998,221.70049999999998,221.70149999999998,221.70149999999998,221.70249999999996,221.70249999999996,221.70349999999996,221.70349999999996,221.70449999999997,221.70449999999997,221.70549999999997,221.70549999999997,221.70649999999998,221.70649999999998,221.70749999999998,221.70749999999998,221.7085,221.7085,221.70949999999996,221.70949999999996,221.71049999999997,221.71049999999997,221.71149999999997,221.71149999999997,221.71249999999998,221.71249999999998,221.71349999999998,221.71349999999998,221.7145,221.7145,221.7155,221.7155,221.7165,221.7165,221.71749999999994,221.71749999999994,221.71849999999995,221.71849999999995,221.71949999999995,221.71949999999995,221.72049999999996,221.72049999999996,221.72149999999996,221.72149999999996,221.72249999999997,221.72249999999997,221.72349999999997,221.72349999999997,221.72449999999995,221.72449999999995,221.72549999999995,221.72549999999995,221.72649999999996,221.72649999999996,221.72749999999996,221.72749999999996,221.72849999999997,221.72849999999997,221.72949999999997,221.72949999999997,221.73049999999998,221.73049999999998,221.73149999999998,221.73149999999998,221.73249999999996,221.73249999999996,221.73349999999996,221.73349999999996,221.73449999999997,221.73449999999997,221.73549999999997,221.73549999999997,221.73649999999998,221.73649999999998,221.73749999999998,221.73749999999998,221.7385,221.7385,221.73949999999996,221.73949999999996,221.74049999999997,221.74049999999997,221.74149999999997,221.74149999999997,221.74249999999998,221.74249999999998,221.74349999999998,221.74349999999998,221.7445,221.7445,221.74549999999996,221.74549999999996,221.74649999999997,221.74649999999997,221.74749999999995,221.74749999999995,221.74849999999995,221.74849999999995,221.74949999999995,221.74949999999995,221.75049999999996,221.75049999999996,221.75149999999996,221.75149999999996,221.75249999999997,221.75249999999997,221.75349999999997,221.75349999999997,221.75449999999998,221.75449999999998,221.75549999999996,221.75549999999996,221.75649999999996,221.75649999999996,221.75749999999996,221.75749999999996,221.75849999999997,221.75849999999997,221.75949999999997,221.75949999999997,221.76049999999998,221.76049999999998,221.76149999999998,221.76149999999998,221.76249999999996,221.76249999999996,221.76349999999996,221.76349999999996,221.76449999999997,221.76449999999997,221.76549999999997,221.76549999999997,221.76649999999998,221.76649999999998,221.76749999999998,221.76749999999998,221.7685,221.7685,221.7695,221.7695,221.77049999999997,221.77049999999997,221.77149999999997,221.77149999999997,221.77249999999998,221.77249999999998,221.77349999999996,221.77349999999996,221.77449999999996,221.77449999999996,221.77549999999997,221.77549999999997,221.77649999999997,221.77649999999997,221.77749999999997,221.77749999999997,221.77849999999995,221.77849999999995,221.77949999999996,221.77949999999996,221.78049999999996,221.78049999999996,221.78149999999997,221.78149999999997,221.78249999999997,221.78249999999997,221.78349999999998,221.78349999999998,221.78449999999998,221.78449999999998,221.78549999999996,221.78549999999996,221.78649999999996,221.78649999999996,221.78749999999997,221.78749999999997,221.78849999999997,221.78849999999997,221.78949999999998,221.78949999999998,221.79049999999998,221.79049999999998,221.79149999999998,221.79149999999998,221.7925,221.7925,221.79349999999997,221.79349999999997,221.79449999999997,221.79449999999997,221.79549999999998,221.79549999999998,221.79649999999998,221.79649999999998,221.79749999999999,221.79749999999999,221.7985,221.7985,221.7995,221.7995,221.80049999999994,221.80049999999994,221.80149999999995,221.80149999999995,221.80249999999995,221.80249999999995,221.80349999999996,221.80349999999996,221.80449999999996,221.80449999999996,221.80549999999997,221.80549999999997,221.80649999999997,221.80649999999997,221.80749999999998,221.80749999999998,221.80849999999995,221.80849999999995,221.80949999999996,221.80949999999996,221.81049999999996,221.81049999999996,221.81149999999997,221.81149999999997,221.81249999999997,221.81249999999997,221.81349999999998,221.81349999999998,221.81449999999998,221.81449999999998,221.81549999999996,221.81549999999996,221.81649999999996,221.81649999999996,221.81749999999997,221.81749999999997,221.81849999999997,221.81849999999997,221.81949999999998,221.81949999999998,221.82049999999998,221.82049999999998,221.8215,221.8215,221.8225,221.8225,221.82349999999997,221.82349999999997,221.82449999999997,221.82449999999997,221.82549999999998,221.82549999999998,221.82649999999998,221.82649999999998,221.8275,221.8275,221.82849999999996,221.82849999999996,221.82949999999997,221.82949999999997,221.83049999999997,221.83049999999997,221.83149999999995,221.83149999999995,221.83249999999995,221.83249999999995,221.83349999999996,221.83349999999996,221.83449999999996,221.83449999999996,221.83549999999997,221.83549999999997,221.83649999999997,221.83649999999997,221.83749999999998,221.83749999999998,221.83849999999995,221.83849999999995,221.83949999999996,221.83949999999996,221.84049999999996,221.84049999999996,221.84149999999997,221.84149999999997,221.84249999999997,221.84249999999997,221.84349999999998,221.84349999999998,221.84449999999998,221.84449999999998,221.8455,221.8455,221.84649999999996,221.84649999999996,221.84749999999997,221.84749999999997,221.84849999999997,221.84849999999997,221.84949999999998,221.84949999999998,221.85049999999998,221.85049999999998,221.8515,221.8515,221.8525,221.8525,221.85349999999997,221.85349999999997,221.85449999999997,221.85449999999997,221.85549999999998,221.85549999999998,221.85649999999995,221.85649999999995,221.85749999999996,221.85749999999996,221.85849999999996,221.85849999999996,221.85949999999997,221.85949999999997,221.86049999999997,221.86049999999997,221.86149999999995,221.86149999999995,221.86249999999995,221.86249999999995,221.86349999999996,221.86349999999996,221.86449999999996,221.86449999999996,221.86549999999997,221.86549999999997,221.86649999999997,221.86649999999997,221.86749999999998,221.86749999999998,221.86849999999995,221.86849999999995,221.86949999999996,221.86949999999996,221.87049999999996,221.87049999999996,221.87149999999997,221.87149999999997,221.87249999999997,221.87249999999997,221.87349999999998,221.87349999999998,221.87449999999998,221.87449999999998,221.8755,221.8755,221.87649999999996,221.87649999999996,221.87749999999997,221.87749999999997,221.87849999999997,221.87849999999997,221.87949999999998,221.87949999999998,221.88049999999998,221.88049999999998,221.8815,221.8815,221.8825,221.8825,221.88349999999997,221.88349999999997,221.88449999999995,221.88449999999995,221.88549999999995,221.88549999999995,221.88649999999996,221.88649999999996,221.88749999999996,221.88749999999996,221.88849999999996,221.88849999999996,221.88949999999997,221.88949999999997,221.89049999999997,221.89049999999997,221.89149999999995,221.89149999999995,221.89249999999996,221.89249999999996,221.89349999999996,221.89349999999996,221.89449999999997,221.89449999999997,221.89549999999997,221.89549999999997,221.89649999999997,221.89649999999997,221.89749999999998,221.89749999999998,221.89849999999998,221.89849999999998,221.89949999999996,221.89949999999996,221.90049999999997,221.90049999999997,221.90149999999997,221.90149999999997,221.90249999999997,221.90249999999997,221.90349999999998,221.90349999999998,221.90449999999998,221.90449999999998,221.9055,221.9055,221.90649999999997,221.90649999999997,221.90749999999997,221.90749999999997,221.90849999999998,221.90849999999998,221.90949999999998,221.90949999999998,221.91049999999998,221.91049999999998,221.91149999999996,221.91149999999996,221.91249999999997,221.91249999999997,221.91349999999997,221.91349999999997,221.91449999999995,221.91449999999995,221.91549999999995,221.91549999999995,221.91649999999996,221.91649999999996,221.91749999999996,221.91749999999996,221.91849999999997,221.91849999999997,221.91949999999997,221.91949999999997,221.92049999999998,221.92049999999998,221.92149999999995,221.92149999999995,221.92249999999996,221.92249999999996,221.92349999999996,221.92349999999996,221.92449999999997,221.92449999999997,221.92549999999997,221.92549999999997,221.92649999999998,221.92649999999998,221.92749999999998,221.92749999999998,221.92849999999999,221.92849999999999,221.92949999999996,221.92949999999996,221.93049999999997,221.93049999999997,221.93149999999997,221.93149999999997,221.93249999999998,221.93249999999998,221.93349999999998,221.93349999999998,221.93449999999999,221.93449999999999,221.9355,221.9355,221.93649999999997,221.93649999999997,221.93749999999997,221.93749999999997,221.93849999999998,221.93849999999998,221.93949999999995,221.93949999999995,221.94049999999996,221.94049999999996,221.94149999999996,221.94149999999996,221.94249999999997,221.94249999999997,221.94349999999997,221.94349999999997,221.94449999999995,221.94449999999995,221.94549999999995,221.94549999999995,221.94649999999996,221.94649999999996,221.94749999999996,221.94749999999996,221.94849999999997,221.94849999999997,221.94949999999997,221.94949999999997,221.95049999999998,221.95049999999998,221.95149999999998,221.95149999999998,221.95249999999996,221.95249999999996,221.95349999999996,221.95349999999996,221.95449999999997,221.95449999999997,221.95549999999997,221.95549999999997,221.95649999999998,221.95649999999998,221.95749999999998,221.95749999999998,221.9585,221.9585,221.95949999999996,221.95949999999996,221.96049999999997,221.96049999999997,221.96149999999997,221.96149999999997,221.96249999999998,221.96249999999998,221.96349999999998,221.96349999999998,221.9645,221.9645,221.9655,221.9655,221.9665,221.9665,221.96749999999994,221.96749999999994,221.96849999999995,221.96849999999995,221.96949999999995,221.96949999999995,221.97049999999996,221.97049999999996,221.97149999999996,221.97149999999996,221.97249999999997,221.97249999999997,221.97349999999997,221.97349999999997,221.97449999999998,221.97449999999998,221.97549999999995,221.97549999999995,221.97649999999996,221.97649999999996,221.97749999999996,221.97749999999996,221.97849999999997,221.97849999999997,221.97949999999997,221.97949999999997,221.98049999999998,221.98049999999998,221.98149999999998,221.98149999999998,221.98249999999996,221.98249999999996,221.98349999999996,221.98349999999996,221.98449999999997,221.98449999999997,221.98549999999997,221.98549999999997,221.98649999999998,221.98649999999998,221.98749999999998,221.98749999999998,221.9885,221.9885,221.9895,221.9895,221.99049999999997,221.99049999999997,221.99149999999997,221.99149999999997,221.99249999999998,221.99249999999998,221.99349999999998,221.99349999999998,221.99449999999996,221.99449999999996,221.99549999999996,221.99549999999996,221.99649999999997,221.99649999999997,221.99749999999995,221.99749999999995,221.99849999999995,221.99849999999995,221.99949999999995,221.99949999999995,222.00049999999996,222.00049999999996,222.00149999999996,222.00149999999996,222.00249999999997,222.00249999999997,222.00349999999997,222.00349999999997,222.00449999999998,222.00449999999998,222.00549999999996,222.00549999999996,222.00649999999996,222.00649999999996,222.00749999999996,222.00749999999996,222.00849999999997,222.00849999999997,222.00949999999997,222.00949999999997,222.01049999999998,222.01049999999998,222.01149999999998,222.01149999999998,222.01249999999996,222.01249999999996,222.01349999999996,222.01349999999996,222.01449999999997,222.01449999999997,222.01549999999997,222.01549999999997,222.01649999999998,222.01649999999998,222.01749999999998,222.01749999999998,222.0185,222.0185,222.0195,222.0195,222.02049999999997,222.02049999999997,222.02149999999997,222.02149999999997,222.02249999999995,222.02249999999995,222.02349999999996,222.02349999999996,222.02449999999996,222.02449999999996,222.02549999999997,222.02549999999997,222.02649999999997,222.02649999999997,222.02749999999997,222.02749999999997,222.02849999999995,222.02849999999995,222.02949999999996,222.02949999999996,222.03049999999996,222.03049999999996,222.03149999999997,222.03149999999997,222.03249999999997,222.03249999999997,222.03349999999998,222.03349999999998,222.03449999999998,222.03449999999998,222.03549999999996,222.03549999999996,222.03649999999996,222.03649999999996,222.03749999999997,222.03749999999997,222.03849999999997,222.03849999999997,222.03949999999998,222.03949999999998,222.04049999999998,222.04049999999998,222.04149999999998,222.04149999999998,222.0425,222.0425,222.04349999999997,222.04349999999997,222.04449999999997,222.04449999999997,222.04549999999998,222.04549999999998,222.04649999999998,222.04649999999998,222.04749999999999,222.04749999999999,222.0485,222.0485,222.0495,222.0495,222.05049999999994,222.05049999999994,222.05149999999995,222.05149999999995,222.05249999999995,222.05249999999995,222.05349999999996,222.05349999999996,222.05449999999996,222.05449999999996,222.05549999999997,222.05549999999997,222.05649999999997,222.05649999999997,222.05749999999998,222.05749999999998,222.05849999999995,222.05849999999995,222.05949999999996,222.05949999999996,222.06049999999996,222.06049999999996,222.06149999999997,222.06149999999997,222.06249999999997,222.06249999999997,222.06349999999998,222.06349999999998,222.06449999999998,222.06449999999998,222.06549999999996,222.06549999999996,222.06649999999996,222.06649999999996,222.06749999999997,222.06749999999997,222.06849999999997,222.06849999999997,222.06949999999998,222.06949999999998,222.07049999999998,222.07049999999998,222.0715,222.0715,222.0725,222.0725,222.07349999999997,222.07349999999997,222.07449999999997,222.07449999999997,222.07549999999998,222.07549999999998,222.07649999999998,222.07649999999998,222.07749999999996,222.07749999999996,222.07849999999996,222.07849999999996,222.07949999999997,222.07949999999997,222.08049999999997,222.08049999999997,222.08149999999995,222.08149999999995,222.08249999999995,222.08249999999995,222.08349999999996,222.08349999999996,222.08449999999996,222.08449999999996,222.08549999999997,222.08549999999997,222.08649999999997,222.08649999999997,222.08749999999998,222.08749999999998,222.08849999999995,222.08849999999995,222.08949999999996,222.08949999999996,222.09049999999996,222.09049999999996,222.09149999999997,222.09149999999997,222.09249999999997,222.09249999999997,222.09349999999998,222.09349999999998,222.09449999999998,222.09449999999998,222.0955,222.0955,222.09649999999996,222.09649999999996,222.09749999999997,222.09749999999997,222.09849999999997,222.09849999999997,222.09949999999998,222.09949999999998,222.10049999999998,222.10049999999998,222.1015,222.1015,222.1025,222.1025,222.10349999999997,222.10349999999997,222.10449999999997,222.10449999999997,222.10549999999995,222.10549999999995,222.10649999999995,222.10649999999995,222.10749999999996,222.10749999999996,222.10849999999996,222.10849999999996,222.10949999999997,222.10949999999997,222.11049999999997,222.11049999999997,222.11149999999995,222.11149999999995,222.11249999999995,222.11249999999995,222.11349999999996,222.11349999999996,222.11449999999996,222.11449999999996,222.11549999999997,222.11549999999997,222.11649999999997,222.11649999999997,222.11749999999998,222.11749999999998,222.11849999999995,222.11849999999995,222.11949999999996,222.11949999999996,222.12049999999996,222.12049999999996,222.12149999999997,222.12149999999997,222.12249999999997,222.12249999999997,222.12349999999998,222.12349999999998,222.12449999999998,222.12449999999998,222.1255,222.1255,222.12649999999996,222.12649999999996,222.12749999999997,222.12749999999997,222.12849999999997,222.12849999999997,222.12949999999998,222.12949999999998,222.13049999999998,222.13049999999998,222.1315,222.1315,222.1325,222.1325,222.13349999999997,222.13349999999997,222.13449999999995,222.13449999999995,222.13549999999995,222.13549999999995,222.13649999999996,222.13649999999996,222.13749999999996,222.13749999999996,222.13849999999996,222.13849999999996,222.13949999999997,222.13949999999997,222.14049999999997,222.14049999999997,222.14149999999995,222.14149999999995,222.14249999999996,222.14249999999996,222.14349999999996,222.14349999999996,222.14449999999997,222.14449999999997,222.14549999999997,222.14549999999997,222.14649999999997,222.14649999999997,222.14749999999998,222.14749999999998,222.14849999999998,222.14849999999998,222.14949999999996,222.14949999999996,222.15049999999997,222.15049999999997,222.15149999999997,222.15149999999997,222.15249999999997,222.15249999999997,222.15349999999998,222.15349999999998,222.15449999999998,222.15449999999998,222.1555,222.1555,222.15649999999997,222.15649999999997,222.15749999999997,222.15749999999997,222.15849999999998,222.15849999999998,222.15949999999998,222.15949999999998,222.16049999999998,222.16049999999998,222.16149999999996,222.16149999999996,222.16249999999997,222.16249999999997,222.16349999999997,222.16349999999997,222.16449999999995,222.16449999999995,222.16549999999995,222.16549999999995,222.16649999999996,222.16649999999996,222.16749999999996,222.16749999999996,222.16849999999997,222.16849999999997,222.16949999999997,222.16949999999997,222.17049999999998,222.17049999999998,222.17149999999998,222.17149999999998,222.17249999999996,222.17249999999996,222.17349999999996,222.17349999999996,222.17449999999997,222.17449999999997,222.17549999999997,222.17549999999997,222.17649999999998,222.17649999999998,222.17749999999998,222.17749999999998,222.17849999999999,222.17849999999999,222.17949999999996,222.17949999999996,222.18049999999997,222.18049999999997,222.18149999999997,222.18149999999997,222.18249999999998,222.18249999999998,222.18349999999998,222.18349999999998,222.18449999999999,222.18449999999999,222.1855,222.1855,222.1865,222.1865,222.18749999999997,222.18749999999997,222.18849999999995,222.18849999999995,222.18949999999995,222.18949999999995,222.19049999999996,222.19049999999996,222.19149999999996,222.19149999999996,222.19249999999997,222.19249999999997,222.19349999999997,222.19349999999997,222.19449999999995,222.19449999999995,222.19549999999995,222.19549999999995,222.19649999999996,222.19649999999996,222.19749999999996,222.19749999999996,222.19849999999997,222.19849999999997,222.19949999999997,222.19949999999997,222.20049999999998,222.20049999999998,222.20149999999998,222.20149999999998,222.20249999999996,222.20249999999996,222.20349999999996,222.20349999999996,222.20449999999997,222.20449999999997,222.20549999999997,222.20549999999997,222.20649999999998,222.20649999999998,222.20749999999998,222.20749999999998,222.2085,222.2085,222.20949999999996,222.20949999999996,222.21049999999997,222.21049999999997,222.21149999999997,222.21149999999997,222.21249999999998,222.21249999999998,222.21349999999998,222.21349999999998,222.2145,222.2145,222.2155,222.2155,222.21649999999997,222.21649999999997,222.21749999999994,222.21749999999994,222.21849999999995,222.21849999999995,222.21949999999995,222.21949999999995,222.22049999999996,222.22049999999996,222.22149999999996,222.22149999999996,222.22249999999997,222.22249999999997,222.22349999999997,222.22349999999997,222.22449999999998,222.22449999999998,222.22549999999995,222.22549999999995,222.22649999999996,222.22649999999996,222.22749999999996,222.22749999999996,222.22849999999997,222.22849999999997,222.22949999999997,222.22949999999997,222.23049999999998,222.23049999999998,222.23149999999998,222.23149999999998,222.23249999999996,222.23249999999996,222.23349999999996,222.23349999999996,222.23449999999997,222.23449999999997,222.23549999999997,222.23549999999997,222.23649999999998,222.23649999999998,222.23749999999998,222.23749999999998,222.2385,222.2385,222.2395,222.2395,222.24049999999997,222.24049999999997,222.24149999999997,222.24149999999997,222.24249999999998,222.24249999999998,222.24349999999998,222.24349999999998,222.24449999999996,222.24449999999996,222.24549999999996,222.24549999999996,222.24649999999997,222.24649999999997,222.24749999999995,222.24749999999995,222.24849999999995,222.24849999999995,222.24949999999995,222.24949999999995,222.25049999999996,222.25049999999996,222.25149999999996,222.25149999999996,222.25249999999997,222.25249999999997,222.25349999999997,222.25349999999997,222.25449999999998,222.25449999999998,222.25549999999996,222.25549999999996,222.25649999999996,222.25649999999996,222.25749999999996,222.25749999999996,222.25849999999997,222.25849999999997,222.25949999999997,222.25949999999997,222.26049999999998,222.26049999999998,222.26149999999998,222.26149999999998,222.26249999999996,222.26249999999996,222.26349999999996,222.26349999999996,222.26449999999997,222.26449999999997,222.26549999999997,222.26549999999997,222.26649999999998,222.26649999999998,222.26749999999998,222.26749999999998,222.2685,222.2685,222.2695,222.2695,222.27049999999997,222.27049999999997,222.27149999999995,222.27149999999995,222.27249999999995,222.27249999999995,222.27349999999996,222.27349999999996,222.27449999999996,222.27449999999996,222.27549999999997,222.27549999999997,222.27649999999997,222.27649999999997,222.27749999999997,222.27749999999997,222.27849999999995,222.27849999999995,222.27949999999996,222.27949999999996,222.28049999999996,222.28049999999996,222.28149999999997,222.28149999999997,222.28249999999997,222.28249999999997,222.28349999999998,222.28349999999998,222.28449999999998,222.28449999999998,222.28549999999996,222.28549999999996,222.28649999999996,222.28649999999996,222.28749999999997,222.28749999999997,222.28849999999997,222.28849999999997,222.28949999999998,222.28949999999998,222.29049999999998,222.29049999999998,222.29149999999998,222.29149999999998,222.2925,222.2925,222.29349999999997,222.29349999999997,222.29449999999997,222.29449999999997,222.29549999999998,222.29549999999998,222.29649999999998,222.29649999999998,222.29749999999999,222.29749999999999,222.2985,222.2985,222.29949999999997,222.29949999999997,222.30049999999994,222.30049999999994,222.30149999999995,222.30149999999995,222.30249999999995,222.30249999999995,222.30349999999996,222.30349999999996,222.30449999999996,222.30449999999996,222.30549999999997,222.30549999999997,222.30649999999997,222.30649999999997,222.30749999999998,222.30749999999998,222.30849999999995,222.30849999999995,222.30949999999996,222.30949999999996,222.31049999999996,222.31049999999996,222.31149999999997,222.31149999999997,222.31249999999997,222.31249999999997,222.31349999999998,222.31349999999998,222.31449999999998,222.31449999999998,222.31549999999996,222.31549999999996,222.31649999999996,222.31649999999996,222.31749999999997,222.31749999999997,222.31849999999997,222.31849999999997,222.31949999999998,222.31949999999998,222.32049999999998,222.32049999999998,222.3215,222.3215,222.3225,222.3225,222.32349999999997,222.32349999999997,222.32449999999997,222.32449999999997,222.32549999999998,222.32549999999998,222.32649999999998,222.32649999999998,222.32749999999996,222.32749999999996,222.32849999999996,222.32849999999996,222.32949999999997,222.32949999999997,222.33049999999997,222.33049999999997,222.33149999999995,222.33149999999995,222.33249999999995,222.33249999999995,222.33349999999996,222.33349999999996,222.33449999999996,222.33449999999996,222.33549999999997,222.33549999999997,222.33649999999997,222.33649999999997,222.33749999999998,222.33749999999998,222.33849999999995,222.33849999999995,222.33949999999996,222.33949999999996,222.34049999999996,222.34049999999996,222.34149999999997,222.34149999999997,222.34249999999997,222.34249999999997,222.34349999999998,222.34349999999998,222.34449999999998,222.34449999999998,222.3455,222.3455,222.34649999999996,222.34649999999996,222.34749999999997,222.34749999999997,222.34849999999997,222.34849999999997,222.34949999999998,222.34949999999998,222.35049999999998,222.35049999999998,222.3515,222.3515,222.3525,222.3525,222.35349999999997,222.35349999999997,222.35449999999994,222.35449999999994,222.35549999999995,222.35549999999995,222.35649999999995,222.35649999999995,222.35749999999996,222.35749999999996,222.35849999999996,222.35849999999996,222.35949999999997,222.35949999999997,222.36049999999997,222.36049999999997,222.36149999999995,222.36149999999995,222.36249999999995,222.36249999999995,222.36349999999996,222.36349999999996,222.36449999999996,222.36449999999996,222.36549999999997,222.36549999999997,222.36649999999997,222.36649999999997,222.36749999999998,222.36749999999998,222.36849999999998,222.36849999999998,222.36949999999996,222.36949999999996,222.37049999999996,222.37049999999996,222.37149999999997,222.37149999999997,222.37249999999997,222.37249999999997,222.37349999999998,222.37349999999998,222.37449999999998,222.37449999999998,222.3755,222.3755,222.37649999999996,222.37649999999996,222.37749999999997,222.37749999999997,222.37849999999997,222.37849999999997,222.37949999999998,222.37949999999998,222.38049999999998,222.38049999999998,222.3815,222.3815,222.38249999999996,222.38249999999996,222.38349999999997,222.38349999999997,222.38449999999995,222.38449999999995,222.38549999999995,222.38549999999995,222.38649999999996,222.38649999999996,222.38749999999996,222.38749999999996,222.38849999999996,222.38849999999996,222.38949999999997,222.38949999999997,222.39049999999997,222.39049999999997,222.39149999999995,222.39149999999995,222.39249999999996,222.39249999999996,222.39349999999996,222.39349999999996,222.39449999999997,222.39449999999997,222.39549999999997,222.39549999999997,222.39649999999997,222.39649999999997,222.39749999999998,222.39749999999998,222.39849999999998,222.39849999999998,222.39949999999996,222.39949999999996,222.40049999999997,222.40049999999997,222.40149999999997,222.40149999999997,222.40249999999997,222.40249999999997,222.40349999999998,222.40349999999998,222.40449999999998,222.40449999999998,222.4055,222.4055,222.40649999999997,222.40649999999997,222.40749999999997,222.40749999999997,222.40849999999998,222.40849999999998,222.40949999999998,222.40949999999998,222.41049999999996,222.41049999999996,222.41149999999996,222.41149999999996,222.41249999999997,222.41249999999997,222.41349999999997,222.41349999999997,222.41449999999995,222.41449999999995,222.41549999999995,222.41549999999995,222.41649999999996,222.41649999999996,222.41749999999996,222.41749999999996,222.41849999999997,222.41849999999997,222.41949999999997,222.41949999999997,222.42049999999998,222.42049999999998,222.42149999999998,222.42149999999998,222.42249999999996,222.42249999999996,222.42349999999996,222.42349999999996,222.42449999999997,222.42449999999997,222.42549999999997,222.42549999999997,222.42649999999998,222.42649999999998,222.42749999999998,222.42749999999998,222.42849999999999,222.42849999999999,222.42949999999996,222.42949999999996,222.43049999999997,222.43049999999997,222.43149999999997,222.43149999999997,222.43249999999998,222.43249999999998,222.43349999999998,222.43349999999998,222.43449999999999,222.43449999999999,222.4355,222.4355,222.4365,222.4365,222.43749999999994,222.43749999999994,222.43849999999995,222.43849999999995,222.43949999999995,222.43949999999995,222.44049999999996,222.44049999999996,222.44149999999996,222.44149999999996,222.44249999999997,222.44249999999997,222.44349999999997,222.44349999999997,222.44449999999995,222.44449999999995,222.44549999999995,222.44549999999995,222.44649999999996,222.44649999999996,222.44749999999996,222.44749999999996,222.44849999999997,222.44849999999997,222.44949999999997,222.44949999999997,222.45049999999998,222.45049999999998,222.45149999999998,222.45149999999998,222.45249999999996,222.45249999999996,222.45349999999996,222.45349999999996,222.45449999999997,222.45449999999997,222.45549999999997,222.45549999999997,222.45649999999998,222.45649999999998,222.45749999999998,222.45749999999998,222.4585,222.4585,222.45949999999996,222.45949999999996,222.46049999999997,222.46049999999997,222.46149999999997,222.46149999999997,222.46249999999998,222.46249999999998,222.46349999999998,222.46349999999998,222.4645,222.4645,222.46549999999996,222.46549999999996,222.46649999999997,222.46649999999997,222.46749999999994,222.46749999999994,222.46849999999995,222.46849999999995,222.46949999999995,222.46949999999995,222.47049999999996,222.47049999999996,222.47149999999996,222.47149999999996,222.47249999999997,222.47249999999997,222.47349999999997,222.47349999999997,222.47449999999998,222.47449999999998,222.47549999999995,222.47549999999995,222.47649999999996,222.47649999999996,222.47749999999996,222.47749999999996,222.47849999999997,222.47849999999997,222.47949999999997,222.47949999999997,222.48049999999998,222.48049999999998,222.48149999999998,222.48149999999998,222.48249999999996,222.48249999999996,222.48349999999996,222.48349999999996,222.48449999999997,222.48449999999997,222.48549999999997,222.48549999999997,222.48649999999998,222.48649999999998,222.48749999999998,222.48749999999998,222.4885,222.4885,222.4895,222.4895,222.49049999999997,222.49049999999997,222.49149999999997,222.49149999999997,222.49249999999998,222.49249999999998,222.49349999999995,222.49349999999995,222.49449999999996,222.49449999999996,222.49549999999996,222.49549999999996,222.49649999999997,222.49649999999997,222.49749999999995,222.49749999999995,222.49849999999995,222.49849999999995,222.49949999999995,222.49949999999995,222.50049999999996,222.50049999999996,222.50149999999996,222.50149999999996,222.50249999999997,222.50249999999997,222.50349999999997,222.50349999999997,222.50449999999998,222.50449999999998,222.50549999999996,222.50549999999996,222.50649999999996,222.50649999999996,222.50749999999996,222.50749999999996,222.50849999999997,222.50849999999997,222.50949999999997,222.50949999999997,222.51049999999998,222.51049999999998,222.51149999999998,222.51149999999998,222.51249999999996,222.51249999999996,222.51349999999996,222.51349999999996,222.51449999999997,222.51449999999997,222.51549999999997,222.51549999999997,222.51649999999998,222.51649999999998,222.51749999999998,222.51749999999998,222.5185,222.5185,222.5195,222.5195,222.52049999999994,222.52049999999994,222.52149999999995,222.52149999999995,222.52249999999995,222.52249999999995,222.52349999999996,222.52349999999996,222.52449999999996,222.52449999999996,222.52549999999997,222.52549999999997,222.52649999999997,222.52649999999997,222.52749999999997,222.52749999999997,222.52849999999995,222.52849999999995,222.52949999999996,222.52949999999996,222.53049999999996,222.53049999999996,222.53149999999997,222.53149999999997,222.53249999999997,222.53249999999997,222.53349999999998,222.53349999999998,222.53449999999998,222.53449999999998,222.53549999999996,222.53549999999996,222.53649999999996,222.53649999999996,222.53749999999997,222.53749999999997,222.53849999999997,222.53849999999997,222.53949999999998,222.53949999999998,222.54049999999998,222.54049999999998,222.54149999999998,222.54149999999998,222.5425,222.5425,222.54349999999997,222.54349999999997,222.54449999999997,222.54449999999997,222.54549999999998,222.54549999999998,222.54649999999998,222.54649999999998,222.54749999999999,222.54749999999999,222.54849999999996,222.54849999999996,222.54949999999997,222.54949999999997,222.55049999999994,222.55049999999994,222.55149999999995,222.55149999999995,222.55249999999995,222.55249999999995,222.55349999999996,222.55349999999996,222.55449999999996,222.55449999999996,222.55549999999997,222.55549999999997,222.55649999999997,222.55649999999997,222.55749999999998,222.55749999999998,222.55849999999995,222.55849999999995,222.55949999999996,222.55949999999996,222.56049999999996,222.56049999999996,222.56149999999997,222.56149999999997,222.56249999999997,222.56249999999997,222.56349999999998,222.56349999999998,222.56449999999998,222.56449999999998,222.5655,222.5655,222.56649999999996,222.56649999999996,222.56749999999997,222.56749999999997,222.56849999999997,222.56849999999997,222.56949999999998,222.56949999999998,222.57049999999998,222.57049999999998,222.5715,222.5715,222.5725,222.5725,222.57349999999997,222.57349999999997,222.57449999999997,222.57449999999997,222.57549999999998,222.57549999999998,222.57649999999995,222.57649999999995,222.57749999999996,222.57749999999996,222.57849999999996,222.57849999999996,222.57949999999997,222.57949999999997,222.58049999999997,222.58049999999997,222.58149999999995,222.58149999999995,222.58249999999995,222.58249999999995,222.58349999999996,222.58349999999996,222.58449999999996,222.58449999999996,222.58549999999997,222.58549999999997,222.58649999999997,222.58649999999997,222.58749999999998,222.58749999999998,222.58849999999995,222.58849999999995,222.58949999999996,222.58949999999996,222.59049999999996,222.59049999999996,222.59149999999997,222.59149999999997,222.59249999999997,222.59249999999997,222.59349999999998,222.59349999999998,222.59449999999998,222.59449999999998,222.5955,222.5955,222.59649999999996,222.59649999999996,222.59749999999997,222.59749999999997,222.59849999999997,222.59849999999997,222.59949999999998,222.59949999999998,222.60049999999998,222.60049999999998,222.6015,222.6015,222.6025,222.6025,222.60349999999997,222.60349999999997,222.60449999999994,222.60449999999994,222.60549999999995,222.60549999999995,222.60649999999995,222.60649999999995,222.60749999999996,222.60749999999996,222.60849999999996,222.60849999999996,222.60949999999997,222.60949999999997,222.61049999999997,222.61049999999997,222.61149999999995,222.61149999999995,222.61249999999995,222.61249999999995,222.61349999999996,222.61349999999996,222.61449999999996,222.61449999999996,222.61549999999997,222.61549999999997,222.61649999999997,222.61649999999997,222.61749999999998,222.61749999999998,222.61849999999998,222.61849999999998,222.61949999999996,222.61949999999996,222.62049999999996,222.62049999999996,222.62149999999997,222.62149999999997,222.62249999999997,222.62249999999997,222.62349999999998,222.62349999999998,222.62449999999998,222.62449999999998,222.6255,222.6255,222.62649999999996,222.62649999999996,222.62749999999997,222.62749999999997,222.62849999999997,222.62849999999997,222.62949999999998,222.62949999999998,222.63049999999998,222.63049999999998,222.63149999999996,222.63149999999996,222.63249999999996,222.63249999999996,222.63349999999997,222.63349999999997,222.63449999999995,222.63449999999995,222.63549999999995,222.63549999999995,222.63649999999996,222.63649999999996,222.63749999999996,222.63749999999996,222.63849999999996,222.63849999999996,222.63949999999997,222.63949999999997,222.64049999999997,222.64049999999997,222.64149999999995,222.64149999999995,222.64249999999996,222.64249999999996,222.64349999999996,222.64349999999996,222.64449999999997,222.64449999999997,222.64549999999997,222.64549999999997,222.64649999999997,222.64649999999997,222.64749999999998,222.64749999999998,222.64849999999998,222.64849999999998,222.64949999999996,222.64949999999996,222.65049999999997,222.65049999999997,222.65149999999997,222.65149999999997,222.65249999999997,222.65249999999997,222.65349999999998,222.65349999999998,222.65449999999998,222.65449999999998,222.6555,222.6555,222.65649999999997,222.65649999999997,222.65749999999997,222.65749999999997,222.65849999999998,222.65849999999998,222.65949999999995,222.65949999999995,222.66049999999996,222.66049999999996,222.66149999999996,222.66149999999996,222.66249999999997,222.66249999999997,222.66349999999997,222.66349999999997,222.66449999999995,222.66449999999995,222.66549999999995,222.66549999999995,222.66649999999996,222.66649999999996,222.66749999999996,222.66749999999996,222.66849999999997,222.66849999999997,222.66949999999997,222.66949999999997,222.67049999999998,222.67049999999998,222.67149999999998,222.67149999999998,222.67249999999996,222.67249999999996,222.67349999999996,222.67349999999996,222.67449999999997,222.67449999999997,222.67549999999997,222.67549999999997,222.67649999999998,222.67649999999998,222.67749999999998,222.67749999999998,222.67849999999999,222.67849999999999,222.67949999999996,222.67949999999996,222.68049999999997,222.68049999999997,222.68149999999997,222.68149999999997,222.68249999999998,222.68249999999998,222.68349999999998,222.68349999999998,222.68449999999999,222.68449999999999,222.6855,222.6855,222.6865,222.6865,222.68749999999994,222.68749999999994,222.68849999999995,222.68849999999995,222.68949999999995,222.68949999999995,222.69049999999996,222.69049999999996,222.69149999999996,222.69149999999996,222.69249999999997,222.69249999999997,222.69349999999997,222.69349999999997,222.69449999999995,222.69449999999995,222.69549999999995,222.69549999999995,222.69649999999996,222.69649999999996,222.69749999999996,222.69749999999996,222.69849999999997,222.69849999999997,222.69949999999997,222.69949999999997,222.70049999999998,222.70049999999998,222.70149999999998,222.70149999999998,222.70249999999996,222.70249999999996,222.70349999999996,222.70349999999996,222.70449999999997,222.70449999999997,222.70549999999997,222.70549999999997,222.70649999999998,222.70649999999998,222.70749999999998,222.70749999999998,222.7085,222.7085,222.70949999999996,222.70949999999996,222.71049999999997,222.71049999999997,222.71149999999997,222.71149999999997,222.71249999999998,222.71249999999998,222.71349999999998,222.71349999999998,222.7145,222.7145,222.71549999999996,222.71549999999996,222.71649999999997,222.71649999999997,222.71749999999994,222.71749999999994,222.71849999999995,222.71849999999995,222.71949999999995,222.71949999999995,222.72049999999996,222.72049999999996,222.72149999999996,222.72149999999996,222.72249999999997,222.72249999999997,222.72349999999997,222.72349999999997,222.72449999999998,222.72449999999998,222.72549999999995,222.72549999999995,222.72649999999996,222.72649999999996,222.72749999999996,222.72749999999996,222.72849999999997,222.72849999999997,222.72949999999997,222.72949999999997,222.73049999999998,222.73049999999998,222.73149999999998,222.73149999999998,222.73249999999996,222.73249999999996,222.73349999999996,222.73349999999996,222.73449999999997,222.73449999999997,222.73549999999997,222.73549999999997,222.73649999999998,222.73649999999998,222.73749999999998,222.73749999999998,222.7385,222.7385,222.7395,222.7395,222.74049999999997,222.74049999999997,222.74149999999997,222.74149999999997,222.74249999999995,222.74249999999995,222.74349999999995,222.74349999999995,222.74449999999996,222.74449999999996,222.74549999999996,222.74549999999996,222.74649999999997,222.74649999999997,222.74749999999995,222.74749999999995,222.74849999999995,222.74849999999995,222.74949999999995,222.74949999999995,222.75049999999996,222.75049999999996,222.75149999999996,222.75149999999996,222.75249999999997,222.75249999999997,222.75349999999997,222.75349999999997,222.75449999999998,222.75449999999998,222.75549999999996,222.75549999999996,222.75649999999996,222.75649999999996,222.75749999999996,222.75749999999996,222.75849999999997,222.75849999999997,222.75949999999997,222.75949999999997,222.76049999999998,222.76049999999998,222.76149999999998,222.76149999999998,222.7625,222.7625,222.76349999999996,222.76349999999996,222.76449999999997,222.76449999999997,222.76549999999997,222.76549999999997,222.76649999999998,222.76649999999998,222.76749999999998,222.76749999999998,222.7685,222.7685,222.7695,222.7695,222.77049999999994,222.77049999999994,222.77149999999995,222.77149999999995,222.77249999999995,222.77249999999995,222.77349999999996,222.77349999999996,222.77449999999996,222.77449999999996,222.77549999999997,222.77549999999997,222.77649999999997,222.77649999999997,222.77749999999997,222.77749999999997,222.77849999999995,222.77849999999995,222.77949999999996,222.77949999999996,222.78049999999996,222.78049999999996,222.78149999999997,222.78149999999997,222.78249999999997,222.78249999999997,222.78349999999998,222.78349999999998,222.78449999999998,222.78449999999998,222.78549999999996,222.78549999999996,222.78649999999996,222.78649999999996,222.78749999999997,222.78749999999997,222.78849999999997,222.78849999999997,222.78949999999998,222.78949999999998,222.79049999999998,222.79049999999998,222.79149999999998,222.79149999999998,222.7925,222.7925,222.79349999999997,222.79349999999997,222.79449999999997,222.79449999999997,222.79549999999998,222.79549999999998,222.79649999999998,222.79649999999998,222.79749999999999,222.79749999999999,222.79849999999996,222.79849999999996,222.79949999999997,222.79949999999997,222.80049999999994,222.80049999999994,222.80149999999995,222.80149999999995,222.80249999999995,222.80249999999995,222.80349999999996,222.80349999999996,222.80449999999996,222.80449999999996,222.80549999999997,222.80549999999997,222.80649999999997,222.80649999999997,222.80749999999998,222.80749999999998,222.80849999999995,222.80849999999995,222.80949999999996,222.80949999999996,222.81049999999996,222.81049999999996,222.81149999999997,222.81149999999997,222.81249999999997,222.81249999999997,222.81349999999998,222.81349999999998,222.81449999999998,222.81449999999998,222.8155,222.8155,222.81649999999996,222.81649999999996,222.81749999999997,222.81749999999997,222.81849999999997,222.81849999999997,222.81949999999998,222.81949999999998,222.82049999999998,222.82049999999998,222.8215,222.8215,222.8225,222.8225,222.82349999999997,222.82349999999997,222.82449999999997,222.82449999999997,222.82549999999995,222.82549999999995,222.82649999999995,222.82649999999995,222.82749999999996,222.82749999999996,222.82849999999996,222.82849999999996,222.82949999999997,222.82949999999997,222.83049999999997,222.83049999999997,222.83149999999995,222.83149999999995,222.83249999999995,222.83249999999995,222.83349999999996,222.83349999999996,222.83449999999996,222.83449999999996,222.83549999999997,222.83549999999997,222.83649999999997,222.83649999999997,222.83749999999998,222.83749999999998,222.83849999999995,222.83849999999995,222.83949999999996,222.83949999999996,222.84049999999996,222.84049999999996,222.84149999999997,222.84149999999997,222.84249999999997,222.84249999999997,222.84349999999998,222.84349999999998,222.84449999999998,222.84449999999998,222.8455,222.8455,222.84649999999996,222.84649999999996,222.84749999999997,222.84749999999997,222.84849999999997,222.84849999999997,222.84949999999998,222.84949999999998,222.85049999999998,222.85049999999998,222.8515,222.8515,222.8525,222.8525,222.85349999999997,222.85349999999997,222.85449999999994,222.85449999999994,222.85549999999995,222.85549999999995,222.85649999999995,222.85649999999995,222.85749999999996,222.85749999999996,222.85849999999996,222.85849999999996,222.85949999999997,222.85949999999997,222.86049999999997,222.86049999999997,222.86149999999995,222.86149999999995,222.86249999999995,222.86249999999995,222.86349999999996,222.86349999999996,222.86449999999996,222.86449999999996,222.86549999999997,222.86549999999997,222.86649999999997,222.86649999999997,222.86749999999998,222.86749999999998,222.86849999999998,222.86849999999998,222.86949999999996,222.86949999999996,222.87049999999996,222.87049999999996,222.87149999999997,222.87149999999997,222.87249999999997,222.87249999999997,222.87349999999998,222.87349999999998,222.87449999999998,222.87449999999998,222.8755,222.8755,222.87649999999996,222.87649999999996,222.87749999999997,222.87749999999997,222.87849999999997,222.87849999999997,222.87949999999998,222.87949999999998,222.88049999999998,222.88049999999998,222.88149999999996,222.88149999999996,222.88249999999996,222.88249999999996,222.88349999999997,222.88349999999997,222.88449999999995,222.88449999999995,222.88549999999995,222.88549999999995,222.88649999999996,222.88649999999996,222.88749999999996,222.88749999999996,222.88849999999996,222.88849999999996,222.88949999999997,222.88949999999997,222.89049999999997,222.89049999999997,222.89149999999995,222.89149999999995,222.89249999999996,222.89249999999996,222.89349999999996,222.89349999999996,222.89449999999997,222.89449999999997,222.89549999999997,222.89549999999997,222.89649999999997,222.89649999999997,222.89749999999998,222.89749999999998,222.89849999999998,222.89849999999998,222.89949999999996,222.89949999999996,222.90049999999997,222.90049999999997,222.90149999999997,222.90149999999997,222.90249999999997,222.90249999999997,222.90349999999998,222.90349999999998,222.90449999999998,222.90449999999998,222.9055,222.9055,222.90649999999997,222.90649999999997,222.90749999999997,222.90749999999997,222.90849999999995,222.90849999999995,222.90949999999995,222.90949999999995,222.91049999999996,222.91049999999996,222.91149999999996,222.91149999999996,222.91249999999997,222.91249999999997,222.91349999999997,222.91349999999997,222.91449999999995,222.91449999999995,222.91549999999995,222.91549999999995,222.91649999999996,222.91649999999996,222.91749999999996,222.91749999999996,222.91849999999997,222.91849999999997,222.91949999999997,222.91949999999997,222.92049999999998,222.92049999999998,222.92149999999998,222.92149999999998,222.92249999999996,222.92249999999996,222.92349999999996,222.92349999999996,222.92449999999997,222.92449999999997,222.92549999999997,222.92549999999997,222.92649999999998,222.92649999999998,222.92749999999998,222.92749999999998,222.92849999999999,222.92849999999999,222.92949999999996,222.92949999999996,222.93049999999997,222.93049999999997,222.93149999999997,222.93149999999997,222.93249999999998,222.93249999999998,222.93349999999998,222.93349999999998,222.93449999999999,222.93449999999999,222.9355,222.9355,222.93649999999997,222.93649999999997,222.93749999999994,222.93749999999994,222.93849999999995,222.93849999999995,222.93949999999995,222.93949999999995,222.94049999999996,222.94049999999996,222.94149999999996,222.94149999999996,222.94249999999997,222.94249999999997,222.94349999999997,222.94349999999997,222.94449999999995,222.94449999999995,222.94549999999995,222.94549999999995,222.94649999999996,222.94649999999996,222.94749999999996,222.94749999999996,222.94849999999997,222.94849999999997,222.94949999999997,222.94949999999997,222.95049999999998,222.95049999999998,222.95149999999998,222.95149999999998,222.95249999999996,222.95249999999996,222.95349999999996,222.95349999999996,222.95449999999997,222.95449999999997,222.95549999999997,222.95549999999997,222.95649999999998,222.95649999999998,222.95749999999998,222.95749999999998,222.9585,222.9585,222.9595,222.9595,222.96049999999997,222.96049999999997,222.96149999999997,222.96149999999997,222.96249999999998,222.96249999999998,222.96349999999998,222.96349999999998,222.96449999999996,222.96449999999996,222.96549999999996,222.96549999999996,222.96649999999997,222.96649999999997,222.96749999999994,222.96749999999994,222.96849999999995,222.96849999999995,222.96949999999995,222.96949999999995,222.97049999999996,222.97049999999996,222.97149999999996,222.97149999999996,222.97249999999997,222.97249999999997,222.97349999999997,222.97349999999997,222.97449999999998,222.97449999999998,222.97549999999995,222.97549999999995,222.97649999999996,222.97649999999996,222.97749999999996,222.97749999999996,222.97849999999997,222.97849999999997,222.97949999999997,222.97949999999997,222.98049999999998,222.98049999999998,222.98149999999998,222.98149999999998,222.98249999999996,222.98249999999996,222.98349999999996,222.98349999999996,222.98449999999997,222.98449999999997,222.98549999999997,222.98549999999997,222.98649999999998,222.98649999999998,222.98749999999998,222.98749999999998,222.9885,222.9885,222.9895,222.9895,222.99049999999997,222.99049999999997,222.99149999999997,222.99149999999997,222.99249999999995,222.99249999999995,222.99349999999995,222.99349999999995,222.99449999999996,222.99449999999996,222.99549999999996,222.99549999999996,222.99649999999997,222.99649999999997,222.99749999999995,222.99749999999995,222.99849999999995,222.99849999999995,222.99949999999995,222.99949999999995,223.00049999999996,223.00049999999996,223.00149999999996,223.00149999999996,223.00249999999997,223.00249999999997,223.00349999999997,223.00349999999997,223.00449999999998,223.00449999999998,223.00549999999996,223.00549999999996,223.00649999999996,223.00649999999996,223.00749999999996,223.00749999999996,223.00849999999997,223.00849999999997,223.00949999999997,223.00949999999997,223.01049999999998,223.01049999999998,223.01149999999998,223.01149999999998,223.0125,223.0125,223.01349999999996,223.01349999999996,223.01449999999997,223.01449999999997,223.01549999999997,223.01549999999997,223.01649999999998,223.01649999999998,223.01749999999998,223.01749999999998,223.0185,223.0185,223.01949999999997,223.01949999999997,223.02049999999994,223.02049999999994,223.02149999999995,223.02149999999995,223.02249999999995,223.02249999999995,223.02349999999996,223.02349999999996,223.02449999999996,223.02449999999996,223.02549999999997,223.02549999999997,223.02649999999997,223.02649999999997,223.02749999999997,223.02749999999997,223.02849999999995,223.02849999999995,223.02949999999996,223.02949999999996,223.03049999999996,223.03049999999996,223.03149999999997,223.03149999999997,223.03249999999997,223.03249999999997,223.03349999999998,223.03349999999998,223.03449999999998,223.03449999999998,223.03549999999996,223.03549999999996,223.03649999999996,223.03649999999996,223.03749999999997,223.03749999999997,223.03849999999997,223.03849999999997,223.03949999999998,223.03949999999998,223.04049999999998,223.04049999999998,223.04149999999998,223.04149999999998,223.0425,223.0425,223.04349999999997,223.04349999999997,223.04449999999997,223.04449999999997,223.04549999999998,223.04549999999998,223.04649999999998,223.04649999999998,223.04749999999996,223.04749999999996,223.04849999999996,223.04849999999996,223.04949999999997,223.04949999999997,223.05049999999997,223.05049999999997,223.05149999999995,223.05149999999995,223.05249999999995,223.05249999999995,223.05349999999996,223.05349999999996,223.05449999999996,223.05449999999996,223.05549999999997,223.05549999999997,223.05649999999997,223.05649999999997,223.05749999999998,223.05749999999998,223.05849999999995,223.05849999999995,223.05949999999996,223.05949999999996,223.06049999999996,223.06049999999996,223.06149999999997,223.06149999999997,223.06249999999997,223.06249999999997,223.06349999999998,223.06349999999998,223.06449999999998,223.06449999999998,223.0655,223.0655,223.06649999999996,223.06649999999996,223.06749999999997,223.06749999999997,223.06849999999997,223.06849999999997,223.06949999999998,223.06949999999998,223.07049999999998,223.07049999999998,223.0715,223.0715,223.0725,223.0725,223.07349999999997,223.07349999999997,223.07449999999997,223.07449999999997,223.07549999999995,223.07549999999995,223.07649999999995,223.07649999999995,223.07749999999996,223.07749999999996,223.07849999999996,223.07849999999996,223.07949999999997,223.07949999999997,223.08049999999997,223.08049999999997,223.08149999999995,223.08149999999995,223.08249999999995,223.08249999999995,223.08349999999996,223.08349999999996,223.08449999999996,223.08449999999996,223.08549999999997,223.08549999999997,223.08649999999997,223.08649999999997,223.08749999999998,223.08749999999998,223.08849999999995,223.08849999999995,223.08949999999996,223.08949999999996,223.09049999999996,223.09049999999996,223.09149999999997,223.09149999999997,223.09249999999997,223.09249999999997,223.09349999999998,223.09349999999998,223.09449999999998,223.09449999999998,223.0955,223.0955,223.09649999999996,223.09649999999996,223.09749999999997,223.09749999999997,223.09849999999997,223.09849999999997,223.09949999999998,223.09949999999998,223.10049999999998,223.10049999999998,223.1015,223.1015,223.10249999999996,223.10249999999996,223.10349999999997,223.10349999999997,223.10449999999994,223.10449999999994,223.10549999999995,223.10549999999995,223.10649999999995,223.10649999999995,223.10749999999996,223.10749999999996,223.10849999999996,223.10849999999996,223.10949999999997,223.10949999999997,223.11049999999997,223.11049999999997,223.11149999999995,223.11149999999995,223.11249999999995,223.11249999999995,223.11349999999996,223.11349999999996,223.11449999999996,223.11449999999996,223.11549999999997,223.11549999999997,223.11649999999997,223.11649999999997,223.11749999999998,223.11749999999998,223.11849999999998,223.11849999999998,223.11949999999996,223.11949999999996,223.12049999999996,223.12049999999996,223.12149999999997,223.12149999999997,223.12249999999997,223.12249999999997,223.12349999999998,223.12349999999998,223.12449999999998,223.12449999999998,223.1255,223.1255,223.12649999999996,223.12649999999996,223.12749999999997,223.12749999999997,223.12849999999997,223.12849999999997,223.12949999999998,223.12949999999998,223.13049999999996,223.13049999999996,223.13149999999996,223.13149999999996,223.13249999999996,223.13249999999996,223.13349999999997,223.13349999999997,223.13449999999995,223.13449999999995,223.13549999999995,223.13549999999995,223.13649999999996,223.13649999999996,223.13749999999996,223.13749999999996,223.13849999999996,223.13849999999996,223.13949999999997,223.13949999999997,223.14049999999997,223.14049999999997,223.14149999999995,223.14149999999995,223.14249999999996,223.14249999999996,223.14349999999996,223.14349999999996,223.14449999999997,223.14449999999997,223.14549999999997,223.14549999999997,223.14649999999997,223.14649999999997,223.14749999999998,223.14749999999998,223.14849999999998,223.14849999999998,223.14949999999996,223.14949999999996,223.15049999999997,223.15049999999997,223.15149999999997,223.15149999999997,223.15249999999997,223.15249999999997,223.15349999999998,223.15349999999998,223.15449999999998,223.15449999999998,223.1555,223.1555,223.1565,223.1565,223.15749999999997,223.15749999999997,223.15849999999995,223.15849999999995,223.15949999999995,223.15949999999995,223.16049999999996,223.16049999999996,223.16149999999996,223.16149999999996,223.16249999999997,223.16249999999997,223.16349999999997,223.16349999999997,223.16449999999995,223.16449999999995,223.16549999999995,223.16549999999995,223.16649999999996,223.16649999999996,223.16749999999996,223.16749999999996,223.16849999999997,223.16849999999997,223.16949999999997,223.16949999999997,223.17049999999998,223.17049999999998,223.17149999999998,223.17149999999998,223.17249999999996,223.17249999999996,223.17349999999996,223.17349999999996,223.17449999999997,223.17449999999997,223.17549999999997,223.17549999999997,223.17649999999998,223.17649999999998,223.17749999999998,223.17749999999998,223.17849999999999,223.17849999999999,223.17949999999996,223.17949999999996,223.18049999999997,223.18049999999997,223.18149999999997,223.18149999999997,223.18249999999998,223.18249999999998,223.18349999999998,223.18349999999998,223.18449999999999,223.18449999999999,223.18549999999996,223.18549999999996,223.18649999999997,223.18649999999997,223.18749999999994,223.18749999999994,223.18849999999995,223.18849999999995,223.18949999999995,223.18949999999995,223.19049999999996,223.19049999999996,223.19149999999996,223.19149999999996,223.19249999999997,223.19249999999997,223.19349999999997,223.19349999999997,223.19449999999995,223.19449999999995,223.19549999999995,223.19549999999995,223.19649999999996,223.19649999999996,223.19749999999996,223.19749999999996,223.19849999999997,223.19849999999997,223.19949999999997,223.19949999999997,223.20049999999998,223.20049999999998,223.20149999999998,223.20149999999998,223.20249999999996,223.20249999999996,223.20349999999996,223.20349999999996,223.20449999999997,223.20449999999997,223.20549999999997,223.20549999999997,223.20649999999998,223.20649999999998,223.20749999999998,223.20749999999998,223.2085,223.2085,223.2095,223.2095,223.21049999999997,223.21049999999997,223.21149999999997,223.21149999999997,223.21249999999998,223.21249999999998,223.21349999999995,223.21349999999995,223.21449999999996,223.21449999999996,223.21549999999996,223.21549999999996,223.21649999999997,223.21649999999997,223.21749999999994,223.21749999999994,223.21849999999995,223.21849999999995,223.21949999999995,223.21949999999995,223.22049999999996,223.22049999999996,223.22149999999996,223.22149999999996,223.22249999999997,223.22249999999997,223.22349999999997,223.22349999999997,223.22449999999998,223.22449999999998,223.22549999999995,223.22549999999995,223.22649999999996,223.22649999999996,223.22749999999996,223.22749999999996,223.22849999999997,223.22849999999997,223.22949999999997,223.22949999999997,223.23049999999998,223.23049999999998,223.23149999999998,223.23149999999998,223.23249999999996,223.23249999999996,223.23349999999996,223.23349999999996,223.23449999999997,223.23449999999997,223.23549999999997,223.23549999999997,223.23649999999998,223.23649999999998,223.23749999999998,223.23749999999998,223.2385,223.2385,223.2395,223.2395,223.24049999999997,223.24049999999997,223.24149999999995,223.24149999999995,223.24249999999995,223.24249999999995,223.24349999999995,223.24349999999995,223.24449999999996,223.24449999999996,223.24549999999996,223.24549999999996,223.24649999999997,223.24649999999997,223.24749999999997,223.24749999999997,223.24849999999995,223.24849999999995,223.24949999999995,223.24949999999995,223.25049999999996,223.25049999999996,223.25149999999996,223.25149999999996,223.25249999999997,223.25249999999997,223.25349999999997,223.25349999999997,223.25449999999998,223.25449999999998,223.25549999999996,223.25549999999996,223.25649999999996,223.25649999999996,223.25749999999996,223.25749999999996,223.25849999999997,223.25849999999997,223.25949999999997,223.25949999999997,223.26049999999998,223.26049999999998,223.26149999999998,223.26149999999998,223.2625,223.2625,223.26349999999996,223.26349999999996,223.26449999999997,223.26449999999997,223.26549999999997,223.26549999999997,223.26649999999998,223.26649999999998,223.26749999999998,223.26749999999998,223.2685,223.2685,223.26949999999997,223.26949999999997,223.27049999999994,223.27049999999994,223.27149999999995,223.27149999999995,223.27249999999995,223.27249999999995,223.27349999999996,223.27349999999996,223.27449999999996,223.27449999999996,223.27549999999997,223.27549999999997,223.27649999999997,223.27649999999997,223.27749999999997,223.27749999999997,223.27849999999995,223.27849999999995,223.27949999999996,223.27949999999996,223.28049999999996,223.28049999999996,223.28149999999997,223.28149999999997,223.28249999999997,223.28249999999997,223.28349999999998,223.28349999999998,223.28449999999998,223.28449999999998,223.28549999999996,223.28549999999996,223.28649999999996,223.28649999999996,223.28749999999997,223.28749999999997,223.28849999999997,223.28849999999997,223.28949999999998,223.28949999999998,223.29049999999998,223.29049999999998,223.29149999999998,223.29149999999998,223.2925,223.2925,223.29349999999997,223.29349999999997,223.29449999999997,223.29449999999997,223.29549999999998,223.29549999999998,223.29649999999995,223.29649999999995,223.29749999999996,223.29749999999996,223.29849999999996,223.29849999999996,223.29949999999997,223.29949999999997,223.30049999999997,223.30049999999997,223.30149999999995,223.30149999999995,223.30249999999995,223.30249999999995,223.30349999999996,223.30349999999996,223.30449999999996,223.30449999999996,223.30549999999997,223.30549999999997,223.30649999999997,223.30649999999997,223.30749999999998,223.30749999999998,223.30849999999995,223.30849999999995,223.30949999999996,223.30949999999996,223.31049999999996,223.31049999999996,223.31149999999997,223.31149999999997,223.31249999999997,223.31249999999997,223.31349999999998,223.31349999999998,223.31449999999998,223.31449999999998,223.3155,223.3155,223.31649999999996,223.31649999999996,223.31749999999997,223.31749999999997,223.31849999999997,223.31849999999997,223.31949999999998,223.31949999999998,223.32049999999998,223.32049999999998,223.3215,223.3215,223.3225,223.3225,223.32349999999997,223.32349999999997,223.32449999999994,223.32449999999994,223.32549999999995,223.32549999999995,223.32649999999995,223.32649999999995,223.32749999999996,223.32749999999996,223.32849999999996,223.32849999999996,223.32949999999997,223.32949999999997,223.33049999999997,223.33049999999997,223.33149999999995,223.33149999999995,223.33249999999995,223.33249999999995,223.33349999999996,223.33349999999996,223.33449999999996,223.33449999999996,223.33549999999997,223.33549999999997,223.33649999999997,223.33649999999997,223.33749999999998,223.33749999999998,223.33849999999995,223.33849999999995,223.33949999999996,223.33949999999996,223.34049999999996,223.34049999999996,223.34149999999997,223.34149999999997,223.34249999999997,223.34249999999997,223.34349999999998,223.34349999999998,223.34449999999998,223.34449999999998,223.3455,223.3455,223.34649999999996,223.34649999999996,223.34749999999997,223.34749999999997,223.34849999999997,223.34849999999997,223.34949999999998,223.34949999999998,223.35049999999998,223.35049999999998,223.3515,223.3515,223.35249999999996,223.35249999999996,223.35349999999997,223.35349999999997,223.35449999999994,223.35449999999994,223.35549999999995,223.35549999999995,223.35649999999995,223.35649999999995,223.35749999999996,223.35749999999996,223.35849999999996,223.35849999999996,223.35949999999997,223.35949999999997,223.36049999999997,223.36049999999997,223.36149999999995,223.36149999999995,223.36249999999995,223.36249999999995,223.36349999999996,223.36349999999996,223.36449999999996,223.36449999999996,223.36549999999997,223.36549999999997,223.36649999999997,223.36649999999997,223.36749999999998,223.36749999999998,223.36849999999998,223.36849999999998,223.36949999999996,223.36949999999996,223.37049999999996,223.37049999999996,223.37149999999997,223.37149999999997,223.37249999999997,223.37249999999997,223.37349999999998,223.37349999999998,223.37449999999998,223.37449999999998,223.3755,223.3755,223.37649999999996,223.37649999999996,223.37749999999997,223.37749999999997,223.37849999999997,223.37849999999997,223.37949999999995,223.37949999999995,223.38049999999996,223.38049999999996,223.38149999999996,223.38149999999996,223.38249999999996,223.38249999999996,223.38349999999997,223.38349999999997,223.38449999999995,223.38449999999995,223.38549999999995,223.38549999999995,223.38649999999996,223.38649999999996,223.38749999999996,223.38749999999996,223.38849999999996,223.38849999999996,223.38949999999997,223.38949999999997,223.39049999999997,223.39049999999997,223.39149999999995,223.39149999999995,223.39249999999996,223.39249999999996,223.39349999999996,223.39349999999996,223.39449999999997,223.39449999999997,223.39549999999997,223.39549999999997,223.39649999999997,223.39649999999997,223.39749999999998,223.39749999999998,223.39849999999998,223.39849999999998,223.39949999999996,223.39949999999996,223.40049999999997,223.40049999999997,223.40149999999997,223.40149999999997,223.40249999999997,223.40249999999997,223.40349999999998,223.40349999999998,223.40449999999998,223.40449999999998,223.4055,223.4055,223.4065,223.4065,223.40749999999994,223.40749999999994,223.40849999999995,223.40849999999995,223.40949999999995,223.40949999999995,223.41049999999996,223.41049999999996,223.41149999999996,223.41149999999996,223.41249999999997,223.41249999999997,223.41349999999997,223.41349999999997,223.41449999999995,223.41449999999995,223.41549999999995,223.41549999999995,223.41649999999996,223.41649999999996,223.41749999999996,223.41749999999996,223.41849999999997,223.41849999999997,223.41949999999997,223.41949999999997,223.42049999999998,223.42049999999998,223.42149999999998,223.42149999999998,223.42249999999996,223.42249999999996,223.42349999999996,223.42349999999996,223.42449999999997,223.42449999999997,223.42549999999997,223.42549999999997,223.42649999999998,223.42649999999998,223.42749999999998,223.42749999999998,223.42849999999999,223.42849999999999,223.42949999999996,223.42949999999996,223.43049999999997,223.43049999999997,223.43149999999997,223.43149999999997,223.43249999999998,223.43249999999998,223.43349999999998,223.43349999999998,223.43449999999999,223.43449999999999,223.43549999999996,223.43549999999996,223.43649999999997,223.43649999999997,223.43749999999994,223.43749999999994,223.43849999999995,223.43849999999995,223.43949999999995,223.43949999999995,223.44049999999996,223.44049999999996,223.44149999999996,223.44149999999996,223.44249999999997,223.44249999999997,223.44349999999997,223.44349999999997,223.44449999999998,223.44449999999998,223.44549999999995,223.44549999999995,223.44649999999996,223.44649999999996,223.44749999999996,223.44749999999996,223.44849999999997,223.44849999999997,223.44949999999997,223.44949999999997,223.45049999999998,223.45049999999998,223.45149999999998,223.45149999999998,223.45249999999996,223.45249999999996,223.45349999999996,223.45349999999996,223.45449999999997,223.45449999999997,223.45549999999997,223.45549999999997,223.45649999999998,223.45649999999998,223.45749999999998,223.45749999999998,223.4585,223.4585,223.4595,223.4595,223.46049999999997,223.46049999999997,223.46149999999997,223.46149999999997,223.46249999999995,223.46249999999995,223.46349999999995,223.46349999999995,223.46449999999996,223.46449999999996,223.46549999999996,223.46549999999996,223.46649999999997,223.46649999999997,223.46749999999994,223.46749999999994,223.46849999999995,223.46849999999995,223.46949999999995,223.46949999999995,223.47049999999996,223.47049999999996,223.47149999999996,223.47149999999996,223.47249999999997,223.47249999999997,223.47349999999997,223.47349999999997,223.47449999999998,223.47449999999998,223.47549999999995,223.47549999999995,223.47649999999996,223.47649999999996,223.47749999999996,223.47749999999996,223.47849999999997,223.47849999999997,223.47949999999997,223.47949999999997,223.48049999999998,223.48049999999998,223.48149999999998,223.48149999999998,223.48249999999996,223.48249999999996,223.48349999999996,223.48349999999996,223.48449999999997,223.48449999999997,223.48549999999997,223.48549999999997,223.48649999999998,223.48649999999998,223.48749999999998,223.48749999999998,223.4885,223.4885,223.4895,223.4895,223.49049999999997,223.49049999999997,223.49149999999995,223.49149999999995,223.49249999999995,223.49249999999995,223.49349999999995,223.49349999999995,223.49449999999996,223.49449999999996,223.49549999999996,223.49549999999996,223.49649999999997,223.49649999999997,223.49749999999997,223.49749999999997,223.49849999999995,223.49849999999995,223.49949999999995,223.49949999999995,223.50049999999996,223.50049999999996,223.50149999999996,223.50149999999996,223.50249999999997,223.50249999999997,223.50349999999997,223.50349999999997,223.50449999999998,223.50449999999998,223.50549999999996,223.50549999999996,223.50649999999996,223.50649999999996,223.50749999999996,223.50749999999996,223.50849999999997,223.50849999999997,223.50949999999997,223.50949999999997,223.51049999999998,223.51049999999998,223.51149999999998,223.51149999999998,223.5125,223.5125,223.51349999999996,223.51349999999996,223.51449999999997,223.51449999999997,223.51549999999997,223.51549999999997,223.51649999999998,223.51649999999998,223.51749999999998,223.51749999999998,223.51849999999996,223.51849999999996,223.51949999999997,223.51949999999997,223.52049999999994,223.52049999999994,223.52149999999995,223.52149999999995,223.52249999999995,223.52249999999995,223.52349999999996,223.52349999999996,223.52449999999996,223.52449999999996,223.52549999999997,223.52549999999997,223.52649999999997,223.52649999999997,223.52749999999997,223.52749999999997,223.52849999999995,223.52849999999995,223.52949999999996,223.52949999999996,223.53049999999996,223.53049999999996,223.53149999999997,223.53149999999997,223.53249999999997,223.53249999999997,223.53349999999998,223.53349999999998,223.53449999999998,223.53449999999998,223.53549999999996,223.53549999999996,223.53649999999996,223.53649999999996,223.53749999999997,223.53749999999997,223.53849999999997,223.53849999999997,223.53949999999998,223.53949999999998,223.54049999999998,223.54049999999998,223.54149999999998,223.54149999999998,223.5425,223.5425,223.54349999999997,223.54349999999997,223.54449999999997,223.54449999999997,223.54549999999995,223.54549999999995,223.54649999999995,223.54649999999995,223.54749999999996,223.54749999999996,223.54849999999996,223.54849999999996,223.54949999999997,223.54949999999997,223.55049999999997,223.55049999999997,223.55149999999995,223.55149999999995,223.55249999999995,223.55249999999995,223.55349999999996,223.55349999999996,223.55449999999996,223.55449999999996,223.55549999999997,223.55549999999997,223.55649999999997,223.55649999999997,223.55749999999998,223.55749999999998,223.55849999999995,223.55849999999995,223.55949999999996,223.55949999999996,223.56049999999996,223.56049999999996,223.56149999999997,223.56149999999997,223.56249999999997,223.56249999999997,223.56349999999998,223.56349999999998,223.56449999999998,223.56449999999998,223.5655,223.5655,223.56649999999996,223.56649999999996,223.56749999999997,223.56749999999997,223.56849999999997,223.56849999999997,223.56949999999998,223.56949999999998,223.57049999999998,223.57049999999998,223.5715,223.5715,223.5725,223.5725,223.57349999999997,223.57349999999997,223.57449999999994,223.57449999999994,223.57549999999995,223.57549999999995,223.57649999999995,223.57649999999995,223.57749999999996,223.57749999999996,223.57849999999996,223.57849999999996,223.57949999999997,223.57949999999997,223.58049999999997,223.58049999999997,223.58149999999995,223.58149999999995,223.58249999999995,223.58249999999995,223.58349999999996,223.58349999999996,223.58449999999996,223.58449999999996,223.58549999999997,223.58549999999997,223.58649999999997,223.58649999999997,223.58749999999998,223.58749999999998,223.58849999999995,223.58849999999995,223.58949999999996,223.58949999999996,223.59049999999996,223.59049999999996,223.59149999999997,223.59149999999997,223.59249999999997,223.59249999999997,223.59349999999998,223.59349999999998,223.59449999999998,223.59449999999998,223.5955,223.5955,223.59649999999996,223.59649999999996,223.59749999999997,223.59749999999997,223.59849999999997,223.59849999999997,223.59949999999998,223.59949999999998,223.60049999999998,223.60049999999998,223.60149999999996,223.60149999999996,223.60249999999996,223.60249999999996,223.60349999999997,223.60349999999997,223.60449999999994,223.60449999999994,223.60549999999995,223.60549999999995,223.60649999999995,223.60649999999995,223.60749999999996,223.60749999999996,223.60849999999996,223.60849999999996,223.60949999999997,223.60949999999997,223.61049999999997,223.61049999999997,223.61149999999995,223.61149999999995,223.61249999999995,223.61249999999995,223.61349999999996,223.61349999999996,223.61449999999996,223.61449999999996,223.61549999999997,223.61549999999997,223.61649999999997,223.61649999999997,223.61749999999998,223.61749999999998,223.61849999999998,223.61849999999998,223.61949999999996,223.61949999999996,223.62049999999996,223.62049999999996,223.62149999999997,223.62149999999997,223.62249999999997,223.62249999999997,223.62349999999998,223.62349999999998,223.62449999999998,223.62449999999998,223.6255,223.6255,223.62649999999996,223.62649999999996,223.62749999999997,223.62749999999997,223.62849999999997,223.62849999999997,223.62949999999995,223.62949999999995,223.63049999999996,223.63049999999996,223.63149999999996,223.63149999999996,223.63249999999996,223.63249999999996,223.63349999999997,223.63349999999997,223.63449999999995,223.63449999999995,223.63549999999995,223.63549999999995,223.63649999999996,223.63649999999996,223.63749999999996,223.63749999999996,223.63849999999996,223.63849999999996,223.63949999999997,223.63949999999997,223.64049999999997,223.64049999999997,223.64149999999998,223.64149999999998,223.64249999999996,223.64249999999996,223.64349999999996,223.64349999999996,223.64449999999997,223.64449999999997,223.64549999999997,223.64549999999997,223.64649999999997,223.64649999999997,223.64749999999998,223.64749999999998,223.64849999999998,223.64849999999998,223.64949999999996,223.64949999999996,223.65049999999997,223.65049999999997,223.65149999999997,223.65149999999997,223.65249999999997,223.65249999999997,223.65349999999998,223.65349999999998,223.65449999999998,223.65449999999998,223.6555,223.6555,223.6565,223.6565,223.65749999999994,223.65749999999994,223.65849999999995,223.65849999999995,223.65949999999995,223.65949999999995,223.66049999999996,223.66049999999996,223.66149999999996,223.66149999999996,223.66249999999997,223.66249999999997,223.66349999999997,223.66349999999997,223.66449999999995,223.66449999999995,223.66549999999995,223.66549999999995,223.66649999999996,223.66649999999996,223.66749999999996,223.66749999999996,223.66849999999997,223.66849999999997,223.66949999999997,223.66949999999997,223.67049999999998,223.67049999999998,223.67149999999998,223.67149999999998,223.67249999999996,223.67249999999996,223.67349999999996,223.67349999999996,223.67449999999997,223.67449999999997,223.67549999999997,223.67549999999997,223.67649999999998,223.67649999999998,223.67749999999998,223.67749999999998,223.67849999999999,223.67849999999999,223.67949999999996,223.67949999999996,223.68049999999997,223.68049999999997,223.68149999999997,223.68149999999997,223.68249999999998,223.68249999999998,223.68349999999998,223.68349999999998,223.68449999999996,223.68449999999996,223.68549999999996,223.68549999999996,223.68649999999997,223.68649999999997,223.68749999999994,223.68749999999994,223.68849999999995,223.68849999999995,223.68949999999995,223.68949999999995,223.69049999999996,223.69049999999996,223.69149999999996,223.69149999999996,223.69249999999997,223.69249999999997,223.69349999999997,223.69349999999997,223.69449999999998,223.69449999999998,223.69549999999995,223.69549999999995,223.69649999999996,223.69649999999996,223.69749999999996,223.69749999999996,223.69849999999997,223.69849999999997,223.69949999999997,223.69949999999997,223.70049999999998,223.70049999999998,223.70149999999998,223.70149999999998,223.70249999999996,223.70249999999996,223.70349999999996,223.70349999999996,223.70449999999997,223.70449999999997,223.70549999999997,223.70549999999997,223.70649999999998,223.70649999999998,223.70749999999998,223.70749999999998,223.7085,223.7085,223.7095,223.7095,223.71049999999997,223.71049999999997,223.71149999999997,223.71149999999997,223.71249999999995,223.71249999999995,223.71349999999995,223.71349999999995,223.71449999999996,223.71449999999996,223.71549999999996,223.71549999999996,223.71649999999997,223.71649999999997,223.71749999999994,223.71749999999994,223.71849999999995,223.71849999999995,223.71949999999995,223.71949999999995,223.72049999999996,223.72049999999996,223.72149999999996,223.72149999999996,223.72249999999997,223.72249999999997,223.72349999999997,223.72349999999997,223.72449999999998,223.72449999999998,223.72549999999995,223.72549999999995,223.72649999999996,223.72649999999996,223.72749999999996,223.72749999999996,223.72849999999997,223.72849999999997,223.72949999999997,223.72949999999997,223.73049999999998,223.73049999999998,223.73149999999998,223.73149999999998,223.73249999999996,223.73249999999996,223.73349999999996,223.73349999999996,223.73449999999997,223.73449999999997,223.73549999999997,223.73549999999997,223.73649999999998,223.73649999999998,223.73749999999998,223.73749999999998,223.7385,223.7385,223.7395,223.7395,223.74049999999994,223.74049999999994,223.74149999999995,223.74149999999995,223.74249999999995,223.74249999999995,223.74349999999995,223.74349999999995,223.74449999999996,223.74449999999996,223.74549999999996,223.74549999999996,223.74649999999997,223.74649999999997,223.74749999999997,223.74749999999997,223.74849999999995,223.74849999999995,223.74949999999995,223.74949999999995,223.75049999999996,223.75049999999996,223.75149999999996,223.75149999999996,223.75249999999997,223.75249999999997,223.75349999999997,223.75349999999997,223.75449999999998,223.75449999999998,223.75549999999996,223.75549999999996,223.75649999999996,223.75649999999996,223.75749999999996,223.75749999999996,223.75849999999997,223.75849999999997,223.75949999999997,223.75949999999997,223.76049999999998,223.76049999999998,223.76149999999998,223.76149999999998,223.7625,223.7625,223.76349999999996,223.76349999999996,223.76449999999997,223.76449999999997,223.76549999999997,223.76549999999997,223.76649999999998,223.76649999999998,223.76749999999996,223.76749999999996,223.76849999999996,223.76849999999996,223.76949999999997,223.76949999999997,223.77049999999994,223.77049999999994,223.77149999999995,223.77149999999995,223.77249999999995,223.77249999999995,223.77349999999996,223.77349999999996,223.77449999999996,223.77449999999996,223.77549999999997,223.77549999999997,223.77649999999997,223.77649999999997,223.77749999999997,223.77749999999997,223.77849999999995,223.77849999999995,223.77949999999996,223.77949999999996,223.78049999999996,223.78049999999996,223.78149999999997,223.78149999999997,223.78249999999997,223.78249999999997,223.78349999999998,223.78349999999998,223.78449999999998,223.78449999999998,223.78549999999996,223.78549999999996,223.78649999999996,223.78649999999996,223.78749999999997,223.78749999999997,223.78849999999997,223.78849999999997,223.78949999999998,223.78949999999998,223.79049999999998,223.79049999999998,223.79149999999998,223.79149999999998,223.7925,223.7925,223.79349999999997,223.79349999999997,223.79449999999994,223.79449999999994,223.79549999999995,223.79549999999995,223.79649999999995,223.79649999999995,223.79749999999996,223.79749999999996,223.79849999999996,223.79849999999996,223.79949999999997,223.79949999999997,223.80049999999997,223.80049999999997,223.80149999999995,223.80149999999995,223.80249999999995,223.80249999999995,223.80349999999996,223.80349999999996,223.80449999999996,223.80449999999996,223.80549999999997,223.80549999999997,223.80649999999997,223.80649999999997,223.80749999999998,223.80749999999998,223.80849999999995,223.80849999999995,223.80949999999996,223.80949999999996,223.81049999999996,223.81049999999996,223.81149999999997,223.81149999999997,223.81249999999997,223.81249999999997,223.81349999999998,223.81349999999998,223.81449999999998,223.81449999999998,223.8155,223.8155,223.81649999999996,223.81649999999996,223.81749999999997,223.81749999999997,223.81849999999997,223.81849999999997,223.81949999999998,223.81949999999998,223.82049999999998,223.82049999999998,223.8215,223.8215,223.8225,223.8225,223.82349999999997,223.82349999999997,223.82449999999994,223.82449999999994,223.82549999999995,223.82549999999995,223.82649999999995,223.82649999999995,223.82749999999996,223.82749999999996,223.82849999999996,223.82849999999996,223.82949999999997,223.82949999999997,223.83049999999997,223.83049999999997,223.83149999999995,223.83149999999995,223.83249999999995,223.83249999999995,223.83349999999996,223.83349999999996,223.83449999999996,223.83449999999996,223.83549999999997,223.83549999999997,223.83649999999997,223.83649999999997,223.83749999999998,223.83749999999998,223.83849999999998,223.83849999999998,223.83949999999996,223.83949999999996,223.84049999999996,223.84049999999996,223.84149999999997,223.84149999999997,223.84249999999997,223.84249999999997,223.84349999999998,223.84349999999998,223.84449999999998,223.84449999999998,223.8455,223.8455,223.84649999999996,223.84649999999996,223.84749999999997,223.84749999999997,223.84849999999997,223.84849999999997,223.84949999999998,223.84949999999998,223.85049999999995,223.85049999999995,223.85149999999996,223.85149999999996,223.85249999999996,223.85249999999996,223.85349999999997,223.85349999999997,223.85449999999994,223.85449999999994,223.85549999999995,223.85549999999995,223.85649999999995,223.85649999999995,223.85749999999996,223.85749999999996,223.85849999999996,223.85849999999996,223.85949999999997,223.85949999999997,223.86049999999997,223.86049999999997,223.86149999999995,223.86149999999995,223.86249999999995,223.86249999999995,223.86349999999996,223.86349999999996,223.86449999999996,223.86449999999996,223.86549999999997,223.86549999999997,223.86649999999997,223.86649999999997,223.86749999999998,223.86749999999998,223.86849999999998,223.86849999999998,223.86949999999996,223.86949999999996,223.87049999999996,223.87049999999996,223.87149999999997,223.87149999999997,223.87249999999997,223.87249999999997,223.87349999999998,223.87349999999998,223.87449999999998,223.87449999999998,223.8755,223.8755,223.87649999999996,223.87649999999996,223.87749999999997,223.87749999999997,223.87849999999995,223.87849999999995,223.87949999999995,223.87949999999995,223.88049999999996,223.88049999999996,223.88149999999996,223.88149999999996,223.88249999999996,223.88249999999996,223.88349999999997,223.88349999999997,223.88449999999995,223.88449999999995,223.88549999999995,223.88549999999995,223.88649999999996,223.88649999999996,223.88749999999996,223.88749999999996,223.88849999999996,223.88849999999996,223.88949999999997,223.88949999999997,223.89049999999997,223.89049999999997,223.89149999999998,223.89149999999998,223.89249999999996,223.89249999999996,223.89349999999996,223.89349999999996,223.89449999999997,223.89449999999997,223.89549999999997,223.89549999999997,223.89649999999997,223.89649999999997,223.89749999999998,223.89749999999998,223.89849999999998,223.89849999999998,223.89949999999996,223.89949999999996,223.90049999999997,223.90049999999997,223.90149999999997,223.90149999999997,223.90249999999997,223.90249999999997,223.90349999999998,223.90349999999998,223.90449999999998,223.90449999999998,223.9055,223.9055,223.90649999999997,223.90649999999997,223.90749999999994,223.90749999999994,223.90849999999995,223.90849999999995,223.90949999999995,223.90949999999995,223.91049999999996,223.91049999999996,223.91149999999996,223.91149999999996,223.91249999999997,223.91249999999997,223.91349999999997,223.91349999999997,223.91449999999995,223.91449999999995,223.91549999999995,223.91549999999995,223.91649999999996,223.91649999999996,223.91749999999996,223.91749999999996,223.91849999999997,223.91849999999997,223.91949999999997,223.91949999999997,223.92049999999998,223.92049999999998,223.92149999999998,223.92149999999998,223.92249999999996,223.92249999999996,223.92349999999996,223.92349999999996,223.92449999999997,223.92449999999997,223.92549999999997,223.92549999999997,223.92649999999998,223.92649999999998,223.92749999999998,223.92749999999998,223.92849999999999,223.92849999999999,223.92949999999996,223.92949999999996,223.93049999999997,223.93049999999997,223.93149999999997,223.93149999999997,223.93249999999998,223.93249999999998,223.93349999999995,223.93349999999995,223.93449999999996,223.93449999999996,223.93549999999996,223.93549999999996,223.93649999999997,223.93649999999997,223.93749999999994,223.93749999999994,223.93849999999995,223.93849999999995,223.93949999999995,223.93949999999995,223.94049999999996,223.94049999999996,223.94149999999996,223.94149999999996,223.94249999999997,223.94249999999997,223.94349999999997,223.94349999999997,223.94449999999998,223.94449999999998,223.94549999999995,223.94549999999995,223.94649999999996,223.94649999999996,223.94749999999996,223.94749999999996,223.94849999999997,223.94849999999997,223.94949999999997,223.94949999999997,223.95049999999998,223.95049999999998,223.95149999999998,223.95149999999998,223.95249999999996,223.95249999999996,223.95349999999996,223.95349999999996,223.95449999999997,223.95449999999997,223.95549999999997,223.95549999999997,223.95649999999998,223.95649999999998,223.95749999999998,223.95749999999998,223.9585,223.9585,223.9595,223.9595,223.96049999999997,223.96049999999997,223.96149999999994,223.96149999999994,223.96249999999995,223.96249999999995,223.96349999999995,223.96349999999995,223.96449999999996,223.96449999999996,223.96549999999996,223.96549999999996,223.96649999999997,223.96649999999997,223.96749999999994,223.96749999999994,223.96849999999995,223.96849999999995,223.96949999999995,223.96949999999995,223.97049999999996,223.97049999999996,223.97149999999996,223.97149999999996,223.97249999999997,223.97249999999997,223.97349999999997,223.97349999999997,223.97449999999998,223.97449999999998,223.97549999999995,223.97549999999995,223.97649999999996,223.97649999999996,223.97749999999996,223.97749999999996,223.97849999999997,223.97849999999997,223.97949999999997,223.97949999999997,223.98049999999998,223.98049999999998,223.98149999999998,223.98149999999998,223.98249999999996,223.98249999999996,223.98349999999996,223.98349999999996,223.98449999999997,223.98449999999997,223.98549999999997,223.98549999999997,223.98649999999998,223.98649999999998,223.98749999999998,223.98749999999998,223.9885,223.9885,223.98949999999996,223.98949999999996,223.99049999999994,223.99049999999994,223.99149999999995,223.99149999999995,223.99249999999995,223.99249999999995,223.99349999999995,223.99349999999995,223.99449999999996,223.99449999999996,223.99549999999996,223.99549999999996,223.99649999999997,223.99649999999997,223.99749999999997,223.99749999999997,223.99849999999995,223.99849999999995,223.99949999999995,223.99949999999995,224.00049999999996,224.00049999999996,224.00149999999996,224.00149999999996,224.00249999999997,224.00249999999997,224.00349999999997,224.00349999999997,224.00449999999998,224.00449999999998,224.00549999999996,224.00549999999996,224.00649999999996,224.00649999999996,224.00749999999996,224.00749999999996,224.00849999999997,224.00849999999997,224.00949999999997,224.00949999999997,224.01049999999998,224.01049999999998,224.01149999999998,224.01149999999998,224.0125,224.0125,224.01349999999996,224.01349999999996,224.01449999999997,224.01449999999997,224.01549999999997,224.01549999999997,224.01649999999995,224.01649999999995,224.01749999999996,224.01749999999996,224.01849999999996,224.01849999999996,224.01949999999997,224.01949999999997,224.02049999999997,224.02049999999997,224.02149999999995,224.02149999999995,224.02249999999995,224.02249999999995,224.02349999999996,224.02349999999996,224.02449999999996,224.02449999999996,224.02549999999997,224.02549999999997,224.02649999999997,224.02649999999997,224.02749999999997,224.02749999999997,224.02849999999995,224.02849999999995,224.02949999999996,224.02949999999996,224.03049999999996,224.03049999999996,224.03149999999997,224.03149999999997,224.03249999999997,224.03249999999997,224.03349999999998,224.03349999999998,224.03449999999998,224.03449999999998,224.03549999999998,224.03549999999998,224.03649999999996,224.03649999999996,224.03749999999997,224.03749999999997,224.03849999999997,224.03849999999997,224.03949999999998,224.03949999999998,224.04049999999998,224.04049999999998,224.04149999999998,224.04149999999998,224.0425,224.0425,224.04349999999997,224.04349999999997,224.04449999999994,224.04449999999994,224.04549999999995,224.04549999999995,224.04649999999995,224.04649999999995,224.04749999999996,224.04749999999996,224.04849999999996,224.04849999999996,224.04949999999997,224.04949999999997,224.05049999999997,224.05049999999997,224.05149999999995,224.05149999999995,224.05249999999995,224.05249999999995,224.05349999999996,224.05349999999996,224.05449999999996,224.05449999999996,224.05549999999997,224.05549999999997,224.05649999999997,224.05649999999997,224.05749999999998,224.05749999999998,224.05849999999995,224.05849999999995,224.05949999999996,224.05949999999996,224.06049999999996,224.06049999999996,224.06149999999997,224.06149999999997,224.06249999999997,224.06249999999997,224.06349999999998,224.06349999999998,224.06449999999998,224.06449999999998,224.0655,224.0655,224.06649999999996,224.06649999999996,224.06749999999997,224.06749999999997,224.06849999999997,224.06849999999997,224.06949999999998,224.06949999999998,224.07049999999998,224.07049999999998,224.0715,224.0715,224.07249999999996,224.07249999999996,224.07349999999997,224.07349999999997,224.07449999999994,224.07449999999994,224.07549999999995,224.07549999999995,224.07649999999995,224.07649999999995,224.07749999999996,224.07749999999996,224.07849999999996,224.07849999999996,224.07949999999997,224.07949999999997,224.08049999999997,224.08049999999997,224.08149999999995,224.08149999999995,224.08249999999995,224.08249999999995,224.08349999999996,224.08349999999996,224.08449999999996,224.08449999999996,224.08549999999997,224.08549999999997,224.08649999999997,224.08649999999997,224.08749999999998,224.08749999999998,224.08849999999998,224.08849999999998,224.08949999999996,224.08949999999996,224.09049999999996,224.09049999999996,224.09149999999997,224.09149999999997,224.09249999999997,224.09249999999997,224.09349999999998,224.09349999999998,224.09449999999998,224.09449999999998,224.0955,224.0955,224.09649999999996,224.09649999999996,224.09749999999997,224.09749999999997,224.09849999999997,224.09849999999997,224.09949999999995,224.09949999999995,224.10049999999995,224.10049999999995,224.10149999999996,224.10149999999996,224.10249999999996,224.10249999999996,224.10349999999997,224.10349999999997,224.10449999999994,224.10449999999994,224.10549999999995,224.10549999999995,224.10649999999995,224.10649999999995,224.10749999999996,224.10749999999996,224.10849999999996,224.10849999999996,224.10949999999997,224.10949999999997,224.11049999999997,224.11049999999997,224.11149999999995,224.11149999999995,224.11249999999995,224.11249999999995,224.11349999999996,224.11349999999996,224.11449999999996,224.11449999999996,224.11549999999997,224.11549999999997,224.11649999999997,224.11649999999997,224.11749999999998,224.11749999999998,224.11849999999998,224.11849999999998,224.11949999999996,224.11949999999996,224.12049999999996,224.12049999999996,224.12149999999997,224.12149999999997,224.12249999999997,224.12249999999997,224.12349999999998,224.12349999999998,224.12449999999998,224.12449999999998,224.1255,224.1255,224.12649999999996,224.12649999999996,224.12749999999994,224.12749999999994,224.12849999999995,224.12849999999995,224.12949999999995,224.12949999999995,224.13049999999996,224.13049999999996,224.13149999999996,224.13149999999996,224.13249999999996,224.13249999999996,224.13349999999997,224.13349999999997,224.13449999999995,224.13449999999995,224.13549999999995,224.13549999999995,224.13649999999996,224.13649999999996,224.13749999999996,224.13749999999996,224.13849999999996,224.13849999999996,224.13949999999997,224.13949999999997,224.14049999999997,224.14049999999997,224.14149999999998,224.14149999999998,224.14249999999996,224.14249999999996,224.14349999999996,224.14349999999996,224.14449999999997,224.14449999999997,224.14549999999997,224.14549999999997,224.14649999999997,224.14649999999997,224.14749999999998,224.14749999999998,224.14849999999998,224.14849999999998,224.14949999999996,224.14949999999996,224.15049999999997,224.15049999999997,224.15149999999997,224.15149999999997,224.15249999999997,224.15249999999997,224.15349999999998,224.15349999999998,224.15449999999998,224.15449999999998,224.15549999999996,224.15549999999996,224.15649999999997,224.15649999999997,224.15749999999994,224.15749999999994,224.15849999999995,224.15849999999995,224.15949999999995,224.15949999999995,224.16049999999996,224.16049999999996,224.16149999999996,224.16149999999996,224.16249999999997,224.16249999999997,224.16349999999997,224.16349999999997,224.16449999999995,224.16449999999995,224.16549999999995,224.16549999999995,224.16649999999996,224.16649999999996,224.16749999999996,224.16749999999996,224.16849999999997,224.16849999999997,224.16949999999997,224.16949999999997,224.17049999999998,224.17049999999998,224.17149999999998,224.17149999999998,224.17249999999996,224.17249999999996,224.17349999999996,224.17349999999996,224.17449999999997,224.17449999999997,224.17549999999997,224.17549999999997,224.17649999999998,224.17649999999998,224.17749999999998,224.17749999999998,224.17849999999999,224.17849999999999,224.17949999999996,224.17949999999996,224.18049999999997,224.18049999999997,224.18149999999997,224.18149999999997,224.18249999999995,224.18249999999995,224.18349999999995,224.18349999999995,224.18449999999996,224.18449999999996,224.18549999999996,224.18549999999996,224.18649999999997,224.18649999999997,224.18749999999994,224.18749999999994,224.18849999999995,224.18849999999995,224.18949999999995,224.18949999999995,224.19049999999996,224.19049999999996,224.19149999999996,224.19149999999996,224.19249999999997,224.19249999999997,224.19349999999997,224.19349999999997,224.19449999999998,224.19449999999998,224.19549999999995,224.19549999999995,224.19649999999996,224.19649999999996,224.19749999999996,224.19749999999996,224.19849999999997,224.19849999999997,224.19949999999997,224.19949999999997,224.20049999999998,224.20049999999998,224.20149999999998,224.20149999999998,224.20249999999996,224.20249999999996,224.20349999999996,224.20349999999996,224.20449999999997,224.20449999999997,224.20549999999997,224.20549999999997,224.20649999999998,224.20649999999998,224.20749999999998,224.20749999999998,224.2085,224.2085,224.2095,224.2095,224.21049999999997,224.21049999999997,224.21149999999994,224.21149999999994,224.21249999999995,224.21249999999995,224.21349999999995,224.21349999999995,224.21449999999996,224.21449999999996,224.21549999999996,224.21549999999996,224.21649999999997,224.21649999999997,224.21749999999997,224.21749999999997,224.21849999999995,224.21849999999995,224.21949999999995,224.21949999999995,224.22049999999996,224.22049999999996,224.22149999999996,224.22149999999996,224.22249999999997,224.22249999999997,224.22349999999997,224.22349999999997,224.22449999999998,224.22449999999998,224.22549999999995,224.22549999999995,224.22649999999996,224.22649999999996,224.22749999999996,224.22749999999996,224.22849999999997,224.22849999999997,224.22949999999997,224.22949999999997,224.23049999999998,224.23049999999998,224.23149999999998,224.23149999999998,224.2325,224.2325,224.23349999999996,224.23349999999996,224.23449999999997,224.23449999999997,224.23549999999997,224.23549999999997,224.23649999999998,224.23649999999998,224.23749999999998,224.23749999999998,224.23849999999996,224.23849999999996,224.23949999999996,224.23949999999996,224.24049999999994,224.24049999999994,224.24149999999995,224.24149999999995,224.24249999999995,224.24249999999995,224.24349999999995,224.24349999999995,224.24449999999996,224.24449999999996,224.24549999999996,224.24549999999996,224.24649999999997,224.24649999999997,224.24749999999997,224.24749999999997,224.24849999999995,224.24849999999995,224.24949999999995,224.24949999999995,224.25049999999996,224.25049999999996,224.25149999999996,224.25149999999996,224.25249999999997,224.25249999999997,224.25349999999997,224.25349999999997,224.25449999999998,224.25449999999998,224.25549999999996,224.25549999999996,224.25649999999996,224.25649999999996,224.25749999999996,224.25749999999996,224.25849999999997,224.25849999999997,224.25949999999997,224.25949999999997,224.26049999999998,224.26049999999998,224.26149999999998,224.26149999999998,224.2625,224.2625,224.26349999999996,224.26349999999996,224.26449999999997,224.26449999999997,224.26549999999997,224.26549999999997,224.26649999999995,224.26649999999995,224.26749999999996,224.26749999999996,224.26849999999996,224.26849999999996,224.26949999999997,224.26949999999997,224.27049999999997,224.27049999999997,224.27149999999995,224.27149999999995,224.27249999999995,224.27249999999995,224.27349999999996,224.27349999999996,224.27449999999996,224.27449999999996,224.27549999999997,224.27549999999997,224.27649999999997,224.27649999999997,224.27749999999997,224.27749999999997,224.27849999999995,224.27849999999995,224.27949999999996,224.27949999999996,224.28049999999996,224.28049999999996,224.28149999999997,224.28149999999997,224.28249999999997,224.28249999999997,224.28349999999998,224.28349999999998,224.28449999999998,224.28449999999998,224.28549999999998,224.28549999999998,224.28649999999996,224.28649999999996,224.28749999999997,224.28749999999997,224.28849999999997,224.28849999999997,224.28949999999998,224.28949999999998,224.29049999999998,224.29049999999998,224.29149999999998,224.29149999999998,224.2925,224.2925,224.29349999999997,224.29349999999997,224.29449999999994,224.29449999999994,224.29549999999995,224.29549999999995,224.29649999999995,224.29649999999995,224.29749999999996,224.29749999999996,224.29849999999996,224.29849999999996,224.29949999999997,224.29949999999997,224.30049999999997,224.30049999999997,224.30149999999995,224.30149999999995,224.30249999999995,224.30249999999995,224.30349999999996,224.30349999999996,224.30449999999996,224.30449999999996,224.30549999999997,224.30549999999997,224.30649999999997,224.30649999999997,224.30749999999998,224.30749999999998,224.30849999999995,224.30849999999995,224.30949999999996,224.30949999999996,224.31049999999996,224.31049999999996,224.31149999999997,224.31149999999997,224.31249999999997,224.31249999999997,224.31349999999998,224.31349999999998,224.31449999999998,224.31449999999998,224.3155,224.3155,224.31649999999996,224.31649999999996,224.31749999999997,224.31749999999997,224.31849999999997,224.31849999999997,224.31949999999998,224.31949999999998,224.32049999999998,224.32049999999998,224.32149999999996,224.32149999999996,224.32249999999996,224.32249999999996,224.32349999999997,224.32349999999997,224.32449999999994,224.32449999999994,224.32549999999995,224.32549999999995,224.32649999999995,224.32649999999995,224.32749999999996,224.32749999999996,224.32849999999996,224.32849999999996,224.32949999999997,224.32949999999997,224.33049999999997,224.33049999999997,224.33149999999995,224.33149999999995,224.33249999999995,224.33249999999995,224.33349999999996,224.33349999999996,224.33449999999996,224.33449999999996,224.33549999999997,224.33549999999997,224.33649999999997,224.33649999999997,224.33749999999998,224.33749999999998,224.33849999999998,224.33849999999998,224.33949999999996,224.33949999999996,224.34049999999996,224.34049999999996,224.34149999999997,224.34149999999997,224.34249999999997,224.34249999999997,224.34349999999998,224.34349999999998,224.34449999999998,224.34449999999998,224.3455,224.3455,224.34649999999996,224.34649999999996,224.34749999999997,224.34749999999997,224.34849999999997,224.34849999999997,224.34949999999995,224.34949999999995,224.35049999999995,224.35049999999995,224.35149999999996,224.35149999999996,224.35249999999996,224.35249999999996,224.35349999999997,224.35349999999997,224.35449999999994,224.35449999999994,224.35549999999995,224.35549999999995,224.35649999999995,224.35649999999995,224.35749999999996,224.35749999999996,224.35849999999996,224.35849999999996,224.35949999999997,224.35949999999997,224.36049999999997,224.36049999999997,224.36149999999995,224.36149999999995,224.36249999999995,224.36249999999995,224.36349999999996,224.36349999999996,224.36449999999996,224.36449999999996,224.36549999999997,224.36549999999997,224.36649999999997,224.36649999999997,224.36749999999998,224.36749999999998,224.36849999999998,224.36849999999998,224.36949999999996,224.36949999999996,224.37049999999996,224.37049999999996,224.37149999999997,224.37149999999997,224.37249999999997,224.37249999999997,224.37349999999998,224.37349999999998,224.37449999999998,224.37449999999998,224.3755,224.3755,224.37649999999996,224.37649999999996,224.37749999999994,224.37749999999994,224.37849999999995,224.37849999999995,224.37949999999995,224.37949999999995,224.38049999999996,224.38049999999996,224.38149999999996,224.38149999999996,224.38249999999996,224.38249999999996,224.38349999999997,224.38349999999997,224.38449999999995,224.38449999999995,224.38549999999995,224.38549999999995,224.38649999999996,224.38649999999996,224.38749999999996,224.38749999999996,224.38849999999996,224.38849999999996,224.38949999999997,224.38949999999997,224.39049999999997,224.39049999999997,224.39149999999998,224.39149999999998,224.39249999999996,224.39249999999996,224.39349999999996,224.39349999999996,224.39449999999997,224.39449999999997,224.39549999999997,224.39549999999997,224.39649999999997,224.39649999999997,224.39749999999998,224.39749999999998,224.39849999999998,224.39849999999998,224.39949999999996,224.39949999999996,224.40049999999997,224.40049999999997,224.40149999999997,224.40149999999997,224.40249999999997,224.40249999999997,224.40349999999998,224.40349999999998,224.40449999999996,224.40449999999996,224.40549999999996,224.40549999999996,224.40649999999997,224.40649999999997,224.40749999999994,224.40749999999994,224.40849999999995,224.40849999999995,224.40949999999995,224.40949999999995,224.41049999999996,224.41049999999996,224.41149999999996,224.41149999999996,224.41249999999997,224.41249999999997,224.41349999999997,224.41349999999997,224.41449999999998,224.41449999999998,224.41549999999995,224.41549999999995,224.41649999999996,224.41649999999996,224.41749999999996,224.41749999999996,224.41849999999997,224.41849999999997,224.41949999999997,224.41949999999997,224.42049999999998,224.42049999999998,224.42149999999998,224.42149999999998,224.42249999999996,224.42249999999996,224.42349999999996,224.42349999999996,224.42449999999997,224.42449999999997,224.42549999999997,224.42549999999997,224.42649999999998,224.42649999999998,224.42749999999998,224.42749999999998,224.42849999999999,224.42849999999999,224.4295,224.4295,224.43049999999997,224.43049999999997,224.43149999999997,224.43149999999997,224.43249999999995,224.43249999999995,224.43349999999995,224.43349999999995,224.43449999999996,224.43449999999996,224.43549999999996,224.43549999999996,224.43649999999997,224.43649999999997,224.43749999999994,224.43749999999994,224.43849999999995,224.43849999999995,224.43949999999995,224.43949999999995,224.44049999999996,224.44049999999996,224.44149999999996,224.44149999999996,224.44249999999997,224.44249999999997,224.44349999999997,224.44349999999997,224.44449999999998,224.44449999999998,224.44549999999995,224.44549999999995,224.44649999999996,224.44649999999996,224.44749999999996,224.44749999999996,224.44849999999997,224.44849999999997,224.44949999999997,224.44949999999997,224.45049999999998,224.45049999999998,224.45149999999998,224.45149999999998,224.45249999999996,224.45249999999996,224.45349999999996,224.45349999999996,224.45449999999997,224.45449999999997,224.45549999999997,224.45549999999997,224.45649999999998,224.45649999999998,224.45749999999998,224.45749999999998,224.4585,224.4585,224.4595,224.4595,224.46049999999994,224.46049999999994,224.46149999999994,224.46149999999994,224.46249999999995,224.46249999999995,224.46349999999995,224.46349999999995,224.46449999999996,224.46449999999996,224.46549999999996,224.46549999999996,224.46649999999997,224.46649999999997,224.46749999999997,224.46749999999997,224.46849999999995,224.46849999999995,224.46949999999995,224.46949999999995,224.47049999999996,224.47049999999996,224.47149999999996,224.47149999999996,224.47249999999997,224.47249999999997,224.47349999999997,224.47349999999997,224.47449999999998,224.47449999999998,224.47549999999995,224.47549999999995,224.47649999999996,224.47649999999996,224.47749999999996,224.47749999999996,224.47849999999997,224.47849999999997,224.47949999999997,224.47949999999997,224.48049999999998,224.48049999999998,224.48149999999998,224.48149999999998,224.4825,224.4825,224.48349999999996,224.48349999999996,224.48449999999997,224.48449999999997,224.48549999999997,224.48549999999997,224.48649999999998,224.48649999999998,224.48749999999995,224.48749999999995,224.48849999999996,224.48849999999996,224.48949999999996,224.48949999999996,224.49049999999994,224.49049999999994,224.49149999999995,224.49149999999995,224.49249999999995,224.49249999999995,224.49349999999995,224.49349999999995,224.49449999999996,224.49449999999996,224.49549999999996,224.49549999999996,224.49649999999997,224.49649999999997,224.49749999999997,224.49749999999997,224.49849999999995,224.49849999999995,224.49949999999995,224.49949999999995,224.50049999999996,224.50049999999996,224.50149999999996,224.50149999999996,224.50249999999997,224.50249999999997,224.50349999999997,224.50349999999997,224.50449999999998,224.50449999999998,224.50549999999996,224.50549999999996,224.50649999999996,224.50649999999996,224.50749999999996,224.50749999999996,224.50849999999997,224.50849999999997,224.50949999999997,224.50949999999997,224.51049999999998,224.51049999999998,224.51149999999998,224.51149999999998,224.5125,224.5125,224.51349999999996,224.51349999999996,224.51449999999997,224.51449999999997,224.51549999999995,224.51549999999995,224.51649999999995,224.51649999999995,224.51749999999996,224.51749999999996,224.51849999999996,224.51849999999996,224.51949999999997,224.51949999999997,224.52049999999997,224.52049999999997,224.52149999999995,224.52149999999995,224.52249999999995,224.52249999999995,224.52349999999996,224.52349999999996,224.52449999999996,224.52449999999996,224.52549999999997,224.52549999999997,224.52649999999997,224.52649999999997,224.52749999999997,224.52749999999997,224.52849999999995,224.52849999999995,224.52949999999996,224.52949999999996,224.53049999999996,224.53049999999996,224.53149999999997,224.53149999999997,224.53249999999997,224.53249999999997,224.53349999999998,224.53349999999998,224.53449999999998,224.53449999999998,224.53549999999998,224.53549999999998,224.53649999999996,224.53649999999996,224.53749999999997,224.53749999999997,224.53849999999997,224.53849999999997,224.53949999999998,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],"xaxis":"x","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.00010682135640296214,0.00010682135640296214,0.00011943625374923179,0.00011943625374923179,0.00013301102249956202,0.00013301102249956202,0.00014758132110331555,0.00014758132110331555,0.00016318284357089824,0.00016318284357089824,0.000179851310196965,0.000179851310196965,0.00019762247219881705,0.00019762247219881705,0.00021653210707800458,0.00021653210707800458,0.00023661601552806257,0.00023661601552806257,0.00025791001988837814,0.00025791001988837814,0.0002804499625980585,0.0002804499625980585,0.0003042717046497983,0.0003042717046497983,0.00032941112017841707,0.00032941112017841707,0.00035590409955312327,0.00035590409955312327,0.00038378654164685335,0.00038378654164685335,0.00041309435615546967,0.00041309435615546967,0.00044386345818629784,0.00044386345818629784,0.00047612976748506004,0.00047612976748506004,0.0005099292068897435,0.0005099292068897435,0.0005452977000114013,0.0005452977000114013,0.0005822711658226898,0.0005822711658226898,0.0006208855217501328,0.0006208855217501328,0.000661176678262659,0.000661176678262659,0.0007031805357793369,0.0007031805357793369,0.0007469329854424415,0.0007469329854424415,0.0007924699044790564,0.0007924699044790564,0.0008398271562010752,0.0008398271562010752,0.0008890405784092079,0.0008890405784092079,0.0009401460104502972,0.0009401460104502972,0.0009931792452872166,0.0009931792452872166,0.0010481760604215157,0.0010481760604215157,0.001105172210162761,0.001105172210162761,0.001164203417897872,0.001164203417897872,0.0012253053760911219,0.0012253053760911219,0.0012885137462841378,0.0012885137462841378,0.001353864143634579,0.001353864143634579,0.0014213921678387796,0.0014213921678387796,0.0014911333644784446,0.0014911333644784446,0.0015631232250206475,0.0015631232250206475,0.0016373972100098162,0.0016373972100098162,0.0017139907490677324,0.0017139907490677324,0.0017929391867789004,0.0017929391867789004,0.0018742778445358405,0.0018742778445358405,0.001958041981885781,0.001958041981885781,0.002044266804261319,0.002044266804261319,0.002132987439788436,0.002132987439788436,0.0022242389934011295,0.0022242389934011295,0.0023180564772654596,0.0023180564772654596,0.002414474849432853,0.002414474849432853,0.0025135289906481244,0.0025135289906481244,0.0026152537352721167,0.0026152537352721167,0.0027196838248977357,0.0027196838248977357,0.0028268539315419333,0.0028268539315419333,0.002936798649915046,0.002936798649915046,0.003049552505151457,0.003049552505151457,0.00316514992961761,0.00316514992961761,0.0032836252861039973,0.0032836252861039973,0.003405012829171846,0.003405012829171846,0.003529346743806433,0.003529346743806433,0.003656661129955757,0.003656661129955757,0.0037869899716078954,0.0037869899716078954,0.003920367183174966,0.003920367183174966,0.0040568265631091725,0.0040568265631091725,0.0041964018170947736,0.0041964018170947736,0.004339126550317429,0.004339126550317429,0.004485034267464204,0.004485034267464204,0.0046341583649928955,0.0046341583649928955,0.004786532115670719,0.004786532115670719,0.004942188699496951,0.004942188699496951,0.005101161180510947,0.005101161180510947,0.005263482499061476,0.005263482499061476,0.005429185479537384,0.005429185479537384,0.00559830284582892,0.00559830284582892,0.005770867159482436,0.005770867159482436,0.005946910897007011,0.005946910897007011,0.006126466380298493,0.006126466380298493,0.006309565823023468,0.006309565823023468,0.00649624128423529,0.00649624128423529,0.006686524714758056,0.006686524714758056,0.006880447903071965,0.006880447903071965,0.007078042513966637,0.007078042513966637,0.0072793400730797805,0.0072793400730797805,0.007484371951435873,0.007484371951435873,0.007693169388638153,0.007693169388638153,0.007905763485137942,0.007905763485137942,0.008122185132658707,0.008122185132658707,0.00834246515334796,0.00834246515334796,0.008566634083318734,0.008566634083318734,0.008794722535990679,0.008794722535990679,0.009026760738250369,0.009026760738250369,0.00926277883967776,0.00926277883967776,0.009502806912546196,0.009502806912546196,0.00974687456528933,0.00974687456528933,0.009995011715567272,0.009995011715567272,0.010247247662587214,0.010247247662587214,0.010503611705556344,0.010503611705556344,0.010764133066375237,0.010764133066375237,0.011028840657718008,0.011028840657718008,0.011297763314952157,0.011297763314952157,0.011570929486912102,0.011570929486912102,0.011848367699738883,0.011848367699738883,0.012130106170347075,0.012130106170347075,0.012416172883731407,0.012416172883731407,0.012706595670273383,0.012706595670273383,0.013001402283047882,0.013001402283047882,0.013300620011290103,0.013300620011290103,0.013604276221541851,0.013604276221541851,0.013912397971118474,0.013912397971118474,0.014225012008108854,0.014225012008108854,0.01454214508060188,0.01454214508060188,0.014863823550153364,0.014863823550153364,0.015190073778319112,0.015190073778319112,0.015520921585508628,0.015520921585508628,0.015856393024051254,0.015856393024051254,0.016196513450516817,0.016196513450516817,0.01654130837608834,0.01654130837608834,0.016890802848109187,0.016890802848109187,0.0172450219139227,0.0172450219139227,0.017603990157032536,0.017603990157032536,0.017967732160942364,0.017967732160942364,0.018336272122622753,0.018336272122622753,0.01870963408443106,0.01870963408443106,0.019087841856804788,0.019087841856804788,0.01947091886364837,0.01947091886364837,0.019858888528866237,0.019858888528866237,0.02025177388982973,0.02025177388982973,0.02064959782929698,0.02064959782929698,0.021052382843493037,0.021052382843493037,0.021460151274029705,0.021460151274029705,0.021872925307905574,0.021872925307905574,0.022290726668279536,0.022290726668279536,0.022713577078310492,0.022713577078310492,0.023141497720011013,0.023141497720011013,0.023574509775393698,0.023574509775393698,0.02401263396263143,0.02401263396263143,0.02445589099989711,0.02445589099989711,0.02490430098691071,0.02490430098691071,0.02535788410069882,0.02535788410069882,0.025816659977141714,0.025816659977141714,0.026280648174813064,0.026280648174813064,0.02674986794306006,0.02674986794306006,0.027224338222003465,0.027224338222003465,0.02770407756523093,0.02770407756523093,0.02818910444902352,0.02818910444902352,0.02867943704043581,0.02867943704043581,0.029175093042682704,0.029175093042682704,0.029676090081672494,0.029676090081672494,0.03018244547408699,0.03018244547408699,0.03069417599546171,0.03069417599546171,0.03121129849863879,0.03121129849863879,0.031733829295314056,0.031733829295314056,0.03226178454257009,0.03226178454257009,0.0327951800109564,0.0327951800109564,0.03333403116179608,0.03333403116179608,0.03387835322449229,0.03387835322449229,0.0344281610419152,0.0344281610419152,0.034983469302321706,0.034983469302321706,0.035544292307435624,0.035544292307435624,0.036110643972447704,0.036110643972447704,0.03668253790332224,0.03668253790332224,0.037259987628716906,0.037259987628716906,0.037843006058836455,0.037843006058836455,0.038431606026579024,0.038431606026579024,0.03902579982369644,0.03902579982369644,0.039625599664633894,0.039625599664633894,0.040231017222690325,0.040231017222690325,0.0408420640165514,0.0408420640165514,0.04145875110106311,0.04145875110106311,0.04208108937645819,0.04208108937645819,0.042709089279129725,0.042709089279129725,0.04334276085893767,0.04334276085893767,0.043982114011128816,0.043982114011128816,0.04462715824441683,0.04462715824441683,0.04527790252636907,0.04527790252636907,0.04593435582455292,0.04593435582455292,0.04659652656538944,0.04659652656538944,0.04726442286607324,0.04726442286607324,0.04793805237995923,0.04793805237995923,0.04861742268309571,0.04861742268309571,0.049302540810384675,0.049302540810384675,0.049993413487501644,0.049993413487501644,0.050690047130895685,0.050690047130895685,0.05139244777048279,0.05139244777048279,0.05210062104964587,0.05210062104964587,0.0528145723025414,0.0528145723025414,0.053534306476792734,0.053534306476792734,0.05425982821079679,0.05425982821079679,0.05499114175641742,0.05499114175641742,0.05572825105629202,0.05572825105629202,0.05647115951191162,0.05647115951191162,0.057219870292847475,0.057219870292847475,0.057974386336750956,0.057974386336750956,0.05873470996282052,0.05873470996282052,0.059500843181028176,0.059500843181028176,0.06027278769211946,0.06027278769211946,0.06105054488761343,0.06105054488761343,0.06183411561788285,0.06183411561788285,0.06262350050138067,0.06262350050138067,0.06341869961541349,0.06341869961541349,0.0642197128826747,0.0642197128826747,0.06502653960740476,0.06502653960740476,0.06583917893923089,0.06583917893923089,0.06665762940932742,0.06665762940932742,0.06748188939425541,0.06748188939425541,0.06831195665212302,0.06831195665212302,0.06914782878642518,0.06914782878642518,0.06998950285951053,0.06998950285951053,0.0708369756245012,0.0708369756245012,0.07169024329337305,0.07169024329337305,0.07254930176887546,0.07254930176887546,0.07341414672183802,0.07341414672183802,0.07428477320463729,0.07428477320463729,0.07516117596042347,0.07516117596042347,0.07604334934581362,0.07604334934581362,0.07693128717627855,0.07693128717627855,0.07782498318998239,0.07782498318998239,0.07872443019740996,0.07872443019740996,0.0796296210863526,0.0796296210863526,0.08054054812614883,0.08054054812614883,0.08145720358613708,0.08145720358613708,0.0823795789625897,0.0823795789625897,0.08330766420564673,0.08330766420564673,0.08424145081158044,0.08424145081158044,0.08518092950359699,0.08518092950359699,0.08612608945877027,0.08612608945877027,0.08707692062724029,0.08707692062724029,0.08803341141301477,0.08803341141301477,0.08899555099316754,0.08899555099316754,0.08996332699864017,0.08996332699864017,0.0909367278334404,0.0909367278334404,0.09191574035544359,0.09191574035544359,0.092900350649459,0.092900350649459,0.09389054711949432,0.09389054711949432,0.09488631507729273,0.09488631507729273,0.09588763906153104,0.09588763906153104,0.0968945059300848,0.0968945059300848,0.09790689867549852,0.09790689867549852,0.09892480338258156,0.09892480338258156,0.0999482038169446,0.0999482038169446,0.10097708219806624,0.10097708219806624,0.10201142229155717,0.10201142229155717,0.10305120708996211,0.10305120708996211,0.10409641881275947,0.10409641881275947,0.10514703813329551,0.10514703813329551,0.10620304727104868,0.10620304727104868,0.1072644276724313,0.1072644276724313,0.10833115846465725,0.10833115846465725,0.10940322032107273,0.10940322032107273,0.11048059314195775,0.11048059314195775,0.11156325528146005,0.11156325528146005,0.11265118663985962,0.11265118663985962,0.11374436402517193,0.11374436402517193,0.11484276656461082,0.11484276656461082,0.11594637029312554,0.11594637029312554,0.11705515356486387,0.11705515356486387,0.11816909164170887,0.11816909164170887,0.11928816055860982,0.11928816055860982,0.12041233712358214,0.12041233712358214,0.1215415958254428,0.1215415958254428,0.12267591115300872,0.12267591115300872,0.12381525759509687,0.12381525759509687,0.12495960886745809,0.12495960886745809,0.12610893791277702,0.12610893791277702,0.12726321844680444,0.12726321844680444,0.12842242186609273,0.12842242186609273,0.12958652111332652,0.12958652111332652,0.13075548758505812,0.13075548758505812,0.13192929113170768,0.13192929113170768,0.1331079046959598,0.1331079046959598,0.13429129658210212,0.13429129658210212,0.13547943664055484,0.13547943664055484,0.1366722947217379,0.1366722947217379,0.13786983990300522,0.13786983990300522,0.13907204048864455,0.13907204048864455,0.14027886323681132,0.14027886323681132,0.14149027645179318,0.14149027645179318,0.14270624689174569,0.14270624689174569,0.14392674131482425,0.14392674131482425,0.14515172647918423,0.14515172647918423,0.1463811660507165,0.1463811660507165,0.14761502678757646,0.14761502678757646,0.1488532731287211,0.1488532731287211,0.15009586874004122,0.15009586874004122,0.15134277728742768,0.15134277728742768,0.15259396320983742,0.15259396320983742,0.1538493878539628,0.1538493878539628,0.15510901488569467,0.15510901488569467,0.15637280565172537,0.15637280565172537,0.15764072149874725,0.15764072149874725,0.1589127237734527,0.1589127237734527,0.1601887730494679,0.1601887730494679,0.16146882912735294,0.16146882912735294,0.1627528510346017,0.1627528510346017,0.16404079934484034,0.16404079934484034,0.16533263076636442,0.16533263076636442,0.16662830587280006,0.16662830587280006,0.16792778059937655,0.16792778059937655,0.1692310132005217,0.1692310132005217,0.17053795961146473,0.17053795961146473,0.1718485773135673,0.1718485773135673,0.17316282146899253,0.17316282146899253,0.17448064723990359,0.17448064723990359,0.17580201056152966,0.17580201056152966,0.17712686504990172,0.17712686504990172,0.17845516586718282,0.17845516586718282,0.1797868650832715,0.1797868650832715,0.18112191631419855,0.18112191631419855,0.18246027317599492,0.18246027317599492,0.18380188696549288,0.18380188696549288,0.18514670975259104,0.18514670975259104,0.1864946920610556,0.1864946920610556,0.187845785960785,0.187845785960785,0.18919994042941324,0.18919994042941324,0.19055710676377263,0.19055710676377263,0.1919172331684311,0.1919172331684311,0.19328026939408854,0.19328026939408854,0.19464616287224668,0.19464616287224668,0.19601486335360546,0.19601486335360546,0.19738631672353432,0.19738631672353432,0.19876047041353478,0.19876047041353478,0.20013727185510852,0.20013727185510852,0.20151666693362474,0.20151666693362474,0.20289860153445288,0.20289860153445288,0.2042830199968299,0.2042830199968299,0.205669868206125,0.205669868206125,0.2070590897285092,0.2070590897285092,0.20845062890321933,0.20845062890321933,0.20984442852336022,0.20984442852336022,0.21124043215510271,0.21124043215510271,0.21263858259155133,0.21263858259155133,0.2140388218527448,0.2140388218527448,0.2154410904125893,0.2154410904125893,0.21684533029112335,0.21684533029112335,0.2182514827353194,0.2182514827353194,0.21965948667295132,0.21965948667295132,0.22106928257792535,0.22106928257792535,0.22248080937801543,0.22248080937801543,0.22389400677406168,0.22389400677406168,0.22530881292077187,0.22530881292077187,0.22672516519978758,0.22672516519978758,0.22814300099275045,0.22814300099275045,0.22956225845436826,0.22956225845436826,0.23098287342015036,0.23098287342015036,0.23240478249867216,0.23240478249867216,0.2338279207523769,0.2338279207523769,0.2352522240167739,0.2352522240167739,0.2366776265812401,0.2366776265812401,0.23810406350821872,0.23810406350821872,0.23953146831402058,0.23953146831402058,0.24095977451495668,0.24095977451495668,0.2423889148542715,0.2423889148542715,0.24381882284827605,0.24381882284827605,0.2452494304671489,0.2452494304671489,0.2466806681349362,0.2466806681349362,0.24811246859488276,0.24811246859488276,0.24954476227103478,0.24954476227103478,0.25097747881437243,0.25097747881437243,0.2524105494220079,0.2524105494220079,0.2538439021987892,0.2538439021987892,0.2552774675687626,0.2552774675687626,0.2567111736367757,0.2567111736367757,0.25814494928074255,0.25814494928074255,0.25957872105937874,0.25957872105937874,0.2610124170775319,0.2610124170775319,0.2624459638939176,0.2624459638939176,0.2638792888403174,0.2638792888403174,0.26531231692931456,0.26531231692931456,0.26674497394655844,0.26674497394655844,0.2681771864507643,0.2681771864507643,0.2696088771353172,0.2696088771353172,0.2710399725589324,0.2710399725589324,0.27247039464192857,0.27247039464192857,0.273900069169955,0.273900069169955,0.2753289172902641,0.2753289172902641,0.27675686169624064,0.27675686169624064,0.27818382662740154,0.27818382662740154,0.27960973168486714,0.27960973168486714,0.28103449956202187,0.28103449956202187,0.28245805140611835,0.28245805140611835,0.2838803075913428,0.2838803075913428,0.2853011877188153,0.2853011877188153,0.28672061293578827,0.28672061293578827,0.2881385012972495,0.2881385012972495,0.28955477240431926,0.28955477240431926,0.29096934508505123,0.29096934508505123,0.2923821366213672,0.2923821366213672,0.29379306584132125,0.29379306584132125,0.29520205002683486,0.29520205002683486,0.29660900491369746,0.29660900491369746,0.29801384855689683,0.29801384855689683,0.2994164966922223,0.2994164966922223,0.30081686505546334,0.30081686505546334,0.30221486938240916,0.30221486938240916,0.3036104238627168,0.3036104238627168,0.3050034442321757,0.3050034442321757,0.3063938431343105,0.3063938431343105,0.3077815363049106,0.3077815363049106,0.30916643638750085,0.30916643638750085,0.3105484560256057,0.3105484560256057,0.3119275086358163,0.3119275086358163,0.3133035060885912,0.3133035060885912,0.31467636102745494,0.31467636102745494,0.316045983776734,0.316045983776734,0.3174122869799531,0.3174122869799531,0.3187751801883723,0.3187751801883723,0.3201345752724502,0.3201345752724502,0.3214903810103808,0.3214903810103808,0.32284250772649037,0.32284250772649037,0.324190864972039,0.324190864972039,0.3255353615252206,0.3255353615252206,0.3268759061642293,0.3268759061642293,0.32821240689419284,0.32821240689419284,0.329544771720239,0.329544771720239,0.33087290864749574,0.33087290864749574,0.33219672413495843,0.33219672413495843,0.3335161254146889,0.3335161254146889,0.3348310197187485,0.3348310197187485,0.3361413119600008,0.3361413119600008,0.3374469093705072,0.3374469093705072,0.338747716090065,0.338747716090065,0.34004363780460334,0.34004363780460334,0.3413345794269856,0.3413345794269856,0.3426204458700748,0.3426204458700748,0.3439011405006021,0.3439011405006021,0.34517656745836434,0.34517656745836434,0.34644663011009236,0.34644663011009236,0.3477112318225174,0.3477112318225174,0.3489702751893039,0.3489702751893039,0.3502236628041167,0.3502236628041167,0.35147129726062065,0.35147129726062065,0.35271307960634807,0.35271307960634807,0.35394891243496374,0.35394891243496374,0.355178696020934,0.355178696020934,0.3564023314117912,0.3564023314117912,0.35761971965506795,0.35761971965506795,0.3588307602521642,0.3588307602521642,0.3600353542506125,0.3600353542506125,0.36123340115181296,0.36123340115181296,0.3624247996840996,0.3624247996840996,0.3636094501219387,0.3636094501219387,0.3647872496475319,0.3647872496475319,0.3659580977622794,0.3659580977622794,0.367121892421449,0.367121892421449,0.36827853235337465,0.36827853235337465,0.369427913967192,0.369427913967192,0.3705699352181687,0.3705699352181687,0.37170449328850663,0.37170449328850663,0.3728314845873412,0.3728314845873412,0.37395080552380794,0.37395080552380794,0.3750623532801086,0.3750623532801086,0.3761660234923125,0.3761660234923125,0.37726171102342276,0.37726171102342276,0.3783493122825752,0.3783493122825752,0.3794287221327727,0.3794287221327727,0.38049983466395265,0.38049983466395265,0.3815625462852503,0.3815625462852503,0.3826167503135368,0.3826167503135368,0.383662340838749,0.383662340838749,0.3846992119508241,0.3846992119508241,0.3857272569666331,0.3857272569666331,0.38674636997611284,0.38674636997611284,0.38775644429613443,0.38775644429613443,0.38875737169743646,0.38875737169743646,0.3897490454968897,0.3897490454968897,0.39073135901136524,0.39073135901136524,0.3917042032385355,0.3917042032385355,0.3926674707222052,0.3926674707222052,0.39362105246004675,0.39362105246004675,0.39456484099586503,0.39456484099586503,0.3954987281003985,0.3954987281003985,0.3964226032251875,0.3964226032251875,0.3973363589140368,0.3973363589140368,0.39823988461848636,0.39823988461848636,0.39913307133620873,0.39913307133620873,0.4000158092918103,0.4000158092918103,0.40088798870989717,0.40088798870989717,0.40174949904200974,0.40174949904200974,0.40260023051275423,0.40260023051275423,0.4034400718006046,0.4034400718006046,0.4042689139032333,0.4042689139032333,0.40508664395298205,0.40508664395298205,0.40589315140139093,0.40589315140139093,0.4066883257000003,0.4066883257000003,0.40747205475421777,0.40747205475421777,0.4082442272425175,0.4082442272425175,0.40900473184337355,0.40900473184337355,0.4097534549160612,0.4097534549160612,0.4104902859121208,0.4104902859121208,0.4112151119638939,0.4112151119638939,0.41192782097678854,0.41192782097678854,0.4126283000831464,0.4126283000831464,0.41331643641530896,0.41331643641530896,0.4139921171056182,0.4139921171056182,0.41465522928641546,0.41465522928641546,0.4153056593169766,0.4153056593169766,0.41594329355657705,0.41594329355657705,0.41656801991062475,0.41656801991062475,0.41717972319226276,0.41717972319226276,0.41777829053383286,0.41777829053383286,0.4183636082946105,0.4183636082946105,0.41893556128773923,0.41893556128773923,0.4194940366455604,0.4194940366455604,0.4200389191812173,0.4200389191812173,0.4205700952539857,0.4205700952539857,0.42108744890394234,0.42108744890394234,0.4215908680364954,0.4215908680364954,0.42208023514558946,0.42208023514558946,0.4225554373635664,0.4225554373635664,0.4230163595035692,0.4230163595035692,0.42346288560567513,0.42346288560567513,0.4238949012560934,0.4238949012560934,0.4243122920410337,0.4243122920410337,0.4247149404544406,0.4247149404544406,0.4251027336286557,0.4251027336286557,0.425475554057624,0.425475554057624,0.42583328810062093,0.42583328810062093,0.42617581825159134,0.42617581825159134,0.4265030300967445,0.4265030300967445,0.4268148076761576,0.4268148076761576,0.4271110350299077,0.4271110350299077,0.42739159697113793,0.42739159697113793,0.4276563759937932,0.4276563759937932,0.4279052576840829,0.4279052576840829,0.4281381253090179,0.4281381253090179,0.4283548629086753,0.4283548629086753,0.42855535452313215,0.42855535452313215,0.4287394834193996,0.4287394834193996,0.4289071344106205,0.4289071344106205,0.4290581899907399,0.4290581899907399,0.42919253497290094,0.42919253497290094,0.4293100533971809,0.4293100533971809,0.4294106277575242,0.4294106277575242,0.4294941420940082,0.4294941420940082,0.4295604804467099,0.4295604804467099,0.4296095268557064,0.4296095268557064,0.42964116381494244,0.42964116381494244,0.4296552761375613,0.4296552761375613,0.42965174631750774,0.42965174631750774,0.429630459167925,0.429630459167925,0.42959129718275785,0.42959129718275785,0.42953414517514954,0.42953414517514954,0.42945888641211105,0.42945888641211105,0.42936540416065316,0.42936540416065316,0.4292535824608531,0.4292535824608531,0.4291233045797218,0.4291233045797218,0.42897445533040246,0.42897445533040246,0.4288069172068397,0.4288069172068397,0.4286205757952432,0.4286205757952432,0.42841531281649137,0.42841531281649137,0.4281910138567937,0.4281910138567937,0.4279475621831611,0.4279475621831611,0.42768484260873674,0.42768484260873674,0.4274027376274656,0.4274027376274656,0.4271011320524907,0.4271011320524907,0.42677991069695537,0.42677991069695537,0.42643895760093664,0.42643895760093664,0.42607815680451167,0.42607815680451167,0.42569739234775744,0.42569739234775744,0.4252965490438173,0.4252965490438173,0.42487551170583443,0.42487551170583443,0.424434164373886,0.424434164373886,0.42397239263418124,0.42397239263418124,0.4234900805267974,0.4234900805267974,0.4229871128648776,0.4229871128648776,0.42246337523463123,0.42246337523463123,0.4219187524492015,0.4219187524492015,0.4213531293217318,0.4213531293217318,0.4207663914384314,0.4207663914384314,0.42015842438550977,0.42015842438550977,0.41952911374917623,0.41952911374917623,0.41887834434257404,0.41887834434257404,0.41820600329804486,0.41820600329804486,0.417511975428732,0.417511975428732,0.416796147866977,0.416796147866977,0.4160584054259233,0.4160584054259233,0.4152986352379125,0.4152986352379125,0.414516722889154,0.414516722889154,0.41371255628505565,0.41371255628505565,0.412886021784893,0.412886021784893,0.41203700574794144,0.41203700574794144,0.411165395306543,0.411165395306543,0.4102710775930391,0.4102710775930391,0.4093539412859038,0.4093539412859038,0.40841387197134654,0.40841387197134654,0.40745075910090744,0.40745075910090744,0.40646448903386195,0.40646448903386195,0.40545495122175046,0.40545495122175046,0.4044220327969145,0.4044220327969145,0.40336562321089414,0.40336562321089414,0.4022856103690974,0.4022856103690974,0.40118188372306446,0.40118188372306446,0.40005433195126905,0.40005433195126905,0.39890284373218543,0.39890284373218543,0.39772730929041983,0.39772730929041983,0.39652761807751247,0.39652761807751247,0.3953036603180695,0.3953036603180695,0.39405532546363115,0.39405532546363115,0.3927825045118699,0.3927825045118699,0.39148508691432593,0.39148508691432593,0.3901629644417378,0.3901629644417378,0.38881602809177795,0.38881602809177795,0.3874441680890528,0.3874441680890528,0.3860472769773669,0.3860472769773669,0.38462524652745916,0.38462524652745916,0.38317796773700186,0.38317796773700186,0.3817053339228659,0.3817053339228659,0.38020723608272367,0.38020723608272367,0.37868356907957856,0.37868356907957856,0.37713422391110296,0.37713422391110296,0.3755590954403002,0.3755590954403002,0.3739580754379086,0.3739580754379086,0.37233105953999784,0.37233105953999784,0.3706779410634387,0.3706779410634387,0.36899861409816836,0.36899861409816836,0.36729297350718976,0.36729297350718976,0.36556091492657267,0.36556091492657267,0.3638023324462539,0.3638023324462539,0.362017122475369,0.362017122475369,0.36020518064998736,0.36020518064998736,0.3583664026061784,0.3583664026061784,0.35650068629921,0.35650068629921,0.35460792659208523,0.35460792659208523,0.3526880214400721,0.3526880214400721,0.3507408687984383,0.3507408687984383,0.3487663658493856,0.3487663658493856,0.34676441054818175,0.34676441054818175,0.34473490239622695,0.34473490239622695,0.342677738575723,0.342677738575723,0.3405928185880698,0.3405928185880698,0.33848004270773374,0.33848004270773374,0.3363393096630489,0.3363393096630489,0.3341705197284814,0.3341705197284814,0.33197357472462996,0.33197357472462996,0.3297483741528947,0.3297483741528947,0.3274948190608081,0.3274948190608081,0.3252128120420348,0.3252128120420348,0.32290225414410734,0.32290225414410734,0.3205630479606904,0.3205630479606904,0.31819509608544894,0.31819509608544894,0.31579830265817965,0.31579830265817965,0.3133725694994814,0.3133725694994814,0.3109178015222173,0.3109178015222173,0.30843390209311833,0.30843390209311833,0.3059207768981138,0.3059207768981138,0.3033783308500669,0.3033783308500669,0.3008064680887747,0.3008064680887747,0.2982050958462989,0.2982050958462989,0.2955741198085688,0.2955741198085688,0.29291344720764617,0.29291344720764617,0.29022298372946026,0.29022298372946026,0.28750263892527117,0.28750263892527117,0.2847523184810084,0.2847523184810084,0.2819719327209982,0.2819719327209982,0.27916138965036835,0.27916138965036835,0.27632059804731285,0.27632059804731285,0.2734494682361578,0.2734494682361578,0.27054791054122973,0.27054791054122973,0.26761583451378873,0.26761583451378873,0.2646531520242932,0.2646531520242932,0.26165977494320186,0.26165977494320186,0.258635613594841,0.258635613594841,0.25558058216886775,0.25558058216886775,0.25249459253574036,0.25249459253574036,0.2493775581120501,0.2493775581120501,0.24622939308745379,0.24622939308745379,0.2430500108785424,0.2430500108785424,0.23983932722110524,0.23983932722110524,0.23659725707786555,0.23659725707786555,0.23332371618461265,0.23332371618461265,0.23001862027713585,0.23001862027713585,0.22668188663735692,0.22668188663735692,0.2233134325471974,0.2233134325471974,0.21991317528857893,0.21991317528857893,0.21648103368955554,0.21648103368955554,0.213016925805115,0.213016925805115,0.2095207712363775,0.2095207712363775,0.20599248958446306,0.20599248958446306,0.20243200122355795,0.20243200122355795,0.19883922652784852,0.19883922652784852,0.19521408819071934,0.19521408819071934,0.19155650658635678,0.19155650658635678,0.1878664044081456,0.1878664044081456,0.1841437051225366,0.1841437051225366,0.18038833219598063,0.18038833219598063,0.17660020909492866,0.17660020909492866,0.17277926083196377,0.17277926083196377,0.1689254116466031,0.1689254116466031,0.1650385888706282,0.1650385888706282,0.16111871674355616,0.16111871674355616,0.15716572337023477,0.15716572337023477,0.15317953608244556,0.15317953608244556,0.14916008221197027,0.14916008221197027,0.14510729063672287,0.14510729063672287,0.14102109023461723,0.14102109023461723,0.13690141065663353,0.13690141065663353,0.13274818155375176,0.13274818155375176,0.12856133489615051,0.12856133489615051,0.12434080110787611,0.12434080110787611,0.12008651293217319,0.12008651293217319,0.11579840233922033,0.11579840233922033,0.11147640284532838,0.11147640284532838,0.10712044796680821,0.10712044796680821,0.10273047199303686,0.10273047199303686,0.09830640998645745,0.09830640998645745,0.09384819700951316,0.09384819700951316,0.08935577044384564,0.08935577044384564,0.08482906689803035,0.08482906689803035,0.08026802298064276,0.08026802298064276,0.07567257692369724,0.07567257692369724,0.07104266780958102,0.07104266780958102,0.0663782347979878,0.0663782347979878,0.06167921774437094,0.06167921774437094,0.05694555719994327,0.05694555719994327,0.05217719456629042,0.05217719456629042,0.047374071476917856,0.047374071476917856,0.04253613057031704,0.04253613057031704,0.03766331494881914,0.03766331494881914,0.03275556833320819,0.03275556833320819,0.02781283529464109,0.02781283529464109,0.022835060868114362,0.022835060868114362,0.017822190784384063,0.017822190784384063,0.012774171469965826,0.012774171469965826,0.007690950116710744,0.007690950116710744,0.0025724743880402774,0.0025724743880402774,0.002581307264096639,0.002581307264096639,0.00777044575383683,0.00777044575383683,0.012994991245442943,0.012994991245442943,0.018254993338839346,0.018254993338839346,0.023550500891806894,0.023550500891806894,0.028881562066366898,0.028881562066366898,0.03424822432878115,0.03424822432878115,0.03965053444955187,0.03965053444955187,0.04508853858072841,0.04508853858072841,0.05056228210129392,0.05056228210129392,0.05607180969447203,0.05607180969447203,0.06161716542503345,0.06161716542503345,0.06719839250737612,0.06719839250737612,0.07281553353744505,0.07281553353744505,0.07846863033811911,0.07846863033811911,0.08415772465497058,0.08415772465497058,0.08988285545053351,0.08988285545053351,0.09564406447038017,0.09564406447038017,0.10144138882168591,0.10144138882168591,0.10727486793082448,0.10727486793082448,0.11314453967803742,0.11314453967803742,0.11905043962436772,0.11905043962436772,0.12499260487699071,0.12499260487699071,0.13097106945081713,0.13097106945081713,0.13698586967995618,0.13698586967995618,0.1430370388062524,0.1430370388062524,0.1491246100715503,0.1491246100715503,0.15524861517156227,0.15524861517156227,0.1614090865750667,0.1614090865750667,0.16760605443164345,0.16760605443164345,0.1738395496639387,0.1738395496639387,0.1801096008754001,0.1801096008754001,0.18641623744254146,0.18641623744254146,0.19275948719574423,0.19275948719574423,0.1991393764192577,0.1991393764192577,0.20555593217039717,0.20555593217039717,0.21200917996034563,0.21200917996034563,0.21849914452722002,0.21849914452722002,0.22502584983607105,0.22502584983607105,0.23158931907888336,0.23158931907888336,0.23818957467457533,0.23818957467457533,0.2448266390420654,0.2448266390420654,0.25150053228107355,0.25150053228107355,0.2582112744913197,0.2582112744913197,0.2649588857725239,0.2649588857725239,0.2717433846782738,0.2717433846782738,0.2785647882160247,0.2785647882160247,0.28542311339323206,0.28542311339323206,0.2923183772173512,0.2923183772173512,0.2992505951497051,0.2992505951497051,0.3062197803324184,0.3062197803324184,0.3132259482268143,0.3132259482268143,0.320269111201951,0.320269111201951,0.327349280853821,0.327349280853821,0.3344664695514826,0.3344664695514826,0.341620688117862,0.341620688117862,0.3488119442836207,0.3488119442836207,0.3560402496447511,0.3560402496447511,0.36330561038578224,0.36330561038578224,0.370608035010442,0.370608035010442,0.3779475289301933,0.3779475289301933,0.3853240991026315,0.3853240991026315,0.3927377493930875,0.3927377493930875,0.4001884844399581,0.4001884844399581,0.40767630733550797,0.40767630733550797,0.4152012203989356,0.4152012203989356,0.4227632251763731,0.4227632251763731,0.4303623224408869,0.4303623224408869,0.43799851219247676,0.43799851219247676,0.44567179288501063,0.44567179288501063,0.4533821637454221,0.4533821637454221,0.4611296216814467,0.4611296216814467,0.46891416360081983,0.46891416360081983,0.47673578409207834,0.47673578409207834,0.48459447928989147,0.48459447928989147,0.4924902430097301,0.4924902430097301,0.5004230675209326,0.5004230675209326,0.5083929458659036,0.5083929458659036,0.5163998695409155,0.5163998695409155,0.5244438292691744,0.5244438292691744,0.5325248150008204,0.5325248150008204,0.5406428151398611,0.5406428151398611,0.5487978173172381,0.5487978173172381,0.5569898099369589,0.5569898099369589,0.5652187790838332,0.5652187790838332,0.5734847100696038,0.5734847100696038,0.5817875866598815,0.5817875866598815,0.5901273941664095,0.5901273941664095,0.5985041140356,0.5985041140356,0.6069177300330638,0.6069177300330638,0.6153682220590811,0.6153682220590811,0.623855570013932,0.623855570013932,0.6323797545709622,0.6323797545709622,0.6409407540843198,0.6409407540843198,0.6495385461350863,0.6495385461350863,0.6581731067582111,0.6581731067582111,0.6668444135347755,0.6668444135347755,0.6755524401805305,0.6755524401805305,0.6842971611842928,0.6842971611842928,0.6930785502618135,0.6930785502618135,0.7018965795827112,0.7018965795827112,0.710751220543538,0.710751220543538,0.7196424445408459,0.7196424445408459,0.7285702214250557,0.7285702214250557,0.7375345187273886,0.7375345187273886,0.7465353062982645,0.7465353062982645,0.7555725501227731,0.7555725501227731,0.7646462169590692,0.7646462169590692,0.773756268926912,0.773756268926912,0.7829026774228532,0.7829026774228532,0.7920854045666519,0.7920854045666519,0.8013044117050001,0.8013044117050001,0.8105596524539289,0.8105596524539289,0.8198511036214535,0.8198511036214535,0.8291787110929432,0.8291787110929432,0.838542443945752,0.838542443945752,0.8479422557959104,0.8479422557959104,0.8573781002594499,0.8573781002594499,0.8668499464137239,0.8668499464137239,0.8763577324134404,0.8763577324134404,0.8859014273359529,0.8859014273359529,0.8954809847972928,0.8954809847972928,0.9050963429521673,0.9050963429521673,0.9147474708779306,0.9147474708779306,0.9244343144599521,0.9244343144599521,0.9341568195836011,0.9341568195836011,0.9439149321342466,0.9439149321342466,0.9537086134585812,0.9537086134585812,0.9635378094419742,0.9635378094419742,0.9734024505084719,0.9734024505084719,0.9833024980047664,0.9833024980047664,0.9932378978162272,0.9932378978162272,1.003208588097562,1.003208588097562,1.0132145070034788,1.0132145070034788,1.023255600419347,1.023255600419347,1.0333318142305352,1.0333318142305352,1.0434430865917514,1.0434430865917514,1.053589355657704,1.053589355657704,1.0637705673137619,1.0637705673137619,1.07398664425331,1.07398664425331,1.0842375323617173,1.0842375323617173,1.0945231697936915,1.0945231697936915,1.1048434869732793,1.1048434869732793,1.115198422055188,1.115198422055188,1.1255879054634643,1.1255879054634643,1.1360118676221542,1.1360118676221542,1.146470238955304,1.146470238955304,1.1569629576176215,1.1569629576176215,1.1674899463024913,1.1674899463024913,1.1780511354339598,1.1780511354339598,1.1886464554360736,1.1886464554360736,1.1992758367328777,1.1992758367328777,1.209939186556435,1.209939186556435,1.2206364507921148,1.2206364507921148,1.2313675444026395,1.2313675444026395,1.242132397812056,1.242132397812056,1.2529309182524255,1.2529309182524255,1.2637630438784564,1.2637630438784564,1.274628689652871,1.274628689652871,1.285527762807732,1.285527762807732,1.2964602014977464,1.2964602014977464,1.3074259129549761,1.3074259129549761,1.3184248198728057,1.3184248198728057,1.3294568294832971,1.3294568294832971,1.3405218644798351,1.3405218644798351,1.3516198398251427,1.3516198398251427,1.3627506627512815,1.3627506627512815,1.3739142482209747,1.3739142482209747,1.3851105111969455,1.3851105111969455,1.3963393666419175,1.3963393666419175,1.407600706326629,1.407600706326629,1.4188944606751257,1.4188944606751257,1.4302205214581476,1.4302205214581476,1.4415788036384165,1.4415788036384165,1.4529692144479947,1.4529692144479947,1.4643916533882821,1.4643916533882821,1.4758460276913405,1.4758460276913405,1.487332244589232,1.487332244589232,1.4988502035833564,1.4988502035833564,1.510399811905775,1.510399811905775,1.5219809613272266,1.5219809613272266,1.533593551349112,1.533593551349112,1.5452374969341534,1.5452374969341534,1.556912674391767,1.556912674391767,1.5686189986846752,1.5686189986846752,1.5803563615836178,1.5803563615836178,1.5921246548593329,1.5921246548593329,1.6039237780132198,1.6039237780132198,1.6157536150853573,1.6157536150853573,1.6276140733078055,1.6276140733078055,1.6395050367206425,1.6395050367206425,1.6514263970946061,1.6514263970946061,1.6633780539310972,1.6633780539310972,1.6753598758088695,1.6753598758088695,1.6873717776906458,1.6873717776906458,1.6994136281551808,1.6994136281551808,1.7114853189732127,1.7114853189732127,1.7235867341848183,1.7235867341848183,1.7357177732913989,1.7357177732913989,1.747878297141046,1.747878297141046,1.7600682129658212,1.7600682129658212,1.7722873893444788,1.7722873893444788,1.7845357025864348,1.7845357025864348,1.7968130521930887,1.7968130521930887,1.8091193067431948,1.8091193067431948,1.8214543425461687,1.8214543425461687,1.8338180436420874,1.8338180436420874,1.846210286340366,1.846210286340366,1.8586309546810824,1.8586309546810824,1.871079909512329,1.871079909512329,1.8835570348741821,1.8835570348741821,1.896062207076058,1.896062207076058,1.908595286966049,1.908595286966049,1.9211561663148937,1.9211561663148937,1.9337446982400233,1.9337446982400233,1.946360766781514,1.946360766781514,1.9590042327874597,1.9590042327874597,1.9716749725672749,1.9716749725672749,1.9843728469690527,1.9843728469690527,1.9970977323022079,1.9970977323022079,2.0098494894148335,2.0098494894148335,2.0226279868856833,2.0226279868856833,2.0354330855628504,2.0354330855628504,2.0482646540250884,2.0482646540250884,2.0611225453898285,2.0611225453898285,2.074006643697147,2.074006643697147,2.0869167866031533,2.0869167866031533,2.099852850417261,2.099852850417261,2.1128146882569028,2.1128146882569028,2.1258021687008313,2.1258021687008313,2.138815137135818,2.138815137135818,2.1518534544099532,2.1518534544099532,2.164916989101992,2.164916989101992,2.178005578868042,2.178005578868042,2.191119100017519,2.191119100017519,2.204257390206531,2.204257390206531,2.2174203025525085,2.2174203025525085,2.230607705634206,2.230607705634206,2.2438194371077316,2.2438194371077316,2.2570553500905155,2.2570553500905155,2.270315297699989,2.270315297699989,2.2835991330535834,2.2835991330535834,2.296906701538068,2.296906701538068,2.3102378562708736,2.3102378562708736,2.3235924349081083,2.3235924349081083,2.3369702828365413,2.3369702828365413,2.350371260904265,2.350371260904265,2.363795206767388,2.363795206767388,2.377241958082017,2.377241958082017,2.3907113679655847,2.3907113679655847,2.404203274074198,2.404203274074198,2.4177175140639644,2.4177175140639644,2.4312539410523155,2.4312539410523155,2.444812392695359,2.444812392695359,2.458392698918542,2.458392698918542,2.4719947051086324,2.4719947051086324,2.4856182489217398,2.4856182489217398,2.4992631680139716,2.4992631680139716,2.512929300041434,2.512929300041434,2.5266164826602378,2.5266164826602378,2.5403245535264896,2.5403245535264896,2.5540533348349728,2.5540533348349728,2.567802671972459,2.567802671972459,2.581572394864394,2.581572394864394,2.5953623334362232,2.5953623334362232,2.609172325344056,2.609172325344056,2.6230021927826765,2.6230021927826765,2.6368517811388545,2.6368517811388545,2.650720897146051,2.650720897146051,2.6646093939216975,2.6646093939216975,2.6785170781992567,2.6785170781992567,2.6924437953654965,2.6924437953654965,2.7063893598845405,2.7063893598845405,2.720353601681836,2.720353601681836,2.734336350682829,2.734336350682829,2.7483374290823037,2.7483374290823037,2.7623566590750457,2.7623566590750457,2.7763938551251783,2.7763938551251783,2.7904488626194706,2.7904488626194706,2.8045214805607235,2.8045214805607235,2.818611538874382,2.818611538874382,2.8327188674858945,2.8327188674858945,2.846843273128721,2.846843273128721,2.8609845779976473,2.8609845779976473,2.875142604287459,2.875142604287459,2.889317166462277,2.889317166462277,2.9035080867168883,2.9035080867168883,2.917715179515415,2.917715179515415,2.9319382593219814,2.9319382593219814,2.9461771406007116,2.9461771406007116,2.9604316455463877,2.9604316455463877,2.974701573161813,2.974701573161813,2.9889867533724317,2.9889867533724317,3.0032869929117063,3.0032869929117063,3.0176020985130996,3.0176020985130996,3.0319318923713943,3.0319318923713943,3.046276173489393,3.046276173489393,3.060634764061879,3.060634764061879,3.075007463091653,3.075007463091653,3.0893940850428385,3.0893940850428385,3.1037944443795586,3.1037944443795586,3.1182083401046143,3.1182083401046143,3.1326355789514664,3.1326355789514664,3.1470759753842397,3.1470759753842397,3.1615293284057318,3.1615293284057318,3.175995452480069,3.175995452480069,3.1904741466100495,3.1904741466100495,3.2049652097984747,3.2049652097984747,3.219468456509467,3.219468456509467,3.233983685745828,3.233983685745828,3.2485106965103574,3.2485106965103574,3.2630492955365167,3.2630492955365167,3.2775992895577675,3.2775992895577675,3.2921604698462485,3.2921604698462485,3.306732635404762,3.306732635404762,3.3213155929667666,3.3213155929667666,3.3359091492657265,3.3359091492657265,3.350513087843118,3.350513087843118,3.3651272077017413,3.3651272077017413,3.3797513233057206,3.3797513233057206,3.3943852181965317,3.3943852181965317,3.4090286913769763,3.4090286913769763,3.4236815418498527,3.4236815418498527,3.438343560887303,3.438343560887303,3.4530145474921237,3.4530145474921237,3.467694292936456,3.467694292936456,3.48238260395376,3.48238260395376,3.4970792563548545,3.4970792563548545,3.5117840491425363,3.5117840491425363,3.526496789050269,3.526496789050269,3.541217244158206,3.541217244158206,3.5559452289304714,3.5559452289304714,3.5706805191778805,3.5706805191778805,3.5854229139032334,3.5854229139032334,3.6001721966480074,3.6001721966480074,3.614928166415003,3.614928166415003,3.6296906144763583,3.6296906144763583,3.644459316642891,3.644459316642891,3.6592340641867382,3.6592340641867382,3.6740146561106983,3.6740146561106983,3.688800868225591,3.688800868225591,3.703592499534214,3.703592499534214,3.7183893258473835,3.7183893258473835,3.7331911384372387,3.7331911384372387,3.747997728575918,3.747997728575918,3.7628088720742365,3.7628088720742365,3.7776243602043342,3.7776243602043342,3.7924439765076885,3.7924439765076885,3.807267504525774,3.807267504525774,3.822094727800071,3.822094727800071,3.8369254298720548,3.8369254298720548,3.851759394283204,3.851759394283204,3.8665964045749943,3.8665964045749943,3.8814362442889037,3.8814362442889037,3.8962786969664105,3.8962786969664105,3.9111235384183294,3.9111235384183294,3.9259705521861363,3.9259705521861363,3.94081951408065,3.94081951408065,3.955670223104668,3.955670223104668,3.9705224396076826,3.9705224396076826,3.9853759471311743,3.9853759471311743,4.000230536947279,4.000230536947279,4.015085977136152,4.015085977136152,4.029942043508608,4.029942043508608,4.044798527336786,4.044798527336786,4.059655196700843,4.059655196700843,4.0745118351422525,4.0745118351422525,4.089368218471832,4.089368218471832,4.104224122500396,4.104224122500396,4.119079323038761,4.119079323038761,4.133933595897745,4.133933595897745,4.14878672461882,4.14878672461882,4.163638477282145,4.163638477282145,4.1784886374291945,4.1784886374291945,4.1933369731401235,4.1933369731401235,4.208183267956408,4.208183267956408,4.223027282227542,4.223027282227542,4.2378688072256665,4.2378688072256665,4.252707611030932,4.252707611030932,4.267543461723492,4.267543461723492,4.282376142844828,4.282376142844828,4.297205414744431,4.297205414744431,4.312031068694437,4.312031068694437,4.32685286504434,4.32685286504434,4.341670579604958,4.341670579604958,4.356483988187105,4.356483988187105,4.371292858870934,4.371292858870934,4.386096967467263,4.386096967467263,4.400896082056245,4.400896082056245,4.415689978448695,4.415689978448695,4.43047842472477,4.43047842472477,4.445261196695281,4.445261196695281,4.460038054709726,4.460038054709726,4.474808790040238,4.474808790040238,4.489573155305653,4.489573155305653,4.504330926316785,4.504330926316785,4.519081878884449,4.519081878884449,4.533825773358138,4.533825773358138,4.5485623932793295,4.5485623932793295,4.563291491266856,4.563291491266856,4.578012858592854,4.578012858592854,4.592726247876154,4.592726247876154,4.607431427196913,4.607431427196913,4.622128180096605,4.622128180096605,4.636816266924726,4.636816266924726,4.65149546349209,4.65149546349209,4.66616553014819,4.66616553014819,4.680826234973179,4.680826234973179,4.695477361508536,4.695477361508536,4.710118662373089,4.710118662373089,4.72474991337766,4.72474991337766,4.739370882602397,4.739370882602397,4.753981330396795,4.753981330396795,4.76858104030233,4.76858104030233,4.783169772668497,4.783169772668497,4.7977472878447855,4.7977472878447855,4.812313369372677,4.812313369372677,4.82686777760166,4.82686777760166,4.841410280611891,4.841410280611891,4.855940638752861,4.855940638752861,4.870458635566049,4.870458635566049,4.8849640236702845,4.8849640236702845,4.899456586607045,4.899456586607045,4.9139360769951645,4.9139360769951645,4.928402270645455,4.928402270645455,4.9428549356380715,4.9428549356380715,4.957293832322509,4.957293832322509,4.971718736509579,4.971718736509579,4.986129416279438,4.986129416279438,5.0005256319815805,5.0005256319815805,5.014907159426819,5.014907159426819,5.0292737589646475,5.0292737589646475,5.043625198675222,5.043625198675222,5.057961254369354,5.057961254369354,5.072281686396539,5.072281686396539,5.0865862628369305,5.0865862628369305,5.100874751770683,5.100874751770683,5.1151469290086125,5.1151469290086125,5.129402554900211,5.129402554900211,5.14364138979497,5.14364138979497,5.15786321723437,5.15786321723437,5.172067797567901,5.172067797567901,5.186254898875717,5.186254898875717,5.200424289237974,5.200424289237974,5.214575736734825,5.214575736734825,5.228709017177085,5.228709017177085,5.242823883183587,5.242823883183587,5.256920118295806,5.256920118295806,5.270997490593898,5.270997490593898,5.285055752696695,5.285055752696695,5.29909468814567,5.29909468814567,5.313114065020981,5.313114065020981,5.32711364367212,5.32711364367212,5.341093207640563,5.341093207640563,5.355052509545143,5.355052509545143,5.368991332927334,5.368991332927334,5.3829094381366325,5.3829094381366325,5.396806600983853,5.396806600983853,5.410682581818485,5.410682581818485,5.42453716418201,5.42453716418201,5.438370108423919,5.438370108423919,5.452181190355028,5.452181190355028,5.465970178055488,5.465970178055488,5.479736839605459,5.479736839605459,5.493480950815751,5.493480950815751,5.507202279766522,5.507202279766522,5.520900594537927,5.520900594537927,5.534575678671439,5.534575678671439,5.548227292516553,5.548227292516553,5.561855211884085,5.561855211884085,5.575459204854189,5.575459204854189,5.589039054968341,5.589039054968341,5.602594522576035,5.602594522576035,5.616125383488086,5.616125383488086,5.62963141351531,5.62963141351531,5.6431123884685235,5.6431123884685235,5.656568076427878,5.656568076427878,5.669998245473531,5.669998245473531,5.683402686877619,5.683402686877619,5.696781160989636,5.696781160989636,5.710133443620397,5.710133443620397,5.723459318311379,5.723459318311379,5.736758553142737,5.736758553142737,5.750030923925285,5.750030923925285,5.7632762064698415,5.7632762064698415,5.776494176587218,5.776494176587218,5.789684617818897,5.789684617818897,5.802847290514367,5.802847290514367,5.815981993676431,5.815981993676431,5.829088479923917,5.829088479923917,5.8421665482596286,5.8421665482596286,5.855215966763717,5.855215966763717,5.868236511247001,5.868236511247001,5.881227965250955,5.881227965250955,5.894190104586396,5.894190104586396,5.90712270506414,5.90712270506414,5.9200255579563255,5.9200255579563255,5.932898439073767,5.932898439073767,5.945741116496621,5.945741116496621,5.958553389227686,5.958553389227686,5.971335025347116,5.971335025347116,5.984085808396388,5.984085808396388,5.996805521916983,5.996805521916983,6.009493949450373,6.009493949450373,6.022150874538037,6.022150874538037,6.034776072990792,6.034776072990792,6.047369336080778,6.047369336080778,6.059930447349468,6.059930447349468,6.072459190338343,6.072459190338343,6.084955340858215,6.084955340858215,6.097418690181226,6.097418690181226,6.109849029579514,6.109849029579514,6.122246142594555,6.122246142594555,6.134609805037166,6.134609805037166,6.146939815910146,6.146939815910146,6.159235958754975,6.159235958754975,6.171498017113127,6.171498017113127,6.183725782256743,6.183725782256743,6.195919045457959,6.195919045457959,6.208077597988916,6.208077597988916,6.220201223391091,6.220201223391091,6.232289705205961,6.232289705205961,6.244342850166988,6.244342850166988,6.25636044181565,6.25636044181565,6.268342271424083,6.268342271424083,6.280288122533767,6.280288122533767,6.292197801878162,6.292197801878162,6.3040711007294075,6.3040711007294075,6.315907802628982,6.315907802628982,6.327707706579683,6.327707706579683,6.339470611584313,6.339470611584313,6.35119630891501,6.35119630891501,6.362884597574574,6.362884597574574,6.374535268835146,6.374535268835146,6.386148121699522,6.386148121699522,6.397722947439844,6.397722947439844,6.409259560520234,6.409259560520234,6.4207577367515105,6.4207577367515105,6.432217298328454,6.432217298328454,6.443638028792543,6.443638028792543,6.455019734877241,6.455019734877241,6.4663622078546865,6.4663622078546865,6.477665262189,6.477665262189,6.4889286968829865,6.4889286968829865,6.500152310939442,6.500152310939442,6.511335903361169,6.511335903361169,6.52247928861229,6.52247928861229,6.533582265695607,6.533582265695607,6.544644633613918,6.544644633613918,6.555666206831347,6.555666206831347,6.566646784350694,6.566646784350694,6.577586180636083,6.577586180636083,6.588484194690315,6.588484194690315,6.599340648708172,6.599340648708172,6.6101553339617976,6.6101553339617976,6.620928064915311,6.620928064915311,6.631658656032838,6.631658656032838,6.6423469140478355,6.6423469140478355,6.652992653424434,6.652992653424434,6.66359568862675,6.66359568862675,6.674155826388252,6.674155826388252,6.684672873442397,6.684672873442397,6.695146659714634,6.695146659714634,6.705576991938422,6.705576991938422,6.715963684577887,6.715963684577887,6.726306559827813,6.726306559827813,6.73660542442166,6.73660542442166,6.746860100554216,6.746860100554216,6.757070410420264,6.757070410420264,6.767236160753267,6.767236160753267,6.777357189209331,6.777357189209331,6.78743330252192,6.78743330252192,6.797464322885817,6.797464322885817,6.807450072495808,6.807450072495808,6.81739038127734,6.81739038127734,6.827285063694534,6.827285063694534,6.837133949672839,6.837133949672839,6.846936861407037,6.846936861407037,6.856693621091915,6.856693621091915,6.866404058652918,6.866404058652918,6.876067996284833,6.876067996284833,6.8856852716437675,6.8856852716437675,6.895255699193843,6.895255699193843,6.90477912432183,6.90477912432183,6.914255361491851,6.914255361491851,6.923684248360015,6.923684248360015,6.933065622582432,6.933065622582432,6.942399306353881,6.942399306353881,6.951685137330474,6.951685137330474,6.960922945437659,6.960922945437659,6.97011256833154,6.97011256833154,6.979253851398889,6.979253851398889,6.988346609103826,6.988346609103826,6.997390694563788,6.997390694563788,7.006385945434878,7.006385945434878,7.015332199373204,7.015332199373204,7.024229286304215,7.024229286304215,7.0330770593453416,7.0330770593453416,7.041875348422028,7.041875348422028,7.050624006651707,7.050624006651707,7.059322863959823,7.059322863959823,7.06797178119447,7.06797178119447,7.076570588281096,7.076570588281096,7.085119130606468,7.085119130606468,7.093617269018678,7.093617269018678,7.102064833443176,7.102064833443176,7.11046168472805,7.11046168472805,7.11880766052941,7.11880766052941,7.127102621695351,7.127102621695351,7.1353464136126385,7.1353464136126385,7.143538881668044,7.143538881668044,7.151679886709658,7.151679886709658,7.1597692818549135,7.1597692818549135,7.167806920221242,7.167806920221242,7.175792647195411,7.175792647195411,7.183726331356175,7.183726331356175,7.191607825820967,7.191607825820967,7.199436983707214,7.199436983707214,7.207213673593674,7.207213673593674,7.214937740867114,7.214937740867114,7.2226090541062895,7.2226090541062895,7.230227481889951,7.230227481889951,7.237792869604874,7.237792869604874,7.245305093560471,7.245305093560471,7.252764006874171,7.252764006874171,7.260169485855393,7.260169485855393,7.267521391352226,7.267521391352226,7.2748195919434275,7.2748195919434275,7.2820639562077485,7.2820639562077485,7.289254344993283,7.289254344993283,7.296390634609448,7.296390634609448,7.303472693634998,7.303472693634998,7.310500390648682,7.310500390648682,7.3174736096905795,7.3174736096905795,7.324392211608784,7.324392211608784,7.3312560804433735,7.3312560804433735,7.3380650847731,7.3380650847731,7.34481910090738,7.34481910090738,7.351518005155628,7.351518005155628,7.358161681557923,7.358161681557923,7.364750006423679,7.364750006423679,7.371282863792974,7.371282863792974,7.377760129975224,7.377760129975224,7.384181681279842,7.384181681279842,7.39054741720823,7.39054741720823,7.396857206339143,7.396857206339143,7.403110940443318,7.403110940443318,7.409308511291494,7.409308511291494,7.415449795193086,7.415449795193086,7.421534683918834,7.421534683918834,7.427563069239476,7.427563069239476,7.43353484292575,7.43353484292575,7.439449889017734,7.439449889017734,7.445308099286166,7.445308099286166,7.451109380963108,7.451109380963108,7.456853610357974,7.456853610357974,7.46254070243349,7.46254070243349,7.46817053349907,7.46817053349907,7.473743010786776,7.473743010786776,7.479258026067345,7.479258026067345,7.484715486572843,7.484715486572843,7.490115291804664,7.490115291804664,7.495457341264214,7.495457341264214,7.500741542183552,7.500741542183552,7.505967786333414,7.505967786333414,7.511135980945867,7.511135980945867,7.51624604098363,7.51624604098363,7.521297865948105,7.521297865948105,7.526291363071354,7.526291363071354,7.531226447316098,7.531226447316098,7.536103025914401,7.536103025914401,7.540920998367663,7.540920998367663,7.545680295099929,7.545680295099929,7.5503808156126,7.5503808156126,7.555022474868398,7.555022474868398,7.559605195560709,7.559605195560709,7.564128884921595,7.564128884921595,7.568593473375102,7.568593473375102,7.572998860422628,7.572998860422628,7.577344984218884,7.577344984218884,7.581631744265267,7.581631744265267,7.585859086447151,7.585859086447151,7.59002691026593,7.59002691026593,7.594135153876316,7.594135153876316,7.598183739971692,7.598183739971692,7.602172591245444,7.602172591245444,7.606101630390955,7.606101630390955,7.609970795562934,7.609970795562934,7.613780009454767,7.613780009454767,7.617529202490496,7.617529202490496,7.621218305094173,7.621218305094173,7.624847255420502,7.624847255420502,7.6284159761628665,7.6284159761628665,7.63192441320664,7.63192441320664,7.635372496975867,7.635372496975867,7.638760165625253,7.638760165625253,7.642087349578846,7.642087349578846,7.645354002452677,7.645354002452677,7.6485600469401325,7.6485600469401325,7.651705436657242,7.651705436657242,7.65479010975871,7.65479010975871,7.657814012129908,7.657814012129908,7.660777081925547,7.660777081925547,7.663679272761655,7.663679272761655,7.666520522792938,7.666520522792938,7.66930078563543,7.66930078563543,7.6720200071745,7.6720200071745,7.674678141026176,7.674678141026176,7.677275140806492,7.677275140806492,7.679810952400815,7.679810952400815,7.682285521694517,7.682285521694517,7.684698825495611,7.684698825495611,7.687050794228144,7.687050794228144,7.689341404700131,7.689341404700131,7.6915706027969435,7.6915706027969435,7.693738357595932,7.693738357595932,7.695844614982468,7.695844614982468,7.697889351764566,7.697889351764566,7.699872521558258,7.699872521558258,7.701794085710234,7.701794085710234,7.703654013297851,7.703654013297851,7.705452265667799,7.705452265667799,7.707188819628095,7.707188819628095,7.70886363652543,7.70886363652543,7.7104766854371585,7.7104766854371585,7.712027935440634,7.712027935440634,7.713517355613211,7.713517355613211,7.714944930493567,7.714944930493567,7.716310621428393,7.716310621428393,7.717614405225706,7.717614405225706,7.718856266424181,7.718856266424181,7.720036174101172,7.720036174101172,7.721154105064695,7.721154105064695,7.72221004385343,7.72221004385343,7.723203967275387,7.723203967275387,7.724135867599909,7.724135867599909,7.725005706173684,7.725005706173684,7.725813490727378,7.725813490727378,7.7265591903383415,7.7265591903383415,7.727242797275916,7.727242797275916,7.727864296078775,7.727864296078775,7.728423686746923,7.728423686746923,7.728920938357708,7.728920938357708,7.729356058641794,7.729356058641794,7.729729032137862,7.729729032137862,7.7300398511152455,7.7300398511152455,7.730288515573945,7.730288515573945,7.730475025513964,7.730475025513964,7.730599357743314,7.730599357743314,7.730661527723319,7.730661527723319,7.730661527723321,7.730661527723321,7.730599357743314,7.730599357743314,7.730475025513964,7.730475025513964,7.730288515573945,7.730288515573945,7.7300398511152455,7.7300398511152455,7.729729032137862,7.729729032137862,7.7293560586417955,7.7293560586417955,7.728920938357708,7.728920938357708,7.728423686746923,7.728423686746923,7.727864296078775,7.727864296078775,7.727242797275916,7.727242797275916,7.7265591903383415,7.7265591903383415,7.725813490727378,7.725813490727378,7.725005706173684,7.725005706173684,7.724135867599909,7.724135867599909,7.723203967275387,7.723203967275387,7.72221004385343,7.72221004385343,7.721154105064695,7.721154105064695,7.720036174101172,7.720036174101172,7.718856266424181,7.718856266424181,7.717614405225706,7.717614405225706,7.716310621428393,7.716310621428393,7.714944930493567,7.714944930493567,7.713517355613211,7.713517355613211,7.712027935440634,7.712027935440634,7.7104766854371585,7.7104766854371585,7.70886363652543,7.70886363652543,7.707188819628095,7.707188819628095,7.705452265667799,7.705452265667799,7.703654013297851,7.703654013297851,7.701794085710234,7.701794085710234,7.699872521558258,7.699872521558258,7.697889351764566,7.697889351764566,7.695844614982468,7.695844614982468,7.693738357595932,7.693738357595932,7.6915706027969435,7.6915706027969435,7.689341404700131,7.689341404700131,7.687050794228144,7.687050794228144,7.684698825495611,7.684698825495611,7.682285521694517,7.682285521694517,7.679810952400815,7.679810952400815,7.677275140806492,7.677275140806492,7.674678141026176,7.674678141026176,7.6720200071745,7.6720200071745,7.66930078563543,7.66930078563543,7.666520522792938,7.666520522792938,7.663679272761655,7.663679272761655,7.660777081925547,7.660777081925547,7.657814012129908,7.657814012129908,7.65479010975871,7.65479010975871,7.651705436657242,7.651705436657242,7.6485600469401325,7.6485600469401325,7.645354002452677,7.645354002452677,7.642087349578846,7.642087349578846,7.638760165625253,7.638760165625253,7.635372496975867,7.635372496975867,7.63192441320664,7.63192441320664,7.628415976162866,7.628415976162866,7.624847255420502,7.624847255420502,7.621218305094173,7.621218305094173,7.617529202490497,7.617529202490497,7.613780009454766,7.613780009454766,7.609970795562934,7.609970795562934,7.606101630390956,7.606101630390956,7.602172591245444,7.602172591245444,7.598183739971692,7.598183739971692,7.594135153876316,7.594135153876316,7.59002691026593,7.59002691026593,7.585859086447151,7.585859086447151,7.581631744265267,7.581631744265267,7.577344984218884,7.577344984218884,7.572998860422628,7.572998860422628,7.568593473375102,7.568593473375102,7.564128884921595,7.564128884921595,7.559605195560709,7.559605195560709,7.555022474868399,7.555022474868399,7.5503808156126,7.5503808156126,7.545680295099928,7.545680295099928,7.540920998367662,7.540920998367662,7.536103025914401,7.536103025914401,7.531226447316097,7.531226447316097,7.526291363071354,7.526291363071354,7.521297865948106,7.521297865948106,7.51624604098363,7.51624604098363,7.511135980945868,7.511135980945868,7.505967786333414,7.505967786333414,7.500741542183551,7.500741542183551,7.495457341264213,7.495457341264213,7.490115291804664,7.490115291804664,7.484715486572842,7.484715486572842,7.479258026067345,7.479258026067345,7.473743010786776,7.473743010786776,7.4681705334990705,7.4681705334990705,7.46254070243349,7.46254070243349,7.4568536103579754,7.4568536103579754,7.451109380963107,7.451109380963107,7.445308099286166,7.445308099286166,7.439449889017734,7.439449889017734,7.43353484292575,7.43353484292575,7.427563069239476,7.427563069239476,7.421534683918834,7.421534683918834,7.415449795193086,7.415449795193086,7.409308511291494,7.409308511291494,7.403110940443318,7.403110940443318,7.396857206339143,7.396857206339143,7.39054741720823,7.39054741720823,7.384181681279842,7.384181681279842,7.377760129975223,7.377760129975223,7.371282863792974,7.371282863792974,7.36475000642368,7.36475000642368,7.358161681557923,7.358161681557923,7.351518005155628,7.351518005155628,7.34481910090738,7.34481910090738,7.3380650847731,7.3380650847731,7.3312560804433735,7.3312560804433735,7.324392211608784,7.324392211608784,7.3174736096905795,7.3174736096905795,7.310500390648682,7.310500390648682,7.303472693634997,7.303472693634997,7.296390634609448,7.296390634609448,7.289254344993284,7.289254344993284,7.282063956207749,7.282063956207749,7.2748195919434275,7.2748195919434275,7.2675213913522265,7.2675213913522265,7.260169485855393,7.260169485855393,7.252764006874171,7.252764006874171,7.2453050935604715,7.2453050935604715,7.237792869604874,7.237792869604874,7.230227481889952,7.230227481889952,7.222609054106289,7.222609054106289,7.214937740867114,7.214937740867114,7.207213673593674,7.207213673593674,7.199436983707214,7.199436983707214,7.191607825820967,7.191607825820967,7.183726331356175,7.183726331356175,7.175792647195412,7.175792647195412,7.167806920221242,7.167806920221242,7.159769281854914,7.159769281854914,7.151679886709659,7.151679886709659,7.143538881668045,7.143538881668045,7.135346413612639,7.135346413612639,7.127102621695351,7.127102621695351,7.118807660529412,7.118807660529412,7.11046168472805,7.11046168472805,7.102064833443176,7.102064833443176,7.0936172690186785,7.0936172690186785,7.085119130606468,7.085119130606468,7.076570588281097,7.076570588281097,7.06797178119447,7.06797178119447,7.059322863959824,7.059322863959824,7.050624006651706,7.050624006651706,7.041875348422027,7.041875348422027,7.0330770593453416,7.0330770593453416,7.024229286304215,7.024229286304215,7.015332199373204,7.015332199373204,7.006385945434878,7.006385945434878,6.997390694563788,6.997390694563788,6.988346609103827,6.988346609103827,6.979253851398889,6.979253851398889,6.97011256833154,6.97011256833154,6.960922945437659,6.960922945437659,6.951685137330474,6.951685137330474,6.94239930635388,6.94239930635388,6.933065622582431,6.933065622582431,6.923684248360014,6.923684248360014,6.914255361491852,6.914255361491852,6.90477912432183,6.90477912432183,6.895255699193843,6.895255699193843,6.8856852716437675,6.8856852716437675,6.876067996284833,6.876067996284833,6.866404058652918,6.866404058652918,6.856693621091916,6.856693621091916,6.846936861407036,6.846936861407036,6.837133949672838,6.837133949672838,6.827285063694534,6.827285063694534,6.81739038127734,6.81739038127734,6.807450072495807,6.807450072495807,6.797464322885817,6.797464322885817,6.78743330252192,6.78743330252192,6.777357189209332,6.777357189209332,6.767236160753267,6.767236160753267,6.757070410420265,6.757070410420265,6.746860100554217,6.746860100554217,6.73660542442166,6.73660542442166,6.726306559827814,6.726306559827814,6.715963684577886,6.715963684577886,6.705576991938422,6.705576991938422,6.695146659714633,6.695146659714633,6.684672873442397,6.684672873442397,6.674155826388252,6.674155826388252,6.66359568862675,6.66359568862675,6.652992653424434,6.652992653424434,6.6423469140478355,6.6423469140478355,6.631658656032837,6.631658656032837,6.620928064915311,6.620928064915311,6.610155333961798,6.610155333961798,6.599340648708173,6.599340648708173,6.588484194690316,6.588484194690316,6.577586180636083,6.577586180636083,6.566646784350694,6.566646784350694,6.555666206831346,6.555666206831346,6.544644633613918,6.544644633613918,6.533582265695607,6.533582265695607,6.52247928861229,6.52247928861229,6.511335903361169,6.511335903361169,6.500152310939443,6.500152310939443,6.488928696882986,6.488928696882986,6.477665262189001,6.477665262189001,6.4663622078546865,6.4663622078546865,6.455019734877242,6.455019734877242,6.443638028792543,6.443638028792543,6.432217298328454,6.432217298328454,6.4207577367515105,6.4207577367515105,6.409259560520234,6.409259560520234,6.397722947439845,6.397722947439845,6.386148121699522,6.386148121699522,6.374535268835146,6.374535268835146,6.362884597574573,6.362884597574573,6.35119630891501,6.35119630891501,6.339470611584313,6.339470611584313,6.327707706579683,6.327707706579683,6.315907802628982,6.315907802628982,6.3040711007294075,6.3040711007294075,6.292197801878162,6.292197801878162,6.280288122533767,6.280288122533767,6.268342271424082,6.268342271424082,6.25636044181565,6.25636044181565,6.244342850166988,6.244342850166988,6.232289705205961,6.232289705205961,6.220201223391091,6.220201223391091,6.208077597988916,6.208077597988916,6.195919045457959,6.195919045457959,6.183725782256742,6.183725782256742,6.171498017113126,6.171498017113126,6.159235958754975,6.159235958754975,6.146939815910146,6.146939815910146,6.134609805037166,6.134609805037166,6.122246142594555,6.122246142594555,6.109849029579514,6.109849029579514,6.097418690181226,6.097418690181226,6.084955340858215,6.084955340858215,6.072459190338342,6.072459190338342,6.059930447349468,6.059930447349468,6.047369336080778,6.047369336080778,6.034776072990793,6.034776072990793,6.022150874538037,6.022150874538037,6.0094939494503725,6.0094939494503725,5.996805521916983,5.996805521916983,5.984085808396388,5.984085808396388,5.971335025347115,5.971335025347115,5.958553389227685,5.958553389227685,5.94574111649662,5.94574111649662,5.9328984390737665,5.9328984390737665,5.920025557956325,5.920025557956325,5.90712270506414,5.90712270506414,5.894190104586396,5.894190104586396,5.881227965250955,5.881227965250955,5.868236511247001,5.868236511247001,5.855215966763717,5.855215966763717,5.8421665482596286,5.8421665482596286,5.829088479923917,5.829088479923917,5.815981993676431,5.815981993676431,5.802847290514367,5.802847290514367,5.789684617818897,5.789684617818897,5.776494176587219,5.776494176587219,5.7632762064698415,5.7632762064698415,5.750030923925285,5.750030923925285,5.736758553142736,5.736758553142736,5.723459318311378,5.723459318311378,5.710133443620397,5.710133443620397,5.696781160989637,5.696781160989637,5.68340268687762,5.68340268687762,5.669998245473531,5.669998245473531,5.656568076427878,5.656568076427878,5.643112388468524,5.643112388468524,5.62963141351531,5.62963141351531,5.616125383488086,5.616125383488086,5.602594522576035,5.602594522576035,5.5890390549683415,5.5890390549683415,5.575459204854189,5.575459204854189,5.561855211884085,5.561855211884085,5.548227292516553,5.548227292516553,5.534575678671439,5.534575678671439,5.520900594537927,5.520900594537927,5.507202279766523,5.507202279766523,5.493480950815751,5.493480950815751,5.479736839605459,5.479736839605459,5.465970178055488,5.465970178055488,5.452181190355027,5.452181190355027,5.4383701084239195,5.4383701084239195,5.424537164182009,5.424537164182009,5.410682581818485,5.410682581818485,5.396806600983853,5.396806600983853,5.3829094381366325,5.3829094381366325,5.368991332927334,5.368991332927334,5.355052509545143,5.355052509545143,5.341093207640563,5.341093207640563,5.327113643672121,5.327113643672121,5.313114065020981,5.313114065020981,5.29909468814567,5.29909468814567,5.285055752696695,5.285055752696695,5.270997490593898,5.270997490593898,5.256920118295806,5.256920118295806,5.242823883183587,5.242823883183587,5.228709017177085,5.228709017177085,5.214575736734825,5.214575736734825,5.200424289237974,5.200424289237974,5.186254898875716,5.186254898875716,5.172067797567901,5.172067797567901,5.15786321723437,5.15786321723437,5.14364138979497,5.14364138979497,5.129402554900211,5.129402554900211,5.1151469290086125,5.1151469290086125,5.100874751770682,5.100874751770682,5.0865862628369305,5.0865862628369305,5.072281686396539,5.072281686396539,5.057961254369354,5.057961254369354,5.043625198675222,5.043625198675222,5.0292737589646475,5.0292737589646475,5.014907159426819,5.014907159426819,5.0005256319815805,5.0005256319815805,4.9861294162794385,4.9861294162794385,4.971718736509579,4.971718736509579,4.957293832322509,4.957293832322509,4.9428549356380715,4.9428549356380715,4.928402270645455,4.928402270645455,4.9139360769951645,4.9139360769951645,4.899456586607045,4.899456586607045,4.8849640236702845,4.8849640236702845,4.870458635566049,4.870458635566049,4.855940638752861,4.855940638752861,4.841410280611891,4.841410280611891,4.82686777760166,4.82686777760166,4.812313369372676,4.812313369372676,4.7977472878447855,4.7977472878447855,4.783169772668497,4.783169772668497,4.76858104030233,4.76858104030233,4.753981330396795,4.753981330396795,4.739370882602397,4.739370882602397,4.72474991337766,4.72474991337766,4.710118662373091,4.710118662373091,4.695477361508536,4.695477361508536,4.680826234973179,4.680826234973179,4.66616553014819,4.66616553014819,4.65149546349209,4.65149546349209,4.636816266924726,4.636816266924726,4.622128180096605,4.622128180096605,4.6074314271969135,4.6074314271969135,4.592726247876154,4.592726247876154,4.578012858592854,4.578012858592854,4.563291491266856,4.563291491266856,4.5485623932793295,4.5485623932793295,4.533825773358139,4.533825773358139,4.519081878884449,4.519081878884449,4.504330926316785,4.504330926316785,4.489573155305653,4.489573155305653,4.474808790040238,4.474808790040238,4.460038054709726,4.460038054709726,4.445261196695282,4.445261196695282,4.430478424724769,4.430478424724769,4.415689978448696,4.415689978448696,4.400896082056245,4.400896082056245,4.386096967467262,4.386096967467262,4.371292858870934,4.371292858870934,4.356483988187105,4.356483988187105,4.341670579604958,4.341670579604958,4.32685286504434,4.32685286504434,4.312031068694437,4.312031068694437,4.29720541474443,4.29720541474443,4.282376142844828,4.282376142844828,4.267543461723492,4.267543461723492,4.252707611030932,4.252707611030932,4.2378688072256665,4.2378688072256665,4.223027282227543,4.223027282227543,4.208183267956408,4.208183267956408,4.1933369731401235,4.1933369731401235,4.178488637429194,4.178488637429194,4.163638477282145,4.163638477282145,4.14878672461882,4.14878672461882,4.133933595897744,4.133933595897744,4.119079323038762,4.119079323038762,4.104224122500397,4.104224122500397,4.089368218471832,4.089368218471832,4.0745118351422525,4.0745118351422525,4.059655196700843,4.059655196700843,4.044798527336787,4.044798527336787,4.029942043508608,4.029942043508608,4.015085977136152,4.015085977136152,4.000230536947279,4.000230536947279,3.9853759471311743,3.9853759471311743,3.9705224396076826,3.9705224396076826,3.955670223104668,3.955670223104668,3.94081951408065,3.94081951408065,3.9259705521861363,3.9259705521861363,3.9111235384183294,3.9111235384183294,3.8962786969664105,3.8962786969664105,3.8814362442889037,3.8814362442889037,3.8665964045749943,3.8665964045749943,3.851759394283204,3.851759394283204,3.8369254298720548,3.8369254298720548,3.822094727800071,3.822094727800071,3.807267504525774,3.807267504525774,3.792443976507688,3.792443976507688,3.7776243602043342,3.7776243602043342,3.762808872074237,3.762808872074237,3.747997728575918,3.747997728575918,3.7331911384372387,3.7331911384372387,3.7183893258473835,3.7183893258473835,3.703592499534214,3.703592499534214,3.688800868225591,3.688800868225591,3.6740146561106988,3.6740146561106988,3.659234064186738,3.659234064186738,3.644459316642891,3.644459316642891,3.6296906144763588,3.6296906144763588,3.614928166415003,3.614928166415003,3.6001721966480074,3.6001721966480074,3.5854229139032334,3.5854229139032334,3.5706805191778805,3.5706805191778805,3.5559452289304714,3.5559452289304714,3.541217244158206,3.541217244158206,3.526496789050269,3.526496789050269,3.5117840491425363,3.5117840491425363,3.4970792563548545,3.4970792563548545,3.4823826039537606,3.4823826039537606,3.467694292936456,3.467694292936456,3.453014547492123,3.453014547492123,3.4383435608873025,3.4383435608873025,3.4236815418498527,3.4236815418498527,3.409028691376976,3.409028691376976,3.3943852181965313,3.3943852181965313,3.3797513233057206,3.3797513233057206,3.3651272077017413,3.3651272077017413,3.350513087843118,3.350513087843118,3.3359091492657265,3.3359091492657265,3.3213155929667666,3.3213155929667666,3.3067326354047615,3.3067326354047615,3.292160469846248,3.292160469846248,3.277599289557768,3.277599289557768,3.2630492955365167,3.2630492955365167,3.2485106965103574,3.2485106965103574,3.233983685745828,3.233983685745828,3.219468456509467,3.219468456509467,3.2049652097984747,3.2049652097984747,3.1904741466100495,3.1904741466100495,3.175995452480069,3.175995452480069,3.1615293284057318,3.1615293284057318,3.147075975384239,3.147075975384239,3.1326355789514664,3.1326355789514664,3.1182083401046143,3.1182083401046143,3.1037944443795586,3.1037944443795586,3.0893940850428385,3.0893940850428385,3.075007463091653,3.075007463091653,3.0606347640618785,3.0606347640618785,3.046276173489393,3.046276173489393,3.0319318923713947,3.0319318923713947,3.0176020985130996,3.0176020985130996,3.0032869929117063,3.0032869929117063,2.9889867533724317,2.9889867533724317,2.974701573161813,2.974701573161813,2.9604316455463886,2.9604316455463886,2.9461771406007116,2.9461771406007116,2.931938259321982,2.931938259321982,2.9177151795154153,2.9177151795154153,2.9035080867168883,2.9035080867168883,2.889317166462277,2.889317166462277,2.8751426042874586,2.8751426042874586,2.8609845779976473,2.8609845779976473,2.846843273128721,2.846843273128721,2.8327188674858945,2.8327188674858945,2.8186115388743826,2.8186115388743826,2.8045214805607235,2.8045214805607235,2.7904488626194706,2.7904488626194706,2.7763938551251783,2.7763938551251783,2.762356659075046,2.762356659075046,2.7483374290823037,2.7483374290823037,2.734336350682829,2.734336350682829,2.7203536016818366,2.7203536016818366,2.706389359884541,2.706389359884541,2.6924437953654965,2.6924437953654965,2.678517078199257,2.678517078199257,2.664609393921698,2.664609393921698,2.650720897146051,2.650720897146051,2.6368517811388545,2.6368517811388545,2.6230021927826765,2.6230021927826765,2.609172325344056,2.609172325344056,2.5953623334362232,2.5953623334362232,2.5815723948643936,2.5815723948643936,2.567802671972459,2.567802671972459,2.5540533348349728,2.5540533348349728,2.540324553526489,2.540324553526489,2.5266164826602378,2.5266164826602378,2.512929300041434,2.512929300041434,2.499263168013971,2.499263168013971,2.4856182489217398,2.4856182489217398,2.4719947051086324,2.4719947051086324,2.4583926989185425,2.4583926989185425,2.4448123926953595,2.4448123926953595,2.431253941052316,2.431253941052316,2.4177175140639644,2.4177175140639644,2.404203274074198,2.404203274074198,2.3907113679655847,2.3907113679655847,2.3772419580820174,2.3772419580820174,2.363795206767388,2.363795206767388,2.350371260904265,2.350371260904265,2.3369702828365413,2.3369702828365413,2.3235924349081083,2.3235924349081083,2.3102378562708736,2.3102378562708736,2.296906701538068,2.296906701538068,2.2835991330535834,2.2835991330535834,2.270315297699989,2.270315297699989,2.257055350090515,2.257055350090515,2.2438194371077316,2.2438194371077316,2.230607705634206,2.230607705634206,2.2174203025525085,2.2174203025525085,2.2042573902065308,2.2042573902065308,2.191119100017519,2.191119100017519,2.178005578868042,2.178005578868042,2.164916989101992,2.164916989101992,2.1518534544099532,2.1518534544099532,2.138815137135818,2.138815137135818,2.1258021687008317,2.1258021687008317,2.1128146882569028,2.1128146882569028,2.099852850417261,2.099852850417261,2.0869167866031533,2.0869167866031533,2.074006643697147,2.074006643697147,2.0611225453898285,2.0611225453898285,2.0482646540250884,2.0482646540250884,2.0354330855628504,2.0354330855628504,2.0226279868856833,2.0226279868856833,2.0098494894148335,2.0098494894148335,1.9970977323022079,1.9970977323022079,1.9843728469690527,1.9843728469690527,1.9716749725672749,1.9716749725672749,1.9590042327874597,1.9590042327874597,1.946360766781514,1.946360766781514,1.9337446982400233,1.9337446982400233,1.9211561663148937,1.9211561663148937,1.908595286966049,1.908595286966049,1.896062207076058,1.896062207076058,1.8835570348741821,1.8835570348741821,1.871079909512329,1.871079909512329,1.8586309546810826,1.8586309546810826,1.846210286340366,1.846210286340366,1.8338180436420872,1.8338180436420872,1.8214543425461687,1.8214543425461687,1.8091193067431948,1.8091193067431948,1.796813052193089,1.796813052193089,1.7845357025864348,1.7845357025864348,1.7722873893444788,1.7722873893444788,1.7600682129658212,1.7600682129658212,1.7478782971410458,1.7478782971410458,1.7357177732913989,1.7357177732913989,1.7235867341848183,1.7235867341848183,1.7114853189732127,1.7114853189732127,1.6994136281551808,1.6994136281551808,1.6873717776906458,1.6873717776906458,1.6753598758088695,1.6753598758088695,1.6633780539310974,1.6633780539310974,1.651426397094606,1.651426397094606,1.6395050367206425,1.6395050367206425,1.6276140733078055,1.6276140733078055,1.6157536150853575,1.6157536150853575,1.60392377801322,1.60392377801322,1.5921246548593329,1.5921246548593329,1.5803563615836178,1.5803563615836178,1.5686189986846752,1.5686189986846752,1.5569126743917667,1.5569126743917667,1.5452374969341534,1.5452374969341534,1.533593551349112,1.533593551349112,1.5219809613272264,1.5219809613272264,1.510399811905775,1.510399811905775,1.4988502035833564,1.4988502035833564,1.487332244589232,1.487332244589232,1.4758460276913408,1.4758460276913408,1.4643916533882821,1.4643916533882821,1.4529692144479947,1.4529692144479947,1.4415788036384165,1.4415788036384165,1.4302205214581478,1.4302205214581478,1.4188944606751257,1.4188944606751257,1.407600706326629,1.407600706326629,1.3963393666419175,1.3963393666419175,1.3851105111969453,1.3851105111969453,1.373914248220975,1.373914248220975,1.3627506627512815,1.3627506627512815,1.3516198398251427,1.3516198398251427,1.3405218644798353,1.3405218644798353,1.3294568294832971,1.3294568294832971,1.3184248198728055,1.3184248198728055,1.3074259129549761,1.3074259129549761,1.2964602014977464,1.2964602014977464,1.285527762807732,1.285527762807732,1.274628689652871,1.274628689652871,1.2637630438784566,1.2637630438784566,1.2529309182524255,1.2529309182524255,1.242132397812056,1.242132397812056,1.2313675444026397,1.2313675444026397,1.2206364507921148,1.2206364507921148,1.209939186556435,1.209939186556435,1.1992758367328777,1.1992758367328777,1.1886464554360736,1.1886464554360736,1.1780511354339598,1.1780511354339598,1.1674899463024913,1.1674899463024913,1.1569629576176215,1.1569629576176215,1.146470238955304,1.146470238955304,1.1360118676221542,1.1360118676221542,1.1255879054634643,1.1255879054634643,1.115198422055188,1.115198422055188,1.1048434869732793,1.1048434869732793,1.0945231697936915,1.0945231697936915,1.0842375323617173,1.0842375323617173,1.07398664425331,1.07398664425331,1.0637705673137619,1.0637705673137619,1.053589355657704,1.053589355657704,1.0434430865917517,1.0434430865917517,1.0333318142305352,1.0333318142305352,1.023255600419347,1.023255600419347,1.0132145070034788,1.0132145070034788,1.003208588097562,1.003208588097562,0.9932378978162272,0.9932378978162272,0.9833024980047664,0.9833024980047664,0.9734024505084719,0.9734024505084719,0.9635378094419742,0.9635378094419742,0.9537086134585812,0.9537086134585812,0.9439149321342466,0.9439149321342466,0.9341568195836011,0.9341568195836011,0.9244343144599521,0.9244343144599521,0.9147474708779306,0.9147474708779306,0.9050963429521672,0.9050963429521672,0.8954809847972927,0.8954809847972927,0.8859014273359529,0.8859014273359529,0.8763577324134404,0.8763577324134404,0.8668499464137239,0.8668499464137239,0.8573781002594499,0.8573781002594499,0.8479422557959105,0.8479422557959105,0.838542443945752,0.838542443945752,0.8291787110929432,0.8291787110929432,0.8198511036214535,0.8198511036214535,0.8105596524539289,0.8105596524539289,0.8013044117050002,0.8013044117050002,0.7920854045666518,0.7920854045666518,0.7829026774228532,0.7829026774228532,0.773756268926912,0.773756268926912,0.7646462169590691,0.7646462169590691,0.755572550122773,0.755572550122773,0.7465353062982645,0.7465353062982645,0.7375345187273886,0.7375345187273886,0.7285702214250558,0.7285702214250558,0.7196424445408459,0.7196424445408459,0.7107512205435379,0.7107512205435379,0.7018965795827112,0.7018965795827112,0.6930785502618136,0.6930785502618136,0.684297161184293,0.684297161184293,0.6755524401805305,0.6755524401805305,0.6668444135347755,0.6668444135347755,0.6581731067582111,0.6581731067582111,0.6495385461350863,0.6495385461350863,0.6409407540843198,0.6409407540843198,0.6323797545709624,0.6323797545709624,0.623855570013932,0.623855570013932,0.6153682220590811,0.6153682220590811,0.6069177300330638,0.6069177300330638,0.5985041140355999,0.5985041140355999,0.5901273941664095,0.5901273941664095,0.5817875866598815,0.5817875866598815,0.5734847100696038,0.5734847100696038,0.5652187790838332,0.5652187790838332,0.5569898099369589,0.5569898099369589,0.5487978173172382,0.5487978173172382,0.5406428151398611,0.5406428151398611,0.5325248150008205,0.5325248150008205,0.5244438292691744,0.5244438292691744,0.5163998695409155,0.5163998695409155,0.5083929458659036,0.5083929458659036,0.5004230675209326,0.5004230675209326,0.4924902430097301,0.4924902430097301,0.48459447928989147,0.48459447928989147,0.47673578409207834,0.47673578409207834,0.46891416360081983,0.46891416360081983,0.4611296216814467,0.4611296216814467,0.4533821637454222,0.4533821637454222,0.44567179288501063,0.44567179288501063,0.43799851219247676,0.43799851219247676,0.4303623224408869,0.4303623224408869,0.42276322517637305,0.42276322517637305,0.4152012203989356,0.4152012203989356,0.40767630733550797,0.40767630733550797,0.4001884844399581,0.4001884844399581,0.3927377493930875,0.3927377493930875,0.38532409910263143,0.38532409910263143,0.3779475289301933,0.3779475289301933,0.370608035010442,0.370608035010442,0.36330561038578224,0.36330561038578224,0.3560402496447511,0.3560402496447511,0.34881194428362067,0.34881194428362067,0.341620688117862,0.341620688117862,0.3344664695514826,0.3344664695514826,0.327349280853821,0.327349280853821,0.320269111201951,0.320269111201951,0.3132259482268143,0.3132259482268143,0.3062197803324184,0.3062197803324184,0.2992505951497051,0.2992505951497051,0.2923183772173512,0.2923183772173512,0.28542311339323206,0.28542311339323206,0.2785647882160247,0.2785647882160247,0.2717433846782738,0.2717433846782738,0.2649588857725239,0.2649588857725239,0.2582112744913197,0.2582112744913197,0.25150053228107355,0.25150053228107355,0.2448266390420654,0.2448266390420654,0.23818957467457533,0.23818957467457533,0.23158931907888336,0.23158931907888336,0.22502584983607102,0.22502584983607102,0.21849914452722002,0.21849914452722002,0.21200917996034563,0.21200917996034563,0.20555593217039717,0.20555593217039717,0.1991393764192577,0.1991393764192577,0.19275948719574423,0.19275948719574423,0.1864162374425415,0.1864162374425415,0.1801096008754001,0.1801096008754001,0.1738395496639387,0.1738395496639387,0.16760605443164348,0.16760605443164348,0.1614090865750667,0.1614090865750667,0.15524861517156227,0.15524861517156227,0.1491246100715503,0.1491246100715503,0.1430370388062524,0.1430370388062524,0.13698586967995618,0.13698586967995618,0.13097106945081713,0.13097106945081713,0.12499260487699071,0.12499260487699071,0.11905043962436773,0.11905043962436773,0.11314453967803743,0.11314453967803743,0.10727486793082448,0.10727486793082448,0.10144138882168591,0.10144138882168591,0.09564406447038017,0.09564406447038017,0.08988285545053351,0.08988285545053351,0.08415772465497058,0.08415772465497058,0.07846863033811911,0.07846863033811911,0.07281553353744505,0.07281553353744505,0.06719839250737612,0.06719839250737612,0.06161716542503345,0.06161716542503345,0.05607180969447203,0.05607180969447203,0.05056228210129392,0.05056228210129392,0.04508853858072841,0.04508853858072841,0.03965053444955187,0.03965053444955187,0.03424822432878115,0.03424822432878115,0.028881562066366898,0.028881562066366898,0.02355050089180689,0.02355050089180689,0.018254993338839346,0.018254993338839346,0.012994991245442943,0.012994991245442943,0.00777044575383683,0.00777044575383683,0.0025813072640966392,0.0025813072640966392,0.0025724743880402774,0.0025724743880402774,0.007690950116710744,0.007690950116710744,0.012774171469965826,0.012774171469965826,0.017822190784384063,0.017822190784384063,0.022835060868114366,0.022835060868114366,0.027812835294641094,0.027812835294641094,0.032755568333208196,0.032755568333208196,0.03766331494881914,0.03766331494881914,0.04253613057031705,0.04253613057031705,0.047374071476917856,0.047374071476917856,0.05217719456629042,0.05217719456629042,0.05694555719994328,0.05694555719994328,0.06167921774437094,0.06167921774437094,0.0663782347979878,0.0663782347979878,0.07104266780958102,0.07104266780958102,0.07567257692369726,0.07567257692369726,0.08026802298064276,0.08026802298064276,0.08482906689803035,0.08482906689803035,0.08935577044384566,0.08935577044384566,0.09384819700951316,0.09384819700951316,0.09830640998645745,0.09830640998645745,0.10273047199303686,0.10273047199303686,0.10712044796680822,0.10712044796680822,0.11147640284532838,0.11147640284532838,0.11579840233922033,0.11579840233922033,0.12008651293217319,0.12008651293217319,0.12434080110787611,0.12434080110787611,0.12856133489615051,0.12856133489615051,0.13274818155375176,0.13274818155375176,0.13690141065663355,0.13690141065663355,0.14102109023461729,0.14102109023461729,0.14510729063672292,0.14510729063672292,0.14916008221197027,0.14916008221197027,0.15317953608244556,0.15317953608244556,0.1571657233702348,0.1571657233702348,0.16111871674355618,0.16111871674355618,0.16503858887062825,0.16503858887062825,0.1689254116466031,0.1689254116466031,0.1727792608319638,0.1727792608319638,0.17660020909492866,0.17660020909492866,0.18038833219598058,0.18038833219598058,0.18414370512253658,0.18414370512253658,0.1878664044081456,0.1878664044081456,0.19155650658635678,0.19155650658635678,0.19521408819071934,0.19521408819071934,0.19883922652784847,0.19883922652784847,0.20243200122355795,0.20243200122355795,0.20599248958446306,0.20599248958446306,0.2095207712363775,0.2095207712363775,0.21301692580511503,0.21301692580511503,0.21648103368955557,0.21648103368955557,0.21991317528857893,0.21991317528857893,0.22331343254719738,0.22331343254719738,0.22668188663735692,0.22668188663735692,0.23001862027713588,0.23001862027713588,0.23332371618461267,0.23332371618461267,0.23659725707786552,0.23659725707786552,0.23983932722110524,0.23983932722110524,0.2430500108785424,0.2430500108785424,0.24622939308745379,0.24622939308745379,0.24937755811205015,0.24937755811205015,0.25249459253574036,0.25249459253574036,0.25558058216886775,0.25558058216886775,0.258635613594841,0.258635613594841,0.2616597749432019,0.2616597749432019,0.2646531520242932,0.2646531520242932,0.26761583451378873,0.26761583451378873,0.2705479105412297,0.2705479105412297,0.2734494682361578,0.2734494682361578,0.27632059804731274,0.27632059804731274,0.27916138965036835,0.27916138965036835,0.28197193272099813,0.28197193272099813,0.2847523184810084,0.2847523184810084,0.28750263892527117,0.28750263892527117,0.2902229837294602,0.2902229837294602,0.29291344720764617,0.29291344720764617,0.29557411980856874,0.29557411980856874,0.2982050958462989,0.2982050958462989,0.3008064680887747,0.3008064680887747,0.3033783308500668,0.3033783308500668,0.3059207768981138,0.3059207768981138,0.30843390209311833,0.30843390209311833,0.3109178015222173,0.3109178015222173,0.31337256949948133,0.31337256949948133,0.31579830265817965,0.31579830265817965,0.3181950960854488,0.3181950960854488,0.3205630479606904,0.3205630479606904,0.32290225414410734,0.32290225414410734,0.3252128120420348,0.3252128120420348,0.3274948190608081,0.3274948190608081,0.3297483741528947,0.3297483741528947,0.33197357472462996,0.33197357472462996,0.3341705197284814,0.3341705197284814,0.33633930966304887,0.33633930966304887,0.33848004270773374,0.33848004270773374,0.3405928185880698,0.3405928185880698,0.3426777385757229,0.3426777385757229,0.344734902396227,0.344734902396227,0.34676441054818175,0.34676441054818175,0.3487663658493856,0.3487663658493856,0.35074086879843835,0.35074086879843835,0.35268802144007216,0.35268802144007216,0.35460792659208523,0.35460792659208523,0.35650068629921,0.35650068629921,0.35836640260617847,0.35836640260617847,0.36020518064998736,0.36020518064998736,0.362017122475369,0.362017122475369,0.3638023324462539,0.3638023324462539,0.3655609149265727,0.3655609149265727,0.36729297350718987,0.36729297350718987,0.36899861409816836,0.36899861409816836,0.3706779410634387,0.3706779410634387,0.37233105953999784,0.37233105953999784,0.3739580754379086,0.3739580754379086,0.37555909544030025,0.37555909544030025,0.377134223911103,0.377134223911103,0.3786835690795786,0.3786835690795786,0.3802072360827237,0.3802072360827237,0.38170533392286593,0.38170533392286593,0.38317796773700186,0.38317796773700186,0.38462524652745916,0.38462524652745916,0.38604727697736696,0.38604727697736696,0.38744416808905285,0.38744416808905285,0.38881602809177795,0.38881602809177795,0.39016296444173787,0.39016296444173787,0.39148508691432593,0.39148508691432593,0.39278250451186997,0.39278250451186997,0.3940553254636312,0.3940553254636312,0.3953036603180695,0.3953036603180695,0.39652761807751236,0.39652761807751236,0.3977273092904198,0.3977273092904198,0.39890284373218543,0.39890284373218543,0.40005433195126905,0.40005433195126905,0.4011818837230644,0.4011818837230644,0.4022856103690974,0.4022856103690974,0.40336562321089414,0.40336562321089414,0.40442203279691447,0.40442203279691447,0.40545495122175046,0.40545495122175046,0.40646448903386195,0.40646448903386195,0.40745075910090744,0.40745075910090744,0.40841387197134654,0.40841387197134654,0.4093539412859038,0.4093539412859038,0.4102710775930391,0.4102710775930391,0.411165395306543,0.411165395306543,0.4120370057479415,0.4120370057479415,0.41288602178489303,0.41288602178489303,0.41371255628505565,0.41371255628505565,0.414516722889154,0.414516722889154,0.4152986352379125,0.4152986352379125,0.4160584054259233,0.4160584054259233,0.41679614786697705,0.41679614786697705,0.41751197542873203,0.41751197542873203,0.41820600329804486,0.41820600329804486,0.41887834434257404,0.41887834434257404,0.4195291137491763,0.4195291137491763,0.42015842438550977,0.42015842438550977,0.42076639143843136,0.42076639143843136,0.42135312932173175,0.42135312932173175,0.42191875244920146,0.42191875244920146,0.4224633752346312,0.4224633752346312,0.42298711286487756,0.42298711286487756,0.42349008052679726,0.42349008052679726,0.42397239263418124,0.42397239263418124,0.4244341643738859,0.4244341643738859,0.42487551170583443,0.42487551170583443,0.4252965490438173,0.4252965490438173,0.42569739234775744,0.42569739234775744,0.4260781568045116,0.4260781568045116,0.4264389576009366,0.4264389576009366,0.4267799106969553,0.4267799106969553,0.4271011320524906,0.4271011320524906,0.4274027376274656,0.4274027376274656,0.4276848426087367,0.4276848426087367,0.4279475621831611,0.4279475621831611,0.4281910138567937,0.4281910138567937,0.42841531281649137,0.42841531281649137,0.4286205757952431,0.4286205757952431,0.4288069172068397,0.4288069172068397,0.4289744553304024,0.4289744553304024,0.42912330457972175,0.42912330457972175,0.4292535824608531,0.4292535824608531,0.4293654041606532,0.4293654041606532,0.42945888641211105,0.42945888641211105,0.42953414517514954,0.42953414517514954,0.42959129718275785,0.42959129718275785,0.429630459167925,0.429630459167925,0.42965174631750774,0.42965174631750774,0.4296552761375614,0.4296552761375614,0.42964116381494244,0.42964116381494244,0.4296095268557064,0.4296095268557064,0.4295604804467099,0.4295604804467099,0.4294941420940082,0.4294941420940082,0.4294106277575242,0.4294106277575242,0.42931005339718087,0.42931005339718087,0.429192534972901,0.429192534972901,0.42905818999073997,0.42905818999073997,0.4289071344106205,0.4289071344106205,0.4287394834193995,0.4287394834193995,0.4285553545231322,0.4285553545231322,0.4283548629086753,0.4283548629086753,0.4281381253090179,0.4281381253090179,0.42790525768408294,0.42790525768408294,0.42765637599379325,0.42765637599379325,0.42739159697113793,0.42739159697113793,0.4271110350299077,0.4271110350299077,0.4268148076761576,0.4268148076761576,0.4265030300967446,0.4265030300967446,0.42617581825159134,0.42617581825159134,0.425833288100621,0.425833288100621,0.425475554057624,0.425475554057624,0.42510273362865575,0.42510273362865575,0.4247149404544406,0.4247149404544406,0.4243122920410337,0.4243122920410337,0.4238949012560935,0.4238949012560935,0.4234628856056752,0.4234628856056752,0.42301635950356925,0.42301635950356925,0.42255543736356643,0.42255543736356643,0.4220802351455895,0.4220802351455895,0.4215908680364954,0.4215908680364954,0.4210874489039424,0.4210874489039424,0.42057009525398564,0.42057009525398564,0.4200389191812173,0.4200389191812173,0.41949403664556034,0.41949403664556034,0.4189355612877392,0.4189355612877392,0.4183636082946105,0.4183636082946105,0.4177782905338328,0.4177782905338328,0.4171797231922627,0.4171797231922627,0.4165680199106247,0.4165680199106247,0.41594329355657705,0.41594329355657705,0.4153056593169766,0.4153056593169766,0.41465522928641546,0.41465522928641546,0.4139921171056182,0.4139921171056182,0.41331643641530896,0.41331643641530896,0.4126283000831464,0.4126283000831464,0.41192782097678854,0.41192782097678854,0.41121511196389393,0.41121511196389393,0.4104902859121208,0.4104902859121208,0.4097534549160612,0.4097534549160612,0.40900473184337355,0.40900473184337355,0.4082442272425176,0.4082442272425176,0.40747205475421777,0.40747205475421777,0.4066883257000003,0.4066883257000003,0.405893151401391,0.405893151401391,0.4050866439529821,0.4050866439529821,0.4042689139032333,0.4042689139032333,0.40344007180060465,0.40344007180060465,0.40260023051275423,0.40260023051275423,0.4017494990420097,0.4017494990420097,0.40088798870989717,0.40088798870989717,0.4000158092918102,0.4000158092918102,0.3991330713362087,0.3991330713362087,0.39823988461848636,0.39823988461848636,0.3973363589140367,0.3973363589140367,0.39642260322518746,0.39642260322518746,0.39549872810039843,0.39549872810039843,0.394564840995865,0.394564840995865,0.39362105246004664,0.39362105246004664,0.39266747072220515,0.39266747072220515,0.3917042032385354,0.3917042032385354,0.39073135901136524,0.39073135901136524,0.38974904549688966,0.38974904549688966,0.38875737169743646,0.38875737169743646,0.38775644429613443,0.38775644429613443,0.3867463699761128,0.3867463699761128,0.38572725696663307,0.38572725696663307,0.38469921195082407,0.38469921195082407,0.38366234083874895,0.38366234083874895,0.38261675031353676,0.38261675031353676,0.3815625462852503,0.3815625462852503,0.38049983466395265,0.38049983466395265,0.3794287221327727,0.3794287221327727,0.3783493122825751,0.3783493122825751,0.37726171102342276,0.37726171102342276,0.37616602349231243,0.37616602349231243,0.3750623532801086,0.3750623532801086,0.37395080552380794,0.37395080552380794,0.3728314845873412,0.3728314845873412,0.37170449328850663,0.37170449328850663,0.3705699352181687,0.3705699352181687,0.369427913967192,0.369427913967192,0.36827853235337465,0.36827853235337465,0.36712189242144894,0.36712189242144894,0.36595809776227944,0.36595809776227944,0.3647872496475319,0.3647872496475319,0.3636094501219387,0.3636094501219387,0.36242479968409963,0.36242479968409963,0.3612334011518129,0.3612334011518129,0.36003535425061245,0.36003535425061245,0.3588307602521642,0.3588307602521642,0.35761971965506795,0.35761971965506795,0.3564023314117913,0.3564023314117913,0.355178696020934,0.355178696020934,0.35394891243496374,0.35394891243496374,0.35271307960634807,0.35271307960634807,0.35147129726062065,0.35147129726062065,0.3502236628041167,0.3502236628041167,0.3489702751893039,0.3489702751893039,0.3477112318225174,0.3477112318225174,0.3464466301100924,0.3464466301100924,0.3451765674583644,0.3451765674583644,0.3439011405006021,0.3439011405006021,0.34262044587007484,0.34262044587007484,0.3413345794269856,0.3413345794269856,0.34004363780460334,0.34004363780460334,0.338747716090065,0.338747716090065,0.33744690937050725,0.33744690937050725,0.3361413119600008,0.3361413119600008,0.33483101971874857,0.33483101971874857,0.3335161254146889,0.3335161254146889,0.33219672413495843,0.33219672413495843,0.33087290864749574,0.33087290864749574,0.329544771720239,0.329544771720239,0.32821240689419284,0.32821240689419284,0.32687590616422935,0.32687590616422935,0.32553536152522067,0.32553536152522067,0.324190864972039,0.324190864972039,0.3228425077264904,0.3228425077264904,0.3214903810103808,0.3214903810103808,0.32013457527245026,0.32013457527245026,0.3187751801883723,0.3187751801883723,0.3174122869799531,0.3174122869799531,0.3160459837767341,0.3160459837767341,0.314676361027455,0.314676361027455,0.3133035060885912,0.3133035060885912,0.3119275086358163,0.3119275086358163,0.31054845602560577,0.31054845602560577,0.30916643638750085,0.30916643638750085,0.3077815363049106,0.3077815363049106,0.3063938431343105,0.3063938431343105,0.3050034442321757,0.3050034442321757,0.3036104238627168,0.3036104238627168,0.30221486938240916,0.30221486938240916,0.30081686505546334,0.30081686505546334,0.29941649669222237,0.29941649669222237,0.29801384855689694,0.29801384855689694,0.29660900491369746,0.29660900491369746,0.29520205002683486,0.29520205002683486,0.29379306584132125,0.29379306584132125,0.29238213662136714,0.29238213662136714,0.29096934508505123,0.29096934508505123,0.2895547724043192,0.2895547724043192,0.28813850129724944,0.28813850129724944,0.28672061293578827,0.28672061293578827,0.28530118771881524,0.28530118771881524,0.2838803075913428,0.2838803075913428,0.28245805140611835,0.28245805140611835,0.28103449956202187,0.28103449956202187,0.27960973168486714,0.27960973168486714,0.27818382662740154,0.27818382662740154,0.2767568616962406,0.2767568616962406,0.2753289172902641,0.2753289172902641,0.273900069169955,0.273900069169955,0.2724703946419285,0.2724703946419285,0.2710399725589324,0.2710399725589324,0.26960887713531717,0.26960887713531717,0.2681771864507643,0.2681771864507643,0.2667449739465584,0.2667449739465584,0.26531231692931456,0.26531231692931456,0.26387928884031736,0.26387928884031736,0.2624459638939176,0.2624459638939176,0.2610124170775318,0.2610124170775318,0.25957872105937874,0.25957872105937874,0.25814494928074255,0.25814494928074255,0.2567111736367757,0.2567111736367757,0.2552774675687626,0.2552774675687626,0.2538439021987892,0.2538439021987892,0.2524105494220079,0.2524105494220079,0.25097747881437243,0.25097747881437243,0.24954476227103478,0.24954476227103478,0.24811246859488276,0.24811246859488276,0.24668066813493625,0.24668066813493625,0.2452494304671489,0.2452494304671489,0.24381882284827605,0.24381882284827605,0.2423889148542715,0.2423889148542715,0.24095977451495662,0.24095977451495662,0.23953146831402058,0.23953146831402058,0.23810406350821875,0.23810406350821875,0.2366776265812401,0.2366776265812401,0.2352522240167739,0.2352522240167739,0.23382792075237693,0.23382792075237693,0.23240478249867216,0.23240478249867216,0.2309828734201504,0.2309828734201504,0.22956225845436826,0.22956225845436826,0.22814300099275045,0.22814300099275045,0.22672516519978758,0.22672516519978758,0.22530881292077187,0.22530881292077187,0.22389400677406168,0.22389400677406168,0.22248080937801545,0.22248080937801545,0.22106928257792535,0.22106928257792535,0.21965948667295132,0.21965948667295132,0.2182514827353194,0.2182514827353194,0.21684533029112338,0.21684533029112338,0.2154410904125893,0.2154410904125893,0.2140388218527448,0.2140388218527448,0.21263858259155133,0.21263858259155133,0.2112404321551027,0.2112404321551027,0.20984442852336024,0.20984442852336024,0.20845062890321936,0.20845062890321936,0.20705908972850923,0.20705908972850923,0.20566986820612504,0.20566986820612504,0.2042830199968299,0.2042830199968299,0.20289860153445288,0.20289860153445288,0.20151666693362477,0.20151666693362477,0.20013727185510852,0.20013727185510852,0.1987604704135348,0.1987604704135348,0.19738631672353435,0.19738631672353435,0.19601486335360546,0.19601486335360546,0.1946461628722467,0.1946461628722467,0.19328026939408857,0.19328026939408857,0.1919172331684311,0.1919172331684311,0.19055710676377263,0.19055710676377263,0.1891999404294132,0.1891999404294132,0.18784578596078494,0.18784578596078494,0.18649469206105557,0.18649469206105557,0.18514670975259104,0.18514670975259104,0.18380188696549288,0.18380188696549288,0.18246027317599492,0.18246027317599492,0.18112191631419852,0.18112191631419852,0.17978686508327146,0.17978686508327146,0.17845516586718282,0.17845516586718282,0.17712686504990172,0.17712686504990172,0.17580201056152966,0.17580201056152966,0.17448064723990359,0.17448064723990359,0.17316282146899253,0.17316282146899253,0.1718485773135673,0.1718485773135673,0.17053795961146478,0.17053795961146478,0.1692310132005217,0.1692310132005217,0.16792778059937655,0.16792778059937655,0.16662830587280003,0.16662830587280003,0.16533263076636442,0.16533263076636442,0.16404079934484034,0.16404079934484034,0.1627528510346017,0.1627528510346017,0.16146882912735294,0.16146882912735294,0.16018877304946788,0.16018877304946788,0.1589127237734527,0.1589127237734527,0.15764072149874725,0.15764072149874725,0.15637280565172537,0.15637280565172537,0.15510901488569465,0.15510901488569465,0.1538493878539628,0.1538493878539628,0.15259396320983742,0.15259396320983742,0.15134277728742765,0.15134277728742765,0.15009586874004122,0.15009586874004122,0.1488532731287211,0.1488532731287211,0.14761502678757643,0.14761502678757643,0.1463811660507165,0.1463811660507165,0.1451517264791842,0.1451517264791842,0.14392674131482425,0.14392674131482425,0.14270624689174569,0.14270624689174569,0.1414902764517932,0.1414902764517932,0.14027886323681132,0.14027886323681132,0.13907204048864455,0.13907204048864455,0.13786983990300522,0.13786983990300522,0.1366722947217379,0.1366722947217379,0.13547943664055484,0.13547943664055484,0.13429129658210212,0.13429129658210212,0.13310790469595976,0.13310790469595976,0.13192929113170768,0.13192929113170768,0.13075548758505812,0.13075548758505812,0.1295865211133265,0.1295865211133265,0.12842242186609273,0.12842242186609273,0.12726321844680444,0.12726321844680444,0.12610893791277702,0.12610893791277702,0.12495960886745809,0.12495960886745809,0.12381525759509687,0.12381525759509687,0.12267591115300872,0.12267591115300872,0.1215415958254428,0.1215415958254428,0.12041233712358214,0.12041233712358214,0.11928816055860982,0.11928816055860982,0.11816909164170887,0.11816909164170887,0.11705515356486387,0.11705515356486387,0.11594637029312557,0.11594637029312557,0.11484276656461083,0.11484276656461083,0.11374436402517193,0.11374436402517193,0.11265118663985962,0.11265118663985962,0.11156325528146005,0.11156325528146005,0.11048059314195775,0.11048059314195775,0.10940322032107273,0.10940322032107273,0.10833115846465725,0.10833115846465725,0.1072644276724313,0.1072644276724313,0.10620304727104868,0.10620304727104868,0.10514703813329551,0.10514703813329551,0.10409641881275948,0.10409641881275948,0.10305120708996213,0.10305120708996213,0.10201142229155719,0.10201142229155719,0.10097708219806624,0.10097708219806624,0.09994820381694462,0.09994820381694462,0.09892480338258156,0.09892480338258156,0.09790689867549855,0.09790689867549855,0.0968945059300848,0.0968945059300848,0.09588763906153107,0.09588763906153107,0.09488631507729273,0.09488631507729273,0.09389054711949435,0.09389054711949435,0.092900350649459,0.092900350649459,0.09191574035544359,0.09191574035544359,0.09093672783344041,0.09093672783344041,0.08996332699864018,0.08996332699864018,0.08899555099316755,0.08899555099316755,0.08803341141301477,0.08803341141301477,0.08707692062724029,0.08707692062724029,0.08612608945877027,0.08612608945877027,0.08518092950359699,0.08518092950359699,0.08424145081158045,0.08424145081158045,0.08330766420564674,0.08330766420564674,0.08237957896258973,0.08237957896258973,0.0814572035861371,0.0814572035861371,0.08054054812614884,0.08054054812614884,0.0796296210863526,0.0796296210863526,0.07872443019740996,0.07872443019740996,0.07782498318998239,0.07782498318998239,0.07693128717627855,0.07693128717627855,0.07604334934581362,0.07604334934581362,0.07516117596042347,0.07516117596042347,0.07428477320463729,0.07428477320463729,0.07341414672183802,0.07341414672183802,0.07254930176887546,0.07254930176887546,0.07169024329337305,0.07169024329337305,0.0708369756245012,0.0708369756245012,0.06998950285951053,0.06998950285951053,0.06914782878642518,0.06914782878642518,0.06831195665212302,0.06831195665212302,0.06748188939425541,0.06748188939425541,0.06665762940932742,0.06665762940932742,0.06583917893923089,0.06583917893923089,0.06502653960740476,0.06502653960740476,0.0642197128826747,0.0642197128826747,0.06341869961541349,0.06341869961541349,0.06262350050138067,0.06262350050138067,0.06183411561788285,0.06183411561788285,0.06105054488761343,0.06105054488761343,0.06027278769211946,0.06027278769211946,0.059500843181028176,0.059500843181028176,0.05873470996282053,0.05873470996282053,0.05797438633675096,0.05797438633675096,0.05721987029284747,0.05721987029284747,0.05647115951191162,0.05647115951191162,0.05572825105629201,0.05572825105629201,0.054991141756417415,0.054991141756417415,0.05425982821079679,0.05425982821079679,0.05353430647679273,0.05353430647679273,0.052814572302541385,0.052814572302541385,0.05210062104964587,0.05210062104964587,0.051392447770482776,0.051392447770482776,0.05069004713089567,0.05069004713089567,0.04999341348750164,0.04999341348750164,0.049302540810384675,0.049302540810384675,0.04861742268309571,0.04861742268309571,0.04793805237995923,0.04793805237995923,0.04726442286607324,0.04726442286607324,0.04659652656538944,0.04659652656538944,0.04593435582455292,0.04593435582455292,0.04527790252636907,0.04527790252636907,0.04462715824441683,0.04462715824441683,0.043982114011128816,0.043982114011128816,0.04334276085893767,0.04334276085893767,0.04270908927912972,0.04270908927912972,0.04208108937645819,0.04208108937645819,0.04145875110106311,0.04145875110106311,0.0408420640165514,0.0408420640165514,0.040231017222690325,0.040231017222690325,0.039625599664633894,0.039625599664633894,0.03902579982369643,0.03902579982369643,0.03843160602657902,0.03843160602657902,0.037843006058836455,0.037843006058836455,0.037259987628716906,0.037259987628716906,0.03668253790332224,0.03668253790332224,0.03611064397244771,0.03611064397244771,0.035544292307435624,0.035544292307435624,0.034983469302321706,0.034983469302321706,0.034428161041915206,0.034428161041915206,0.03387835322449229,0.03387835322449229,0.03333403116179608,0.03333403116179608,0.0327951800109564,0.0327951800109564,0.03226178454257009,0.03226178454257009,0.031733829295314056,0.031733829295314056,0.03121129849863879,0.03121129849863879,0.03069417599546171,0.03069417599546171,0.03018244547408699,0.03018244547408699,0.029676090081672497,0.029676090081672497,0.02917509304268271,0.02917509304268271,0.028679437040435816,0.028679437040435816,0.02818910444902352,0.02818910444902352,0.027704077565230932,0.027704077565230932,0.027224338222003465,0.027224338222003465,0.02674986794306006,0.02674986794306006,0.026280648174813064,0.026280648174813064,0.025816659977141714,0.025816659977141714,0.02535788410069882,0.02535788410069882,0.024904300986910717,0.024904300986910717,0.024455890999897114,0.024455890999897114,0.02401263396263143,0.02401263396263143,0.023574509775393698,0.023574509775393698,0.023141497720011013,0.023141497720011013,0.022713577078310492,0.022713577078310492,0.02229072666827954,0.02229072666827954,0.021872925307905574,0.021872925307905574,0.021460151274029705,0.021460151274029705,0.021052382843493037,0.021052382843493037,0.020649597829296984,0.020649597829296984,0.020251773889829735,0.020251773889829735,0.019858888528866237,0.019858888528866237,0.019470918863648375,0.019470918863648375,0.01908784185680479,0.01908784185680479,0.01870963408443106,0.01870963408443106,0.018336272122622753,0.018336272122622753,0.017967732160942364,0.017967732160942364,0.017603990157032533,0.017603990157032533,0.0172450219139227,0.0172450219139227,0.016890802848109187,0.016890802848109187,0.016541308376088342,0.016541308376088342,0.016196513450516817,0.016196513450516817,0.015856393024051254,0.015856393024051254,0.015520921585508628,0.015520921585508628,0.015190073778319112,0.015190073778319112,0.014863823550153364,0.014863823550153364,0.01454214508060188,0.01454214508060188,0.014225012008108854,0.014225012008108854,0.013912397971118472,0.013912397971118472,0.013604276221541851,0.013604276221541851,0.013300620011290103,0.013300620011290103,0.013001402283047884,0.013001402283047884,0.012706595670273383,0.012706595670273383,0.012416172883731405,0.012416172883731405,0.012130106170347073,0.012130106170347073,0.011848367699738883,0.011848367699738883,0.011570929486912102,0.011570929486912102,0.011297763314952157,0.011297763314952157,0.011028840657718008,0.011028840657718008,0.010764133066375237,0.010764133066375237,0.010503611705556342,0.010503611705556342,0.010247247662587214,0.010247247662587214,0.009995011715567272,0.009995011715567272,0.00974687456528933,0.00974687456528933,0.009502806912546196,0.009502806912546196,0.009262778839677759,0.009262778839677759,0.009026760738250367,0.009026760738250367,0.008794722535990677,0.008794722535990677,0.008566634083318734,0.008566634083318734,0.00834246515334796,0.00834246515334796,0.008122185132658707,0.008122185132658707,0.007905763485137942,0.007905763485137942,0.007693169388638153,0.007693169388638153,0.007484371951435873,0.007484371951435873,0.007279340073079779,0.007279340073079779,0.007078042513966635,0.007078042513966635,0.006880447903071964,0.006880447903071964,0.006686524714758056,0.006686524714758056,0.00649624128423529,0.00649624128423529,0.006309565823023468,0.006309565823023468,0.006126466380298494,0.006126466380298494,0.00594691089700701,0.00594691089700701,0.005770867159482435,0.005770867159482435,0.005598302845828919,0.005598302845828919,0.005429185479537384,0.005429185479537384,0.005263482499061475,0.005263482499061475,0.005101161180510946,0.005101161180510946,0.004942188699496949,0.004942188699496949,0.00478653211567072,0.00478653211567072,0.0046341583649928955,0.0046341583649928955,0.004485034267464204,0.004485034267464204,0.00433912655031743,0.00433912655031743,0.0041964018170947736,0.0041964018170947736,0.0040568265631091725,0.0040568265631091725,0.003920367183174966,0.003920367183174966,0.0037869899716078946,0.0037869899716078946,0.0036566611299557574,0.0036566611299557574,0.003529346743806433,0.003529346743806433,0.003405012829171846,0.003405012829171846,0.0032836252861039973,0.0032836252861039973,0.0031651499296176102,0.0031651499296176102,0.003049552505151457,0.003049552505151457,0.0029367986499150467,0.0029367986499150467,0.0028268539315419333,0.0028268539315419333,0.0027196838248977357,0.0027196838248977357,0.0026152537352721167,0.0026152537352721167,0.0025135289906481244,0.0025135289906481244,0.002414474849432853,0.002414474849432853,0.00231805647726546,0.00231805647726546,0.0022242389934011295,0.0022242389934011295,0.0021329874397884364,0.0021329874397884364,0.002044266804261319,0.002044266804261319,0.001958041981885781,0.001958041981885781,0.0018742778445358405,0.0018742778445358405,0.0017929391867789006,0.0017929391867789006,0.0017139907490677326,0.0017139907490677326,0.0016373972100098162,0.0016373972100098162,0.0015631232250206478,0.0015631232250206478,0.0014911333644784446,0.0014911333644784446,0.0014213921678387798,0.0014213921678387798,0.001353864143634579,0.001353864143634579,0.0012885137462841378,0.0012885137462841378,0.0012253053760911219,0.0012253053760911219,0.001164203417897872,0.001164203417897872,0.001105172210162761,0.001105172210162761,0.0010481760604215157,0.0010481760604215157,0.0009931792452872164,0.0009931792452872164,0.0009401460104502972,0.0009401460104502972,0.0008890405784092079,0.0008890405784092079,0.0008398271562010752,0.0008398271562010752,0.0007924699044790563,0.0007924699044790563,0.0007469329854424415,0.0007469329854424415,0.000703180535779337,0.000703180535779337,0.000661176678262659,0.000661176678262659,0.0006208855217501328,0.0006208855217501328,0.0005822711658226898,0.0005822711658226898,0.0005452977000114013,0.0005452977000114013,0.0005099292068897435,0.0005099292068897435,0.00047612976748506004,0.00047612976748506004,0.00044386345818629784,0.00044386345818629784,0.0004130943561554697,0.0004130943561554697,0.0003837865416468534,0.0003837865416468534,0.0003559040995531233,0.0003559040995531233,0.00032941112017841707,0.00032941112017841707,0.00030427170464979826,0.00030427170464979826,0.0002804499625980585,0.0002804499625980585,0.00025791001988837814,0.00025791001988837814,0.00023661601552806257,0.00023661601552806257,0.0002165321070780046,0.0002165321070780046,0.00019762247219881705,0.00019762247219881705,0.000179851310196965,0.000179851310196965,0.00016318284357089824,0.00016318284357089824,0.00014758132110331555,0.00014758132110331555,0.00013301102249956202,0.00013301102249956202,0.00011943625374923179,0.00011943625374923179,0.00010682135640296213,0.00010682135640296213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010682135640296213,0.00010682135640296213,0.00011943625374923179,0.00011943625374923179,0.00013301102249956202,0.00013301102249956202,0.00014758132110331555,0.00014758132110331555,0.00016318284357089824,0.00016318284357089824,0.000179851310196965,0.000179851310196965,0.00019762247219881705,0.00019762247219881705,0.0002165321070780046,0.0002165321070780046,0.00023661601552806257,0.00023661601552806257,0.00025791001988837814,0.00025791001988837814,0.0002804499625980585,0.0002804499625980585,0.00030427170464979826,0.00030427170464979826,0.00032941112017841707,0.00032941112017841707,0.0003559040995531233,0.0003559040995531233,0.0003837865416468534,0.0003837865416468534,0.0004130943561554697,0.0004130943561554697,0.00044386345818629784,0.00044386345818629784,0.00047612976748506004,0.00047612976748506004,0.0005099292068897435,0.0005099292068897435,0.0005452977000114013,0.0005452977000114013,0.0005822711658226898,0.0005822711658226898,0.0006208855217501328,0.0006208855217501328,0.000661176678262659,0.000661176678262659,0.000703180535779337,0.000703180535779337,0.0007469329854424415,0.0007469329854424415,0.0007924699044790564,0.0007924699044790564,0.0008398271562010752,0.0008398271562010752,0.0008890405784092079,0.0008890405784092079,0.0009401460104502972,0.0009401460104502972,0.0009931792452872164,0.0009931792452872164,0.0010481760604215157,0.0010481760604215157,0.001105172210162761,0.001105172210162761,0.001164203417897872,0.001164203417897872,0.0012253053760911219,0.0012253053760911219,0.0012885137462841378,0.0012885137462841378,0.001353864143634579,0.001353864143634579,0.0014213921678387796,0.0014213921678387796,0.0014911333644784446,0.0014911333644784446,0.0015631232250206475,0.0015631232250206475,0.0016373972100098162,0.0016373972100098162,0.0017139907490677324,0.0017139907490677324,0.0017929391867789004,0.0017929391867789004,0.0018742778445358405,0.0018742778445358405,0.001958041981885781,0.001958041981885781,0.002044266804261319,0.002044266804261319,0.002132987439788436,0.002132987439788436,0.0022242389934011295,0.0022242389934011295,0.0023180564772654596,0.0023180564772654596,0.002414474849432853,0.002414474849432853,0.0025135289906481244,0.0025135289906481244,0.0026152537352721167,0.0026152537352721167,0.0027196838248977357,0.0027196838248977357,0.0028268539315419333,0.0028268539315419333,0.0029367986499150463,0.0029367986499150463,0.003049552505151457,0.003049552505151457,0.0031651499296176102,0.0031651499296176102,0.0032836252861039973,0.0032836252861039973,0.003405012829171846,0.003405012829171846,0.003529346743806433,0.003529346743806433,0.0036566611299557574,0.0036566611299557574,0.0037869899716078946,0.0037869899716078946,0.003920367183174966,0.003920367183174966,0.0040568265631091725,0.0040568265631091725,0.0041964018170947736,0.0041964018170947736,0.00433912655031743,0.00433912655031743,0.004485034267464204,0.004485034267464204,0.0046341583649928955,0.0046341583649928955,0.004786532115670719,0.004786532115670719,0.00494218869949695,0.00494218869949695,0.005101161180510947,0.005101161180510947,0.005263482499061475,0.005263482499061475,0.005429185479537384,0.005429185479537384,0.005598302845828919,0.005598302845828919,0.005770867159482435,0.005770867159482435,0.005946910897007011,0.005946910897007011,0.006126466380298493,0.006126466380298493,0.006309565823023468,0.006309565823023468,0.00649624128423529,0.00649624128423529,0.006686524714758056,0.006686524714758056,0.006880447903071965,0.006880447903071965,0.007078042513966636,0.007078042513966636,0.00727934007307978,0.00727934007307978,0.007484371951435873,0.007484371951435873,0.007693169388638153,0.007693169388638153,0.007905763485137942,0.007905763485137942,0.008122185132658707,0.008122185132658707,0.00834246515334796,0.00834246515334796,0.008566634083318734,0.008566634083318734,0.008794722535990679,0.008794722535990679,0.009026760738250369,0.009026760738250369,0.00926277883967776,0.00926277883967776,0.009502806912546196,0.009502806912546196,0.00974687456528933,0.00974687456528933,0.009995011715567272,0.009995011715567272,0.010247247662587214,0.010247247662587214,0.010503611705556344,0.010503611705556344,0.010764133066375237,0.010764133066375237,0.011028840657718008,0.011028840657718008,0.011297763314952157,0.011297763314952157,0.011570929486912102,0.011570929486912102,0.011848367699738883,0.011848367699738883,0.012130106170347075,0.012130106170347075,0.012416172883731407,0.012416172883731407,0.012706595670273383,0.012706595670273383,0.013001402283047884,0.013001402283047884,0.013300620011290103,0.013300620011290103,0.013604276221541851,0.013604276221541851,0.013912397971118472,0.013912397971118472,0.014225012008108854,0.014225012008108854,0.01454214508060188,0.01454214508060188,0.014863823550153364,0.014863823550153364,0.015190073778319112,0.015190073778319112,0.015520921585508628,0.015520921585508628,0.015856393024051254,0.015856393024051254,0.016196513450516817,0.016196513450516817,0.016541308376088342,0.016541308376088342,0.016890802848109187,0.016890802848109187,0.0172450219139227,0.0172450219139227,0.017603990157032536,0.017603990157032536,0.017967732160942364,0.017967732160942364,0.018336272122622753,0.018336272122622753,0.01870963408443106,0.01870963408443106,0.01908784185680479,0.01908784185680479,0.019470918863648372,0.019470918863648372,0.019858888528866237,0.019858888528866237,0.02025177388982973,0.02025177388982973,0.02064959782929698,0.02064959782929698,0.021052382843493037,0.021052382843493037,0.021460151274029705,0.021460151274029705,0.021872925307905574,0.021872925307905574,0.02229072666827954,0.02229072666827954,0.022713577078310492,0.022713577078310492,0.023141497720011013,0.023141497720011013,0.023574509775393698,0.023574509775393698,0.02401263396263143,0.02401263396263143,0.02445589099989711,0.02445589099989711,0.024904300986910714,0.024904300986910714,0.02535788410069882,0.02535788410069882,0.025816659977141714,0.025816659977141714,0.026280648174813064,0.026280648174813064,0.02674986794306006,0.02674986794306006,0.027224338222003465,0.027224338222003465,0.027704077565230932,0.027704077565230932,0.02818910444902352,0.02818910444902352,0.028679437040435813,0.028679437040435813,0.029175093042682707,0.029175093042682707,0.029676090081672494,0.029676090081672494,0.03018244547408699,0.03018244547408699,0.03069417599546171,0.03069417599546171,0.03121129849863879,0.03121129849863879,0.031733829295314056,0.031733829295314056,0.03226178454257009,0.03226178454257009,0.0327951800109564,0.0327951800109564,0.03333403116179608,0.03333403116179608,0.03387835322449229,0.03387835322449229,0.034428161041915206,0.034428161041915206,0.034983469302321706,0.034983469302321706,0.035544292307435624,0.035544292307435624,0.036110643972447704,0.036110643972447704,0.03668253790332224,0.03668253790332224,0.037259987628716906,0.037259987628716906,0.037843006058836455,0.037843006058836455,0.03843160602657902,0.03843160602657902,0.03902579982369643,0.03902579982369643,0.039625599664633894,0.039625599664633894,0.040231017222690325,0.040231017222690325,0.0408420640165514,0.0408420640165514,0.04145875110106311,0.04145875110106311,0.04208108937645819,0.04208108937645819,0.042709089279129725,0.042709089279129725,0.04334276085893767,0.04334276085893767,0.043982114011128816,0.043982114011128816,0.04462715824441683,0.04462715824441683,0.04527790252636907,0.04527790252636907,0.04593435582455292,0.04593435582455292,0.04659652656538944,0.04659652656538944,0.04726442286607324,0.04726442286607324,0.04793805237995923,0.04793805237995923,0.04861742268309571,0.04861742268309571,0.049302540810384675,0.049302540810384675,0.04999341348750164,0.04999341348750164,0.05069004713089568,0.05069004713089568,0.05139244777048278,0.05139244777048278,0.05210062104964587,0.05210062104964587,0.05281457230254139,0.05281457230254139,0.05353430647679273,0.05353430647679273,0.05425982821079679,0.05425982821079679,0.05499114175641742,0.05499114175641742,0.05572825105629201,0.05572825105629201,0.05647115951191162,0.05647115951191162,0.057219870292847475,0.057219870292847475,0.057974386336750956,0.057974386336750956,0.05873470996282052,0.05873470996282052,0.059500843181028176,0.059500843181028176,0.06027278769211946,0.06027278769211946,0.06105054488761343,0.06105054488761343,0.06183411561788285,0.06183411561788285,0.06262350050138067,0.06262350050138067,0.06341869961541349,0.06341869961541349,0.0642197128826747,0.0642197128826747,0.06502653960740476,0.06502653960740476,0.06583917893923089,0.06583917893923089,0.06665762940932742,0.06665762940932742,0.06748188939425541,0.06748188939425541,0.06831195665212302,0.06831195665212302,0.06914782878642518,0.06914782878642518,0.06998950285951053,0.06998950285951053,0.0708369756245012,0.0708369756245012,0.07169024329337305,0.07169024329337305,0.07254930176887546,0.07254930176887546,0.07341414672183802,0.07341414672183802,0.07428477320463729,0.07428477320463729,0.07516117596042347,0.07516117596042347,0.07604334934581362,0.07604334934581362,0.07693128717627855,0.07693128717627855,0.07782498318998239,0.07782498318998239,0.07872443019740996,0.07872443019740996,0.0796296210863526,0.0796296210863526,0.08054054812614883,0.08054054812614883,0.08145720358613709,0.08145720358613709,0.08237957896258971,0.08237957896258971,0.08330766420564673,0.08330766420564673,0.08424145081158044,0.08424145081158044,0.08518092950359699,0.08518092950359699,0.08612608945877027,0.08612608945877027,0.08707692062724029,0.08707692062724029,0.08803341141301477,0.08803341141301477,0.08899555099316754,0.08899555099316754,0.08996332699864018,0.08996332699864018,0.0909367278334404,0.0909367278334404,0.09191574035544359,0.09191574035544359,0.092900350649459,0.092900350649459,0.09389054711949434,0.09389054711949434,0.09488631507729273,0.09488631507729273,0.09588763906153105,0.09588763906153105,0.0968945059300848,0.0968945059300848,0.09790689867549854,0.09790689867549854,0.09892480338258156,0.09892480338258156,0.09994820381694461,0.09994820381694461,0.10097708219806624,0.10097708219806624,0.10201142229155719,0.10201142229155719,0.10305120708996211,0.10305120708996211,0.10409641881275948,0.10409641881275948,0.10514703813329551,0.10514703813329551,0.10620304727104868,0.10620304727104868,0.1072644276724313,0.1072644276724313,0.10833115846465725,0.10833115846465725,0.10940322032107273,0.10940322032107273,0.11048059314195775,0.11048059314195775,0.11156325528146005,0.11156325528146005,0.11265118663985962,0.11265118663985962,0.11374436402517193,0.11374436402517193,0.11484276656461082,0.11484276656461082,0.11594637029312556,0.11594637029312556,0.11705515356486387,0.11705515356486387,0.11816909164170887,0.11816909164170887,0.11928816055860982,0.11928816055860982,0.12041233712358214,0.12041233712358214,0.1215415958254428,0.1215415958254428,0.12267591115300872,0.12267591115300872,0.12381525759509687,0.12381525759509687,0.12495960886745809,0.12495960886745809,0.12610893791277702,0.12610893791277702,0.12726321844680444,0.12726321844680444,0.12842242186609273,0.12842242186609273,0.1295865211133265,0.1295865211133265,0.13075548758505812,0.13075548758505812,0.13192929113170768,0.13192929113170768,0.1331079046959598,0.1331079046959598,0.13429129658210212,0.13429129658210212,0.13547943664055484,0.13547943664055484,0.1366722947217379,0.1366722947217379,0.13786983990300522,0.13786983990300522,0.13907204048864455,0.13907204048864455,0.14027886323681132,0.14027886323681132,0.1414902764517932,0.1414902764517932,0.14270624689174569,0.14270624689174569,0.14392674131482425,0.14392674131482425,0.14515172647918423,0.14515172647918423,0.1463811660507165,0.1463811660507165,0.14761502678757646,0.14761502678757646,0.1488532731287211,0.1488532731287211,0.15009586874004122,0.15009586874004122,0.15134277728742768,0.15134277728742768,0.15259396320983742,0.15259396320983742,0.1538493878539628,0.1538493878539628,0.15510901488569467,0.15510901488569467,0.15637280565172537,0.15637280565172537,0.15764072149874725,0.15764072149874725,0.1589127237734527,0.1589127237734527,0.16018877304946788,0.16018877304946788,0.16146882912735294,0.16146882912735294,0.1627528510346017,0.1627528510346017,0.16404079934484034,0.16404079934484034,0.16533263076636442,0.16533263076636442,0.16662830587280003,0.16662830587280003,0.16792778059937655,0.16792778059937655,0.1692310132005217,0.1692310132005217,0.17053795961146476,0.17053795961146476,0.1718485773135673,0.1718485773135673,0.17316282146899253,0.17316282146899253,0.17448064723990359,0.17448064723990359,0.17580201056152966,0.17580201056152966,0.17712686504990172,0.17712686504990172,0.17845516586718282,0.17845516586718282,0.17978686508327146,0.17978686508327146,0.18112191631419855,0.18112191631419855,0.18246027317599492,0.18246027317599492,0.18380188696549288,0.18380188696549288,0.18514670975259104,0.18514670975259104,0.18649469206105557,0.18649469206105557,0.18784578596078497,0.18784578596078497,0.18919994042941324,0.18919994042941324,0.19055710676377266,0.19055710676377266,0.1919172331684311,0.1919172331684311,0.19328026939408854,0.19328026939408854,0.19464616287224668,0.19464616287224668,0.19601486335360546,0.19601486335360546,0.19738631672353432,0.19738631672353432,0.19876047041353478,0.19876047041353478,0.20013727185510852,0.20013727185510852,0.20151666693362477,0.20151666693362477,0.20289860153445288,0.20289860153445288,0.2042830199968299,0.2042830199968299,0.20566986820612504,0.20566986820612504,0.2070590897285092,0.2070590897285092,0.20845062890321936,0.20845062890321936,0.20984442852336024,0.20984442852336024,0.2112404321551027,0.2112404321551027,0.21263858259155133,0.21263858259155133,0.2140388218527448,0.2140388218527448,0.2154410904125893,0.2154410904125893,0.21684533029112338,0.21684533029112338,0.2182514827353194,0.2182514827353194,0.21965948667295132,0.21965948667295132,0.22106928257792535,0.22106928257792535,0.22248080937801545,0.22248080937801545,0.22389400677406168,0.22389400677406168,0.22530881292077187,0.22530881292077187,0.22672516519978758,0.22672516519978758,0.22814300099275045,0.22814300099275045,0.22956225845436826,0.22956225845436826,0.23098287342015036,0.23098287342015036,0.23240478249867216,0.23240478249867216,0.2338279207523769,0.2338279207523769,0.2352522240167739,0.2352522240167739,0.2366776265812401,0.2366776265812401,0.23810406350821872,0.23810406350821872,0.23953146831402058,0.23953146831402058,0.24095977451495662,0.24095977451495662,0.2423889148542715,0.2423889148542715,0.24381882284827605,0.24381882284827605,0.2452494304671489,0.2452494304671489,0.24668066813493625,0.24668066813493625,0.24811246859488276,0.24811246859488276,0.24954476227103478,0.24954476227103478,0.25097747881437243,0.25097747881437243,0.2524105494220079,0.2524105494220079,0.2538439021987892,0.2538439021987892,0.2552774675687626,0.2552774675687626,0.2567111736367757,0.2567111736367757,0.25814494928074255,0.25814494928074255,0.25957872105937874,0.25957872105937874,0.26101241707753187,0.26101241707753187,0.2624459638939176,0.2624459638939176,0.26387928884031736,0.26387928884031736,0.26531231692931456,0.26531231692931456,0.2667449739465584,0.2667449739465584,0.2681771864507643,0.2681771864507643,0.2696088771353172,0.2696088771353172,0.2710399725589324,0.2710399725589324,0.2724703946419285,0.2724703946419285,0.273900069169955,0.273900069169955,0.2753289172902641,0.2753289172902641,0.27675686169624064,0.27675686169624064,0.27818382662740154,0.27818382662740154,0.27960973168486714,0.27960973168486714,0.28103449956202187,0.28103449956202187,0.28245805140611835,0.28245805140611835,0.2838803075913428,0.2838803075913428,0.28530118771881524,0.28530118771881524,0.28672061293578827,0.28672061293578827,0.2881385012972495,0.2881385012972495,0.2895547724043192,0.2895547724043192,0.29096934508505123,0.29096934508505123,0.2923821366213672,0.2923821366213672,0.29379306584132125,0.29379306584132125,0.29520205002683486,0.29520205002683486,0.29660900491369746,0.29660900491369746,0.2980138485568969,0.2980138485568969,0.29941649669222237,0.29941649669222237,0.30081686505546334,0.30081686505546334,0.30221486938240916,0.30221486938240916,0.3036104238627168,0.3036104238627168,0.3050034442321757,0.3050034442321757,0.3063938431343105,0.3063938431343105,0.3077815363049106,0.3077815363049106,0.30916643638750085,0.30916643638750085,0.31054845602560577,0.31054845602560577,0.3119275086358163,0.3119275086358163,0.3133035060885912,0.3133035060885912,0.314676361027455,0.314676361027455,0.31604598377673404,0.31604598377673404,0.3174122869799531,0.3174122869799531,0.3187751801883723,0.3187751801883723,0.3201345752724502,0.3201345752724502,0.3214903810103808,0.3214903810103808,0.32284250772649037,0.32284250772649037,0.324190864972039,0.324190864972039,0.3255353615252206,0.3255353615252206,0.3268759061642293,0.3268759061642293,0.32821240689419284,0.32821240689419284,0.329544771720239,0.329544771720239,0.33087290864749574,0.33087290864749574,0.33219672413495843,0.33219672413495843,0.3335161254146889,0.3335161254146889,0.3348310197187485,0.3348310197187485,0.3361413119600008,0.3361413119600008,0.33744690937050725,0.33744690937050725,0.338747716090065,0.338747716090065,0.34004363780460334,0.34004363780460334,0.3413345794269856,0.3413345794269856,0.34262044587007484,0.34262044587007484,0.3439011405006021,0.3439011405006021,0.34517656745836434,0.34517656745836434,0.3464466301100924,0.3464466301100924,0.3477112318225174,0.3477112318225174,0.3489702751893039,0.3489702751893039,0.3502236628041167,0.3502236628041167,0.35147129726062065,0.35147129726062065,0.35271307960634807,0.35271307960634807,0.35394891243496374,0.35394891243496374,0.355178696020934,0.355178696020934,0.35640233141179123,0.35640233141179123,0.35761971965506795,0.35761971965506795,0.3588307602521642,0.3588307602521642,0.3600353542506125,0.3600353542506125,0.36123340115181296,0.36123340115181296,0.36242479968409963,0.36242479968409963,0.3636094501219387,0.3636094501219387,0.3647872496475319,0.3647872496475319,0.3659580977622794,0.3659580977622794,0.367121892421449,0.367121892421449,0.36827853235337465,0.36827853235337465,0.369427913967192,0.369427913967192,0.3705699352181687,0.3705699352181687,0.37170449328850663,0.37170449328850663,0.3728314845873412,0.3728314845873412,0.37395080552380794,0.37395080552380794,0.3750623532801086,0.3750623532801086,0.3761660234923125,0.3761660234923125,0.37726171102342276,0.37726171102342276,0.3783493122825752,0.3783493122825752,0.3794287221327727,0.3794287221327727,0.38049983466395265,0.38049983466395265,0.3815625462852503,0.3815625462852503,0.38261675031353676,0.38261675031353676,0.38366234083874895,0.38366234083874895,0.3846992119508241,0.3846992119508241,0.38572725696663307,0.38572725696663307,0.38674636997611284,0.38674636997611284,0.38775644429613443,0.38775644429613443,0.38875737169743646,0.38875737169743646,0.38974904549688966,0.38974904549688966,0.39073135901136524,0.39073135901136524,0.39170420323853544,0.39170420323853544,0.39266747072220515,0.39266747072220515,0.3936210524600467,0.3936210524600467,0.394564840995865,0.394564840995865,0.3954987281003985,0.3954987281003985,0.3964226032251875,0.3964226032251875,0.39733635891403674,0.39733635891403674,0.39823988461848636,0.39823988461848636,0.3991330713362087,0.3991330713362087,0.40001580929181024,0.40001580929181024,0.40088798870989717,0.40088798870989717,0.40174949904200974,0.40174949904200974,0.40260023051275423,0.40260023051275423,0.4034400718006046,0.4034400718006046,0.4042689139032333,0.4042689139032333,0.40508664395298205,0.40508664395298205,0.405893151401391,0.405893151401391,0.4066883257000003,0.4066883257000003,0.40747205475421777,0.40747205475421777,0.4082442272425175,0.4082442272425175,0.40900473184337355,0.40900473184337355,0.4097534549160612,0.4097534549160612,0.4104902859121208,0.4104902859121208,0.41121511196389393,0.41121511196389393,0.41192782097678854,0.41192782097678854,0.4126283000831464,0.4126283000831464,0.41331643641530896,0.41331643641530896,0.4139921171056182,0.4139921171056182,0.41465522928641546,0.41465522928641546,0.4153056593169766,0.4153056593169766,0.41594329355657705,0.41594329355657705,0.4165680199106247,0.4165680199106247,0.4171797231922627,0.4171797231922627,0.4177782905338328,0.4177782905338328,0.4183636082946105,0.4183636082946105,0.4189355612877392,0.4189355612877392,0.41949403664556034,0.41949403664556034,0.4200389191812173,0.4200389191812173,0.42057009525398564,0.42057009525398564,0.4210874489039424,0.4210874489039424,0.4215908680364954,0.4215908680364954,0.4220802351455895,0.4220802351455895,0.4225554373635664,0.4225554373635664,0.4230163595035692,0.4230163595035692,0.42346288560567513,0.42346288560567513,0.42389490125609347,0.42389490125609347,0.4243122920410337,0.4243122920410337,0.4247149404544406,0.4247149404544406,0.42510273362865575,0.42510273362865575,0.425475554057624,0.425475554057624,0.425833288100621,0.425833288100621,0.42617581825159134,0.42617581825159134,0.42650303009674456,0.42650303009674456,0.4268148076761576,0.4268148076761576,0.4271110350299077,0.4271110350299077,0.42739159697113793,0.42739159697113793,0.42765637599379325,0.42765637599379325,0.4279052576840829,0.4279052576840829,0.4281381253090179,0.4281381253090179,0.42835486290867536,0.42835486290867536,0.4285553545231322,0.4285553545231322,0.42873948341939955,0.42873948341939955,0.4289071344106205,0.4289071344106205,0.4290581899907399,0.4290581899907399,0.429192534972901,0.429192534972901,0.42931005339718087,0.42931005339718087,0.4294106277575242,0.4294106277575242,0.4294941420940082,0.4294941420940082,0.4295604804467099,0.4295604804467099,0.4296095268557064,0.4296095268557064,0.42964116381494244,0.42964116381494244,0.4296552761375613,0.4296552761375613,0.42965174631750774,0.42965174631750774,0.429630459167925,0.429630459167925,0.42959129718275785,0.42959129718275785,0.42953414517514954,0.42953414517514954,0.42945888641211105,0.42945888641211105,0.42936540416065316,0.42936540416065316,0.4292535824608531,0.4292535824608531,0.42912330457972175,0.42912330457972175,0.4289744553304024,0.4289744553304024,0.4288069172068397,0.4288069172068397,0.42862057579524315,0.42862057579524315,0.42841531281649137,0.42841531281649137,0.42819101385679365,0.42819101385679365,0.4279475621831611,0.4279475621831611,0.42768484260873674,0.42768484260873674,0.4274027376274656,0.4274027376274656,0.4271011320524907,0.4271011320524907,0.4267799106969553,0.4267799106969553,0.4264389576009366,0.4264389576009366,0.4260781568045116,0.4260781568045116,0.42569739234775744,0.42569739234775744,0.4252965490438173,0.4252965490438173,0.42487551170583443,0.42487551170583443,0.424434164373886,0.424434164373886,0.42397239263418124,0.42397239263418124,0.4234900805267973,0.4234900805267973,0.42298711286487756,0.42298711286487756,0.4224633752346312,0.4224633752346312,0.4219187524492015,0.4219187524492015,0.42135312932173175,0.42135312932173175,0.4207663914384314,0.4207663914384314,0.42015842438550977,0.42015842438550977,0.41952911374917623,0.41952911374917623,0.41887834434257404,0.41887834434257404,0.41820600329804486,0.41820600329804486,0.417511975428732,0.417511975428732,0.41679614786697705,0.41679614786697705,0.4160584054259233,0.4160584054259233,0.4152986352379125,0.4152986352379125,0.414516722889154,0.414516722889154,0.41371255628505565,0.41371255628505565,0.412886021784893,0.412886021784893,0.4120370057479415,0.4120370057479415,0.411165395306543,0.411165395306543,0.4102710775930391,0.4102710775930391,0.4093539412859038,0.4093539412859038,0.40841387197134654,0.40841387197134654,0.40745075910090744,0.40745075910090744,0.40646448903386195,0.40646448903386195,0.40545495122175046,0.40545495122175046,0.40442203279691447,0.40442203279691447,0.40336562321089414,0.40336562321089414,0.4022856103690974,0.4022856103690974,0.4011818837230644,0.4011818837230644,0.40005433195126905,0.40005433195126905,0.39890284373218543,0.39890284373218543,0.39772730929041983,0.39772730929041983,0.3965276180775124,0.3965276180775124,0.3953036603180695,0.3953036603180695,0.39405532546363115,0.39405532546363115,0.3927825045118699,0.3927825045118699,0.39148508691432593,0.39148508691432593,0.39016296444173787,0.39016296444173787,0.38881602809177795,0.38881602809177795,0.3874441680890528,0.3874441680890528,0.38604727697736696,0.38604727697736696,0.38462524652745916,0.38462524652745916,0.38317796773700186,0.38317796773700186,0.3817053339228659,0.3817053339228659,0.38020723608272367,0.38020723608272367,0.37868356907957856,0.37868356907957856,0.377134223911103,0.377134223911103,0.3755590954403002,0.3755590954403002,0.3739580754379086,0.3739580754379086,0.37233105953999784,0.37233105953999784,0.3706779410634387,0.3706779410634387,0.36899861409816836,0.36899861409816836,0.3672929735071898,0.3672929735071898,0.36556091492657267,0.36556091492657267,0.3638023324462539,0.3638023324462539,0.362017122475369,0.362017122475369,0.36020518064998736,0.36020518064998736,0.35836640260617847,0.35836640260617847,0.35650068629921,0.35650068629921,0.35460792659208523,0.35460792659208523,0.3526880214400721,0.3526880214400721,0.3507408687984383,0.3507408687984383,0.3487663658493856,0.3487663658493856,0.34676441054818175,0.34676441054818175,0.344734902396227,0.344734902396227,0.342677738575723,0.342677738575723,0.3405928185880698,0.3405928185880698,0.33848004270773374,0.33848004270773374,0.33633930966304887,0.33633930966304887,0.3341705197284814,0.3341705197284814,0.33197357472462996,0.33197357472462996,0.3297483741528947,0.3297483741528947,0.3274948190608081,0.3274948190608081,0.3252128120420348,0.3252128120420348,0.32290225414410734,0.32290225414410734,0.3205630479606904,0.3205630479606904,0.3181950960854489,0.3181950960854489,0.31579830265817965,0.31579830265817965,0.3133725694994814,0.3133725694994814,0.3109178015222173,0.3109178015222173,0.30843390209311833,0.30843390209311833,0.3059207768981138,0.3059207768981138,0.3033783308500669,0.3033783308500669,0.3008064680887747,0.3008064680887747,0.2982050958462989,0.2982050958462989,0.2955741198085688,0.2955741198085688,0.29291344720764617,0.29291344720764617,0.2902229837294602,0.2902229837294602,0.28750263892527117,0.28750263892527117,0.2847523184810084,0.2847523184810084,0.2819719327209982,0.2819719327209982,0.27916138965036835,0.27916138965036835,0.2763205980473128,0.2763205980473128,0.2734494682361578,0.2734494682361578,0.27054791054122973,0.27054791054122973,0.26761583451378873,0.26761583451378873,0.2646531520242932,0.2646531520242932,0.2616597749432019,0.2616597749432019,0.258635613594841,0.258635613594841,0.25558058216886775,0.25558058216886775,0.25249459253574036,0.25249459253574036,0.2493775581120501,0.2493775581120501,0.24622939308745379,0.24622939308745379,0.2430500108785424,0.2430500108785424,0.23983932722110524,0.23983932722110524,0.23659725707786555,0.23659725707786555,0.23332371618461267,0.23332371618461267,0.23001862027713588,0.23001862027713588,0.22668188663735692,0.22668188663735692,0.22331343254719738,0.22331343254719738,0.21991317528857893,0.21991317528857893,0.21648103368955554,0.21648103368955554,0.21301692580511503,0.21301692580511503,0.2095207712363775,0.2095207712363775,0.20599248958446306,0.20599248958446306,0.20243200122355795,0.20243200122355795,0.1988392265278485,0.1988392265278485,0.19521408819071934,0.19521408819071934,0.19155650658635678,0.19155650658635678,0.1878664044081456,0.1878664044081456,0.18414370512253658,0.18414370512253658,0.1803883321959806,0.1803883321959806,0.17660020909492866,0.17660020909492866,0.1727792608319638,0.1727792608319638,0.1689254116466031,0.1689254116466031,0.16503858887062822,0.16503858887062822,0.16111871674355616,0.16111871674355616,0.15716572337023477,0.15716572337023477,0.15317953608244556,0.15317953608244556,0.14916008221197027,0.14916008221197027,0.1451072906367229,0.1451072906367229,0.14102109023461726,0.14102109023461726,0.13690141065663353,0.13690141065663353,0.13274818155375176,0.13274818155375176,0.12856133489615051,0.12856133489615051,0.12434080110787611,0.12434080110787611,0.12008651293217319,0.12008651293217319,0.11579840233922033,0.11579840233922033,0.11147640284532838,0.11147640284532838,0.10712044796680821,0.10712044796680821,0.10273047199303686,0.10273047199303686,0.09830640998645745,0.09830640998645745,0.09384819700951316,0.09384819700951316,0.08935577044384564,0.08935577044384564,0.08482906689803035,0.08482906689803035,0.08026802298064276,0.08026802298064276,0.07567257692369725,0.07567257692369725,0.07104266780958102,0.07104266780958102,0.0663782347979878,0.0663782347979878,0.06167921774437094,0.06167921774437094,0.05694555719994327,0.05694555719994327,0.05217719456629042,0.05217719456629042,0.047374071476917856,0.047374071476917856,0.04253613057031704,0.04253613057031704,0.03766331494881914,0.03766331494881914,0.032755568333208196,0.032755568333208196,0.027812835294641094,0.027812835294641094,0.022835060868114362,0.022835060868114362,0.017822190784384063,0.017822190784384063,0.012774171469965826,0.012774171469965826,0.007690950116710744,0.007690950116710744,0.0025724743880402774,0.0025724743880402774,0.0025813072640966392,0.0025813072640966392,0.00777044575383683,0.00777044575383683,0.012994991245442943,0.012994991245442943,0.018254993338839346,0.018254993338839346,0.02355050089180689,0.02355050089180689,0.028881562066366898,0.028881562066366898,0.03424822432878115,0.03424822432878115,0.03965053444955187,0.03965053444955187,0.04508853858072841,0.04508853858072841,0.05056228210129391,0.05056228210129391,0.05607180969447203,0.05607180969447203,0.06161716542503345,0.06161716542503345,0.06719839250737612,0.06719839250737612,0.07281553353744505,0.07281553353744505,0.07846863033811911,0.07846863033811911,0.08415772465497058,0.08415772465497058,0.08988285545053351,0.08988285545053351,0.09564406447038017,0.09564406447038017,0.10144138882168591,0.10144138882168591,0.10727486793082448,0.10727486793082448,0.11314453967803742,0.11314453967803742,0.11905043962436772,0.11905043962436772,0.12499260487699071,0.12499260487699071,0.13097106945081713,0.13097106945081713,0.13698586967995618,0.13698586967995618,0.1430370388062524,0.1430370388062524,0.1491246100715503,0.1491246100715503,0.15524861517156227,0.15524861517156227,0.1614090865750667,0.1614090865750667,0.16760605443164345,0.16760605443164345,0.1738395496639387,0.1738395496639387,0.1801096008754001,0.1801096008754001,0.18641623744254146,0.18641623744254146,0.19275948719574423,0.19275948719574423,0.1991393764192577,0.1991393764192577,0.20555593217039714,0.20555593217039714,0.21200917996034563,0.21200917996034563,0.21849914452722002,0.21849914452722002,0.22502584983607105,0.22502584983607105,0.23158931907888336,0.23158931907888336,0.23818957467457533,0.23818957467457533,0.2448266390420654,0.2448266390420654,0.25150053228107355,0.25150053228107355,0.2582112744913197,0.2582112744913197,0.2649588857725239,0.2649588857725239,0.2717433846782738,0.2717433846782738,0.2785647882160247,0.2785647882160247,0.28542311339323206,0.28542311339323206,0.2923183772173512,0.2923183772173512,0.2992505951497051,0.2992505951497051,0.3062197803324184,0.3062197803324184,0.3132259482268143,0.3132259482268143,0.320269111201951,0.320269111201951,0.327349280853821,0.327349280853821,0.3344664695514826,0.3344664695514826,0.341620688117862,0.341620688117862,0.3488119442836207,0.3488119442836207,0.3560402496447511,0.3560402496447511,0.36330561038578224,0.36330561038578224,0.370608035010442,0.370608035010442,0.3779475289301933,0.3779475289301933,0.3853240991026315,0.3853240991026315,0.3927377493930875,0.3927377493930875,0.4001884844399581,0.4001884844399581,0.40767630733550797,0.40767630733550797,0.4152012203989356,0.4152012203989356,0.4227632251763731,0.4227632251763731,0.4303623224408869,0.4303623224408869,0.43799851219247676,0.43799851219247676,0.44567179288501063,0.44567179288501063,0.4533821637454221,0.4533821637454221,0.4611296216814467,0.4611296216814467,0.46891416360081983,0.46891416360081983,0.47673578409207834,0.47673578409207834,0.48459447928989147,0.48459447928989147,0.4924902430097301,0.4924902430097301,0.5004230675209326,0.5004230675209326,0.5083929458659036,0.5083929458659036,0.5163998695409155,0.5163998695409155,0.5244438292691744,0.5244438292691744,0.5325248150008204,0.5325248150008204,0.5406428151398611,0.5406428151398611,0.5487978173172381,0.5487978173172381,0.5569898099369589,0.5569898099369589,0.5652187790838332,0.5652187790838332,0.5734847100696038,0.5734847100696038,0.5817875866598815,0.5817875866598815,0.5901273941664095,0.5901273941664095,0.5985041140356,0.5985041140356,0.6069177300330638,0.6069177300330638,0.6153682220590811,0.6153682220590811,0.623855570013932,0.623855570013932,0.6323797545709623,0.6323797545709623,0.6409407540843198,0.6409407540843198,0.6495385461350863,0.6495385461350863,0.6581731067582111,0.6581731067582111,0.6668444135347755,0.6668444135347755,0.6755524401805305,0.6755524401805305,0.6842971611842928,0.6842971611842928,0.6930785502618136,0.6930785502618136,0.7018965795827112,0.7018965795827112,0.7107512205435379,0.7107512205435379,0.7196424445408459,0.7196424445408459,0.7285702214250557,0.7285702214250557,0.7375345187273886,0.7375345187273886,0.7465353062982645,0.7465353062982645,0.755572550122773,0.755572550122773,0.7646462169590692,0.7646462169590692,0.7737562689269118,0.7737562689269118,0.7829026774228532,0.7829026774228532,0.7920854045666519,0.7920854045666519,0.8013044117050002,0.8013044117050002,0.8105596524539289,0.8105596524539289,0.8198511036214535,0.8198511036214535,0.8291787110929432,0.8291787110929432,0.838542443945752,0.838542443945752,0.8479422557959105,0.8479422557959105,0.8573781002594499,0.8573781002594499,0.8668499464137239,0.8668499464137239,0.8763577324134404,0.8763577324134404,0.8859014273359529,0.8859014273359529,0.8954809847972928,0.8954809847972928,0.9050963429521673,0.9050963429521673,0.9147474708779306,0.9147474708779306,0.9244343144599521,0.9244343144599521,0.9341568195836011,0.9341568195836011,0.9439149321342466,0.9439149321342466,0.9537086134585812,0.9537086134585812,0.9635378094419742,0.9635378094419742,0.9734024505084719,0.9734024505084719,0.9833024980047664,0.9833024980047664,0.9932378978162272,0.9932378978162272,1.003208588097562,1.003208588097562,1.0132145070034788,1.0132145070034788,1.023255600419347,1.023255600419347,1.0333318142305352,1.0333318142305352,1.0434430865917514,1.0434430865917514,1.053589355657704,1.053589355657704,1.0637705673137619,1.0637705673137619,1.07398664425331,1.07398664425331,1.0842375323617173,1.0842375323617173,1.0945231697936915,1.0945231697936915,1.1048434869732793,1.1048434869732793,1.115198422055188,1.115198422055188,1.1255879054634643,1.1255879054634643,1.1360118676221542,1.1360118676221542,1.146470238955304,1.146470238955304,1.1569629576176215,1.1569629576176215,1.1674899463024913,1.1674899463024913,1.1780511354339598,1.1780511354339598,1.1886464554360736,1.1886464554360736,1.1992758367328777,1.1992758367328777,1.209939186556435,1.209939186556435,1.2206364507921148,1.2206364507921148,1.2313675444026397,1.2313675444026397,1.242132397812056,1.242132397812056,1.2529309182524255,1.2529309182524255,1.2637630438784564,1.2637630438784564,1.274628689652871,1.274628689652871,1.285527762807732,1.285527762807732,1.2964602014977464,1.2964602014977464,1.3074259129549761,1.3074259129549761,1.3184248198728057,1.3184248198728057,1.3294568294832971,1.3294568294832971,1.3405218644798351,1.3405218644798351,1.3516198398251427,1.3516198398251427,1.3627506627512815,1.3627506627512815,1.3739142482209747,1.3739142482209747,1.3851105111969455,1.3851105111969455,1.3963393666419175,1.3963393666419175,1.407600706326629,1.407600706326629,1.4188944606751257,1.4188944606751257,1.4302205214581476,1.4302205214581476,1.4415788036384165,1.4415788036384165,1.4529692144479947,1.4529692144479947,1.4643916533882821,1.4643916533882821,1.4758460276913408,1.4758460276913408,1.487332244589232,1.487332244589232,1.4988502035833564,1.4988502035833564,1.510399811905775,1.510399811905775,1.5219809613272266,1.5219809613272266,1.533593551349112,1.533593551349112,1.5452374969341534,1.5452374969341534,1.5569126743917667,1.5569126743917667,1.5686189986846752,1.5686189986846752,1.5803563615836178,1.5803563615836178,1.5921246548593329,1.5921246548593329,1.60392377801322,1.60392377801322,1.6157536150853573,1.6157536150853573,1.6276140733078055,1.6276140733078055,1.6395050367206425,1.6395050367206425,1.6514263970946061,1.6514263970946061,1.6633780539310972,1.6633780539310972,1.6753598758088695,1.6753598758088695,1.6873717776906458,1.6873717776906458,1.6994136281551808,1.6994136281551808,1.7114853189732127,1.7114853189732127,1.7235867341848183,1.7235867341848183,1.7357177732913989,1.7357177732913989,1.7478782971410458,1.7478782971410458,1.7600682129658212,1.7600682129658212,1.7722873893444788,1.7722873893444788,1.7845357025864348,1.7845357025864348,1.7968130521930887,1.7968130521930887,1.8091193067431948,1.8091193067431948,1.8214543425461687,1.8214543425461687,1.8338180436420872,1.8338180436420872,1.846210286340366,1.846210286340366,1.8586309546810824,1.8586309546810824,1.871079909512329,1.871079909512329,1.8835570348741821,1.8835570348741821,1.896062207076058,1.896062207076058,1.908595286966049,1.908595286966049,1.9211561663148937,1.9211561663148937,1.9337446982400233,1.9337446982400233,1.946360766781514,1.946360766781514,1.9590042327874597,1.9590042327874597,1.9716749725672749,1.9716749725672749,1.9843728469690527,1.9843728469690527,1.9970977323022079,1.9970977323022079,2.0098494894148335,2.0098494894148335,2.0226279868856833,2.0226279868856833,2.0354330855628504,2.0354330855628504,2.0482646540250884,2.0482646540250884,2.0611225453898285,2.0611225453898285,2.074006643697147,2.074006643697147,2.0869167866031533,2.0869167866031533,2.099852850417261,2.099852850417261,2.1128146882569028,2.1128146882569028,2.1258021687008317,2.1258021687008317,2.138815137135818,2.138815137135818,2.1518534544099532,2.1518534544099532,2.164916989101992,2.164916989101992,2.178005578868042,2.178005578868042,2.191119100017519,2.191119100017519,2.204257390206531,2.204257390206531,2.2174203025525085,2.2174203025525085,2.230607705634206,2.230607705634206,2.2438194371077316,2.2438194371077316,2.2570553500905155,2.2570553500905155,2.270315297699989,2.270315297699989,2.2835991330535834,2.2835991330535834,2.296906701538068,2.296906701538068,2.3102378562708736,2.3102378562708736,2.3235924349081083,2.3235924349081083,2.3369702828365413,2.3369702828365413,2.350371260904265,2.350371260904265,2.363795206767388,2.363795206767388,2.3772419580820174,2.3772419580820174,2.3907113679655847,2.3907113679655847,2.404203274074198,2.404203274074198,2.4177175140639644,2.4177175140639644,2.4312539410523155,2.4312539410523155,2.4448123926953595,2.4448123926953595,2.458392698918542,2.458392698918542,2.4719947051086324,2.4719947051086324,2.4856182489217398,2.4856182489217398,2.499263168013971,2.499263168013971,2.512929300041434,2.512929300041434,2.5266164826602378,2.5266164826602378,2.540324553526489,2.540324553526489,2.5540533348349728,2.5540533348349728,2.567802671972459,2.567802671972459,2.5815723948643936,2.5815723948643936,2.5953623334362232,2.5953623334362232,2.609172325344056,2.609172325344056,2.6230021927826765,2.6230021927826765,2.6368517811388545,2.6368517811388545,2.650720897146051,2.650720897146051,2.664609393921698,2.664609393921698,2.6785170781992567,2.6785170781992567,2.6924437953654965,2.6924437953654965,2.706389359884541,2.706389359884541,2.720353601681836,2.720353601681836,2.734336350682829,2.734336350682829,2.7483374290823037,2.7483374290823037,2.7623566590750457,2.7623566590750457,2.7763938551251783,2.7763938551251783,2.7904488626194706,2.7904488626194706,2.8045214805607235,2.8045214805607235,2.8186115388743826,2.8186115388743826,2.8327188674858945,2.8327188674858945,2.846843273128721,2.846843273128721,2.8609845779976473,2.8609845779976473,2.8751426042874586,2.8751426042874586,2.889317166462277,2.889317166462277,2.9035080867168883,2.9035080867168883,2.9177151795154153,2.9177151795154153,2.931938259321982,2.931938259321982,2.9461771406007116,2.9461771406007116,2.960431645546388,2.960431645546388,2.974701573161813,2.974701573161813,2.9889867533724317,2.9889867533724317,3.0032869929117063,3.0032869929117063,3.0176020985130996,3.0176020985130996,3.0319318923713947,3.0319318923713947,3.046276173489393,3.046276173489393,3.0606347640618785,3.0606347640618785,3.075007463091653,3.075007463091653,3.0893940850428385,3.0893940850428385,3.1037944443795586,3.1037944443795586,3.1182083401046143,3.1182083401046143,3.1326355789514664,3.1326355789514664,3.147075975384239,3.147075975384239,3.1615293284057318,3.1615293284057318,3.175995452480069,3.175995452480069,3.1904741466100495,3.1904741466100495,3.2049652097984747,3.2049652097984747,3.2194684565094676,3.2194684565094676,3.233983685745828,3.233983685745828,3.2485106965103574,3.2485106965103574,3.2630492955365167,3.2630492955365167,3.2775992895577675,3.2775992895577675,3.2921604698462485,3.2921604698462485,3.3067326354047615,3.3067326354047615,3.3213155929667666,3.3213155929667666,3.3359091492657265,3.3359091492657265,3.350513087843118,3.350513087843118,3.3651272077017413,3.3651272077017413,3.37975132330572,3.37975132330572,3.3943852181965313,3.3943852181965313,3.409028691376976,3.409028691376976,3.4236815418498527,3.4236815418498527,3.4383435608873025,3.4383435608873025,3.453014547492123,3.453014547492123,3.467694292936456,3.467694292936456,3.4823826039537606,3.4823826039537606,3.497079256354854,3.497079256354854,3.5117840491425363,3.5117840491425363,3.526496789050269,3.526496789050269,3.541217244158206,3.541217244158206,3.5559452289304714,3.5559452289304714,3.5706805191778805,3.5706805191778805,3.5854229139032334,3.5854229139032334,3.6001721966480074,3.6001721966480074,3.614928166415003,3.614928166415003,3.6296906144763588,3.6296906144763588,3.644459316642891,3.644459316642891,3.659234064186738,3.659234064186738,3.6740146561106988,3.6740146561106988,3.688800868225591,3.688800868225591,3.703592499534214,3.703592499534214,3.7183893258473835,3.7183893258473835,3.7331911384372387,3.7331911384372387,3.747997728575918,3.747997728575918,3.7628088720742365,3.7628088720742365,3.7776243602043342,3.7776243602043342,3.792443976507688,3.792443976507688,3.807267504525774,3.807267504525774,3.822094727800071,3.822094727800071,3.8369254298720548,3.8369254298720548,3.851759394283204,3.851759394283204,3.8665964045749943,3.8665964045749943,3.8814362442889037,3.8814362442889037,3.8962786969664105,3.8962786969664105,3.9111235384183294,3.9111235384183294,3.9259705521861363,3.9259705521861363,3.94081951408065,3.94081951408065,3.955670223104668,3.955670223104668,3.9705224396076826,3.9705224396076826,3.9853759471311743,3.9853759471311743,4.000230536947279,4.000230536947279,4.015085977136152,4.015085977136152,4.029942043508608,4.029942043508608,4.044798527336787,4.044798527336787,4.059655196700843,4.059655196700843,4.0745118351422525,4.0745118351422525,4.089368218471832,4.089368218471832,4.104224122500396,4.104224122500396,4.119079323038761,4.119079323038761,4.133933595897744,4.133933595897744,4.14878672461882,4.14878672461882,4.163638477282145,4.163638477282145,4.1784886374291945,4.1784886374291945,4.1933369731401235,4.1933369731401235,4.208183267956408,4.208183267956408,4.223027282227543,4.223027282227543,4.2378688072256665,4.2378688072256665,4.252707611030932,4.252707611030932,4.267543461723492,4.267543461723492,4.282376142844828,4.282376142844828,4.29720541474443,4.29720541474443,4.312031068694437,4.312031068694437,4.32685286504434,4.32685286504434,4.341670579604958,4.341670579604958,4.356483988187105,4.356483988187105,4.371292858870934,4.371292858870934,4.386096967467263,4.386096967467263,4.400896082056245,4.400896082056245,4.415689978448695,4.415689978448695,4.43047842472477,4.43047842472477,4.445261196695282,4.445261196695282,4.460038054709726,4.460038054709726,4.474808790040238,4.474808790040238,4.489573155305653,4.489573155305653,4.504330926316785,4.504330926316785,4.519081878884449,4.519081878884449,4.533825773358139,4.533825773358139,4.5485623932793295,4.5485623932793295,4.563291491266856,4.563291491266856,4.578012858592854,4.578012858592854,4.592726247876154,4.592726247876154,4.607431427196913,4.607431427196913,4.622128180096605,4.622128180096605,4.636816266924726,4.636816266924726,4.65149546349209,4.65149546349209,4.66616553014819,4.66616553014819,4.680826234973179,4.680826234973179,4.695477361508536,4.695477361508536,4.71011866237309,4.71011866237309,4.72474991337766,4.72474991337766,4.739370882602397,4.739370882602397,4.753981330396795,4.753981330396795,4.76858104030233,4.76858104030233,4.783169772668497,4.783169772668497,4.7977472878447855,4.7977472878447855,4.812313369372676,4.812313369372676,4.82686777760166,4.82686777760166,4.841410280611891,4.841410280611891,4.855940638752861,4.855940638752861,4.870458635566049,4.870458635566049,4.8849640236702845,4.8849640236702845,4.899456586607045,4.899456586607045,4.9139360769951645,4.9139360769951645,4.928402270645455,4.928402270645455,4.9428549356380715,4.9428549356380715,4.957293832322509,4.957293832322509,4.971718736509579,4.971718736509579,4.9861294162794385,4.9861294162794385,5.0005256319815805,5.0005256319815805,5.014907159426819,5.014907159426819,5.0292737589646475,5.0292737589646475,5.043625198675222,5.043625198675222,5.057961254369354,5.057961254369354,5.072281686396539,5.072281686396539,5.0865862628369305,5.0865862628369305,5.100874751770683,5.100874751770683,5.1151469290086125,5.1151469290086125,5.129402554900211,5.129402554900211,5.14364138979497,5.14364138979497,5.15786321723437,5.15786321723437,5.172067797567901,5.172067797567901,5.186254898875717,5.186254898875717,5.200424289237974,5.200424289237974,5.214575736734825,5.214575736734825,5.228709017177086,5.228709017177086,5.242823883183587,5.242823883183587,5.256920118295806,5.256920118295806,5.270997490593898,5.270997490593898,5.285055752696695,5.285055752696695,5.29909468814567,5.29909468814567,5.313114065020981,5.313114065020981,5.327113643672121,5.327113643672121,5.341093207640563,5.341093207640563,5.355052509545143,5.355052509545143,5.368991332927334,5.368991332927334,5.3829094381366325,5.3829094381366325,5.396806600983853,5.396806600983853,5.410682581818485,5.410682581818485,5.424537164182009,5.424537164182009,5.438370108423919,5.438370108423919,5.452181190355027,5.452181190355027,5.465970178055488,5.465970178055488,5.479736839605459,5.479736839605459,5.493480950815751,5.493480950815751,5.507202279766523,5.507202279766523,5.520900594537927,5.520900594537927,5.534575678671439,5.534575678671439,5.548227292516553,5.548227292516553,5.561855211884085,5.561855211884085,5.575459204854189,5.575459204854189,5.5890390549683415,5.5890390549683415,5.602594522576035,5.602594522576035,5.616125383488086,5.616125383488086,5.62963141351531,5.62963141351531,5.6431123884685235,5.6431123884685235,5.656568076427878,5.656568076427878,5.669998245473531,5.669998245473531,5.68340268687762,5.68340268687762,5.696781160989636,5.696781160989636,5.710133443620397,5.710133443620397,5.723459318311379,5.723459318311379,5.736758553142737,5.736758553142737,5.750030923925285,5.750030923925285,5.7632762064698415,5.7632762064698415,5.776494176587219,5.776494176587219,5.789684617818897,5.789684617818897,5.802847290514367,5.802847290514367,5.815981993676431,5.815981993676431,5.829088479923917,5.829088479923917,5.8421665482596286,5.8421665482596286,5.855215966763717,5.855215966763717,5.868236511247001,5.868236511247001,5.881227965250955,5.881227965250955,5.894190104586396,5.894190104586396,5.90712270506414,5.90712270506414,5.9200255579563255,5.9200255579563255,5.9328984390737665,5.9328984390737665,5.94574111649662,5.94574111649662,5.958553389227685,5.958553389227685,5.971335025347115,5.971335025347115,5.984085808396388,5.984085808396388,5.996805521916983,5.996805521916983,6.0094939494503725,6.0094939494503725,6.022150874538037,6.022150874538037,6.034776072990793,6.034776072990793,6.047369336080778,6.047369336080778,6.059930447349468,6.059930447349468,6.072459190338343,6.072459190338343,6.084955340858215,6.084955340858215,6.097418690181226,6.097418690181226,6.109849029579514,6.109849029579514,6.122246142594555,6.122246142594555,6.134609805037166,6.134609805037166,6.146939815910147,6.146939815910147,6.159235958754975,6.159235958754975,6.171498017113127,6.171498017113127,6.183725782256742,6.183725782256742,6.195919045457958,6.195919045457958,6.208077597988916,6.208077597988916,6.220201223391091,6.220201223391091,6.232289705205961,6.232289705205961,6.244342850166988,6.244342850166988,6.25636044181565,6.25636044181565,6.268342271424083,6.268342271424083,6.280288122533767,6.280288122533767,6.292197801878162,6.292197801878162,6.3040711007294075,6.3040711007294075,6.315907802628982,6.315907802628982,6.327707706579683,6.327707706579683,6.339470611584313,6.339470611584313,6.35119630891501,6.35119630891501,6.362884597574574,6.362884597574574,6.374535268835146,6.374535268835146,6.386148121699522,6.386148121699522,6.397722947439845,6.397722947439845,6.409259560520234,6.409259560520234,6.4207577367515105,6.4207577367515105,6.432217298328454,6.432217298328454,6.443638028792543,6.443638028792543,6.455019734877242,6.455019734877242,6.4663622078546865,6.4663622078546865,6.477665262189001,6.477665262189001,6.4889286968829865,6.4889286968829865,6.500152310939443,6.500152310939443,6.511335903361169,6.511335903361169,6.52247928861229,6.52247928861229,6.533582265695607,6.533582265695607,6.544644633613918,6.544644633613918,6.555666206831347,6.555666206831347,6.566646784350694,6.566646784350694,6.577586180636083,6.577586180636083,6.588484194690315,6.588484194690315,6.599340648708173,6.599340648708173,6.6101553339617976,6.6101553339617976,6.620928064915311,6.620928064915311,6.631658656032837,6.631658656032837,6.6423469140478355,6.6423469140478355,6.652992653424434,6.652992653424434,6.66359568862675,6.66359568862675,6.674155826388252,6.674155826388252,6.684672873442397,6.684672873442397,6.695146659714633,6.695146659714633,6.705576991938422,6.705576991938422,6.715963684577887,6.715963684577887,6.726306559827813,6.726306559827813,6.73660542442166,6.73660542442166,6.746860100554216,6.746860100554216,6.757070410420265,6.757070410420265,6.767236160753267,6.767236160753267,6.777357189209332,6.777357189209332,6.78743330252192,6.78743330252192,6.797464322885817,6.797464322885817,6.807450072495808,6.807450072495808,6.81739038127734,6.81739038127734,6.827285063694534,6.827285063694534,6.837133949672838,6.837133949672838,6.846936861407036,6.846936861407036,6.856693621091915,6.856693621091915,6.866404058652918,6.866404058652918,6.876067996284833,6.876067996284833,6.8856852716437675,6.8856852716437675,6.895255699193843,6.895255699193843,6.90477912432183,6.90477912432183,6.914255361491851,6.914255361491851,6.923684248360015,6.923684248360015,6.933065622582431,6.933065622582431,6.942399306353881,6.942399306353881,6.951685137330474,6.951685137330474,6.960922945437659,6.960922945437659,6.97011256833154,6.97011256833154,6.979253851398889,6.979253851398889,6.988346609103827,6.988346609103827,6.997390694563788,6.997390694563788,7.006385945434878,7.006385945434878,7.015332199373204,7.015332199373204,7.024229286304215,7.024229286304215,7.0330770593453416,7.0330770593453416,7.041875348422027,7.041875348422027,7.050624006651706,7.050624006651706,7.059322863959823,7.059322863959823,7.06797178119447,7.06797178119447,7.076570588281096,7.076570588281096,7.085119130606468,7.085119130606468,7.0936172690186785,7.0936172690186785,7.102064833443176,7.102064833443176,7.11046168472805,7.11046168472805,7.118807660529411,7.118807660529411,7.127102621695351,7.127102621695351,7.1353464136126385,7.1353464136126385,7.143538881668044,7.143538881668044,7.151679886709658,7.151679886709658,7.159769281854914,7.159769281854914,7.167806920221242,7.167806920221242,7.175792647195411,7.175792647195411,7.183726331356175,7.183726331356175,7.191607825820967,7.191607825820967,7.199436983707214,7.199436983707214,7.207213673593674,7.207213673593674,7.214937740867114,7.214937740867114,7.2226090541062895,7.2226090541062895,7.230227481889952,7.230227481889952,7.237792869604874,7.237792869604874,7.245305093560471,7.245305093560471,7.252764006874171,7.252764006874171,7.260169485855393,7.260169485855393,7.2675213913522265,7.2675213913522265,7.2748195919434275,7.2748195919434275,7.282063956207749,7.282063956207749,7.289254344993284,7.289254344993284,7.296390634609448,7.296390634609448,7.303472693634997,7.303472693634997,7.310500390648682,7.310500390648682,7.3174736096905795,7.3174736096905795,7.324392211608784,7.324392211608784,7.3312560804433735,7.3312560804433735,7.3380650847731,7.3380650847731,7.34481910090738,7.34481910090738,7.351518005155628,7.351518005155628,7.358161681557923,7.358161681557923,7.36475000642368,7.36475000642368,7.371282863792974,7.371282863792974,7.377760129975223,7.377760129975223,7.384181681279842,7.384181681279842,7.39054741720823,7.39054741720823,7.396857206339143,7.396857206339143,7.403110940443318,7.403110940443318,7.409308511291494,7.409308511291494,7.415449795193086,7.415449795193086,7.421534683918834,7.421534683918834,7.427563069239476,7.427563069239476,7.43353484292575,7.43353484292575,7.439449889017734,7.439449889017734,7.445308099286166,7.445308099286166,7.451109380963107,7.451109380963107,7.456853610357975,7.456853610357975,7.46254070243349,7.46254070243349,7.4681705334990705,7.4681705334990705,7.473743010786776,7.473743010786776,7.479258026067345,7.479258026067345,7.484715486572843,7.484715486572843,7.490115291804664,7.490115291804664,7.495457341264214,7.495457341264214,7.500741542183551,7.500741542183551,7.505967786333414,7.505967786333414,7.511135980945867,7.511135980945867,7.51624604098363,7.51624604098363,7.521297865948105,7.521297865948105,7.526291363071354,7.526291363071354,7.531226447316098,7.531226447316098,7.536103025914401,7.536103025914401,7.540920998367662,7.540920998367662,7.545680295099929,7.545680295099929,7.5503808156126,7.5503808156126,7.555022474868399,7.555022474868399,7.55960519556071,7.55960519556071,7.564128884921595,7.564128884921595,7.568593473375102,7.568593473375102,7.572998860422628,7.572998860422628,7.577344984218884,7.577344984218884,7.581631744265267,7.581631744265267,7.58585908644715,7.58585908644715,7.59002691026593,7.59002691026593,7.594135153876316,7.594135153876316,7.598183739971692,7.598183739971692,7.602172591245444,7.602172591245444,7.606101630390956,7.606101630390956,7.609970795562934,7.609970795562934,7.613780009454767,7.613780009454767,7.617529202490497,7.617529202490497,7.621218305094173,7.621218305094173,7.624847255420502,7.624847255420502,7.6284159761628665,7.6284159761628665,7.63192441320664,7.63192441320664,7.635372496975867,7.635372496975867,7.638760165625253,7.638760165625253,7.642087349578846,7.642087349578846,7.645354002452677,7.645354002452677,7.6485600469401325,7.6485600469401325,7.651705436657242,7.651705436657242,7.65479010975871,7.65479010975871,7.657814012129908,7.657814012129908,7.660777081925547,7.660777081925547,7.663679272761655,7.663679272761655,7.666520522792938,7.666520522792938,7.66930078563543,7.66930078563543,7.6720200071745,7.6720200071745,7.674678141026176,7.674678141026176,7.677275140806492,7.677275140806492,7.679810952400815,7.679810952400815,7.682285521694517,7.682285521694517,7.684698825495611,7.684698825495611,7.687050794228144,7.687050794228144,7.689341404700131,7.689341404700131,7.6915706027969435,7.6915706027969435,7.693738357595932,7.693738357595932,7.695844614982468,7.695844614982468,7.697889351764566,7.697889351764566,7.699872521558258,7.699872521558258,7.701794085710234,7.701794085710234,7.703654013297851,7.703654013297851,7.705452265667799,7.705452265667799,7.707188819628095,7.707188819628095,7.70886363652543,7.70886363652543,7.7104766854371585,7.7104766854371585,7.712027935440634,7.712027935440634,7.713517355613211,7.713517355613211,7.714944930493567,7.714944930493567,7.716310621428393,7.716310621428393,7.717614405225706,7.717614405225706,7.718856266424181,7.718856266424181,7.720036174101172,7.720036174101172,7.721154105064695,7.721154105064695,7.72221004385343,7.72221004385343,7.723203967275387,7.723203967275387,7.724135867599909,7.724135867599909,7.725005706173684,7.725005706173684,7.725813490727378,7.725813490727378,7.7265591903383415,7.7265591903383415,7.727242797275916,7.727242797275916,7.727864296078775,7.727864296078775,7.728423686746923,7.728423686746923,7.728920938357708,7.728920938357708,7.7293560586417955,7.7293560586417955,7.729729032137862,7.729729032137862,7.7300398511152455,7.7300398511152455,7.730288515573945,7.730288515573945,7.730475025513964,7.730475025513964,7.730599357743314,7.730599357743314,7.730661527723321,7.730661527723321,7.730661527723321,7.730661527723321,7.730599357743314,7.730599357743314,7.730475025513964,7.730475025513964,7.730288515573945,7.730288515573945,7.7300398511152455,7.7300398511152455,7.729729032137862,7.729729032137862,7.7293560586417955,7.7293560586417955,7.728920938357708,7.728920938357708,7.728423686746923,7.728423686746923,7.727864296078775,7.727864296078775,7.727242797275916,7.727242797275916,7.7265591903383415,7.7265591903383415,7.725813490727378,7.725813490727378,7.725005706173684,7.725005706173684,7.724135867599909,7.724135867599909,7.723203967275387,7.723203967275387,7.72221004385343,7.72221004385343,7.721154105064695,7.721154105064695,7.720036174101172,7.720036174101172,7.718856266424181,7.718856266424181,7.717614405225706,7.717614405225706,7.716310621428393,7.716310621428393,7.714944930493567,7.714944930493567,7.713517355613211,7.713517355613211,7.712027935440634,7.712027935440634,7.7104766854371585,7.7104766854371585,7.70886363652543,7.70886363652543,7.707188819628095,7.707188819628095,7.705452265667799,7.705452265667799,7.703654013297851,7.703654013297851,7.701794085710234,7.701794085710234,7.699872521558258,7.699872521558258,7.697889351764566,7.697889351764566,7.695844614982468,7.695844614982468,7.693738357595932,7.693738357595932,7.6915706027969435,7.6915706027969435,7.689341404700131,7.689341404700131,7.687050794228144,7.687050794228144,7.684698825495611,7.684698825495611,7.682285521694517,7.682285521694517,7.679810952400815,7.679810952400815,7.677275140806492,7.677275140806492,7.674678141026176,7.674678141026176,7.6720200071745,7.6720200071745,7.66930078563543,7.66930078563543,7.666520522792938,7.666520522792938,7.663679272761655,7.663679272761655,7.660777081925547,7.660777081925547,7.657814012129908,7.657814012129908,7.65479010975871,7.65479010975871,7.651705436657242,7.651705436657242,7.6485600469401325,7.6485600469401325,7.645354002452677,7.645354002452677,7.642087349578846,7.642087349578846,7.638760165625253,7.638760165625253,7.635372496975867,7.635372496975867,7.63192441320664,7.63192441320664,7.6284159761628665,7.6284159761628665,7.624847255420502,7.624847255420502,7.621218305094173,7.621218305094173,7.617529202490497,7.617529202490497,7.613780009454767,7.613780009454767,7.609970795562934,7.609970795562934,7.606101630390956,7.606101630390956,7.602172591245444,7.602172591245444,7.598183739971692,7.598183739971692,7.594135153876316,7.594135153876316,7.59002691026593,7.59002691026593,7.58585908644715,7.58585908644715,7.581631744265267,7.581631744265267,7.577344984218884,7.577344984218884,7.572998860422628,7.572998860422628,7.568593473375102,7.568593473375102,7.564128884921595,7.564128884921595,7.55960519556071,7.55960519556071,7.555022474868399,7.555022474868399,7.5503808156126,7.5503808156126,7.545680295099929,7.545680295099929,7.540920998367662,7.540920998367662,7.536103025914401,7.536103025914401,7.531226447316098,7.531226447316098,7.526291363071354,7.526291363071354,7.521297865948105,7.521297865948105,7.51624604098363,7.51624604098363,7.511135980945867,7.511135980945867,7.505967786333414,7.505967786333414,7.500741542183551,7.500741542183551,7.495457341264214,7.495457341264214,7.490115291804664,7.490115291804664,7.484715486572843,7.484715486572843,7.479258026067345,7.479258026067345,7.473743010786776,7.473743010786776,7.4681705334990705,7.4681705334990705,7.46254070243349,7.46254070243349,7.456853610357975,7.456853610357975,7.451109380963107,7.451109380963107,7.445308099286166,7.445308099286166,7.439449889017734,7.439449889017734,7.43353484292575,7.43353484292575,7.427563069239476,7.427563069239476,7.421534683918834,7.421534683918834,7.415449795193086,7.415449795193086,7.409308511291494,7.409308511291494,7.403110940443318,7.403110940443318,7.396857206339143,7.396857206339143,7.39054741720823,7.39054741720823,7.384181681279842,7.384181681279842,7.377760129975223,7.377760129975223,7.371282863792974,7.371282863792974,7.36475000642368,7.36475000642368,7.358161681557923,7.358161681557923,7.351518005155628,7.351518005155628,7.34481910090738,7.34481910090738,7.3380650847731,7.3380650847731,7.3312560804433735,7.3312560804433735,7.324392211608784,7.324392211608784,7.3174736096905795,7.3174736096905795,7.310500390648682,7.310500390648682,7.303472693634997,7.303472693634997,7.296390634609448,7.296390634609448,7.289254344993284,7.289254344993284,7.282063956207749,7.282063956207749,7.2748195919434275,7.2748195919434275,7.2675213913522265,7.2675213913522265,7.260169485855393,7.260169485855393,7.252764006874171,7.252764006874171,7.245305093560471,7.245305093560471,7.237792869604874,7.237792869604874,7.230227481889952,7.230227481889952,7.2226090541062895,7.2226090541062895,7.214937740867114,7.214937740867114,7.207213673593674,7.207213673593674,7.199436983707214,7.199436983707214,7.191607825820967,7.191607825820967,7.183726331356175,7.183726331356175,7.175792647195411,7.175792647195411,7.167806920221242,7.167806920221242,7.159769281854914,7.159769281854914,7.151679886709658,7.151679886709658,7.143538881668044,7.143538881668044,7.1353464136126385,7.1353464136126385,7.127102621695351,7.127102621695351,7.118807660529411,7.118807660529411,7.11046168472805,7.11046168472805,7.102064833443176,7.102064833443176,7.0936172690186785,7.0936172690186785,7.085119130606468,7.085119130606468,7.076570588281096,7.076570588281096,7.06797178119447,7.06797178119447,7.059322863959823,7.059322863959823,7.050624006651706,7.050624006651706,7.041875348422027,7.041875348422027,7.0330770593453416,7.0330770593453416,7.024229286304215,7.024229286304215,7.015332199373204,7.015332199373204,7.006385945434878,7.006385945434878,6.997390694563788,6.997390694563788,6.988346609103827,6.988346609103827,6.979253851398889,6.979253851398889,6.97011256833154,6.97011256833154,6.960922945437659,6.960922945437659,6.951685137330474,6.951685137330474,6.942399306353881,6.942399306353881,6.933065622582431,6.933065622582431,6.923684248360015,6.923684248360015,6.914255361491851,6.914255361491851,6.90477912432183,6.90477912432183,6.895255699193843,6.895255699193843,6.8856852716437675,6.8856852716437675,6.876067996284833,6.876067996284833,6.866404058652918,6.866404058652918,6.856693621091915,6.856693621091915,6.846936861407036,6.846936861407036,6.837133949672838,6.837133949672838,6.827285063694534,6.827285063694534,6.81739038127734,6.81739038127734,6.807450072495808,6.807450072495808,6.797464322885817,6.797464322885817,6.78743330252192,6.78743330252192,6.777357189209332,6.777357189209332,6.767236160753267,6.767236160753267,6.757070410420265,6.757070410420265,6.746860100554216,6.746860100554216,6.73660542442166,6.73660542442166,6.726306559827813,6.726306559827813,6.715963684577887,6.715963684577887,6.705576991938422,6.705576991938422,6.695146659714633,6.695146659714633,6.684672873442397,6.684672873442397,6.674155826388252,6.674155826388252,6.66359568862675,6.66359568862675,6.652992653424434,6.652992653424434,6.6423469140478355,6.6423469140478355,6.631658656032837,6.631658656032837,6.620928064915311,6.620928064915311,6.6101553339617976,6.6101553339617976,6.599340648708173,6.599340648708173,6.588484194690315,6.588484194690315,6.577586180636083,6.577586180636083,6.566646784350694,6.566646784350694,6.555666206831347,6.555666206831347,6.544644633613918,6.544644633613918,6.533582265695607,6.533582265695607,6.52247928861229,6.52247928861229,6.511335903361169,6.511335903361169,6.500152310939443,6.500152310939443,6.4889286968829865,6.4889286968829865,6.477665262189001,6.477665262189001,6.4663622078546865,6.4663622078546865,6.455019734877242,6.455019734877242,6.443638028792543,6.443638028792543,6.432217298328454,6.432217298328454,6.4207577367515105,6.4207577367515105,6.409259560520234,6.409259560520234,6.397722947439845,6.397722947439845,6.386148121699522,6.386148121699522,6.374535268835146,6.374535268835146,6.362884597574574,6.362884597574574,6.35119630891501,6.35119630891501,6.339470611584313,6.339470611584313,6.327707706579683,6.327707706579683,6.315907802628982,6.315907802628982,6.3040711007294075,6.3040711007294075,6.292197801878162,6.292197801878162,6.280288122533767,6.280288122533767,6.268342271424083,6.268342271424083,6.25636044181565,6.25636044181565,6.244342850166988,6.244342850166988,6.232289705205961,6.232289705205961,6.220201223391091,6.220201223391091,6.208077597988916,6.208077597988916,6.195919045457958,6.195919045457958,6.183725782256742,6.183725782256742,6.171498017113127,6.171498017113127,6.159235958754975,6.159235958754975,6.146939815910147,6.146939815910147,6.134609805037166,6.134609805037166,6.122246142594555,6.122246142594555,6.109849029579514,6.109849029579514,6.097418690181226,6.097418690181226,6.084955340858215,6.084955340858215,6.072459190338343,6.072459190338343,6.059930447349468,6.059930447349468,6.047369336080778,6.047369336080778,6.034776072990793,6.034776072990793,6.022150874538037,6.022150874538037,6.0094939494503725,6.0094939494503725,5.996805521916983,5.996805521916983,5.984085808396388,5.984085808396388,5.971335025347115,5.971335025347115,5.958553389227685,5.958553389227685,5.94574111649662,5.94574111649662,5.9328984390737665,5.9328984390737665,5.9200255579563255,5.9200255579563255,5.90712270506414,5.90712270506414,5.894190104586396,5.894190104586396,5.881227965250955,5.881227965250955,5.868236511247001,5.868236511247001,5.855215966763717,5.855215966763717,5.8421665482596286,5.8421665482596286,5.829088479923917,5.829088479923917,5.815981993676431,5.815981993676431,5.802847290514367,5.802847290514367,5.789684617818897,5.789684617818897,5.776494176587219,5.776494176587219,5.7632762064698415,5.7632762064698415,5.750030923925285,5.750030923925285,5.736758553142737,5.736758553142737,5.723459318311379,5.723459318311379,5.710133443620397,5.710133443620397,5.696781160989636,5.696781160989636,5.68340268687762,5.68340268687762,5.669998245473531,5.669998245473531,5.656568076427878,5.656568076427878,5.6431123884685235,5.6431123884685235,5.62963141351531,5.62963141351531,5.616125383488086,5.616125383488086,5.602594522576035,5.602594522576035,5.5890390549683415,5.5890390549683415,5.575459204854189,5.575459204854189,5.561855211884085,5.561855211884085,5.548227292516553,5.548227292516553,5.534575678671439,5.534575678671439,5.520900594537927,5.520900594537927,5.507202279766523,5.507202279766523,5.493480950815751,5.493480950815751,5.479736839605459,5.479736839605459,5.465970178055488,5.465970178055488,5.452181190355027,5.452181190355027,5.438370108423919,5.438370108423919,5.424537164182009,5.424537164182009,5.410682581818485,5.410682581818485,5.396806600983853,5.396806600983853,5.3829094381366325,5.3829094381366325,5.368991332927334,5.368991332927334,5.355052509545143,5.355052509545143,5.341093207640563,5.341093207640563,5.327113643672121,5.327113643672121,5.313114065020981,5.313114065020981,5.29909468814567,5.29909468814567,5.285055752696695,5.285055752696695,5.270997490593898,5.270997490593898,5.256920118295806,5.256920118295806,5.242823883183587,5.242823883183587,5.228709017177086,5.228709017177086,5.214575736734825,5.214575736734825,5.200424289237974,5.200424289237974,5.186254898875717,5.186254898875717,5.172067797567901,5.172067797567901,5.15786321723437,5.15786321723437,5.14364138979497,5.14364138979497,5.129402554900211,5.129402554900211,5.1151469290086125,5.1151469290086125,5.100874751770683,5.100874751770683,5.0865862628369305,5.0865862628369305,5.072281686396539,5.072281686396539,5.057961254369354,5.057961254369354,5.043625198675222,5.043625198675222,5.0292737589646475,5.0292737589646475,5.014907159426819,5.014907159426819,5.0005256319815805,5.0005256319815805,4.9861294162794385,4.9861294162794385,4.971718736509579,4.971718736509579,4.957293832322509,4.957293832322509,4.9428549356380715,4.9428549356380715,4.928402270645455,4.928402270645455,4.9139360769951645,4.9139360769951645,4.899456586607045,4.899456586607045,4.8849640236702845,4.8849640236702845,4.870458635566049,4.870458635566049,4.855940638752861,4.855940638752861,4.841410280611891,4.841410280611891,4.82686777760166,4.82686777760166,4.812313369372676,4.812313369372676,4.7977472878447855,4.7977472878447855,4.783169772668497,4.783169772668497,4.76858104030233,4.76858104030233,4.753981330396795,4.753981330396795,4.739370882602397,4.739370882602397,4.72474991337766,4.72474991337766,4.71011866237309,4.71011866237309,4.695477361508536,4.695477361508536,4.680826234973179,4.680826234973179,4.66616553014819,4.66616553014819,4.65149546349209,4.65149546349209,4.636816266924726,4.636816266924726,4.622128180096605,4.622128180096605,4.607431427196913,4.607431427196913,4.592726247876154,4.592726247876154,4.578012858592854,4.578012858592854,4.563291491266856,4.563291491266856,4.5485623932793295,4.5485623932793295,4.533825773358139,4.533825773358139,4.519081878884449,4.519081878884449,4.504330926316785,4.504330926316785,4.489573155305653,4.489573155305653,4.474808790040238,4.474808790040238,4.460038054709726,4.460038054709726,4.445261196695282,4.445261196695282,4.43047842472477,4.43047842472477,4.415689978448695,4.415689978448695,4.400896082056245,4.400896082056245,4.386096967467263,4.386096967467263,4.371292858870934,4.371292858870934,4.356483988187105,4.356483988187105,4.341670579604958,4.341670579604958,4.32685286504434,4.32685286504434,4.312031068694437,4.312031068694437,4.29720541474443,4.29720541474443,4.282376142844828,4.282376142844828,4.267543461723492,4.267543461723492,4.252707611030932,4.252707611030932,4.2378688072256665,4.2378688072256665,4.223027282227543,4.223027282227543,4.208183267956408,4.208183267956408,4.1933369731401235,4.1933369731401235,4.1784886374291945,4.1784886374291945,4.163638477282145,4.163638477282145,4.14878672461882,4.14878672461882,4.133933595897744,4.133933595897744,4.119079323038761,4.119079323038761,4.104224122500396,4.104224122500396,4.089368218471832,4.089368218471832,4.0745118351422525,4.0745118351422525,4.059655196700843,4.059655196700843,4.044798527336787,4.044798527336787,4.029942043508608,4.029942043508608,4.015085977136152,4.015085977136152,4.000230536947279,4.000230536947279,3.9853759471311743,3.9853759471311743,3.9705224396076826,3.9705224396076826,3.955670223104668,3.955670223104668,3.94081951408065,3.94081951408065,3.9259705521861363,3.9259705521861363,3.9111235384183294,3.9111235384183294,3.8962786969664105,3.8962786969664105,3.8814362442889037,3.8814362442889037,3.8665964045749943,3.8665964045749943,3.851759394283204,3.851759394283204,3.8369254298720548,3.8369254298720548,3.822094727800071,3.822094727800071,3.807267504525774,3.807267504525774,3.792443976507688,3.792443976507688,3.7776243602043342,3.7776243602043342,3.7628088720742365,3.7628088720742365,3.747997728575918,3.747997728575918,3.7331911384372387,3.7331911384372387,3.7183893258473835,3.7183893258473835,3.703592499534214,3.703592499534214,3.688800868225591,3.688800868225591,3.6740146561106988,3.6740146561106988,3.659234064186738,3.659234064186738,3.644459316642891,3.644459316642891,3.6296906144763588,3.6296906144763588,3.614928166415003,3.614928166415003,3.6001721966480074,3.6001721966480074,3.5854229139032334,3.5854229139032334,3.5706805191778805,3.5706805191778805,3.5559452289304714,3.5559452289304714,3.541217244158206,3.541217244158206,3.526496789050269,3.526496789050269,3.5117840491425363,3.5117840491425363,3.497079256354854,3.497079256354854,3.4823826039537606,3.4823826039537606,3.467694292936456,3.467694292936456,3.453014547492123,3.453014547492123,3.4383435608873025,3.4383435608873025,3.4236815418498527,3.4236815418498527,3.409028691376976,3.409028691376976,3.3943852181965313,3.3943852181965313,3.37975132330572,3.37975132330572,3.3651272077017413,3.3651272077017413,3.350513087843118,3.350513087843118,3.3359091492657265,3.3359091492657265,3.3213155929667666,3.3213155929667666,3.3067326354047615,3.3067326354047615,3.2921604698462485,3.2921604698462485,3.2775992895577675,3.2775992895577675,3.2630492955365167,3.2630492955365167,3.2485106965103574,3.2485106965103574,3.233983685745828,3.233983685745828,3.2194684565094676,3.2194684565094676,3.2049652097984747,3.2049652097984747,3.1904741466100495,3.1904741466100495,3.175995452480069,3.175995452480069,3.1615293284057318,3.1615293284057318,3.147075975384239,3.147075975384239,3.1326355789514664,3.1326355789514664,3.1182083401046143,3.1182083401046143,3.1037944443795586,3.1037944443795586,3.0893940850428385,3.0893940850428385,3.075007463091653,3.075007463091653,3.0606347640618785,3.0606347640618785,3.046276173489393,3.046276173489393,3.0319318923713947,3.0319318923713947,3.0176020985130996,3.0176020985130996,3.0032869929117063,3.0032869929117063,2.9889867533724317,2.9889867533724317,2.974701573161813,2.974701573161813,2.960431645546388,2.960431645546388,2.9461771406007116,2.9461771406007116,2.931938259321982,2.931938259321982,2.9177151795154153,2.9177151795154153,2.9035080867168883,2.9035080867168883,2.889317166462277,2.889317166462277,2.8751426042874586,2.8751426042874586,2.8609845779976473,2.8609845779976473,2.846843273128721,2.846843273128721,2.8327188674858945,2.8327188674858945,2.8186115388743826,2.8186115388743826,2.8045214805607235,2.8045214805607235,2.7904488626194706,2.7904488626194706,2.7763938551251783,2.7763938551251783,2.7623566590750457,2.7623566590750457,2.7483374290823037,2.7483374290823037,2.734336350682829,2.734336350682829,2.720353601681836,2.720353601681836,2.706389359884541,2.706389359884541,2.6924437953654965,2.6924437953654965,2.6785170781992567,2.6785170781992567,2.664609393921698,2.664609393921698,2.650720897146051,2.650720897146051,2.6368517811388545,2.6368517811388545,2.6230021927826765,2.6230021927826765,2.609172325344056,2.609172325344056,2.5953623334362232,2.5953623334362232,2.5815723948643936,2.5815723948643936,2.567802671972459,2.567802671972459,2.5540533348349728,2.5540533348349728,2.540324553526489,2.540324553526489,2.5266164826602378,2.5266164826602378,2.512929300041434,2.512929300041434,2.499263168013971,2.499263168013971,2.4856182489217398,2.4856182489217398,2.4719947051086324,2.4719947051086324,2.458392698918542,2.458392698918542,2.4448123926953595,2.4448123926953595,2.4312539410523155,2.4312539410523155,2.4177175140639644,2.4177175140639644,2.404203274074198,2.404203274074198,2.3907113679655847,2.3907113679655847,2.3772419580820174,2.3772419580820174,2.363795206767388,2.363795206767388,2.350371260904265,2.350371260904265,2.3369702828365413,2.3369702828365413,2.3235924349081083,2.3235924349081083,2.3102378562708736,2.3102378562708736,2.296906701538068,2.296906701538068,2.2835991330535834,2.2835991330535834,2.270315297699989,2.270315297699989,2.2570553500905155,2.2570553500905155,2.2438194371077316,2.2438194371077316,2.230607705634206,2.230607705634206,2.2174203025525085,2.2174203025525085,2.204257390206531,2.204257390206531,2.191119100017519,2.191119100017519,2.178005578868042,2.178005578868042,2.164916989101992,2.164916989101992,2.1518534544099532,2.1518534544099532,2.138815137135818,2.138815137135818,2.1258021687008317,2.1258021687008317,2.1128146882569028,2.1128146882569028,2.099852850417261,2.099852850417261,2.0869167866031533,2.0869167866031533,2.074006643697147,2.074006643697147,2.0611225453898285,2.0611225453898285,2.0482646540250884,2.0482646540250884,2.0354330855628504,2.0354330855628504,2.0226279868856833,2.0226279868856833,2.0098494894148335,2.0098494894148335,1.9970977323022079,1.9970977323022079,1.9843728469690527,1.9843728469690527,1.9716749725672749,1.9716749725672749,1.9590042327874597,1.9590042327874597,1.946360766781514,1.946360766781514,1.9337446982400233,1.9337446982400233,1.9211561663148937,1.9211561663148937,1.908595286966049,1.908595286966049,1.896062207076058,1.896062207076058,1.8835570348741821,1.8835570348741821,1.871079909512329,1.871079909512329,1.8586309546810824,1.8586309546810824,1.846210286340366,1.846210286340366,1.8338180436420872,1.8338180436420872,1.8214543425461687,1.8214543425461687,1.8091193067431948,1.8091193067431948,1.7968130521930887,1.7968130521930887,1.7845357025864348,1.7845357025864348,1.7722873893444788,1.7722873893444788,1.7600682129658212,1.7600682129658212,1.7478782971410458,1.7478782971410458,1.7357177732913989,1.7357177732913989,1.7235867341848183,1.7235867341848183,1.7114853189732127,1.7114853189732127,1.6994136281551808,1.6994136281551808,1.6873717776906458,1.6873717776906458,1.6753598758088695,1.6753598758088695,1.6633780539310972,1.6633780539310972,1.6514263970946061,1.6514263970946061,1.6395050367206425,1.6395050367206425,1.6276140733078055,1.6276140733078055,1.6157536150853573,1.6157536150853573,1.60392377801322,1.60392377801322,1.5921246548593329,1.5921246548593329,1.5803563615836178,1.5803563615836178,1.5686189986846752,1.5686189986846752,1.5569126743917667,1.5569126743917667,1.5452374969341534,1.5452374969341534,1.533593551349112,1.533593551349112,1.5219809613272266,1.5219809613272266,1.510399811905775,1.510399811905775,1.4988502035833564,1.4988502035833564,1.487332244589232,1.487332244589232,1.4758460276913408,1.4758460276913408,1.4643916533882821,1.4643916533882821,1.4529692144479947,1.4529692144479947,1.4415788036384165,1.4415788036384165,1.4302205214581476,1.4302205214581476,1.4188944606751257,1.4188944606751257,1.407600706326629,1.407600706326629,1.3963393666419175,1.3963393666419175,1.3851105111969455,1.3851105111969455,1.3739142482209747,1.3739142482209747,1.3627506627512815,1.3627506627512815,1.3516198398251427,1.3516198398251427,1.3405218644798351,1.3405218644798351,1.3294568294832971,1.3294568294832971,1.3184248198728057,1.3184248198728057,1.3074259129549761,1.3074259129549761,1.2964602014977464,1.2964602014977464,1.285527762807732,1.285527762807732,1.274628689652871,1.274628689652871,1.2637630438784564,1.2637630438784564,1.2529309182524255,1.2529309182524255,1.242132397812056,1.242132397812056,1.2313675444026397,1.2313675444026397,1.2206364507921148,1.2206364507921148,1.209939186556435,1.209939186556435,1.1992758367328777,1.1992758367328777,1.1886464554360736,1.1886464554360736,1.1780511354339598,1.1780511354339598,1.1674899463024913,1.1674899463024913,1.1569629576176215,1.1569629576176215,1.146470238955304,1.146470238955304,1.1360118676221542,1.1360118676221542,1.1255879054634643,1.1255879054634643,1.115198422055188,1.115198422055188,1.1048434869732793,1.1048434869732793,1.0945231697936915,1.0945231697936915,1.0842375323617173,1.0842375323617173,1.07398664425331,1.07398664425331,1.0637705673137619,1.0637705673137619,1.053589355657704,1.053589355657704,1.0434430865917514,1.0434430865917514,1.0333318142305352,1.0333318142305352,1.023255600419347,1.023255600419347,1.0132145070034788,1.0132145070034788,1.003208588097562,1.003208588097562,0.9932378978162272,0.9932378978162272,0.9833024980047664,0.9833024980047664,0.9734024505084719,0.9734024505084719,0.9635378094419742,0.9635378094419742,0.9537086134585812,0.9537086134585812,0.9439149321342466,0.9439149321342466,0.9341568195836011,0.9341568195836011,0.9244343144599521,0.9244343144599521,0.9147474708779306,0.9147474708779306,0.9050963429521673,0.9050963429521673,0.8954809847972928,0.8954809847972928,0.8859014273359529,0.8859014273359529,0.8763577324134404,0.8763577324134404,0.8668499464137239,0.8668499464137239,0.8573781002594499,0.8573781002594499,0.8479422557959105,0.8479422557959105,0.838542443945752,0.838542443945752,0.8291787110929432,0.8291787110929432,0.8198511036214535,0.8198511036214535,0.8105596524539289,0.8105596524539289,0.8013044117050002,0.8013044117050002,0.7920854045666519,0.7920854045666519,0.7829026774228532,0.7829026774228532,0.7737562689269118,0.7737562689269118,0.7646462169590692,0.7646462169590692,0.755572550122773,0.755572550122773,0.7465353062982645,0.7465353062982645,0.7375345187273886,0.7375345187273886,0.7285702214250557,0.7285702214250557,0.7196424445408459,0.7196424445408459,0.7107512205435379,0.7107512205435379,0.7018965795827112,0.7018965795827112,0.6930785502618136,0.6930785502618136,0.6842971611842928,0.6842971611842928,0.6755524401805305,0.6755524401805305,0.6668444135347755,0.6668444135347755,0.6581731067582111,0.6581731067582111,0.6495385461350863,0.6495385461350863,0.6409407540843198,0.6409407540843198,0.6323797545709623,0.6323797545709623,0.623855570013932,0.623855570013932,0.6153682220590811,0.6153682220590811,0.6069177300330638,0.6069177300330638,0.5985041140356,0.5985041140356,0.5901273941664095,0.5901273941664095,0.5817875866598815,0.5817875866598815,0.5734847100696038,0.5734847100696038,0.5652187790838332,0.5652187790838332,0.5569898099369589,0.5569898099369589,0.5487978173172381,0.5487978173172381,0.5406428151398611,0.5406428151398611,0.5325248150008204,0.5325248150008204,0.5244438292691744,0.5244438292691744,0.5163998695409155,0.5163998695409155,0.5083929458659036,0.5083929458659036,0.5004230675209326,0.5004230675209326,0.4924902430097301,0.4924902430097301,0.48459447928989147,0.48459447928989147,0.47673578409207834,0.47673578409207834,0.46891416360081983,0.46891416360081983,0.4611296216814467,0.4611296216814467,0.4533821637454221,0.4533821637454221,0.44567179288501063,0.44567179288501063,0.43799851219247676,0.43799851219247676,0.4303623224408869,0.4303623224408869,0.4227632251763731,0.4227632251763731,0.4152012203989356,0.4152012203989356,0.40767630733550797,0.40767630733550797,0.4001884844399581,0.4001884844399581,0.3927377493930875,0.3927377493930875,0.3853240991026315,0.3853240991026315,0.3779475289301933,0.3779475289301933,0.370608035010442,0.370608035010442,0.36330561038578224,0.36330561038578224,0.3560402496447511,0.3560402496447511,0.3488119442836207,0.3488119442836207,0.341620688117862,0.341620688117862,0.3344664695514826,0.3344664695514826,0.327349280853821,0.327349280853821,0.320269111201951,0.320269111201951,0.3132259482268143,0.3132259482268143,0.3062197803324184,0.3062197803324184,0.2992505951497051,0.2992505951497051,0.2923183772173512,0.2923183772173512,0.28542311339323206,0.28542311339323206,0.2785647882160247,0.2785647882160247,0.2717433846782738,0.2717433846782738,0.2649588857725239,0.2649588857725239,0.2582112744913197,0.2582112744913197,0.25150053228107355,0.25150053228107355,0.2448266390420654,0.2448266390420654,0.23818957467457533,0.23818957467457533,0.23158931907888336,0.23158931907888336,0.22502584983607105,0.22502584983607105,0.21849914452722002,0.21849914452722002,0.21200917996034563,0.21200917996034563,0.20555593217039714,0.20555593217039714,0.1991393764192577,0.1991393764192577,0.19275948719574423,0.19275948719574423,0.18641623744254146,0.18641623744254146,0.1801096008754001,0.1801096008754001,0.1738395496639387,0.1738395496639387,0.16760605443164345,0.16760605443164345,0.1614090865750667,0.1614090865750667,0.15524861517156227,0.15524861517156227,0.1491246100715503,0.1491246100715503,0.1430370388062524,0.1430370388062524,0.13698586967995618,0.13698586967995618,0.13097106945081713,0.13097106945081713,0.12499260487699071,0.12499260487699071,0.11905043962436772,0.11905043962436772,0.11314453967803742,0.11314453967803742,0.10727486793082448,0.10727486793082448,0.10144138882168591,0.10144138882168591,0.09564406447038017,0.09564406447038017,0.08988285545053351,0.08988285545053351,0.08415772465497058,0.08415772465497058,0.07846863033811911,0.07846863033811911,0.07281553353744505,0.07281553353744505,0.06719839250737612,0.06719839250737612,0.06161716542503345,0.06161716542503345,0.05607180969447203,0.05607180969447203,0.05056228210129391,0.05056228210129391,0.04508853858072841,0.04508853858072841,0.03965053444955187,0.03965053444955187,0.03424822432878115,0.03424822432878115,0.028881562066366898,0.028881562066366898,0.02355050089180689,0.02355050089180689,0.018254993338839346,0.018254993338839346,0.012994991245442943,0.012994991245442943,0.00777044575383683,0.00777044575383683,0.0025813072640966392,0.0025813072640966392,0.0025724743880402774,0.0025724743880402774,0.007690950116710744,0.007690950116710744,0.012774171469965826,0.012774171469965826,0.017822190784384063,0.017822190784384063,0.022835060868114362,0.022835060868114362,0.027812835294641094,0.027812835294641094,0.032755568333208196,0.032755568333208196,0.03766331494881914,0.03766331494881914,0.04253613057031704,0.04253613057031704,0.047374071476917856,0.047374071476917856,0.05217719456629042,0.05217719456629042,0.05694555719994327,0.05694555719994327,0.06167921774437094,0.06167921774437094,0.0663782347979878,0.0663782347979878,0.07104266780958102,0.07104266780958102,0.07567257692369725,0.07567257692369725,0.08026802298064276,0.08026802298064276,0.08482906689803035,0.08482906689803035,0.08935577044384564,0.08935577044384564,0.09384819700951316,0.09384819700951316,0.09830640998645745,0.09830640998645745,0.10273047199303686,0.10273047199303686,0.10712044796680821,0.10712044796680821,0.11147640284532838,0.11147640284532838,0.11579840233922033,0.11579840233922033,0.12008651293217319,0.12008651293217319,0.12434080110787611,0.12434080110787611,0.12856133489615051,0.12856133489615051,0.13274818155375176,0.13274818155375176,0.13690141065663353,0.13690141065663353,0.14102109023461726,0.14102109023461726,0.1451072906367229,0.1451072906367229,0.14916008221197027,0.14916008221197027,0.15317953608244556,0.15317953608244556,0.15716572337023477,0.15716572337023477,0.16111871674355616,0.16111871674355616,0.16503858887062822,0.16503858887062822,0.1689254116466031,0.1689254116466031,0.1727792608319638,0.1727792608319638,0.17660020909492866,0.17660020909492866,0.1803883321959806,0.1803883321959806,0.18414370512253658,0.18414370512253658,0.1878664044081456,0.1878664044081456,0.19155650658635678,0.19155650658635678,0.19521408819071934,0.19521408819071934,0.1988392265278485,0.1988392265278485,0.20243200122355795,0.20243200122355795,0.20599248958446306,0.20599248958446306,0.2095207712363775,0.2095207712363775,0.21301692580511503,0.21301692580511503,0.21648103368955554,0.21648103368955554,0.21991317528857893,0.21991317528857893,0.22331343254719738,0.22331343254719738,0.22668188663735692,0.22668188663735692,0.23001862027713588,0.23001862027713588,0.23332371618461267,0.23332371618461267,0.23659725707786555,0.23659725707786555,0.23983932722110524,0.23983932722110524,0.2430500108785424,0.2430500108785424,0.24622939308745379,0.24622939308745379,0.2493775581120501,0.2493775581120501,0.25249459253574036,0.25249459253574036,0.25558058216886775,0.25558058216886775,0.258635613594841,0.258635613594841,0.2616597749432019,0.2616597749432019,0.2646531520242932,0.2646531520242932,0.26761583451378873,0.26761583451378873,0.27054791054122973,0.27054791054122973,0.2734494682361578,0.2734494682361578,0.2763205980473128,0.2763205980473128,0.27916138965036835,0.27916138965036835,0.2819719327209982,0.2819719327209982,0.2847523184810084,0.2847523184810084,0.28750263892527117,0.28750263892527117,0.2902229837294602,0.2902229837294602,0.29291344720764617,0.29291344720764617,0.2955741198085688,0.2955741198085688,0.2982050958462989,0.2982050958462989,0.3008064680887747,0.3008064680887747,0.3033783308500669,0.3033783308500669,0.3059207768981138,0.3059207768981138,0.30843390209311833,0.30843390209311833,0.3109178015222173,0.3109178015222173,0.3133725694994814,0.3133725694994814,0.31579830265817965,0.31579830265817965,0.3181950960854489,0.3181950960854489,0.3205630479606904,0.3205630479606904,0.32290225414410734,0.32290225414410734,0.3252128120420348,0.3252128120420348,0.3274948190608081,0.3274948190608081,0.3297483741528947,0.3297483741528947,0.33197357472462996,0.33197357472462996,0.3341705197284814,0.3341705197284814,0.33633930966304887,0.33633930966304887,0.33848004270773374,0.33848004270773374,0.3405928185880698,0.3405928185880698,0.342677738575723,0.342677738575723,0.344734902396227,0.344734902396227,0.34676441054818175,0.34676441054818175,0.3487663658493856,0.3487663658493856,0.3507408687984383,0.3507408687984383,0.3526880214400721,0.3526880214400721,0.35460792659208523,0.35460792659208523,0.35650068629921,0.35650068629921,0.35836640260617847,0.35836640260617847,0.36020518064998736,0.36020518064998736,0.362017122475369,0.362017122475369,0.3638023324462539,0.3638023324462539,0.36556091492657267,0.36556091492657267,0.3672929735071898,0.3672929735071898,0.36899861409816836,0.36899861409816836,0.3706779410634387,0.3706779410634387,0.37233105953999784,0.37233105953999784,0.3739580754379086,0.3739580754379086,0.3755590954403002,0.3755590954403002,0.377134223911103,0.377134223911103,0.37868356907957856,0.37868356907957856,0.38020723608272367,0.38020723608272367,0.3817053339228659,0.3817053339228659,0.38317796773700186,0.38317796773700186,0.38462524652745916,0.38462524652745916,0.38604727697736696,0.38604727697736696,0.3874441680890528,0.3874441680890528,0.38881602809177795,0.38881602809177795,0.39016296444173787,0.39016296444173787,0.39148508691432593,0.39148508691432593,0.3927825045118699,0.3927825045118699,0.39405532546363115,0.39405532546363115,0.3953036603180695,0.3953036603180695,0.3965276180775124,0.3965276180775124,0.39772730929041983,0.39772730929041983,0.39890284373218543,0.39890284373218543,0.40005433195126905,0.40005433195126905,0.4011818837230644,0.4011818837230644,0.4022856103690974,0.4022856103690974,0.40336562321089414,0.40336562321089414,0.40442203279691447,0.40442203279691447,0.40545495122175046,0.40545495122175046,0.40646448903386195,0.40646448903386195,0.40745075910090744,0.40745075910090744,0.40841387197134654,0.40841387197134654,0.4093539412859038,0.4093539412859038,0.4102710775930391,0.4102710775930391,0.411165395306543,0.411165395306543,0.4120370057479415,0.4120370057479415,0.412886021784893,0.412886021784893,0.41371255628505565,0.41371255628505565,0.414516722889154,0.414516722889154,0.4152986352379125,0.4152986352379125,0.4160584054259233,0.4160584054259233,0.41679614786697705,0.41679614786697705,0.417511975428732,0.417511975428732,0.41820600329804486,0.41820600329804486,0.41887834434257404,0.41887834434257404,0.41952911374917623,0.41952911374917623,0.42015842438550977,0.42015842438550977,0.4207663914384314,0.4207663914384314,0.42135312932173175,0.42135312932173175,0.4219187524492015,0.4219187524492015,0.4224633752346312,0.4224633752346312,0.42298711286487756,0.42298711286487756,0.4234900805267973,0.4234900805267973,0.42397239263418124,0.42397239263418124,0.424434164373886,0.424434164373886,0.42487551170583443,0.42487551170583443,0.4252965490438173,0.4252965490438173,0.42569739234775744,0.42569739234775744,0.4260781568045116,0.4260781568045116,0.4264389576009366,0.4264389576009366,0.4267799106969553,0.4267799106969553,0.4271011320524907,0.4271011320524907,0.4274027376274656,0.4274027376274656,0.42768484260873674,0.42768484260873674,0.4279475621831611,0.4279475621831611,0.42819101385679365,0.42819101385679365,0.42841531281649137,0.42841531281649137,0.42862057579524315,0.42862057579524315,0.4288069172068397,0.4288069172068397,0.4289744553304024,0.4289744553304024,0.42912330457972175,0.42912330457972175,0.4292535824608531,0.4292535824608531,0.42936540416065316,0.42936540416065316,0.42945888641211105,0.42945888641211105,0.42953414517514954,0.42953414517514954,0.42959129718275785,0.42959129718275785,0.429630459167925,0.429630459167925,0.42965174631750774,0.42965174631750774,0.4296552761375613,0.4296552761375613,0.42964116381494244,0.42964116381494244,0.4296095268557064,0.4296095268557064,0.4295604804467099,0.4295604804467099,0.4294941420940082,0.4294941420940082,0.4294106277575242,0.4294106277575242,0.42931005339718087,0.42931005339718087,0.429192534972901,0.429192534972901,0.4290581899907399,0.4290581899907399,0.4289071344106205,0.4289071344106205,0.42873948341939955,0.42873948341939955,0.4285553545231322,0.4285553545231322,0.42835486290867536,0.42835486290867536,0.4281381253090179,0.4281381253090179,0.4279052576840829,0.4279052576840829,0.42765637599379325,0.42765637599379325,0.42739159697113793,0.42739159697113793,0.4271110350299077,0.4271110350299077,0.4268148076761576,0.4268148076761576,0.42650303009674456,0.42650303009674456,0.42617581825159134,0.42617581825159134,0.425833288100621,0.425833288100621,0.425475554057624,0.425475554057624,0.42510273362865575,0.42510273362865575,0.4247149404544406,0.4247149404544406,0.4243122920410337,0.4243122920410337,0.42389490125609347,0.42389490125609347,0.42346288560567513,0.42346288560567513,0.4230163595035692,0.4230163595035692,0.4225554373635664,0.4225554373635664,0.4220802351455895,0.4220802351455895,0.4215908680364954,0.4215908680364954,0.4210874489039424,0.4210874489039424,0.42057009525398564,0.42057009525398564,0.4200389191812173,0.4200389191812173,0.41949403664556034,0.41949403664556034,0.4189355612877392,0.4189355612877392,0.4183636082946105,0.4183636082946105,0.4177782905338328,0.4177782905338328,0.4171797231922627,0.4171797231922627,0.4165680199106247,0.4165680199106247,0.41594329355657705,0.41594329355657705,0.4153056593169766,0.4153056593169766,0.41465522928641546,0.41465522928641546,0.4139921171056182,0.4139921171056182,0.41331643641530896,0.41331643641530896,0.4126283000831464,0.4126283000831464,0.41192782097678854,0.41192782097678854,0.41121511196389393,0.41121511196389393,0.4104902859121208,0.4104902859121208,0.4097534549160612,0.4097534549160612,0.40900473184337355,0.40900473184337355,0.4082442272425175,0.4082442272425175,0.40747205475421777,0.40747205475421777,0.4066883257000003,0.4066883257000003,0.405893151401391,0.405893151401391,0.40508664395298205,0.40508664395298205,0.4042689139032333,0.4042689139032333,0.4034400718006046,0.4034400718006046,0.40260023051275423,0.40260023051275423,0.40174949904200974,0.40174949904200974,0.40088798870989717,0.40088798870989717,0.40001580929181024,0.40001580929181024,0.3991330713362087,0.3991330713362087,0.39823988461848636,0.39823988461848636,0.39733635891403674,0.39733635891403674,0.3964226032251875,0.3964226032251875,0.3954987281003985,0.3954987281003985,0.394564840995865,0.394564840995865,0.3936210524600467,0.3936210524600467,0.39266747072220515,0.39266747072220515,0.39170420323853544,0.39170420323853544,0.39073135901136524,0.39073135901136524,0.38974904549688966,0.38974904549688966,0.38875737169743646,0.38875737169743646,0.38775644429613443,0.38775644429613443,0.38674636997611284,0.38674636997611284,0.38572725696663307,0.38572725696663307,0.3846992119508241,0.3846992119508241,0.38366234083874895,0.38366234083874895,0.38261675031353676,0.38261675031353676,0.3815625462852503,0.3815625462852503,0.38049983466395265,0.38049983466395265,0.3794287221327727,0.3794287221327727,0.3783493122825752,0.3783493122825752,0.37726171102342276,0.37726171102342276,0.3761660234923125,0.3761660234923125,0.3750623532801086,0.3750623532801086,0.37395080552380794,0.37395080552380794,0.3728314845873412,0.3728314845873412,0.37170449328850663,0.37170449328850663,0.3705699352181687,0.3705699352181687,0.369427913967192,0.369427913967192,0.36827853235337465,0.36827853235337465,0.367121892421449,0.367121892421449,0.3659580977622794,0.3659580977622794,0.3647872496475319,0.3647872496475319,0.3636094501219387,0.3636094501219387,0.36242479968409963,0.36242479968409963,0.36123340115181296,0.36123340115181296,0.3600353542506125,0.3600353542506125,0.3588307602521642,0.3588307602521642,0.35761971965506795,0.35761971965506795,0.35640233141179123,0.35640233141179123,0.355178696020934,0.355178696020934,0.35394891243496374,0.35394891243496374,0.35271307960634807,0.35271307960634807,0.35147129726062065,0.35147129726062065,0.3502236628041167,0.3502236628041167,0.3489702751893039,0.3489702751893039,0.3477112318225174,0.3477112318225174,0.3464466301100924,0.3464466301100924,0.34517656745836434,0.34517656745836434,0.3439011405006021,0.3439011405006021,0.34262044587007484,0.34262044587007484,0.3413345794269856,0.3413345794269856,0.34004363780460334,0.34004363780460334,0.338747716090065,0.338747716090065,0.33744690937050725,0.33744690937050725,0.3361413119600008,0.3361413119600008,0.3348310197187485,0.3348310197187485,0.3335161254146889,0.3335161254146889,0.33219672413495843,0.33219672413495843,0.33087290864749574,0.33087290864749574,0.329544771720239,0.329544771720239,0.32821240689419284,0.32821240689419284,0.3268759061642293,0.3268759061642293,0.3255353615252206,0.3255353615252206,0.324190864972039,0.324190864972039,0.32284250772649037,0.32284250772649037,0.3214903810103808,0.3214903810103808,0.3201345752724502,0.3201345752724502,0.3187751801883723,0.3187751801883723,0.3174122869799531,0.3174122869799531,0.31604598377673404,0.31604598377673404,0.314676361027455,0.314676361027455,0.3133035060885912,0.3133035060885912,0.3119275086358163,0.3119275086358163,0.31054845602560577,0.31054845602560577,0.30916643638750085,0.30916643638750085,0.3077815363049106,0.3077815363049106,0.3063938431343105,0.3063938431343105,0.3050034442321757,0.3050034442321757,0.3036104238627168,0.3036104238627168,0.30221486938240916,0.30221486938240916,0.30081686505546334,0.30081686505546334,0.29941649669222237,0.29941649669222237,0.2980138485568969,0.2980138485568969,0.29660900491369746,0.29660900491369746,0.29520205002683486,0.29520205002683486,0.29379306584132125,0.29379306584132125,0.2923821366213672,0.2923821366213672,0.29096934508505123,0.29096934508505123,0.2895547724043192,0.2895547724043192,0.2881385012972495,0.2881385012972495,0.28672061293578827,0.28672061293578827,0.28530118771881524,0.28530118771881524,0.2838803075913428,0.2838803075913428,0.28245805140611835,0.28245805140611835,0.28103449956202187,0.28103449956202187,0.27960973168486714,0.27960973168486714,0.27818382662740154,0.27818382662740154,0.27675686169624064,0.27675686169624064,0.2753289172902641,0.2753289172902641,0.273900069169955,0.273900069169955,0.2724703946419285,0.2724703946419285,0.2710399725589324,0.2710399725589324,0.2696088771353172,0.2696088771353172,0.2681771864507643,0.2681771864507643,0.2667449739465584,0.2667449739465584,0.26531231692931456,0.26531231692931456,0.26387928884031736,0.26387928884031736,0.2624459638939176,0.2624459638939176,0.26101241707753187,0.26101241707753187,0.25957872105937874,0.25957872105937874,0.25814494928074255,0.25814494928074255,0.2567111736367757,0.2567111736367757,0.2552774675687626,0.2552774675687626,0.2538439021987892,0.2538439021987892,0.2524105494220079,0.2524105494220079,0.25097747881437243,0.25097747881437243,0.24954476227103478,0.24954476227103478,0.24811246859488276,0.24811246859488276,0.24668066813493625,0.24668066813493625,0.2452494304671489,0.2452494304671489,0.24381882284827605,0.24381882284827605,0.2423889148542715,0.2423889148542715,0.24095977451495662,0.24095977451495662,0.23953146831402058,0.23953146831402058,0.23810406350821872,0.23810406350821872,0.2366776265812401,0.2366776265812401,0.2352522240167739,0.2352522240167739,0.2338279207523769,0.2338279207523769,0.23240478249867216,0.23240478249867216,0.23098287342015036,0.23098287342015036,0.22956225845436826,0.22956225845436826,0.22814300099275045,0.22814300099275045,0.22672516519978758,0.22672516519978758,0.22530881292077187,0.22530881292077187,0.22389400677406168,0.22389400677406168,0.22248080937801545,0.22248080937801545,0.22106928257792535,0.22106928257792535,0.21965948667295132,0.21965948667295132,0.2182514827353194,0.2182514827353194,0.21684533029112338,0.21684533029112338,0.2154410904125893,0.2154410904125893,0.2140388218527448,0.2140388218527448,0.21263858259155133,0.21263858259155133,0.2112404321551027,0.2112404321551027,0.20984442852336024,0.20984442852336024,0.20845062890321936,0.20845062890321936,0.2070590897285092,0.2070590897285092,0.20566986820612504,0.20566986820612504,0.2042830199968299,0.2042830199968299,0.20289860153445288,0.20289860153445288,0.20151666693362477,0.20151666693362477,0.20013727185510852,0.20013727185510852,0.19876047041353478,0.19876047041353478,0.19738631672353432,0.19738631672353432,0.19601486335360546,0.19601486335360546,0.19464616287224668,0.19464616287224668,0.19328026939408854,0.19328026939408854,0.1919172331684311,0.1919172331684311,0.19055710676377266,0.19055710676377266,0.18919994042941324,0.18919994042941324,0.18784578596078497,0.18784578596078497,0.18649469206105557,0.18649469206105557,0.18514670975259104,0.18514670975259104,0.18380188696549288,0.18380188696549288,0.18246027317599492,0.18246027317599492,0.18112191631419855,0.18112191631419855,0.17978686508327146,0.17978686508327146,0.17845516586718282,0.17845516586718282,0.17712686504990172,0.17712686504990172,0.17580201056152966,0.17580201056152966,0.17448064723990359,0.17448064723990359,0.17316282146899253,0.17316282146899253,0.1718485773135673,0.1718485773135673,0.17053795961146476,0.17053795961146476,0.1692310132005217,0.1692310132005217,0.16792778059937655,0.16792778059937655,0.16662830587280003,0.16662830587280003,0.16533263076636442,0.16533263076636442,0.16404079934484034,0.16404079934484034,0.1627528510346017,0.1627528510346017,0.16146882912735294,0.16146882912735294,0.16018877304946788,0.16018877304946788,0.1589127237734527,0.1589127237734527,0.15764072149874725,0.15764072149874725,0.15637280565172537,0.15637280565172537,0.15510901488569467,0.15510901488569467,0.1538493878539628,0.1538493878539628,0.15259396320983742,0.15259396320983742,0.15134277728742768,0.15134277728742768,0.15009586874004122,0.15009586874004122,0.1488532731287211,0.1488532731287211,0.14761502678757646,0.14761502678757646,0.1463811660507165,0.1463811660507165,0.14515172647918423,0.14515172647918423,0.14392674131482425,0.14392674131482425,0.14270624689174569,0.14270624689174569,0.1414902764517932,0.1414902764517932,0.14027886323681132,0.14027886323681132,0.13907204048864455,0.13907204048864455,0.13786983990300522,0.13786983990300522,0.1366722947217379,0.1366722947217379,0.13547943664055484,0.13547943664055484,0.13429129658210212,0.13429129658210212,0.1331079046959598,0.1331079046959598,0.13192929113170768,0.13192929113170768,0.13075548758505812,0.13075548758505812,0.1295865211133265,0.1295865211133265,0.12842242186609273,0.12842242186609273,0.12726321844680444,0.12726321844680444,0.12610893791277702,0.12610893791277702,0.12495960886745809,0.12495960886745809,0.12381525759509687,0.12381525759509687,0.12267591115300872,0.12267591115300872,0.1215415958254428,0.1215415958254428,0.12041233712358214,0.12041233712358214,0.11928816055860982,0.11928816055860982,0.11816909164170887,0.11816909164170887,0.11705515356486387,0.11705515356486387,0.11594637029312556,0.11594637029312556,0.11484276656461082,0.11484276656461082,0.11374436402517193,0.11374436402517193,0.11265118663985962,0.11265118663985962,0.11156325528146005,0.11156325528146005,0.11048059314195775,0.11048059314195775,0.10940322032107273,0.10940322032107273,0.10833115846465725,0.10833115846465725,0.1072644276724313,0.1072644276724313,0.10620304727104868,0.10620304727104868,0.10514703813329551,0.10514703813329551,0.10409641881275948,0.10409641881275948,0.10305120708996211,0.10305120708996211,0.10201142229155719,0.10201142229155719,0.10097708219806624,0.10097708219806624,0.09994820381694461,0.09994820381694461,0.09892480338258156,0.09892480338258156,0.09790689867549854,0.09790689867549854,0.0968945059300848,0.0968945059300848,0.09588763906153105,0.09588763906153105,0.09488631507729273,0.09488631507729273,0.09389054711949434,0.09389054711949434,0.092900350649459,0.092900350649459,0.09191574035544359,0.09191574035544359,0.0909367278334404,0.0909367278334404,0.08996332699864018,0.08996332699864018,0.08899555099316754,0.08899555099316754,0.08803341141301477,0.08803341141301477,0.08707692062724029,0.08707692062724029,0.08612608945877027,0.08612608945877027,0.08518092950359699,0.08518092950359699,0.08424145081158044,0.08424145081158044,0.08330766420564673,0.08330766420564673,0.08237957896258971,0.08237957896258971,0.08145720358613709,0.08145720358613709,0.08054054812614883,0.08054054812614883,0.0796296210863526,0.0796296210863526,0.07872443019740996,0.07872443019740996,0.07782498318998239,0.07782498318998239,0.07693128717627855,0.07693128717627855,0.07604334934581362,0.07604334934581362,0.07516117596042347,0.07516117596042347,0.07428477320463729,0.07428477320463729,0.07341414672183802,0.07341414672183802,0.07254930176887546,0.07254930176887546,0.07169024329337305,0.07169024329337305,0.0708369756245012,0.0708369756245012,0.06998950285951053,0.06998950285951053,0.06914782878642518,0.06914782878642518,0.06831195665212302,0.06831195665212302,0.06748188939425541,0.06748188939425541,0.06665762940932742,0.06665762940932742,0.06583917893923089,0.06583917893923089,0.06502653960740476,0.06502653960740476,0.0642197128826747,0.0642197128826747,0.06341869961541349,0.06341869961541349,0.06262350050138067,0.06262350050138067,0.06183411561788285,0.06183411561788285,0.06105054488761343,0.06105054488761343,0.06027278769211946,0.06027278769211946,0.059500843181028176,0.059500843181028176,0.05873470996282052,0.05873470996282052,0.057974386336750956,0.057974386336750956,0.057219870292847475,0.057219870292847475,0.05647115951191162,0.05647115951191162,0.05572825105629201,0.05572825105629201,0.05499114175641742,0.05499114175641742,0.05425982821079679,0.05425982821079679,0.05353430647679273,0.05353430647679273,0.05281457230254139,0.05281457230254139,0.05210062104964587,0.05210062104964587,0.05139244777048278,0.05139244777048278,0.05069004713089568,0.05069004713089568,0.04999341348750164,0.04999341348750164,0.049302540810384675,0.049302540810384675,0.04861742268309571,0.04861742268309571,0.04793805237995923,0.04793805237995923,0.04726442286607324,0.04726442286607324,0.04659652656538944,0.04659652656538944,0.04593435582455292,0.04593435582455292,0.04527790252636907,0.04527790252636907,0.04462715824441683,0.04462715824441683,0.043982114011128816,0.043982114011128816,0.04334276085893767,0.04334276085893767,0.042709089279129725,0.042709089279129725,0.04208108937645819,0.04208108937645819,0.04145875110106311,0.04145875110106311,0.0408420640165514,0.0408420640165514,0.040231017222690325,0.040231017222690325,0.039625599664633894,0.039625599664633894,0.03902579982369643,0.03902579982369643,0.03843160602657902,0.03843160602657902,0.037843006058836455,0.037843006058836455,0.037259987628716906,0.037259987628716906,0.03668253790332224,0.03668253790332224,0.036110643972447704,0.036110643972447704,0.035544292307435624,0.035544292307435624,0.034983469302321706,0.034983469302321706,0.034428161041915206,0.034428161041915206,0.03387835322449229,0.03387835322449229,0.03333403116179608,0.03333403116179608,0.0327951800109564,0.0327951800109564,0.03226178454257009,0.03226178454257009,0.031733829295314056,0.031733829295314056,0.03121129849863879,0.03121129849863879,0.03069417599546171,0.03069417599546171,0.03018244547408699,0.03018244547408699,0.029676090081672494,0.029676090081672494,0.029175093042682707,0.029175093042682707,0.028679437040435813,0.028679437040435813,0.02818910444902352,0.02818910444902352,0.027704077565230932,0.027704077565230932,0.027224338222003465,0.027224338222003465,0.02674986794306006,0.02674986794306006,0.026280648174813064,0.026280648174813064,0.025816659977141714,0.025816659977141714,0.02535788410069882,0.02535788410069882,0.024904300986910714,0.024904300986910714,0.02445589099989711,0.02445589099989711,0.02401263396263143,0.02401263396263143,0.023574509775393698,0.023574509775393698,0.023141497720011013,0.023141497720011013,0.022713577078310492,0.022713577078310492,0.02229072666827954,0.02229072666827954,0.021872925307905574,0.021872925307905574,0.021460151274029705,0.021460151274029705,0.021052382843493037,0.021052382843493037,0.02064959782929698,0.02064959782929698,0.02025177388982973,0.02025177388982973,0.019858888528866237,0.019858888528866237,0.019470918863648372,0.019470918863648372,0.01908784185680479,0.01908784185680479,0.01870963408443106,0.01870963408443106,0.018336272122622753,0.018336272122622753,0.017967732160942364,0.017967732160942364,0.017603990157032536,0.017603990157032536,0.0172450219139227,0.0172450219139227,0.016890802848109187,0.016890802848109187,0.016541308376088342,0.016541308376088342,0.016196513450516817,0.016196513450516817,0.015856393024051254,0.015856393024051254,0.015520921585508628,0.015520921585508628,0.015190073778319112,0.015190073778319112,0.014863823550153364,0.014863823550153364,0.01454214508060188,0.01454214508060188,0.014225012008108854,0.014225012008108854,0.013912397971118472,0.013912397971118472,0.013604276221541851,0.013604276221541851,0.013300620011290103,0.013300620011290103,0.013001402283047884,0.013001402283047884,0.012706595670273383,0.012706595670273383,0.012416172883731407,0.012416172883731407,0.012130106170347075,0.012130106170347075,0.011848367699738883,0.011848367699738883,0.011570929486912102,0.011570929486912102,0.011297763314952157,0.011297763314952157,0.011028840657718008,0.011028840657718008,0.010764133066375237,0.010764133066375237,0.010503611705556344,0.010503611705556344,0.010247247662587214,0.010247247662587214,0.009995011715567272,0.009995011715567272,0.00974687456528933,0.00974687456528933,0.009502806912546196,0.009502806912546196,0.00926277883967776,0.00926277883967776,0.009026760738250369,0.009026760738250369,0.008794722535990679,0.008794722535990679,0.008566634083318734,0.008566634083318734,0.00834246515334796,0.00834246515334796,0.008122185132658707,0.008122185132658707,0.007905763485137942,0.007905763485137942,0.007693169388638153,0.007693169388638153,0.007484371951435873,0.007484371951435873,0.00727934007307978,0.00727934007307978,0.007078042513966636,0.007078042513966636,0.006880447903071965,0.006880447903071965,0.006686524714758056,0.006686524714758056,0.00649624128423529,0.00649624128423529,0.006309565823023468,0.006309565823023468,0.006126466380298493,0.006126466380298493,0.005946910897007011,0.005946910897007011,0.005770867159482435,0.005770867159482435,0.005598302845828919,0.005598302845828919,0.005429185479537384,0.005429185479537384,0.005263482499061475,0.005263482499061475,0.005101161180510947,0.005101161180510947,0.00494218869949695,0.00494218869949695,0.004786532115670719,0.004786532115670719,0.0046341583649928955,0.0046341583649928955,0.004485034267464204,0.004485034267464204,0.00433912655031743,0.00433912655031743,0.0041964018170947736,0.0041964018170947736,0.0040568265631091725,0.0040568265631091725,0.003920367183174966,0.003920367183174966,0.0037869899716078946,0.0037869899716078946,0.0036566611299557574,0.0036566611299557574,0.003529346743806433,0.003529346743806433,0.003405012829171846,0.003405012829171846,0.0032836252861039973,0.0032836252861039973,0.0031651499296176102,0.0031651499296176102,0.003049552505151457,0.003049552505151457,0.0029367986499150463,0.0029367986499150463,0.0028268539315419333,0.0028268539315419333,0.0027196838248977357,0.0027196838248977357,0.0026152537352721167,0.0026152537352721167,0.0025135289906481244,0.0025135289906481244,0.002414474849432853,0.002414474849432853,0.0023180564772654596,0.0023180564772654596,0.0022242389934011295,0.0022242389934011295,0.002132987439788436,0.002132987439788436,0.002044266804261319,0.002044266804261319,0.001958041981885781,0.001958041981885781,0.0018742778445358405,0.0018742778445358405,0.0017929391867789004,0.0017929391867789004,0.0017139907490677324,0.0017139907490677324,0.0016373972100098162,0.0016373972100098162,0.0015631232250206475,0.0015631232250206475,0.0014911333644784446,0.0014911333644784446,0.0014213921678387796,0.0014213921678387796,0.001353864143634579,0.001353864143634579,0.0012885137462841378,0.0012885137462841378,0.0012253053760911219,0.0012253053760911219,0.001164203417897872,0.001164203417897872,0.001105172210162761,0.001105172210162761,0.0010481760604215157,0.0010481760604215157,0.0009931792452872164,0.0009931792452872164,0.0009401460104502972,0.0009401460104502972,0.0008890405784092079,0.0008890405784092079,0.0008398271562010752,0.0008398271562010752,0.0007924699044790564,0.0007924699044790564,0.0007469329854424415,0.0007469329854424415,0.000703180535779337,0.000703180535779337,0.000661176678262659,0.000661176678262659,0.0006208855217501328,0.0006208855217501328,0.0005822711658226898,0.0005822711658226898,0.0005452977000114013,0.0005452977000114013,0.0005099292068897435,0.0005099292068897435,0.00047612976748506004,0.00047612976748506004,0.00044386345818629784,0.00044386345818629784,0.0004130943561554697,0.0004130943561554697,0.0003837865416468534,0.0003837865416468534,0.0003559040995531233,0.0003559040995531233,0.00032941112017841707,0.00032941112017841707,0.00030427170464979826,0.00030427170464979826,0.0002804499625980585,0.0002804499625980585,0.00025791001988837814,0.00025791001988837814,0.00023661601552806257,0.00023661601552806257,0.0002165321070780046,0.0002165321070780046,0.00019762247219881705,0.00019762247219881705,0.000179851310196965,0.000179851310196965,0.00016318284357089824,0.00016318284357089824,0.00014758132110331555,0.00014758132110331555,0.00013301102249956202,0.00013301102249956202,0.00011943625374923179,0.00011943625374923179,0.00010682135640296213,0.00010682135640296213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00010682135640296213,0.00010682135640296213,0.00011943625374923179,0.00011943625374923179,0.00013301102249956202,0.00013301102249956202,0.00014758132110331555,0.00014758132110331555,0.00016318284357089824,0.00016318284357089824,0.000179851310196965,0.000179851310196965,0.00019762247219881702,0.00019762247219881702,0.00021653210707800458,0.00021653210707800458,0.00023661601552806257,0.00023661601552806257,0.00025791001988837814,0.00025791001988837814,0.0002804499625980585,0.0002804499625980585,0.00030427170464979826,0.00030427170464979826,0.00032941112017841707,0.00032941112017841707,0.0003559040995531233,0.0003559040995531233,0.00038378654164685335,0.00038378654164685335,0.0004130943561554697,0.0004130943561554697,0.00044386345818629784,0.00044386345818629784,0.00047612976748506004,0.00047612976748506004,0.0005099292068897435,0.0005099292068897435,0.0005452977000114013,0.0005452977000114013,0.0005822711658226898,0.0005822711658226898,0.0006208855217501328,0.0006208855217501328,0.000661176678262659,0.000661176678262659,0.0007031805357793369,0.0007031805357793369,0.0007469329854424415,0.0007469329854424415,0.0007924699044790564,0.0007924699044790564,0.0008398271562010751,0.0008398271562010751,0.0008890405784092079,0.0008890405784092079,0.0009401460104502972,0.0009401460104502972,0.0009931792452872164,0.0009931792452872164,0.0010481760604215157,0.0010481760604215157,0.001105172210162761,0.001105172210162761,0.001164203417897872,0.001164203417897872,0.0012253053760911219,0.0012253053760911219,0.0012885137462841378,0.0012885137462841378,0.0013538641436345793,0.0013538641436345793,0.0014213921678387796,0.0014213921678387796,0.0014911333644784448,0.0014911333644784448,0.0015631232250206478,0.0015631232250206478,0.0016373972100098165,0.0016373972100098165,0.0017139907490677326,0.0017139907490677326,0.0017929391867789004,0.0017929391867789004,0.0018742778445358405,0.0018742778445358405,0.001958041981885781,0.001958041981885781,0.002044266804261319,0.002044266804261319,0.002132987439788436,0.002132987439788436,0.00222423899340113,0.00222423899340113,0.0023180564772654596,0.0023180564772654596,0.002414474849432853,0.002414474849432853,0.0025135289906481244,0.0025135289906481244,0.002615253735272117,0.002615253735272117,0.0027196838248977357,0.0027196838248977357,0.0028268539315419333,0.0028268539315419333,0.0029367986499150463,0.0029367986499150463,0.003049552505151457,0.003049552505151457,0.0031651499296176102,0.0031651499296176102,0.0032836252861039973,0.0032836252861039973,0.003405012829171846,0.003405012829171846,0.0035293467438064336,0.0035293467438064336,0.0036566611299557574,0.0036566611299557574,0.0037869899716078954,0.0037869899716078954,0.003920367183174966,0.003920367183174966,0.004056826563109173,0.004056826563109173,0.0041964018170947736,0.0041964018170947736,0.004339126550317429,0.004339126550317429,0.004485034267464204,0.004485034267464204,0.0046341583649928955,0.0046341583649928955,0.004786532115670719,0.004786532115670719,0.004942188699496951,0.004942188699496951,0.005101161180510947,0.005101161180510947,0.005263482499061476,0.005263482499061476,0.005429185479537384,0.005429185479537384,0.00559830284582892,0.00559830284582892,0.005770867159482435,0.005770867159482435,0.00594691089700701,0.00594691089700701,0.006126466380298493,0.006126466380298493,0.006309565823023468,0.006309565823023468,0.00649624128423529,0.00649624128423529,0.006686524714758056,0.006686524714758056,0.006880447903071965,0.006880447903071965,0.007078042513966636,0.007078042513966636,0.00727934007307978,0.00727934007307978,0.007484371951435873,0.007484371951435873,0.007693169388638153,0.007693169388638153,0.007905763485137942,0.007905763485137942,0.008122185132658707,0.008122185132658707,0.00834246515334796,0.00834246515334796,0.008566634083318734,0.008566634083318734,0.008794722535990679,0.008794722535990679,0.009026760738250369,0.009026760738250369,0.009262778839677759,0.009262778839677759,0.009502806912546194,0.009502806912546194,0.00974687456528933,0.00974687456528933,0.009995011715567272,0.009995011715567272,0.010247247662587214,0.010247247662587214,0.010503611705556344,0.010503611705556344,0.010764133066375237,0.010764133066375237,0.011028840657718008,0.011028840657718008,0.011297763314952157,0.011297763314952157,0.011570929486912102,0.011570929486912102,0.011848367699738883,0.011848367699738883,0.012130106170347073,0.012130106170347073,0.012416172883731407,0.012416172883731407,0.012706595670273385,0.012706595670273385,0.013001402283047884,0.013001402283047884,0.013300620011290103,0.013300620011290103,0.013604276221541851,0.013604276221541851,0.013912397971118474,0.013912397971118474,0.014225012008108854,0.014225012008108854,0.01454214508060188,0.01454214508060188,0.014863823550153364,0.014863823550153364,0.015190073778319112,0.015190073778319112,0.015520921585508628,0.015520921585508628,0.015856393024051254,0.015856393024051254,0.016196513450516817,0.016196513450516817,0.01654130837608834,0.01654130837608834,0.016890802848109187,0.016890802848109187,0.0172450219139227,0.0172450219139227,0.017603990157032536,0.017603990157032536,0.017967732160942364,0.017967732160942364,0.018336272122622753,0.018336272122622753,0.01870963408443106,0.01870963408443106,0.01908784185680479,0.01908784185680479,0.019470918863648372,0.019470918863648372,0.019858888528866237,0.019858888528866237,0.020251773889829735,0.020251773889829735,0.02064959782929698,0.02064959782929698,0.021052382843493037,0.021052382843493037,0.021460151274029705,0.021460151274029705,0.021872925307905574,0.021872925307905574,0.02229072666827954,0.02229072666827954,0.022713577078310492,0.022713577078310492,0.023141497720011017,0.023141497720011017,0.0235745097753937,0.0235745097753937,0.024012633962631435,0.024012633962631435,0.024455890999897114,0.024455890999897114,0.024904300986910714,0.024904300986910714,0.025357884100698825,0.025357884100698825,0.025816659977141714,0.025816659977141714,0.026280648174813064,0.026280648174813064,0.026749867943060064,0.026749867943060064,0.027224338222003465,0.027224338222003465,0.027704077565230932,0.027704077565230932,0.028189104449023523,0.028189104449023523,0.028679437040435813,0.028679437040435813,0.029175093042682707,0.029175093042682707,0.029676090081672497,0.029676090081672497,0.03018244547408699,0.03018244547408699,0.03069417599546171,0.03069417599546171,0.03121129849863879,0.03121129849863879,0.031733829295314056,0.031733829295314056,0.032261784542570095,0.032261784542570095,0.0327951800109564,0.0327951800109564,0.03333403116179608,0.03333403116179608,0.03387835322449229,0.03387835322449229,0.034428161041915206,0.034428161041915206,0.034983469302321706,0.034983469302321706,0.035544292307435624,0.035544292307435624,0.03611064397244771,0.03611064397244771,0.03668253790332224,0.03668253790332224,0.037259987628716906,0.037259987628716906,0.037843006058836455,0.037843006058836455,0.038431606026579024,0.038431606026579024,0.03902579982369644,0.03902579982369644,0.039625599664633894,0.039625599664633894,0.040231017222690325,0.040231017222690325,0.040842064016551397,0.040842064016551397,0.04145875110106311,0.04145875110106311,0.04208108937645819,0.04208108937645819,0.042709089279129725,0.042709089279129725,0.043342760858937665,0.043342760858937665,0.043982114011128816,0.043982114011128816,0.04462715824441683,0.04462715824441683,0.04527790252636907,0.04527790252636907,0.04593435582455292,0.04593435582455292,0.04659652656538944,0.04659652656538944,0.04726442286607324,0.04726442286607324,0.04793805237995923,0.04793805237995923,0.04861742268309571,0.04861742268309571,0.049302540810384675,0.049302540810384675,0.04999341348750164,0.04999341348750164,0.05069004713089568,0.05069004713089568,0.05139244777048278,0.05139244777048278,0.052100621049645864,0.052100621049645864,0.05281457230254139,0.05281457230254139,0.05353430647679273,0.05353430647679273,0.054259828210796786,0.054259828210796786,0.05499114175641742,0.05499114175641742,0.05572825105629201,0.05572825105629201,0.05647115951191161,0.05647115951191161,0.05721987029284748,0.05721987029284748,0.05797438633675096,0.05797438633675096,0.05873470996282052,0.05873470996282052,0.059500843181028176,0.059500843181028176,0.06027278769211946,0.06027278769211946,0.06105054488761343,0.06105054488761343,0.06183411561788285,0.06183411561788285,0.06262350050138067,0.06262350050138067,0.06341869961541349,0.06341869961541349,0.0642197128826747,0.0642197128826747,0.06502653960740476,0.06502653960740476,0.06583917893923089,0.06583917893923089,0.06665762940932743,0.06665762940932743,0.06748188939425541,0.06748188939425541,0.06831195665212302,0.06831195665212302,0.06914782878642518,0.06914782878642518,0.06998950285951053,0.06998950285951053,0.0708369756245012,0.0708369756245012,0.07169024329337305,0.07169024329337305,0.07254930176887546,0.07254930176887546,0.07341414672183802,0.07341414672183802,0.07428477320463729,0.07428477320463729,0.07516117596042347,0.07516117596042347,0.07604334934581362,0.07604334934581362,0.07693128717627855,0.07693128717627855,0.07782498318998239,0.07782498318998239,0.07872443019740996,0.07872443019740996,0.07962962108635262,0.07962962108635262,0.08054054812614883,0.08054054812614883,0.08145720358613709,0.08145720358613709,0.08237957896258971,0.08237957896258971,0.08330766420564674,0.08330766420564674,0.08424145081158045,0.08424145081158045,0.08518092950359699,0.08518092950359699,0.08612608945877027,0.08612608945877027,0.0870769206272403,0.0870769206272403,0.08803341141301478,0.08803341141301478,0.08899555099316754,0.08899555099316754,0.08996332699864018,0.08996332699864018,0.0909367278334404,0.0909367278334404,0.0919157403554436,0.0919157403554436,0.09290035064945901,0.09290035064945901,0.09389054711949434,0.09389054711949434,0.09488631507729274,0.09488631507729274,0.09588763906153105,0.09588763906153105,0.09689450593008482,0.09689450593008482,0.09790689867549852,0.09790689867549852,0.09892480338258156,0.09892480338258156,0.09994820381694461,0.09994820381694461,0.10097708219806624,0.10097708219806624,0.10201142229155719,0.10201142229155719,0.10305120708996211,0.10305120708996211,0.10409641881275947,0.10409641881275947,0.10514703813329551,0.10514703813329551,0.10620304727104868,0.10620304727104868,0.1072644276724313,0.1072644276724313,0.10833115846465725,0.10833115846465725,0.10940322032107275,0.10940322032107275,0.11048059314195775,0.11048059314195775,0.11156325528146005,0.11156325528146005,0.11265118663985962,0.11265118663985962,0.11374436402517193,0.11374436402517193,0.11484276656461083,0.11484276656461083,0.11594637029312554,0.11594637029312554,0.11705515356486387,0.11705515356486387,0.11816909164170887,0.11816909164170887,0.11928816055860982,0.11928816055860982,0.12041233712358214,0.12041233712358214,0.1215415958254428,0.1215415958254428,0.12267591115300872,0.12267591115300872,0.12381525759509687,0.12381525759509687,0.12495960886745809,0.12495960886745809,0.12610893791277702,0.12610893791277702,0.12726321844680444,0.12726321844680444,0.12842242186609273,0.12842242186609273,0.1295865211133265,0.1295865211133265,0.13075548758505812,0.13075548758505812,0.13192929113170768,0.13192929113170768,0.1331079046959598,0.1331079046959598,0.1342912965821021,0.1342912965821021,0.1354794366405548,0.1354794366405548,0.13667229472173786,0.13667229472173786,0.13786983990300522,0.13786983990300522,0.13907204048864455,0.13907204048864455,0.14027886323681132,0.14027886323681132,0.14149027645179318,0.14149027645179318,0.14270624689174569,0.14270624689174569,0.14392674131482422,0.14392674131482422,0.14515172647918423,0.14515172647918423,0.1463811660507165,0.1463811660507165,0.14761502678757646,0.14761502678757646,0.1488532731287211,0.1488532731287211,0.15009586874004122,0.15009586874004122,0.15134277728742765,0.15134277728742765,0.15259396320983742,0.15259396320983742,0.1538493878539628,0.1538493878539628,0.15510901488569465,0.15510901488569465,0.15637280565172534,0.15637280565172534,0.15764072149874725,0.15764072149874725,0.15891272377345267,0.15891272377345267,0.16018877304946788,0.16018877304946788,0.16146882912735294,0.16146882912735294,0.1627528510346017,0.1627528510346017,0.16404079934484034,0.16404079934484034,0.1653326307663644,0.1653326307663644,0.16662830587280003,0.16662830587280003,0.16792778059937657,0.16792778059937657,0.16923101320052172,0.16923101320052172,0.17053795961146476,0.17053795961146476,0.1718485773135673,0.1718485773135673,0.17316282146899253,0.17316282146899253,0.17448064723990359,0.17448064723990359,0.17580201056152966,0.17580201056152966,0.17712686504990172,0.17712686504990172,0.17845516586718282,0.17845516586718282,0.17978686508327146,0.17978686508327146,0.18112191631419855,0.18112191631419855,0.1824602731759949,0.1824602731759949,0.18380188696549288,0.18380188696549288,0.185146709752591,0.185146709752591,0.18649469206105557,0.18649469206105557,0.18784578596078497,0.18784578596078497,0.18919994042941327,0.18919994042941327,0.19055710676377266,0.19055710676377266,0.1919172331684311,0.1919172331684311,0.19328026939408857,0.19328026939408857,0.1946461628722467,0.1946461628722467,0.19601486335360546,0.19601486335360546,0.19738631672353435,0.19738631672353435,0.19876047041353478,0.19876047041353478,0.20013727185510855,0.20013727185510855,0.20151666693362477,0.20151666693362477,0.20289860153445288,0.20289860153445288,0.20428301999682993,0.20428301999682993,0.20566986820612504,0.20566986820612504,0.20705908972850923,0.20705908972850923,0.20845062890321936,0.20845062890321936,0.20984442852336024,0.20984442852336024,0.21124043215510271,0.21124043215510271,0.21263858259155133,0.21263858259155133,0.2140388218527448,0.2140388218527448,0.2154410904125893,0.2154410904125893,0.21684533029112338,0.21684533029112338,0.21825148273531944,0.21825148273531944,0.21965948667295135,0.21965948667295135,0.22106928257792535,0.22106928257792535,0.22248080937801543,0.22248080937801543,0.22389400677406168,0.22389400677406168,0.22530881292077187,0.22530881292077187,0.22672516519978758,0.22672516519978758,0.22814300099275045,0.22814300099275045,0.22956225845436826,0.22956225845436826,0.2309828734201504,0.2309828734201504,0.23240478249867216,0.23240478249867216,0.2338279207523769,0.2338279207523769,0.2352522240167739,0.2352522240167739,0.23667762658124014,0.23667762658124014,0.23810406350821872,0.23810406350821872,0.23953146831402058,0.23953146831402058,0.24095977451495668,0.24095977451495668,0.2423889148542715,0.2423889148542715,0.24381882284827605,0.24381882284827605,0.2452494304671489,0.2452494304671489,0.2466806681349362,0.2466806681349362,0.24811246859488276,0.24811246859488276,0.24954476227103478,0.24954476227103478,0.25097747881437243,0.25097747881437243,0.2524105494220079,0.2524105494220079,0.2538439021987892,0.2538439021987892,0.2552774675687626,0.2552774675687626,0.2567111736367757,0.2567111736367757,0.25814494928074255,0.25814494928074255,0.25957872105937874,0.25957872105937874,0.2610124170775319,0.2610124170775319,0.2624459638939176,0.2624459638939176,0.26387928884031736,0.26387928884031736,0.26531231692931456,0.26531231692931456,0.2667449739465584,0.2667449739465584,0.2681771864507643,0.2681771864507643,0.2696088771353172,0.2696088771353172,0.27103997255893236,0.27103997255893236,0.2724703946419285,0.2724703946419285,0.273900069169955,0.273900069169955,0.2753289172902641,0.2753289172902641,0.27675686169624064,0.27675686169624064,0.27818382662740154,0.27818382662740154,0.27960973168486714,0.27960973168486714,0.28103449956202187,0.28103449956202187,0.28245805140611835,0.28245805140611835,0.2838803075913428,0.2838803075913428,0.28530118771881524,0.28530118771881524,0.28672061293578827,0.28672061293578827,0.28813850129724944,0.28813850129724944,0.2895547724043192,0.2895547724043192,0.29096934508505123,0.29096934508505123,0.2923821366213672,0.2923821366213672,0.29379306584132125,0.29379306584132125,0.29520205002683486,0.29520205002683486,0.29660900491369746,0.29660900491369746,0.2980138485568969,0.2980138485568969,0.2994164966922223,0.2994164966922223,0.30081686505546334,0.30081686505546334,0.30221486938240916,0.30221486938240916,0.3036104238627168,0.3036104238627168,0.3050034442321757,0.3050034442321757,0.3063938431343105,0.3063938431343105,0.3077815363049106,0.3077815363049106,0.30916643638750085,0.30916643638750085,0.3105484560256057,0.3105484560256057,0.3119275086358163,0.3119275086358163,0.31330350608859125,0.31330350608859125,0.314676361027455,0.314676361027455,0.31604598377673404,0.31604598377673404,0.31741228697995316,0.31741228697995316,0.3187751801883723,0.3187751801883723,0.3201345752724502,0.3201345752724502,0.3214903810103808,0.3214903810103808,0.3228425077264904,0.3228425077264904,0.32419086497203903,0.32419086497203903,0.3255353615252206,0.3255353615252206,0.3268759061642293,0.3268759061642293,0.32821240689419284,0.32821240689419284,0.329544771720239,0.329544771720239,0.33087290864749574,0.33087290864749574,0.33219672413495843,0.33219672413495843,0.3335161254146889,0.3335161254146889,0.3348310197187485,0.3348310197187485,0.3361413119600008,0.3361413119600008,0.33744690937050725,0.33744690937050725,0.338747716090065,0.338747716090065,0.34004363780460334,0.34004363780460334,0.34133457942698564,0.34133457942698564,0.34262044587007484,0.34262044587007484,0.3439011405006021,0.3439011405006021,0.34517656745836434,0.34517656745836434,0.3464466301100924,0.3464466301100924,0.3477112318225174,0.3477112318225174,0.3489702751893039,0.3489702751893039,0.3502236628041167,0.3502236628041167,0.35147129726062065,0.35147129726062065,0.35271307960634807,0.35271307960634807,0.3539489124349638,0.3539489124349638,0.355178696020934,0.355178696020934,0.35640233141179123,0.35640233141179123,0.35761971965506795,0.35761971965506795,0.3588307602521642,0.3588307602521642,0.3600353542506125,0.3600353542506125,0.361233401151813,0.361233401151813,0.3624247996840996,0.3624247996840996,0.3636094501219387,0.3636094501219387,0.3647872496475319,0.3647872496475319,0.3659580977622794,0.3659580977622794,0.367121892421449,0.367121892421449,0.36827853235337465,0.36827853235337465,0.369427913967192,0.369427913967192,0.37056993521816867,0.37056993521816867,0.37170449328850663,0.37170449328850663,0.3728314845873412,0.3728314845873412,0.37395080552380794,0.37395080552380794,0.3750623532801086,0.3750623532801086,0.37616602349231243,0.37616602349231243,0.37726171102342276,0.37726171102342276,0.3783493122825752,0.3783493122825752,0.3794287221327727,0.3794287221327727,0.38049983466395265,0.38049983466395265,0.38156254628525027,0.38156254628525027,0.3826167503135368,0.3826167503135368,0.38366234083874895,0.38366234083874895,0.3846992119508241,0.3846992119508241,0.38572725696663307,0.38572725696663307,0.38674636997611284,0.38674636997611284,0.38775644429613443,0.38775644429613443,0.38875737169743646,0.38875737169743646,0.38974904549688966,0.38974904549688966,0.39073135901136524,0.39073135901136524,0.39170420323853544,0.39170420323853544,0.39266747072220515,0.39266747072220515,0.3936210524600467,0.3936210524600467,0.394564840995865,0.394564840995865,0.39549872810039843,0.39549872810039843,0.39642260322518746,0.39642260322518746,0.39733635891403674,0.39733635891403674,0.3982398846184863,0.3982398846184863,0.3991330713362087,0.3991330713362087,0.40001580929181024,0.40001580929181024,0.4008879887098971,0.4008879887098971,0.40174949904200974,0.40174949904200974,0.40260023051275423,0.40260023051275423,0.40344007180060465,0.40344007180060465,0.4042689139032333,0.4042689139032333,0.40508664395298205,0.40508664395298205,0.405893151401391,0.405893151401391,0.4066883257000003,0.4066883257000003,0.4074720547542178,0.4074720547542178,0.4082442272425175,0.4082442272425175,0.4090047318433736,0.4090047318433736,0.4097534549160612,0.4097534549160612,0.4104902859121208,0.4104902859121208,0.4112151119638939,0.4112151119638939,0.41192782097678854,0.41192782097678854,0.4126283000831464,0.4126283000831464,0.41331643641530896,0.41331643641530896,0.4139921171056181,0.4139921171056181,0.41465522928641546,0.41465522928641546,0.4153056593169766,0.4153056593169766,0.41594329355657705,0.41594329355657705,0.4165680199106247,0.4165680199106247,0.4171797231922627,0.4171797231922627,0.4177782905338328,0.4177782905338328,0.4183636082946105,0.4183636082946105,0.4189355612877392,0.4189355612877392,0.41949403664556034,0.41949403664556034,0.4200389191812172,0.4200389191812172,0.42057009525398564,0.42057009525398564,0.4210874489039424,0.4210874489039424,0.4215908680364954,0.4215908680364954,0.4220802351455895,0.4220802351455895,0.42255543736356643,0.42255543736356643,0.42301635950356925,0.42301635950356925,0.4234628856056752,0.4234628856056752,0.42389490125609347,0.42389490125609347,0.4243122920410337,0.4243122920410337,0.42471494045444064,0.42471494045444064,0.42510273362865575,0.42510273362865575,0.42547555405762405,0.42547555405762405,0.425833288100621,0.425833288100621,0.42617581825159134,0.42617581825159134,0.42650303009674456,0.42650303009674456,0.4268148076761576,0.4268148076761576,0.4271110350299077,0.4271110350299077,0.42739159697113793,0.42739159697113793,0.42765637599379325,0.42765637599379325,0.4279052576840829,0.4279052576840829,0.4281381253090179,0.4281381253090179,0.42835486290867536,0.42835486290867536,0.4285553545231322,0.4285553545231322,0.4287394834193996,0.4287394834193996,0.4289071344106205,0.4289071344106205,0.4290581899907399,0.4290581899907399,0.42919253497290094,0.42919253497290094,0.4293100533971809,0.4293100533971809,0.42941062775752425,0.42941062775752425,0.4294941420940082,0.4294941420940082,0.4295604804467099,0.4295604804467099,0.4296095268557064,0.4296095268557064,0.42964116381494244,0.42964116381494244,0.4296552761375613,0.4296552761375613,0.42965174631750774,0.42965174631750774,0.429630459167925,0.429630459167925,0.4295912971827578,0.4295912971827578,0.42953414517514954,0.42953414517514954,0.429458886412111,0.429458886412111,0.42936540416065316,0.42936540416065316,0.4292535824608531,0.4292535824608531,0.4291233045797218,0.4291233045797218,0.4289744553304024,0.4289744553304024,0.4288069172068397,0.4288069172068397,0.42862057579524315,0.42862057579524315,0.4284153128164913,0.4284153128164913,0.42819101385679365,0.42819101385679365,0.4279475621831611,0.4279475621831611,0.42768484260873674,0.42768484260873674,0.4274027376274656,0.4274027376274656,0.4271011320524906,0.4271011320524906,0.4267799106969553,0.4267799106969553,0.4264389576009366,0.4264389576009366,0.4260781568045116,0.4260781568045116,0.42569739234775744,0.42569739234775744,0.4252965490438173,0.4252965490438173,0.4248755117058344,0.4248755117058344,0.4244341643738859,0.4244341643738859,0.4239723926341812,0.4239723926341812,0.4234900805267973,0.4234900805267973,0.42298711286487756,0.42298711286487756,0.4224633752346312,0.4224633752346312,0.42191875244920146,0.42191875244920146,0.42135312932173175,0.42135312932173175,0.42076639143843136,0.42076639143843136,0.4201584243855098,0.4201584243855098,0.41952911374917623,0.41952911374917623,0.4188783443425741,0.4188783443425741,0.4182060032980449,0.4182060032980449,0.41751197542873203,0.41751197542873203,0.41679614786697705,0.41679614786697705,0.41605840542592337,0.41605840542592337,0.4152986352379125,0.4152986352379125,0.414516722889154,0.414516722889154,0.4137125562850557,0.4137125562850557,0.412886021784893,0.412886021784893,0.4120370057479415,0.4120370057479415,0.411165395306543,0.411165395306543,0.4102710775930391,0.4102710775930391,0.4093539412859038,0.4093539412859038,0.40841387197134654,0.40841387197134654,0.40745075910090744,0.40745075910090744,0.40646448903386195,0.40646448903386195,0.40545495122175046,0.40545495122175046,0.40442203279691447,0.40442203279691447,0.40336562321089414,0.40336562321089414,0.4022856103690974,0.4022856103690974,0.4011818837230644,0.4011818837230644,0.400054331951269,0.400054331951269,0.3989028437321854,0.3989028437321854,0.39772730929041983,0.39772730929041983,0.3965276180775124,0.3965276180775124,0.3953036603180695,0.3953036603180695,0.3940553254636312,0.3940553254636312,0.39278250451186997,0.39278250451186997,0.391485086914326,0.391485086914326,0.39016296444173787,0.39016296444173787,0.38881602809177795,0.38881602809177795,0.3874441680890528,0.3874441680890528,0.38604727697736696,0.38604727697736696,0.3846252465274592,0.3846252465274592,0.38317796773700186,0.38317796773700186,0.38170533392286593,0.38170533392286593,0.38020723608272367,0.38020723608272367,0.37868356907957856,0.37868356907957856,0.377134223911103,0.377134223911103,0.3755590954403002,0.3755590954403002,0.3739580754379086,0.3739580754379086,0.3723310595399979,0.3723310595399979,0.3706779410634387,0.3706779410634387,0.3689986140981684,0.3689986140981684,0.3672929735071898,0.3672929735071898,0.36556091492657267,0.36556091492657267,0.3638023324462539,0.3638023324462539,0.362017122475369,0.362017122475369,0.36020518064998736,0.36020518064998736,0.35836640260617847,0.35836640260617847,0.35650068629921,0.35650068629921,0.35460792659208523,0.35460792659208523,0.3526880214400721,0.3526880214400721,0.3507408687984383,0.3507408687984383,0.3487663658493856,0.3487663658493856,0.34676441054818175,0.34676441054818175,0.344734902396227,0.344734902396227,0.342677738575723,0.342677738575723,0.3405928185880698,0.3405928185880698,0.33848004270773374,0.33848004270773374,0.3363393096630489,0.3363393096630489,0.3341705197284814,0.3341705197284814,0.33197357472462996,0.33197357472462996,0.3297483741528947,0.3297483741528947,0.327494819060808,0.327494819060808,0.3252128120420348,0.3252128120420348,0.32290225414410734,0.32290225414410734,0.3205630479606904,0.3205630479606904,0.3181950960854489,0.3181950960854489,0.31579830265817965,0.31579830265817965,0.3133725694994814,0.3133725694994814,0.31091780152221726,0.31091780152221726,0.30843390209311833,0.30843390209311833,0.3059207768981138,0.3059207768981138,0.3033783308500669,0.3033783308500669,0.30080646808877465,0.30080646808877465,0.2982050958462989,0.2982050958462989,0.2955741198085688,0.2955741198085688,0.29291344720764617,0.29291344720764617,0.2902229837294602,0.2902229837294602,0.28750263892527117,0.28750263892527117,0.2847523184810084,0.2847523184810084,0.2819719327209982,0.2819719327209982,0.27916138965036835,0.27916138965036835,0.2763205980473128,0.2763205980473128,0.2734494682361578,0.2734494682361578,0.2705479105412297,0.2705479105412297,0.26761583451378873,0.26761583451378873,0.2646531520242932,0.2646531520242932,0.2616597749432019,0.2616597749432019,0.25863561359484105,0.25863561359484105,0.25558058216886775,0.25558058216886775,0.25249459253574036,0.25249459253574036,0.2493775581120501,0.2493775581120501,0.24622939308745379,0.24622939308745379,0.24305001087854244,0.24305001087854244,0.23983932722110524,0.23983932722110524,0.23659725707786555,0.23659725707786555,0.23332371618461267,0.23332371618461267,0.23001862027713585,0.23001862027713585,0.22668188663735692,0.22668188663735692,0.2233134325471974,0.2233134325471974,0.21991317528857893,0.21991317528857893,0.21648103368955554,0.21648103368955554,0.213016925805115,0.213016925805115,0.2095207712363775,0.2095207712363775,0.20599248958446306,0.20599248958446306,0.20243200122355795,0.20243200122355795,0.19883922652784852,0.19883922652784852,0.19521408819071934,0.19521408819071934,0.19155650658635678,0.19155650658635678,0.1878664044081456,0.1878664044081456,0.18414370512253658,0.18414370512253658,0.1803883321959806,0.1803883321959806,0.17660020909492866,0.17660020909492866,0.1727792608319638,0.1727792608319638,0.16892541164660313,0.16892541164660313,0.16503858887062822,0.16503858887062822,0.16111871674355616,0.16111871674355616,0.15716572337023477,0.15716572337023477,0.15317953608244558,0.15317953608244558,0.14916008221197027,0.14916008221197027,0.1451072906367229,0.1451072906367229,0.14102109023461726,0.14102109023461726,0.13690141065663353,0.13690141065663353,0.13274818155375176,0.13274818155375176,0.12856133489615051,0.12856133489615051,0.12434080110787611,0.12434080110787611,0.12008651293217322,0.12008651293217322,0.11579840233922034,0.11579840233922034,0.11147640284532838,0.11147640284532838,0.10712044796680821,0.10712044796680821,0.10273047199303686,0.10273047199303686,0.09830640998645745,0.09830640998645745,0.09384819700951318,0.09384819700951318,0.08935577044384564,0.08935577044384564,0.08482906689803035,0.08482906689803035,0.08026802298064277,0.08026802298064277,0.07567257692369725,0.07567257692369725,0.07104266780958103,0.07104266780958103,0.0663782347979878,0.0663782347979878,0.06167921774437095,0.06167921774437095,0.05694555719994327,0.05694555719994327,0.05217719456629043,0.05217719456629043,0.047374071476917856,0.047374071476917856,0.04253613057031704,0.04253613057031704,0.03766331494881914,0.03766331494881914,0.03275556833320819,0.03275556833320819,0.027812835294641094,0.027812835294641094,0.022835060868114362,0.022835060868114362,0.017822190784384063,0.017822190784384063,0.012774171469965826,0.012774171469965826,0.007690950116710744,0.007690950116710744,0.0025724743880402774,0.0025724743880402774,0.002581307264096639,0.002581307264096639,0.00777044575383683,0.00777044575383683,0.012994991245442943,0.012994991245442943,0.018254993338839346,0.018254993338839346,0.023550500891806894,0.023550500891806894,0.028881562066366898,0.028881562066366898,0.03424822432878115,0.03424822432878115,0.03965053444955187,0.03965053444955187,0.04508853858072841,0.04508853858072841,0.05056228210129392,0.05056228210129392,0.05607180969447203,0.05607180969447203,0.06161716542503345,0.06161716542503345,0.06719839250737612,0.06719839250737612,0.07281553353744505,0.07281553353744505,0.07846863033811911,0.07846863033811911,0.08415772465497058,0.08415772465497058,0.08988285545053351,0.08988285545053351,0.09564406447038017,0.09564406447038017,0.10144138882168591,0.10144138882168591,0.10727486793082448,0.10727486793082448,0.11314453967803742,0.11314453967803742,0.11905043962436772,0.11905043962436772,0.12499260487699071,0.12499260487699071,0.13097106945081713,0.13097106945081713,0.13698586967995618,0.13698586967995618,0.1430370388062524,0.1430370388062524,0.1491246100715503,0.1491246100715503,0.15524861517156227,0.15524861517156227,0.1614090865750667,0.1614090865750667,0.16760605443164345,0.16760605443164345,0.1738395496639387,0.1738395496639387,0.1801096008754001,0.1801096008754001,0.18641623744254146,0.18641623744254146,0.19275948719574423,0.19275948719574423,0.1991393764192577,0.1991393764192577,0.20555593217039717,0.20555593217039717,0.21200917996034563,0.21200917996034563,0.21849914452722002,0.21849914452722002,0.22502584983607105,0.22502584983607105,0.23158931907888336,0.23158931907888336,0.23818957467457533,0.23818957467457533,0.2448266390420654,0.2448266390420654,0.25150053228107355,0.25150053228107355,0.2582112744913197,0.2582112744913197,0.2649588857725239,0.2649588857725239,0.2717433846782738,0.2717433846782738,0.2785647882160247,0.2785647882160247,0.28542311339323206,0.28542311339323206,0.2923183772173512,0.2923183772173512,0.2992505951497051,0.2992505951497051,0.3062197803324184,0.3062197803324184,0.3132259482268143,0.3132259482268143,0.320269111201951,0.320269111201951,0.327349280853821,0.327349280853821,0.3344664695514826,0.3344664695514826,0.341620688117862,0.341620688117862,0.3488119442836207,0.3488119442836207,0.3560402496447511,0.3560402496447511,0.36330561038578224,0.36330561038578224,0.370608035010442,0.370608035010442,0.3779475289301933,0.3779475289301933,0.3853240991026315,0.3853240991026315,0.3927377493930875,0.3927377493930875,0.4001884844399581,0.4001884844399581,0.40767630733550797,0.40767630733550797,0.4152012203989356,0.4152012203989356,0.4227632251763731,0.4227632251763731,0.4303623224408869,0.4303623224408869,0.43799851219247676,0.43799851219247676,0.44567179288501063,0.44567179288501063,0.4533821637454221,0.4533821637454221,0.4611296216814467,0.4611296216814467,0.46891416360081983,0.46891416360081983,0.47673578409207834,0.47673578409207834,0.48459447928989147,0.48459447928989147,0.4924902430097301,0.4924902430097301,0.5004230675209326,0.5004230675209326,0.5083929458659036,0.5083929458659036,0.5163998695409155,0.5163998695409155,0.5244438292691744,0.5244438292691744,0.5325248150008204,0.5325248150008204,0.5406428151398611,0.5406428151398611,0.5487978173172381,0.5487978173172381,0.5569898099369589,0.5569898099369589,0.5652187790838332,0.5652187790838332,0.5734847100696038,0.5734847100696038,0.5817875866598815,0.5817875866598815,0.5901273941664095,0.5901273941664095,0.5985041140356,0.5985041140356,0.6069177300330638,0.6069177300330638,0.6153682220590811,0.6153682220590811,0.623855570013932,0.623855570013932,0.6323797545709622,0.6323797545709622,0.6409407540843198,0.6409407540843198,0.6495385461350863,0.6495385461350863,0.6581731067582111,0.6581731067582111,0.6668444135347755,0.6668444135347755,0.6755524401805305,0.6755524401805305,0.6842971611842928,0.6842971611842928,0.6930785502618135,0.6930785502618135,0.7018965795827112,0.7018965795827112,0.710751220543538,0.710751220543538,0.7196424445408459,0.7196424445408459,0.7285702214250557,0.7285702214250557,0.7375345187273886,0.7375345187273886,0.7465353062982645,0.7465353062982645,0.7555725501227731,0.7555725501227731,0.7646462169590692,0.7646462169590692,0.773756268926912,0.773756268926912,0.7829026774228532,0.7829026774228532,0.7920854045666519,0.7920854045666519,0.8013044117050001,0.8013044117050001,0.8105596524539289,0.8105596524539289,0.8198511036214535,0.8198511036214535,0.8291787110929432,0.8291787110929432,0.838542443945752,0.838542443945752,0.8479422557959104,0.8479422557959104,0.8573781002594499,0.8573781002594499,0.8668499464137239,0.8668499464137239,0.8763577324134404,0.8763577324134404,0.8859014273359529,0.8859014273359529,0.8954809847972928,0.8954809847972928,0.9050963429521673,0.9050963429521673,0.9147474708779306,0.9147474708779306,0.9244343144599521,0.9244343144599521,0.9341568195836011,0.9341568195836011,0.9439149321342466,0.9439149321342466,0.9537086134585812,0.9537086134585812,0.9635378094419742,0.9635378094419742,0.9734024505084719,0.9734024505084719,0.9833024980047664,0.9833024980047664,0.9932378978162272,0.9932378978162272,1.003208588097562,1.003208588097562,1.0132145070034788,1.0132145070034788,1.023255600419347,1.023255600419347,1.0333318142305352,1.0333318142305352,1.0434430865917514,1.0434430865917514,1.053589355657704,1.053589355657704,1.0637705673137619,1.0637705673137619,1.07398664425331,1.07398664425331,1.0842375323617173,1.0842375323617173,1.0945231697936915,1.0945231697936915,1.1048434869732793,1.1048434869732793,1.115198422055188,1.115198422055188,1.1255879054634643,1.1255879054634643,1.1360118676221542,1.1360118676221542,1.146470238955304,1.146470238955304,1.1569629576176215,1.1569629576176215,1.1674899463024913,1.1674899463024913,1.1780511354339598,1.1780511354339598,1.1886464554360736,1.1886464554360736,1.1992758367328777,1.1992758367328777,1.209939186556435,1.209939186556435,1.2206364507921148,1.2206364507921148,1.2313675444026395,1.2313675444026395,1.242132397812056,1.242132397812056,1.2529309182524255,1.2529309182524255,1.2637630438784564,1.2637630438784564,1.274628689652871,1.274628689652871,1.285527762807732,1.285527762807732,1.2964602014977464,1.2964602014977464,1.3074259129549761,1.3074259129549761,1.3184248198728057,1.3184248198728057,1.3294568294832971,1.3294568294832971,1.3405218644798351,1.3405218644798351,1.3516198398251427,1.3516198398251427,1.3627506627512815,1.3627506627512815,1.3739142482209747,1.3739142482209747,1.3851105111969455,1.3851105111969455,1.3963393666419175,1.3963393666419175,1.407600706326629,1.407600706326629,1.4188944606751257,1.4188944606751257,1.4302205214581476,1.4302205214581476,1.4415788036384165,1.4415788036384165,1.4529692144479947,1.4529692144479947,1.4643916533882821,1.4643916533882821,1.4758460276913405,1.4758460276913405,1.487332244589232,1.487332244589232,1.4988502035833564,1.4988502035833564,1.510399811905775,1.510399811905775,1.5219809613272266,1.5219809613272266,1.533593551349112,1.533593551349112,1.5452374969341534,1.5452374969341534,1.556912674391767,1.556912674391767,1.5686189986846752,1.5686189986846752,1.5803563615836178,1.5803563615836178,1.5921246548593329,1.5921246548593329,1.6039237780132198,1.6039237780132198,1.6157536150853573,1.6157536150853573,1.6276140733078055,1.6276140733078055,1.6395050367206425,1.6395050367206425,1.6514263970946061,1.6514263970946061,1.6633780539310972,1.6633780539310972,1.6753598758088695,1.6753598758088695,1.6873717776906458,1.6873717776906458,1.6994136281551808,1.6994136281551808,1.7114853189732127,1.7114853189732127,1.7235867341848183,1.7235867341848183,1.7357177732913989,1.7357177732913989,1.747878297141046,1.747878297141046,1.7600682129658212,1.7600682129658212,1.7722873893444788,1.7722873893444788,1.7845357025864348,1.7845357025864348,1.7968130521930887,1.7968130521930887,1.8091193067431948,1.8091193067431948,1.8214543425461687,1.8214543425461687,1.8338180436420874,1.8338180436420874,1.846210286340366,1.846210286340366,1.8586309546810824,1.8586309546810824,1.871079909512329,1.871079909512329,1.8835570348741821,1.8835570348741821,1.896062207076058,1.896062207076058,1.908595286966049,1.908595286966049,1.9211561663148937,1.9211561663148937,1.9337446982400233,1.9337446982400233,1.946360766781514,1.946360766781514,1.9590042327874597,1.9590042327874597,1.9716749725672749,1.9716749725672749,1.9843728469690527,1.9843728469690527,1.9970977323022079,1.9970977323022079,2.0098494894148335,2.0098494894148335,2.0226279868856833,2.0226279868856833,2.0354330855628504,2.0354330855628504,2.0482646540250884,2.0482646540250884,2.0611225453898285,2.0611225453898285,2.074006643697147,2.074006643697147,2.0869167866031533,2.0869167866031533,2.099852850417261,2.099852850417261,2.1128146882569028,2.1128146882569028,2.1258021687008313,2.1258021687008313,2.138815137135818,2.138815137135818,2.1518534544099532,2.1518534544099532,2.164916989101992,2.164916989101992,2.178005578868042,2.178005578868042,2.191119100017519,2.191119100017519,2.204257390206531,2.204257390206531,2.2174203025525085,2.2174203025525085,2.230607705634206,2.230607705634206,2.2438194371077316,2.2438194371077316,2.2570553500905155,2.2570553500905155,2.270315297699989,2.270315297699989,2.2835991330535834,2.2835991330535834,2.296906701538068,2.296906701538068,2.3102378562708736,2.3102378562708736,2.3235924349081083,2.3235924349081083,2.3369702828365413,2.3369702828365413,2.350371260904265,2.350371260904265,2.363795206767388,2.363795206767388,2.377241958082017,2.377241958082017,2.3907113679655847,2.3907113679655847,2.404203274074198,2.404203274074198,2.4177175140639644,2.4177175140639644,2.4312539410523155,2.4312539410523155,2.444812392695359,2.444812392695359,2.458392698918542,2.458392698918542,2.4719947051086324,2.4719947051086324,2.4856182489217398,2.4856182489217398,2.4992631680139716,2.4992631680139716,2.512929300041434,2.512929300041434,2.5266164826602378,2.5266164826602378,2.5403245535264896,2.5403245535264896,2.5540533348349728,2.5540533348349728,2.567802671972459,2.567802671972459,2.581572394864394,2.581572394864394,2.5953623334362232,2.5953623334362232,2.609172325344056,2.609172325344056,2.6230021927826765,2.6230021927826765,2.6368517811388545,2.6368517811388545,2.650720897146051,2.650720897146051,2.6646093939216975,2.6646093939216975,2.6785170781992567,2.6785170781992567,2.6924437953654965,2.6924437953654965,2.7063893598845405,2.7063893598845405,2.720353601681836,2.720353601681836,2.734336350682829,2.734336350682829,2.7483374290823037,2.7483374290823037,2.7623566590750457,2.7623566590750457,2.7763938551251783,2.7763938551251783,2.7904488626194706,2.7904488626194706,2.8045214805607235,2.8045214805607235,2.818611538874382,2.818611538874382,2.8327188674858945,2.8327188674858945,2.846843273128721,2.846843273128721,2.8609845779976473,2.8609845779976473,2.875142604287459,2.875142604287459,2.889317166462277,2.889317166462277,2.9035080867168883,2.9035080867168883,2.917715179515415,2.917715179515415,2.9319382593219814,2.9319382593219814,2.9461771406007116,2.9461771406007116,2.9604316455463877,2.9604316455463877,2.974701573161813,2.974701573161813,2.9889867533724317,2.9889867533724317,3.0032869929117063,3.0032869929117063,3.0176020985130996,3.0176020985130996,3.0319318923713943,3.0319318923713943,3.046276173489393,3.046276173489393,3.060634764061879,3.060634764061879,3.075007463091653,3.075007463091653,3.0893940850428385,3.0893940850428385,3.1037944443795586,3.1037944443795586,3.1182083401046143,3.1182083401046143,3.1326355789514664,3.1326355789514664,3.1470759753842397,3.1470759753842397,3.1615293284057318,3.1615293284057318,3.175995452480069,3.175995452480069,3.1904741466100495,3.1904741466100495,3.2049652097984747,3.2049652097984747,3.219468456509467,3.219468456509467,3.233983685745828,3.233983685745828,3.2485106965103574,3.2485106965103574,3.2630492955365167,3.2630492955365167,3.2775992895577675,3.2775992895577675,3.2921604698462485,3.2921604698462485,3.306732635404762,3.306732635404762,3.3213155929667666,3.3213155929667666,3.3359091492657265,3.3359091492657265,3.350513087843118,3.350513087843118,3.3651272077017413,3.3651272077017413,3.3797513233057206,3.3797513233057206,3.3943852181965317,3.3943852181965317,3.4090286913769763,3.4090286913769763,3.4236815418498527,3.4236815418498527,3.438343560887303,3.438343560887303,3.4530145474921237,3.4530145474921237,3.467694292936456,3.467694292936456,3.48238260395376,3.48238260395376,3.4970792563548545,3.4970792563548545,3.5117840491425363,3.5117840491425363,3.526496789050269,3.526496789050269,3.541217244158206,3.541217244158206,3.5559452289304714,3.5559452289304714,3.5706805191778805,3.5706805191778805,3.5854229139032334,3.5854229139032334,3.6001721966480074,3.6001721966480074,3.614928166415003,3.614928166415003,3.6296906144763583,3.6296906144763583,3.644459316642891,3.644459316642891,3.6592340641867382,3.6592340641867382,3.6740146561106983,3.6740146561106983,3.688800868225591,3.688800868225591,3.703592499534214,3.703592499534214,3.7183893258473835,3.7183893258473835,3.7331911384372387,3.7331911384372387,3.747997728575918,3.747997728575918,3.7628088720742365,3.7628088720742365,3.7776243602043342,3.7776243602043342,3.7924439765076885,3.7924439765076885,3.807267504525774,3.807267504525774,3.822094727800071,3.822094727800071,3.8369254298720548,3.8369254298720548,3.851759394283204,3.851759394283204,3.8665964045749943,3.8665964045749943,3.8814362442889037,3.8814362442889037,3.8962786969664105,3.8962786969664105,3.9111235384183294,3.9111235384183294,3.9259705521861363,3.9259705521861363,3.94081951408065,3.94081951408065,3.955670223104668,3.955670223104668,3.9705224396076826,3.9705224396076826,3.9853759471311743,3.9853759471311743,4.000230536947279,4.000230536947279,4.015085977136152,4.015085977136152,4.029942043508608,4.029942043508608,4.044798527336786,4.044798527336786,4.059655196700843,4.059655196700843,4.0745118351422525,4.0745118351422525,4.089368218471832,4.089368218471832,4.104224122500396,4.104224122500396,4.119079323038761,4.119079323038761,4.133933595897745,4.133933595897745,4.14878672461882,4.14878672461882,4.163638477282145,4.163638477282145,4.1784886374291945,4.1784886374291945,4.1933369731401235,4.1933369731401235,4.208183267956408,4.208183267956408,4.223027282227542,4.223027282227542,4.2378688072256665,4.2378688072256665,4.252707611030932,4.252707611030932,4.267543461723492,4.267543461723492,4.282376142844828,4.282376142844828,4.297205414744431,4.297205414744431,4.312031068694437,4.312031068694437,4.32685286504434,4.32685286504434,4.341670579604958,4.341670579604958,4.356483988187105,4.356483988187105,4.371292858870934,4.371292858870934,4.386096967467263,4.386096967467263,4.400896082056245,4.400896082056245,4.415689978448695,4.415689978448695,4.43047842472477,4.43047842472477,4.445261196695281,4.445261196695281,4.460038054709726,4.460038054709726,4.474808790040238,4.474808790040238,4.489573155305653,4.489573155305653,4.504330926316785,4.504330926316785,4.519081878884449,4.519081878884449,4.533825773358138,4.533825773358138,4.5485623932793295,4.5485623932793295,4.563291491266856,4.563291491266856,4.578012858592854,4.578012858592854,4.592726247876154,4.592726247876154,4.607431427196913,4.607431427196913,4.622128180096605,4.622128180096605,4.636816266924726,4.636816266924726,4.65149546349209,4.65149546349209,4.66616553014819,4.66616553014819,4.680826234973179,4.680826234973179,4.695477361508536,4.695477361508536,4.710118662373089,4.710118662373089,4.72474991337766,4.72474991337766,4.739370882602397,4.739370882602397,4.753981330396795,4.753981330396795,4.76858104030233,4.76858104030233,4.783169772668497,4.783169772668497,4.7977472878447855,4.7977472878447855,4.812313369372677,4.812313369372677,4.82686777760166,4.82686777760166,4.841410280611891,4.841410280611891,4.855940638752861,4.855940638752861,4.870458635566049,4.870458635566049,4.8849640236702845,4.8849640236702845,4.899456586607045,4.899456586607045,4.9139360769951645,4.9139360769951645,4.928402270645455,4.928402270645455,4.9428549356380715,4.9428549356380715,4.957293832322509,4.957293832322509,4.971718736509579,4.971718736509579,4.986129416279438,4.986129416279438,5.0005256319815805,5.0005256319815805,5.014907159426819,5.014907159426819,5.0292737589646475,5.0292737589646475,5.043625198675222,5.043625198675222,5.057961254369354,5.057961254369354,5.072281686396539,5.072281686396539,5.0865862628369305,5.0865862628369305,5.100874751770683,5.100874751770683,5.1151469290086125,5.1151469290086125,5.129402554900211,5.129402554900211,5.14364138979497,5.14364138979497,5.15786321723437,5.15786321723437,5.172067797567901,5.172067797567901,5.186254898875717,5.186254898875717,5.200424289237974,5.200424289237974,5.214575736734825,5.214575736734825,5.228709017177085,5.228709017177085,5.242823883183587,5.242823883183587,5.256920118295806,5.256920118295806,5.270997490593898,5.270997490593898,5.285055752696695,5.285055752696695,5.29909468814567,5.29909468814567,5.313114065020981,5.313114065020981,5.32711364367212,5.32711364367212,5.341093207640563,5.341093207640563,5.355052509545143,5.355052509545143,5.368991332927334,5.368991332927334,5.3829094381366325,5.3829094381366325,5.396806600983853,5.396806600983853,5.410682581818485,5.410682581818485,5.42453716418201,5.42453716418201,5.438370108423919,5.438370108423919,5.452181190355028,5.452181190355028,5.465970178055488,5.465970178055488,5.479736839605459,5.479736839605459,5.493480950815751,5.493480950815751,5.507202279766522,5.507202279766522,5.520900594537927,5.520900594537927,5.534575678671439,5.534575678671439,5.548227292516553,5.548227292516553,5.561855211884085,5.561855211884085,5.575459204854189,5.575459204854189,5.589039054968341,5.589039054968341,5.602594522576035,5.602594522576035,5.616125383488086,5.616125383488086,5.62963141351531,5.62963141351531,5.6431123884685235,5.6431123884685235,5.656568076427878,5.656568076427878,5.669998245473531,5.669998245473531,5.683402686877619,5.683402686877619,5.696781160989636,5.696781160989636,5.710133443620397,5.710133443620397,5.723459318311379,5.723459318311379,5.736758553142737,5.736758553142737,5.750030923925285,5.750030923925285,5.7632762064698415,5.7632762064698415,5.776494176587218,5.776494176587218,5.789684617818897,5.789684617818897,5.802847290514367,5.802847290514367,5.815981993676431,5.815981993676431,5.829088479923917,5.829088479923917,5.8421665482596286,5.8421665482596286,5.855215966763717,5.855215966763717,5.868236511247001,5.868236511247001,5.881227965250955,5.881227965250955,5.894190104586396,5.894190104586396,5.90712270506414,5.90712270506414,5.9200255579563255,5.9200255579563255,5.932898439073767,5.932898439073767,5.945741116496621,5.945741116496621,5.958553389227686,5.958553389227686,5.971335025347116,5.971335025347116,5.984085808396388,5.984085808396388,5.996805521916983,5.996805521916983,6.009493949450373,6.009493949450373,6.022150874538037,6.022150874538037,6.034776072990792,6.034776072990792,6.047369336080778,6.047369336080778,6.059930447349468,6.059930447349468,6.072459190338343,6.072459190338343,6.084955340858215,6.084955340858215,6.097418690181226,6.097418690181226,6.109849029579514,6.109849029579514,6.122246142594555,6.122246142594555,6.134609805037166,6.134609805037166,6.146939815910146,6.146939815910146,6.159235958754975,6.159235958754975,6.171498017113127,6.171498017113127,6.183725782256743,6.183725782256743,6.195919045457959,6.195919045457959,6.208077597988916,6.208077597988916,6.220201223391091,6.220201223391091,6.232289705205961,6.232289705205961,6.244342850166988,6.244342850166988,6.25636044181565,6.25636044181565,6.268342271424083,6.268342271424083,6.280288122533767,6.280288122533767,6.292197801878162,6.292197801878162,6.3040711007294075,6.3040711007294075,6.315907802628982,6.315907802628982,6.327707706579683,6.327707706579683,6.339470611584313,6.339470611584313,6.35119630891501,6.35119630891501,6.362884597574574,6.362884597574574,6.374535268835146,6.374535268835146,6.386148121699522,6.386148121699522,6.397722947439844,6.397722947439844,6.409259560520234,6.409259560520234,6.4207577367515105,6.4207577367515105,6.432217298328454,6.432217298328454,6.443638028792543,6.443638028792543,6.455019734877241,6.455019734877241,6.4663622078546865,6.4663622078546865,6.477665262189,6.477665262189,6.4889286968829865,6.4889286968829865,6.500152310939442,6.500152310939442,6.511335903361169,6.511335903361169,6.52247928861229,6.52247928861229,6.533582265695607,6.533582265695607,6.544644633613918,6.544644633613918,6.555666206831347,6.555666206831347,6.566646784350694,6.566646784350694,6.577586180636083,6.577586180636083,6.588484194690315,6.588484194690315,6.599340648708172,6.599340648708172,6.6101553339617976,6.6101553339617976,6.620928064915311,6.620928064915311,6.631658656032838,6.631658656032838,6.6423469140478355,6.6423469140478355,6.652992653424434,6.652992653424434,6.66359568862675,6.66359568862675,6.674155826388252,6.674155826388252,6.684672873442397,6.684672873442397,6.695146659714634,6.695146659714634,6.705576991938422,6.705576991938422,6.715963684577887,6.715963684577887,6.726306559827813,6.726306559827813,6.73660542442166,6.73660542442166,6.746860100554216,6.746860100554216,6.757070410420264,6.757070410420264,6.767236160753267,6.767236160753267,6.777357189209331,6.777357189209331,6.78743330252192,6.78743330252192,6.797464322885817,6.797464322885817,6.807450072495808,6.807450072495808,6.81739038127734,6.81739038127734,6.827285063694534,6.827285063694534,6.837133949672839,6.837133949672839,6.846936861407037,6.846936861407037,6.856693621091915,6.856693621091915,6.866404058652918,6.866404058652918,6.876067996284833,6.876067996284833,6.8856852716437675,6.8856852716437675,6.895255699193843,6.895255699193843,6.90477912432183,6.90477912432183,6.914255361491851,6.914255361491851,6.923684248360015,6.923684248360015,6.933065622582432,6.933065622582432,6.942399306353881,6.942399306353881,6.951685137330474,6.951685137330474,6.960922945437659,6.960922945437659,6.97011256833154,6.97011256833154,6.979253851398889,6.979253851398889,6.988346609103826,6.988346609103826,6.997390694563788,6.997390694563788,7.006385945434878,7.006385945434878,7.015332199373204,7.015332199373204,7.024229286304215,7.024229286304215,7.0330770593453416,7.0330770593453416,7.041875348422028,7.041875348422028,7.050624006651707,7.050624006651707,7.059322863959823,7.059322863959823,7.06797178119447,7.06797178119447,7.076570588281096,7.076570588281096,7.085119130606468,7.085119130606468,7.093617269018678,7.093617269018678,7.102064833443176,7.102064833443176,7.11046168472805,7.11046168472805,7.11880766052941,7.11880766052941,7.127102621695351,7.127102621695351,7.1353464136126385,7.1353464136126385,7.143538881668044,7.143538881668044,7.151679886709658,7.151679886709658,7.1597692818549135,7.1597692818549135,7.167806920221242,7.167806920221242,7.175792647195411,7.175792647195411,7.183726331356175,7.183726331356175,7.191607825820967,7.191607825820967,7.199436983707214,7.199436983707214,7.207213673593674,7.207213673593674,7.214937740867114,7.214937740867114,7.2226090541062895,7.2226090541062895,7.230227481889951,7.230227481889951,7.237792869604874,7.237792869604874,7.245305093560471,7.245305093560471,7.252764006874171,7.252764006874171,7.260169485855393,7.260169485855393,7.267521391352226,7.267521391352226,7.2748195919434275,7.2748195919434275,7.2820639562077485,7.2820639562077485,7.289254344993283,7.289254344993283,7.296390634609448,7.296390634609448,7.303472693634998,7.303472693634998,7.310500390648682,7.310500390648682,7.3174736096905795,7.3174736096905795,7.324392211608784,7.324392211608784,7.3312560804433735,7.3312560804433735,7.3380650847731,7.3380650847731,7.34481910090738,7.34481910090738,7.351518005155628,7.351518005155628,7.358161681557923,7.358161681557923,7.364750006423679,7.364750006423679,7.371282863792974,7.371282863792974,7.377760129975224,7.377760129975224,7.384181681279842,7.384181681279842,7.39054741720823,7.39054741720823,7.396857206339143,7.396857206339143,7.403110940443318,7.403110940443318,7.409308511291494,7.409308511291494,7.415449795193086,7.415449795193086,7.421534683918834,7.421534683918834,7.427563069239476,7.427563069239476,7.43353484292575,7.43353484292575,7.439449889017734,7.439449889017734,7.445308099286166,7.445308099286166,7.451109380963108,7.451109380963108,7.456853610357974,7.456853610357974,7.46254070243349,7.46254070243349,7.46817053349907,7.46817053349907,7.473743010786776,7.473743010786776,7.479258026067345,7.479258026067345,7.484715486572843,7.484715486572843,7.490115291804664,7.490115291804664,7.495457341264214,7.495457341264214,7.500741542183552,7.500741542183552,7.505967786333414,7.505967786333414,7.511135980945867,7.511135980945867,7.51624604098363,7.51624604098363,7.521297865948105,7.521297865948105,7.526291363071354,7.526291363071354,7.531226447316098,7.531226447316098,7.536103025914401,7.536103025914401,7.540920998367663,7.540920998367663,7.545680295099929,7.545680295099929,7.5503808156126,7.5503808156126,7.555022474868398,7.555022474868398,7.559605195560709,7.559605195560709,7.564128884921595,7.564128884921595,7.568593473375102,7.568593473375102,7.572998860422628,7.572998860422628,7.577344984218884,7.577344984218884,7.581631744265267,7.581631744265267,7.585859086447151,7.585859086447151,7.59002691026593,7.59002691026593,7.594135153876316,7.594135153876316,7.598183739971692,7.598183739971692,7.602172591245444,7.602172591245444,7.606101630390955,7.606101630390955,7.609970795562934,7.609970795562934,7.613780009454767,7.613780009454767,7.617529202490496,7.617529202490496,7.621218305094173,7.621218305094173,7.624847255420502,7.624847255420502,7.6284159761628665,7.6284159761628665,7.63192441320664,7.63192441320664,7.635372496975867,7.635372496975867,7.638760165625253,7.638760165625253,7.642087349578846,7.642087349578846,7.645354002452677,7.645354002452677,7.6485600469401325,7.6485600469401325,7.651705436657242,7.651705436657242,7.65479010975871,7.65479010975871,7.657814012129908,7.657814012129908,7.660777081925547,7.660777081925547,7.663679272761655,7.663679272761655,7.666520522792938,7.666520522792938,7.66930078563543,7.66930078563543,7.6720200071745,7.6720200071745,7.674678141026176,7.674678141026176,7.677275140806492,7.677275140806492,7.679810952400815,7.679810952400815,7.682285521694517,7.682285521694517,7.684698825495611,7.684698825495611,7.687050794228144,7.687050794228144,7.689341404700131,7.689341404700131,7.6915706027969435,7.6915706027969435,7.693738357595932,7.693738357595932,7.695844614982468,7.695844614982468,7.697889351764566,7.697889351764566,7.699872521558258,7.699872521558258,7.701794085710234,7.701794085710234,7.703654013297851,7.703654013297851,7.705452265667799,7.705452265667799,7.707188819628095,7.707188819628095,7.70886363652543,7.70886363652543,7.7104766854371585,7.7104766854371585,7.712027935440634,7.712027935440634,7.713517355613211,7.713517355613211,7.714944930493567,7.714944930493567,7.716310621428393,7.716310621428393,7.717614405225706,7.717614405225706,7.718856266424181,7.718856266424181,7.720036174101172,7.720036174101172,7.721154105064695,7.721154105064695,7.72221004385343,7.72221004385343,7.723203967275387,7.723203967275387,7.724135867599909,7.724135867599909,7.725005706173684,7.725005706173684,7.725813490727378,7.725813490727378,7.7265591903383415,7.7265591903383415,7.727242797275916,7.727242797275916,7.727864296078775,7.727864296078775,7.728423686746923,7.728423686746923,7.728920938357708,7.728920938357708,7.729356058641794,7.729356058641794,7.729729032137862,7.729729032137862,7.7300398511152455,7.7300398511152455,7.730288515573945,7.730288515573945,7.730475025513964,7.730475025513964,7.730599357743314,7.730599357743314,7.730661527723319,7.730661527723319,7.730661527723321,7.730661527723321,7.730599357743314,7.730599357743314,7.730475025513964,7.730475025513964,7.730288515573945,7.730288515573945,7.7300398511152455,7.7300398511152455,7.729729032137862,7.729729032137862,7.7293560586417955,7.7293560586417955,7.728920938357708,7.728920938357708,7.728423686746923,7.728423686746923,7.727864296078775,7.727864296078775,7.727242797275916,7.727242797275916,7.7265591903383415,7.7265591903383415,7.725813490727378,7.725813490727378,7.725005706173684,7.725005706173684,7.724135867599909,7.724135867599909,7.723203967275387,7.723203967275387,7.72221004385343,7.72221004385343,7.721154105064695,7.721154105064695,7.720036174101172,7.720036174101172,7.718856266424181,7.718856266424181,7.717614405225706,7.717614405225706,7.716310621428393,7.716310621428393,7.714944930493567,7.714944930493567,7.713517355613211,7.713517355613211,7.712027935440634,7.712027935440634,7.7104766854371585,7.7104766854371585,7.70886363652543,7.70886363652543,7.707188819628095,7.707188819628095,7.705452265667799,7.705452265667799,7.703654013297851,7.703654013297851,7.701794085710234,7.701794085710234,7.699872521558258,7.699872521558258,7.697889351764566,7.697889351764566,7.695844614982468,7.695844614982468,7.693738357595932,7.693738357595932,7.6915706027969435,7.6915706027969435,7.689341404700131,7.689341404700131,7.687050794228144,7.687050794228144,7.684698825495611,7.684698825495611,7.682285521694517,7.682285521694517,7.679810952400815,7.679810952400815,7.677275140806492,7.677275140806492,7.674678141026176,7.674678141026176,7.6720200071745,7.6720200071745,7.66930078563543,7.66930078563543,7.666520522792938,7.666520522792938,7.663679272761655,7.663679272761655,7.660777081925547,7.660777081925547,7.657814012129908,7.657814012129908,7.65479010975871,7.65479010975871,7.651705436657242,7.651705436657242,7.6485600469401325,7.6485600469401325,7.645354002452677,7.645354002452677,7.642087349578846,7.642087349578846,7.638760165625253,7.638760165625253,7.635372496975867,7.635372496975867,7.63192441320664,7.63192441320664,7.628415976162866,7.628415976162866,7.624847255420502,7.624847255420502,7.621218305094173,7.621218305094173,7.617529202490497,7.617529202490497,7.613780009454766,7.613780009454766,7.609970795562934,7.609970795562934,7.606101630390956,7.606101630390956,7.602172591245444,7.602172591245444,7.598183739971692,7.598183739971692,7.594135153876316,7.594135153876316,7.59002691026593,7.59002691026593,7.585859086447151,7.585859086447151,7.581631744265267,7.581631744265267,7.577344984218884,7.577344984218884,7.572998860422628,7.572998860422628,7.568593473375102,7.568593473375102,7.564128884921595,7.564128884921595,7.559605195560709,7.559605195560709,7.555022474868399,7.555022474868399,7.5503808156126,7.5503808156126,7.545680295099928,7.545680295099928,7.540920998367662,7.540920998367662,7.536103025914401,7.536103025914401,7.531226447316097,7.531226447316097,7.526291363071354,7.526291363071354,7.521297865948106,7.521297865948106,7.51624604098363,7.51624604098363,7.511135980945868,7.511135980945868,7.505967786333414,7.505967786333414,7.500741542183551,7.500741542183551,7.495457341264213,7.495457341264213,7.490115291804664,7.490115291804664,7.484715486572842,7.484715486572842,7.479258026067345,7.479258026067345,7.473743010786776,7.473743010786776,7.4681705334990705,7.4681705334990705,7.46254070243349,7.46254070243349,7.4568536103579754,7.4568536103579754,7.451109380963107,7.451109380963107,7.445308099286166,7.445308099286166,7.439449889017734,7.439449889017734,7.43353484292575,7.43353484292575,7.427563069239476,7.427563069239476,7.421534683918834,7.421534683918834,7.415449795193086,7.415449795193086,7.409308511291494,7.409308511291494,7.403110940443318,7.403110940443318,7.396857206339143,7.396857206339143,7.39054741720823,7.39054741720823,7.384181681279842,7.384181681279842,7.377760129975223,7.377760129975223,7.371282863792974,7.371282863792974,7.36475000642368,7.36475000642368,7.358161681557923,7.358161681557923,7.351518005155628,7.351518005155628,7.34481910090738,7.34481910090738,7.3380650847731,7.3380650847731,7.3312560804433735,7.3312560804433735,7.324392211608784,7.324392211608784,7.3174736096905795,7.3174736096905795,7.310500390648682,7.310500390648682,7.303472693634997,7.303472693634997,7.296390634609448,7.296390634609448,7.289254344993284,7.289254344993284,7.282063956207749,7.282063956207749,7.2748195919434275,7.2748195919434275,7.2675213913522265,7.2675213913522265,7.260169485855393,7.260169485855393,7.252764006874171,7.252764006874171,7.2453050935604715,7.2453050935604715,7.237792869604874,7.237792869604874,7.230227481889952,7.230227481889952,7.222609054106289,7.222609054106289,7.214937740867114,7.214937740867114,7.207213673593674,7.207213673593674,7.199436983707214,7.199436983707214,7.191607825820967,7.191607825820967,7.183726331356175,7.183726331356175,7.175792647195412,7.175792647195412,7.167806920221242,7.167806920221242,7.159769281854914,7.159769281854914,7.151679886709659,7.151679886709659,7.143538881668045,7.143538881668045,7.135346413612639,7.135346413612639,7.127102621695351,7.127102621695351,7.118807660529412,7.118807660529412,7.11046168472805,7.11046168472805,7.102064833443176,7.102064833443176,7.0936172690186785,7.0936172690186785,7.085119130606468,7.085119130606468,7.076570588281097,7.076570588281097,7.06797178119447,7.06797178119447,7.059322863959824,7.059322863959824,7.050624006651706,7.050624006651706,7.041875348422027,7.041875348422027,7.0330770593453416,7.0330770593453416,7.024229286304215,7.024229286304215,7.015332199373204,7.015332199373204,7.006385945434878,7.006385945434878,6.997390694563788,6.997390694563788,6.988346609103827,6.988346609103827,6.979253851398889,6.979253851398889,6.97011256833154,6.97011256833154,6.960922945437659,6.960922945437659,6.951685137330474,6.951685137330474,6.94239930635388,6.94239930635388,6.933065622582431,6.933065622582431,6.923684248360014,6.923684248360014,6.914255361491852,6.914255361491852,6.90477912432183,6.90477912432183,6.895255699193843,6.895255699193843,6.8856852716437675,6.8856852716437675,6.876067996284833,6.876067996284833,6.866404058652918,6.866404058652918,6.856693621091916,6.856693621091916,6.846936861407036,6.846936861407036,6.837133949672838,6.837133949672838,6.827285063694534,6.827285063694534,6.81739038127734,6.81739038127734,6.807450072495807,6.807450072495807,6.797464322885817,6.797464322885817,6.78743330252192,6.78743330252192,6.777357189209332,6.777357189209332,6.767236160753267,6.767236160753267,6.757070410420265,6.757070410420265,6.746860100554217,6.746860100554217,6.73660542442166,6.73660542442166,6.726306559827814,6.726306559827814,6.715963684577886,6.715963684577886,6.705576991938422,6.705576991938422,6.695146659714633,6.695146659714633,6.684672873442397,6.684672873442397,6.674155826388252,6.674155826388252,6.66359568862675,6.66359568862675,6.652992653424434,6.652992653424434,6.6423469140478355,6.6423469140478355,6.631658656032837,6.631658656032837,6.620928064915311,6.620928064915311,6.610155333961798,6.610155333961798,6.599340648708173,6.599340648708173,6.588484194690316,6.588484194690316,6.577586180636083,6.577586180636083,6.566646784350694,6.566646784350694,6.555666206831346,6.555666206831346,6.544644633613918,6.544644633613918,6.533582265695607,6.533582265695607,6.52247928861229,6.52247928861229,6.511335903361169,6.511335903361169,6.500152310939443,6.500152310939443,6.488928696882986,6.488928696882986,6.477665262189001,6.477665262189001,6.4663622078546865,6.4663622078546865,6.455019734877242,6.455019734877242,6.443638028792543,6.443638028792543,6.432217298328454,6.432217298328454,6.4207577367515105,6.4207577367515105,6.409259560520234,6.409259560520234,6.397722947439845,6.397722947439845,6.386148121699522,6.386148121699522,6.374535268835146,6.374535268835146,6.362884597574573,6.362884597574573,6.35119630891501,6.35119630891501,6.339470611584313,6.339470611584313,6.327707706579683,6.327707706579683,6.315907802628982,6.315907802628982,6.3040711007294075,6.3040711007294075,6.292197801878162,6.292197801878162,6.280288122533767,6.280288122533767,6.268342271424082,6.268342271424082,6.25636044181565,6.25636044181565,6.244342850166988,6.244342850166988,6.232289705205961,6.232289705205961,6.220201223391091,6.220201223391091,6.208077597988916,6.208077597988916,6.195919045457959,6.195919045457959,6.183725782256742,6.183725782256742,6.171498017113126,6.171498017113126,6.159235958754975,6.159235958754975,6.146939815910146,6.146939815910146,6.134609805037166,6.134609805037166,6.122246142594555,6.122246142594555,6.109849029579514,6.109849029579514,6.097418690181226,6.097418690181226,6.084955340858215,6.084955340858215,6.072459190338342,6.072459190338342,6.059930447349468,6.059930447349468,6.047369336080778,6.047369336080778,6.034776072990793,6.034776072990793,6.022150874538037,6.022150874538037,6.0094939494503725,6.0094939494503725,5.996805521916983,5.996805521916983,5.984085808396388,5.984085808396388,5.971335025347115,5.971335025347115,5.958553389227685,5.958553389227685,5.94574111649662,5.94574111649662,5.9328984390737665,5.9328984390737665,5.920025557956325,5.920025557956325,5.90712270506414,5.90712270506414,5.894190104586396,5.894190104586396,5.881227965250955,5.881227965250955,5.868236511247001,5.868236511247001,5.855215966763717,5.855215966763717,5.8421665482596286,5.8421665482596286,5.829088479923917,5.829088479923917,5.815981993676431,5.815981993676431,5.802847290514367,5.802847290514367,5.789684617818897,5.789684617818897,5.776494176587219,5.776494176587219,5.7632762064698415,5.7632762064698415,5.750030923925285,5.750030923925285,5.736758553142736,5.736758553142736,5.723459318311378,5.723459318311378,5.710133443620397,5.710133443620397,5.696781160989637,5.696781160989637,5.68340268687762,5.68340268687762,5.669998245473531,5.669998245473531,5.656568076427878,5.656568076427878,5.643112388468524,5.643112388468524,5.62963141351531,5.62963141351531,5.616125383488086,5.616125383488086,5.602594522576035,5.602594522576035,5.5890390549683415,5.5890390549683415,5.575459204854189,5.575459204854189,5.561855211884085,5.561855211884085,5.548227292516553,5.548227292516553,5.534575678671439,5.534575678671439,5.520900594537927,5.520900594537927,5.507202279766523,5.507202279766523,5.493480950815751,5.493480950815751,5.479736839605459,5.479736839605459,5.465970178055488,5.465970178055488,5.452181190355027,5.452181190355027,5.4383701084239195,5.4383701084239195,5.424537164182009,5.424537164182009,5.410682581818485,5.410682581818485,5.396806600983853,5.396806600983853,5.3829094381366325,5.3829094381366325,5.368991332927334,5.368991332927334,5.355052509545143,5.355052509545143,5.341093207640563,5.341093207640563,5.327113643672121,5.327113643672121,5.313114065020981,5.313114065020981,5.29909468814567,5.29909468814567,5.285055752696695,5.285055752696695,5.270997490593898,5.270997490593898,5.256920118295806,5.256920118295806,5.242823883183587,5.242823883183587,5.228709017177085,5.228709017177085,5.214575736734825,5.214575736734825,5.200424289237974,5.200424289237974,5.186254898875716,5.186254898875716,5.172067797567901,5.172067797567901,5.15786321723437,5.15786321723437,5.14364138979497,5.14364138979497,5.129402554900211,5.129402554900211,5.1151469290086125,5.1151469290086125,5.100874751770682,5.100874751770682,5.0865862628369305,5.0865862628369305,5.072281686396539,5.072281686396539,5.057961254369354,5.057961254369354,5.043625198675222,5.043625198675222,5.0292737589646475,5.0292737589646475,5.014907159426819,5.014907159426819,5.0005256319815805,5.0005256319815805,4.9861294162794385,4.9861294162794385,4.971718736509579,4.971718736509579,4.957293832322509,4.957293832322509,4.9428549356380715,4.9428549356380715,4.928402270645455,4.928402270645455,4.9139360769951645,4.9139360769951645,4.899456586607045,4.899456586607045,4.8849640236702845,4.8849640236702845,4.870458635566049,4.870458635566049,4.855940638752861,4.855940638752861,4.841410280611891,4.841410280611891,4.82686777760166,4.82686777760166,4.812313369372676,4.812313369372676,4.7977472878447855,4.7977472878447855,4.783169772668497,4.783169772668497,4.76858104030233,4.76858104030233,4.753981330396795,4.753981330396795,4.739370882602397,4.739370882602397,4.72474991337766,4.72474991337766,4.710118662373091,4.710118662373091,4.695477361508536,4.695477361508536,4.680826234973179,4.680826234973179,4.66616553014819,4.66616553014819,4.65149546349209,4.65149546349209,4.636816266924726,4.636816266924726,4.622128180096605,4.622128180096605,4.6074314271969135,4.6074314271969135,4.592726247876154,4.592726247876154,4.578012858592854,4.578012858592854,4.563291491266856,4.563291491266856,4.5485623932793295,4.5485623932793295,4.533825773358139,4.533825773358139,4.519081878884449,4.519081878884449,4.504330926316785,4.504330926316785,4.489573155305653,4.489573155305653,4.474808790040238,4.474808790040238,4.460038054709726,4.460038054709726,4.445261196695282,4.445261196695282,4.430478424724769,4.430478424724769,4.415689978448696,4.415689978448696,4.400896082056245,4.400896082056245,4.386096967467262,4.386096967467262,4.371292858870934,4.371292858870934,4.356483988187105,4.356483988187105,4.341670579604958,4.341670579604958,4.32685286504434,4.32685286504434,4.312031068694437,4.312031068694437,4.29720541474443,4.29720541474443,4.282376142844828,4.282376142844828,4.267543461723492,4.267543461723492,4.252707611030932,4.252707611030932,4.2378688072256665,4.2378688072256665,4.223027282227543,4.223027282227543,4.208183267956408,4.208183267956408,4.1933369731401235,4.1933369731401235,4.178488637429194,4.178488637429194,4.163638477282145,4.163638477282145,4.14878672461882,4.14878672461882,4.133933595897744,4.133933595897744,4.119079323038762,4.119079323038762,4.104224122500397,4.104224122500397,4.089368218471832,4.089368218471832,4.0745118351422525,4.0745118351422525,4.059655196700843,4.059655196700843,4.044798527336787,4.044798527336787,4.029942043508608,4.029942043508608,4.015085977136152,4.015085977136152,4.000230536947279,4.000230536947279,3.9853759471311743,3.9853759471311743,3.9705224396076826,3.9705224396076826,3.955670223104668,3.955670223104668,3.94081951408065,3.94081951408065,3.9259705521861363,3.9259705521861363,3.9111235384183294,3.9111235384183294,3.8962786969664105,3.8962786969664105,3.8814362442889037,3.8814362442889037,3.8665964045749943,3.8665964045749943,3.851759394283204,3.851759394283204,3.8369254298720548,3.8369254298720548,3.822094727800071,3.822094727800071,3.807267504525774,3.807267504525774,3.792443976507688,3.792443976507688,3.7776243602043342,3.7776243602043342,3.762808872074237,3.762808872074237,3.747997728575918,3.747997728575918,3.7331911384372387,3.7331911384372387,3.7183893258473835,3.7183893258473835,3.703592499534214,3.703592499534214,3.688800868225591,3.688800868225591,3.6740146561106988,3.6740146561106988,3.659234064186738,3.659234064186738,3.644459316642891,3.644459316642891,3.6296906144763588,3.6296906144763588,3.614928166415003,3.614928166415003,3.6001721966480074,3.6001721966480074,3.5854229139032334,3.5854229139032334,3.5706805191778805,3.5706805191778805,3.5559452289304714,3.5559452289304714,3.541217244158206,3.541217244158206,3.526496789050269,3.526496789050269,3.5117840491425363,3.5117840491425363,3.4970792563548545,3.4970792563548545,3.4823826039537606,3.4823826039537606,3.467694292936456,3.467694292936456,3.453014547492123,3.453014547492123,3.4383435608873025,3.4383435608873025,3.4236815418498527,3.4236815418498527,3.409028691376976,3.409028691376976,3.3943852181965313,3.3943852181965313,3.3797513233057206,3.3797513233057206,3.3651272077017413,3.3651272077017413,3.350513087843118,3.350513087843118,3.3359091492657265,3.3359091492657265,3.3213155929667666,3.3213155929667666,3.3067326354047615,3.3067326354047615,3.292160469846248,3.292160469846248,3.277599289557768,3.277599289557768,3.2630492955365167,3.2630492955365167,3.2485106965103574,3.2485106965103574,3.233983685745828,3.233983685745828,3.219468456509467,3.219468456509467,3.2049652097984747,3.2049652097984747,3.1904741466100495,3.1904741466100495,3.175995452480069,3.175995452480069,3.1615293284057318,3.1615293284057318,3.147075975384239,3.147075975384239,3.1326355789514664,3.1326355789514664,3.1182083401046143,3.1182083401046143,3.1037944443795586,3.1037944443795586,3.0893940850428385,3.0893940850428385,3.075007463091653,3.075007463091653,3.0606347640618785,3.0606347640618785,3.046276173489393,3.046276173489393,3.0319318923713947,3.0319318923713947,3.0176020985130996,3.0176020985130996,3.0032869929117063,3.0032869929117063,2.9889867533724317,2.9889867533724317,2.974701573161813,2.974701573161813,2.9604316455463886,2.9604316455463886,2.9461771406007116,2.9461771406007116,2.931938259321982,2.931938259321982,2.9177151795154153,2.9177151795154153,2.9035080867168883,2.9035080867168883,2.889317166462277,2.889317166462277,2.8751426042874586,2.8751426042874586,2.8609845779976473,2.8609845779976473,2.846843273128721,2.846843273128721,2.8327188674858945,2.8327188674858945,2.8186115388743826,2.8186115388743826,2.8045214805607235,2.8045214805607235,2.7904488626194706,2.7904488626194706,2.7763938551251783,2.7763938551251783,2.762356659075046,2.762356659075046,2.7483374290823037,2.7483374290823037,2.734336350682829,2.734336350682829,2.7203536016818366,2.7203536016818366,2.706389359884541,2.706389359884541,2.6924437953654965,2.6924437953654965,2.678517078199257,2.678517078199257,2.664609393921698,2.664609393921698,2.650720897146051,2.650720897146051,2.6368517811388545,2.6368517811388545,2.6230021927826765,2.6230021927826765,2.609172325344056,2.609172325344056,2.5953623334362232,2.5953623334362232,2.5815723948643936,2.5815723948643936,2.567802671972459,2.567802671972459,2.5540533348349728,2.5540533348349728,2.540324553526489,2.540324553526489,2.5266164826602378,2.5266164826602378,2.512929300041434,2.512929300041434,2.499263168013971,2.499263168013971,2.4856182489217398,2.4856182489217398,2.4719947051086324,2.4719947051086324,2.4583926989185425,2.4583926989185425,2.4448123926953595,2.4448123926953595,2.431253941052316,2.431253941052316,2.4177175140639644,2.4177175140639644,2.404203274074198,2.404203274074198,2.3907113679655847,2.3907113679655847,2.3772419580820174,2.3772419580820174,2.363795206767388,2.363795206767388,2.350371260904265,2.350371260904265,2.3369702828365413,2.3369702828365413,2.3235924349081083,2.3235924349081083,2.3102378562708736,2.3102378562708736,2.296906701538068,2.296906701538068,2.2835991330535834,2.2835991330535834,2.270315297699989,2.270315297699989,2.257055350090515,2.257055350090515,2.2438194371077316,2.2438194371077316,2.230607705634206,2.230607705634206,2.2174203025525085,2.2174203025525085,2.2042573902065308,2.2042573902065308,2.191119100017519,2.191119100017519,2.178005578868042,2.178005578868042,2.164916989101992,2.164916989101992,2.1518534544099532,2.1518534544099532,2.138815137135818,2.138815137135818,2.1258021687008317,2.1258021687008317,2.1128146882569028,2.1128146882569028,2.099852850417261,2.099852850417261,2.0869167866031533,2.0869167866031533,2.074006643697147,2.074006643697147,2.0611225453898285,2.0611225453898285,2.0482646540250884,2.0482646540250884,2.0354330855628504,2.0354330855628504,2.0226279868856833,2.0226279868856833,2.0098494894148335,2.0098494894148335,1.9970977323022079,1.9970977323022079,1.9843728469690527,1.9843728469690527,1.9716749725672749,1.9716749725672749,1.9590042327874597,1.9590042327874597,1.946360766781514,1.946360766781514,1.9337446982400233,1.9337446982400233,1.9211561663148937,1.9211561663148937,1.908595286966049,1.908595286966049,1.896062207076058,1.896062207076058,1.8835570348741821,1.8835570348741821,1.871079909512329,1.871079909512329,1.8586309546810826,1.8586309546810826,1.846210286340366,1.846210286340366,1.8338180436420872,1.8338180436420872,1.8214543425461687,1.8214543425461687,1.8091193067431948,1.8091193067431948,1.796813052193089,1.796813052193089,1.7845357025864348,1.7845357025864348,1.7722873893444788,1.7722873893444788,1.7600682129658212,1.7600682129658212,1.7478782971410458,1.7478782971410458,1.7357177732913989,1.7357177732913989,1.7235867341848183,1.7235867341848183,1.7114853189732127,1.7114853189732127,1.6994136281551808,1.6994136281551808,1.6873717776906458,1.6873717776906458,1.6753598758088695,1.6753598758088695,1.6633780539310974,1.6633780539310974,1.651426397094606,1.651426397094606,1.6395050367206425,1.6395050367206425,1.6276140733078055,1.6276140733078055,1.6157536150853575,1.6157536150853575,1.60392377801322,1.60392377801322,1.5921246548593329,1.5921246548593329,1.5803563615836178,1.5803563615836178,1.5686189986846752,1.5686189986846752,1.5569126743917667,1.5569126743917667,1.5452374969341534,1.5452374969341534,1.533593551349112,1.533593551349112,1.5219809613272264,1.5219809613272264,1.510399811905775,1.510399811905775,1.4988502035833564,1.4988502035833564,1.487332244589232,1.487332244589232,1.4758460276913408,1.4758460276913408,1.4643916533882821,1.4643916533882821,1.4529692144479947,1.4529692144479947,1.4415788036384165,1.4415788036384165,1.4302205214581478,1.4302205214581478,1.4188944606751257,1.4188944606751257,1.407600706326629,1.407600706326629,1.3963393666419175,1.3963393666419175,1.3851105111969453,1.3851105111969453,1.373914248220975,1.373914248220975,1.3627506627512815,1.3627506627512815,1.3516198398251427,1.3516198398251427,1.3405218644798353,1.3405218644798353,1.3294568294832971,1.3294568294832971,1.3184248198728055,1.3184248198728055,1.3074259129549761,1.3074259129549761,1.2964602014977464,1.2964602014977464,1.285527762807732,1.285527762807732,1.274628689652871,1.274628689652871,1.2637630438784566,1.2637630438784566,1.2529309182524255,1.2529309182524255,1.242132397812056,1.242132397812056,1.2313675444026397,1.2313675444026397,1.2206364507921148,1.2206364507921148,1.209939186556435,1.209939186556435,1.1992758367328777,1.1992758367328777,1.1886464554360736,1.1886464554360736,1.1780511354339598,1.1780511354339598,1.1674899463024913,1.1674899463024913,1.1569629576176215,1.1569629576176215,1.146470238955304,1.146470238955304,1.1360118676221542,1.1360118676221542,1.1255879054634643,1.1255879054634643,1.115198422055188,1.115198422055188,1.1048434869732793,1.1048434869732793,1.0945231697936915,1.0945231697936915,1.0842375323617173,1.0842375323617173,1.07398664425331,1.07398664425331,1.0637705673137619,1.0637705673137619,1.053589355657704,1.053589355657704,1.0434430865917517,1.0434430865917517,1.0333318142305352,1.0333318142305352,1.023255600419347,1.023255600419347,1.0132145070034788,1.0132145070034788,1.003208588097562,1.003208588097562,0.9932378978162272,0.9932378978162272,0.9833024980047664,0.9833024980047664,0.9734024505084719,0.9734024505084719,0.9635378094419742,0.9635378094419742,0.9537086134585812,0.9537086134585812,0.9439149321342466,0.9439149321342466,0.9341568195836011,0.9341568195836011,0.9244343144599521,0.9244343144599521,0.9147474708779306,0.9147474708779306,0.9050963429521672,0.9050963429521672,0.8954809847972927,0.8954809847972927,0.8859014273359529,0.8859014273359529,0.8763577324134404,0.8763577324134404,0.8668499464137239,0.8668499464137239,0.8573781002594499,0.8573781002594499,0.8479422557959105,0.8479422557959105,0.838542443945752,0.838542443945752,0.8291787110929432,0.8291787110929432,0.8198511036214535,0.8198511036214535,0.8105596524539289,0.8105596524539289,0.8013044117050002,0.8013044117050002,0.7920854045666518,0.7920854045666518,0.7829026774228532,0.7829026774228532,0.773756268926912,0.773756268926912,0.7646462169590691,0.7646462169590691,0.755572550122773,0.755572550122773,0.7465353062982645,0.7465353062982645,0.7375345187273886,0.7375345187273886,0.7285702214250558,0.7285702214250558,0.7196424445408459,0.7196424445408459,0.7107512205435379,0.7107512205435379,0.7018965795827112,0.7018965795827112,0.6930785502618136,0.6930785502618136,0.684297161184293,0.684297161184293,0.6755524401805305,0.6755524401805305,0.6668444135347755,0.6668444135347755,0.6581731067582111,0.6581731067582111,0.6495385461350863,0.6495385461350863,0.6409407540843198,0.6409407540843198,0.6323797545709624,0.6323797545709624,0.623855570013932,0.623855570013932,0.6153682220590811,0.6153682220590811,0.6069177300330638,0.6069177300330638,0.5985041140355999,0.5985041140355999,0.5901273941664095,0.5901273941664095,0.5817875866598815,0.5817875866598815,0.5734847100696038,0.5734847100696038,0.5652187790838332,0.5652187790838332,0.5569898099369589,0.5569898099369589,0.5487978173172382,0.5487978173172382,0.5406428151398611,0.5406428151398611,0.5325248150008205,0.5325248150008205,0.5244438292691744,0.5244438292691744,0.5163998695409155,0.5163998695409155,0.5083929458659036,0.5083929458659036,0.5004230675209326,0.5004230675209326,0.4924902430097301,0.4924902430097301,0.48459447928989147,0.48459447928989147,0.47673578409207834,0.47673578409207834,0.46891416360081983,0.46891416360081983,0.4611296216814467,0.4611296216814467,0.4533821637454222,0.4533821637454222,0.44567179288501063,0.44567179288501063,0.43799851219247676,0.43799851219247676,0.4303623224408869,0.4303623224408869,0.42276322517637305,0.42276322517637305,0.4152012203989356,0.4152012203989356,0.40767630733550797,0.40767630733550797,0.4001884844399581,0.4001884844399581,0.3927377493930875,0.3927377493930875,0.38532409910263143,0.38532409910263143,0.3779475289301933,0.3779475289301933,0.370608035010442,0.370608035010442,0.36330561038578224,0.36330561038578224,0.3560402496447511,0.3560402496447511,0.34881194428362067,0.34881194428362067,0.341620688117862,0.341620688117862,0.3344664695514826,0.3344664695514826,0.327349280853821,0.327349280853821,0.320269111201951,0.320269111201951,0.3132259482268143,0.3132259482268143,0.3062197803324184,0.3062197803324184,0.2992505951497051,0.2992505951497051,0.2923183772173512,0.2923183772173512,0.28542311339323206,0.28542311339323206,0.2785647882160247,0.2785647882160247,0.2717433846782738,0.2717433846782738,0.2649588857725239,0.2649588857725239,0.2582112744913197,0.2582112744913197,0.25150053228107355,0.25150053228107355,0.2448266390420654,0.2448266390420654,0.23818957467457533,0.23818957467457533,0.23158931907888336,0.23158931907888336,0.22502584983607102,0.22502584983607102,0.21849914452722002,0.21849914452722002,0.21200917996034563,0.21200917996034563,0.20555593217039717,0.20555593217039717,0.1991393764192577,0.1991393764192577,0.19275948719574423,0.19275948719574423,0.1864162374425415,0.1864162374425415,0.1801096008754001,0.1801096008754001,0.1738395496639387,0.1738395496639387,0.16760605443164348,0.16760605443164348,0.1614090865750667,0.1614090865750667,0.15524861517156227,0.15524861517156227,0.1491246100715503,0.1491246100715503,0.1430370388062524,0.1430370388062524,0.13698586967995618,0.13698586967995618,0.13097106945081713,0.13097106945081713,0.12499260487699071,0.12499260487699071,0.11905043962436773,0.11905043962436773,0.11314453967803743,0.11314453967803743,0.10727486793082448,0.10727486793082448,0.10144138882168591,0.10144138882168591,0.09564406447038017,0.09564406447038017,0.08988285545053351,0.08988285545053351,0.08415772465497058,0.08415772465497058,0.07846863033811911,0.07846863033811911,0.07281553353744505,0.07281553353744505,0.06719839250737612,0.06719839250737612,0.06161716542503345,0.06161716542503345,0.05607180969447203,0.05607180969447203,0.05056228210129392,0.05056228210129392,0.04508853858072841,0.04508853858072841,0.03965053444955187,0.03965053444955187,0.03424822432878115,0.03424822432878115,0.028881562066366898,0.028881562066366898,0.02355050089180689,0.02355050089180689,0.018254993338839346,0.018254993338839346,0.012994991245442943,0.012994991245442943,0.00777044575383683,0.00777044575383683,0.0025813072640966392,0.0025813072640966392,0.0025724743880402774,0.0025724743880402774,0.007690950116710744,0.007690950116710744,0.012774171469965826,0.012774171469965826,0.017822190784384063,0.017822190784384063,0.022835060868114362,0.022835060868114362,0.027812835294641094,0.027812835294641094,0.032755568333208196,0.032755568333208196,0.03766331494881914,0.03766331494881914,0.04253613057031705,0.04253613057031705,0.047374071476917856,0.047374071476917856,0.05217719456629042,0.05217719456629042,0.05694555719994327,0.05694555719994327,0.06167921774437094,0.06167921774437094,0.0663782347979878,0.0663782347979878,0.071042667809581,0.071042667809581,0.07567257692369725,0.07567257692369725,0.08026802298064276,0.08026802298064276,0.08482906689803035,0.08482906689803035,0.08935577044384564,0.08935577044384564,0.09384819700951316,0.09384819700951316,0.09830640998645745,0.09830640998645745,0.10273047199303686,0.10273047199303686,0.10712044796680821,0.10712044796680821,0.11147640284532838,0.11147640284532838,0.11579840233922031,0.11579840233922031,0.12008651293217319,0.12008651293217319,0.12434080110787611,0.12434080110787611,0.12856133489615051,0.12856133489615051,0.13274818155375176,0.13274818155375176,0.13690141065663353,0.13690141065663353,0.14102109023461726,0.14102109023461726,0.14510729063672292,0.14510729063672292,0.14916008221197027,0.14916008221197027,0.15317953608244556,0.15317953608244556,0.15716572337023477,0.15716572337023477,0.16111871674355616,0.16111871674355616,0.16503858887062822,0.16503858887062822,0.16892541164660307,0.16892541164660307,0.1727792608319638,0.1727792608319638,0.17660020909492868,0.17660020909492868,0.1803883321959806,0.1803883321959806,0.1841437051225366,0.1841437051225366,0.1878664044081456,0.1878664044081456,0.19155650658635678,0.19155650658635678,0.19521408819071934,0.19521408819071934,0.19883922652784847,0.19883922652784847,0.20243200122355795,0.20243200122355795,0.20599248958446306,0.20599248958446306,0.2095207712363775,0.2095207712363775,0.21301692580511503,0.21301692580511503,0.21648103368955557,0.21648103368955557,0.21991317528857893,0.21991317528857893,0.22331343254719738,0.22331343254719738,0.22668188663735692,0.22668188663735692,0.23001862027713585,0.23001862027713585,0.23332371618461267,0.23332371618461267,0.23659725707786552,0.23659725707786552,0.23983932722110524,0.23983932722110524,0.2430500108785424,0.2430500108785424,0.24622939308745379,0.24622939308745379,0.2493775581120501,0.2493775581120501,0.25249459253574036,0.25249459253574036,0.25558058216886775,0.25558058216886775,0.258635613594841,0.258635613594841,0.2616597749432019,0.2616597749432019,0.2646531520242932,0.2646531520242932,0.26761583451378873,0.26761583451378873,0.27054791054122973,0.27054791054122973,0.2734494682361578,0.2734494682361578,0.27632059804731274,0.27632059804731274,0.27916138965036835,0.27916138965036835,0.2819719327209982,0.2819719327209982,0.2847523184810084,0.2847523184810084,0.28750263892527117,0.28750263892527117,0.29022298372946026,0.29022298372946026,0.2929134472076462,0.2929134472076462,0.2955741198085688,0.2955741198085688,0.2982050958462989,0.2982050958462989,0.30080646808877476,0.30080646808877476,0.3033783308500669,0.3033783308500669,0.3059207768981138,0.3059207768981138,0.30843390209311833,0.30843390209311833,0.3109178015222173,0.3109178015222173,0.3133725694994814,0.3133725694994814,0.31579830265817965,0.31579830265817965,0.3181950960854489,0.3181950960854489,0.3205630479606904,0.3205630479606904,0.32290225414410734,0.32290225414410734,0.3252128120420348,0.3252128120420348,0.3274948190608081,0.3274948190608081,0.3297483741528947,0.3297483741528947,0.33197357472462996,0.33197357472462996,0.3341705197284814,0.3341705197284814,0.33633930966304887,0.33633930966304887,0.33848004270773374,0.33848004270773374,0.3405928185880698,0.3405928185880698,0.3426777385757229,0.3426777385757229,0.344734902396227,0.344734902396227,0.34676441054818175,0.34676441054818175,0.3487663658493856,0.3487663658493856,0.35074086879843835,0.35074086879843835,0.35268802144007216,0.35268802144007216,0.35460792659208523,0.35460792659208523,0.35650068629920995,0.35650068629920995,0.35836640260617847,0.35836640260617847,0.36020518064998736,0.36020518064998736,0.362017122475369,0.362017122475369,0.3638023324462539,0.3638023324462539,0.36556091492657267,0.36556091492657267,0.3672929735071898,0.3672929735071898,0.36899861409816836,0.36899861409816836,0.3706779410634387,0.3706779410634387,0.37233105953999784,0.37233105953999784,0.3739580754379086,0.3739580754379086,0.3755590954403002,0.3755590954403002,0.377134223911103,0.377134223911103,0.37868356907957856,0.37868356907957856,0.38020723608272367,0.38020723608272367,0.3817053339228659,0.3817053339228659,0.38317796773700186,0.38317796773700186,0.3846252465274591,0.3846252465274591,0.38604727697736696,0.38604727697736696,0.3874441680890528,0.3874441680890528,0.38881602809177795,0.38881602809177795,0.3901629644417378,0.3901629644417378,0.3914850869143259,0.3914850869143259,0.3927825045118699,0.3927825045118699,0.39405532546363115,0.39405532546363115,0.3953036603180695,0.3953036603180695,0.3965276180775124,0.3965276180775124,0.39772730929041983,0.39772730929041983,0.39890284373218543,0.39890284373218543,0.4000543319512691,0.4000543319512691,0.4011818837230644,0.4011818837230644,0.40228561036909743,0.40228561036909743,0.40336562321089414,0.40336562321089414,0.40442203279691447,0.40442203279691447,0.40545495122175046,0.40545495122175046,0.40646448903386195,0.40646448903386195,0.40745075910090744,0.40745075910090744,0.40841387197134654,0.40841387197134654,0.4093539412859038,0.4093539412859038,0.4102710775930391,0.4102710775930391,0.41116539530654295,0.41116539530654295,0.4120370057479415,0.4120370057479415,0.41288602178489303,0.41288602178489303,0.41371255628505565,0.41371255628505565,0.414516722889154,0.414516722889154,0.41529863523791244,0.41529863523791244,0.41605840542592326,0.41605840542592326,0.41679614786697705,0.41679614786697705,0.417511975428732,0.417511975428732,0.4182060032980448,0.4182060032980448,0.41887834434257404,0.41887834434257404,0.41952911374917623,0.41952911374917623,0.4201584243855098,0.4201584243855098,0.4207663914384314,0.4207663914384314,0.42135312932173175,0.42135312932173175,0.4219187524492015,0.4219187524492015,0.4224633752346312,0.4224633752346312,0.4229871128648776,0.4229871128648776,0.4234900805267973,0.4234900805267973,0.4239723926341813,0.4239723926341813,0.424434164373886,0.424434164373886,0.42487551170583443,0.42487551170583443,0.42529654904381736,0.42529654904381736,0.4256973923477575,0.4256973923477575,0.42607815680451167,0.42607815680451167,0.42643895760093664,0.42643895760093664,0.42677991069695537,0.42677991069695537,0.4271011320524907,0.4271011320524907,0.4274027376274656,0.4274027376274656,0.42768484260873674,0.42768484260873674,0.42794756218316116,0.42794756218316116,0.4281910138567937,0.4281910138567937,0.42841531281649137,0.42841531281649137,0.42862057579524315,0.42862057579524315,0.4288069172068397,0.4288069172068397,0.4289744553304024,0.4289744553304024,0.42912330457972175,0.42912330457972175,0.42925358246085316,0.42925358246085316,0.4293654041606532,0.4293654041606532,0.42945888641211105,0.42945888641211105,0.42953414517514954,0.42953414517514954,0.42959129718275785,0.42959129718275785,0.429630459167925,0.429630459167925,0.42965174631750774,0.42965174631750774,0.4296552761375614,0.4296552761375614,0.42964116381494244,0.42964116381494244,0.4296095268557064,0.4296095268557064,0.4295604804467099,0.4295604804467099,0.4294941420940082,0.4294941420940082,0.4294106277575242,0.4294106277575242,0.4293100533971808,0.4293100533971808,0.429192534972901,0.429192534972901,0.4290581899907399,0.4290581899907399,0.4289071344106205,0.4289071344106205,0.4287394834193995,0.4287394834193995,0.4285553545231322,0.4285553545231322,0.4283548629086753,0.4283548629086753,0.4281381253090179,0.4281381253090179,0.4279052576840829,0.4279052576840829,0.42765637599379325,0.42765637599379325,0.4273915969711379,0.4273915969711379,0.4271110350299077,0.4271110350299077,0.4268148076761576,0.4268148076761576,0.42650303009674456,0.42650303009674456,0.42617581825159134,0.42617581825159134,0.425833288100621,0.425833288100621,0.425475554057624,0.425475554057624,0.4251027336286557,0.4251027336286557,0.4247149404544406,0.4247149404544406,0.42431229204103366,0.42431229204103366,0.42389490125609347,0.42389490125609347,0.42346288560567513,0.42346288560567513,0.4230163595035692,0.4230163595035692,0.4225554373635664,0.4225554373635664,0.42208023514558946,0.42208023514558946,0.4215908680364954,0.4215908680364954,0.42108744890394245,0.42108744890394245,0.42057009525398564,0.42057009525398564,0.4200389191812173,0.4200389191812173,0.4194940366455604,0.4194940366455604,0.4189355612877392,0.4189355612877392,0.4183636082946105,0.4183636082946105,0.41777829053383286,0.41777829053383286,0.41717972319226276,0.41717972319226276,0.4165680199106247,0.4165680199106247,0.41594329355657705,0.41594329355657705,0.4153056593169766,0.4153056593169766,0.41465522928641546,0.41465522928641546,0.4139921171056182,0.4139921171056182,0.413316436415309,0.413316436415309,0.4126283000831464,0.4126283000831464,0.41192782097678854,0.41192782097678854,0.41121511196389393,0.41121511196389393,0.4104902859121208,0.4104902859121208,0.40975345491606113,0.40975345491606113,0.40900473184337355,0.40900473184337355,0.4082442272425176,0.4082442272425176,0.40747205475421777,0.40747205475421777,0.4066883257000003,0.4066883257000003,0.405893151401391,0.405893151401391,0.40508664395298205,0.40508664395298205,0.4042689139032333,0.4042689139032333,0.4034400718006046,0.4034400718006046,0.4026002305127542,0.4026002305127542,0.40174949904200974,0.40174949904200974,0.4008879887098972,0.4008879887098972,0.40001580929181024,0.40001580929181024,0.39913307133620873,0.39913307133620873,0.39823988461848636,0.39823988461848636,0.39733635891403674,0.39733635891403674,0.3964226032251875,0.3964226032251875,0.3954987281003985,0.3954987281003985,0.39456484099586503,0.39456484099586503,0.3936210524600467,0.3936210524600467,0.3926674707222052,0.3926674707222052,0.39170420323853544,0.39170420323853544,0.39073135901136524,0.39073135901136524,0.3897490454968897,0.3897490454968897,0.38875737169743646,0.38875737169743646,0.38775644429613443,0.38775644429613443,0.38674636997611284,0.38674636997611284,0.38572725696663307,0.38572725696663307,0.3846992119508241,0.3846992119508241,0.38366234083874895,0.38366234083874895,0.3826167503135368,0.3826167503135368,0.3815625462852503,0.3815625462852503,0.38049983466395265,0.38049983466395265,0.37942872213277273,0.37942872213277273,0.3783493122825752,0.3783493122825752,0.3772617110234228,0.3772617110234228,0.37616602349231243,0.37616602349231243,0.3750623532801086,0.3750623532801086,0.373950805523808,0.373950805523808,0.3728314845873412,0.3728314845873412,0.37170449328850663,0.37170449328850663,0.3705699352181687,0.3705699352181687,0.369427913967192,0.369427913967192,0.36827853235337465,0.36827853235337465,0.36712189242144894,0.36712189242144894,0.36595809776227944,0.36595809776227944,0.3647872496475319,0.3647872496475319,0.3636094501219387,0.3636094501219387,0.36242479968409963,0.36242479968409963,0.3612334011518129,0.3612334011518129,0.36003535425061245,0.36003535425061245,0.3588307602521642,0.3588307602521642,0.35761971965506795,0.35761971965506795,0.35640233141179123,0.35640233141179123,0.355178696020934,0.355178696020934,0.35394891243496374,0.35394891243496374,0.35271307960634807,0.35271307960634807,0.35147129726062065,0.35147129726062065,0.3502236628041167,0.3502236628041167,0.3489702751893039,0.3489702751893039,0.3477112318225174,0.3477112318225174,0.3464466301100924,0.3464466301100924,0.34517656745836434,0.34517656745836434,0.3439011405006021,0.3439011405006021,0.34262044587007484,0.34262044587007484,0.3413345794269856,0.3413345794269856,0.34004363780460334,0.34004363780460334,0.338747716090065,0.338747716090065,0.33744690937050725,0.33744690937050725,0.33614131196000074,0.33614131196000074,0.3348310197187485,0.3348310197187485,0.3335161254146889,0.3335161254146889,0.33219672413495843,0.33219672413495843,0.33087290864749574,0.33087290864749574,0.32954477172023894,0.32954477172023894,0.32821240689419284,0.32821240689419284,0.3268759061642293,0.3268759061642293,0.3255353615252206,0.3255353615252206,0.324190864972039,0.324190864972039,0.32284250772649037,0.32284250772649037,0.3214903810103808,0.3214903810103808,0.3201345752724502,0.3201345752724502,0.31877518018837225,0.31877518018837225,0.3174122869799531,0.3174122869799531,0.31604598377673404,0.31604598377673404,0.314676361027455,0.314676361027455,0.3133035060885912,0.3133035060885912,0.3119275086358163,0.3119275086358163,0.31054845602560577,0.31054845602560577,0.30916643638750085,0.30916643638750085,0.3077815363049106,0.3077815363049106,0.3063938431343105,0.3063938431343105,0.3050034442321757,0.3050034442321757,0.3036104238627168,0.3036104238627168,0.30221486938240916,0.30221486938240916,0.30081686505546334,0.30081686505546334,0.29941649669222237,0.29941649669222237,0.29801384855689694,0.29801384855689694,0.29660900491369746,0.29660900491369746,0.29520205002683486,0.29520205002683486,0.2937930658413213,0.2937930658413213,0.2923821366213672,0.2923821366213672,0.2909693450850513,0.2909693450850513,0.2895547724043192,0.2895547724043192,0.2881385012972495,0.2881385012972495,0.28672061293578827,0.28672061293578827,0.2853011877188153,0.2853011877188153,0.2838803075913428,0.2838803075913428,0.28245805140611835,0.28245805140611835,0.28103449956202187,0.28103449956202187,0.27960973168486714,0.27960973168486714,0.27818382662740154,0.27818382662740154,0.27675686169624064,0.27675686169624064,0.2753289172902641,0.2753289172902641,0.273900069169955,0.273900069169955,0.2724703946419285,0.2724703946419285,0.2710399725589324,0.2710399725589324,0.2696088771353172,0.2696088771353172,0.2681771864507643,0.2681771864507643,0.26674497394655844,0.26674497394655844,0.2653123169293146,0.2653123169293146,0.26387928884031736,0.26387928884031736,0.2624459638939176,0.2624459638939176,0.26101241707753187,0.26101241707753187,0.25957872105937874,0.25957872105937874,0.25814494928074255,0.25814494928074255,0.2567111736367757,0.2567111736367757,0.2552774675687626,0.2552774675687626,0.2538439021987892,0.2538439021987892,0.2524105494220079,0.2524105494220079,0.25097747881437243,0.25097747881437243,0.24954476227103478,0.24954476227103478,0.24811246859488276,0.24811246859488276,0.24668066813493625,0.24668066813493625,0.2452494304671489,0.2452494304671489,0.24381882284827605,0.24381882284827605,0.2423889148542715,0.2423889148542715,0.24095977451495662,0.24095977451495662,0.23953146831402058,0.23953146831402058,0.23810406350821875,0.23810406350821875,0.2366776265812401,0.2366776265812401,0.2352522240167739,0.2352522240167739,0.23382792075237693,0.23382792075237693,0.23240478249867216,0.23240478249867216,0.2309828734201504,0.2309828734201504,0.22956225845436826,0.22956225845436826,0.22814300099275045,0.22814300099275045,0.22672516519978755,0.22672516519978755,0.22530881292077187,0.22530881292077187,0.22389400677406168,0.22389400677406168,0.22248080937801545,0.22248080937801545,0.22106928257792535,0.22106928257792535,0.2196594866729513,0.2196594866729513,0.21825148273531939,0.21825148273531939,0.21684533029112335,0.21684533029112335,0.2154410904125893,0.2154410904125893,0.2140388218527448,0.2140388218527448,0.21263858259155133,0.21263858259155133,0.21124043215510266,0.21124043215510266,0.20984442852336022,0.20984442852336022,0.20845062890321933,0.20845062890321933,0.2070590897285092,0.2070590897285092,0.205669868206125,0.205669868206125,0.20428301999682988,0.20428301999682988,0.20289860153445285,0.20289860153445285,0.20151666693362474,0.20151666693362474,0.2001372718551085,0.2001372718551085,0.19876047041353478,0.19876047041353478,0.19738631672353432,0.19738631672353432,0.19601486335360546,0.19601486335360546,0.19464616287224668,0.19464616287224668,0.19328026939408854,0.19328026939408854,0.1919172331684311,0.1919172331684311,0.19055710676377266,0.19055710676377266,0.18919994042941324,0.18919994042941324,0.18784578596078497,0.18784578596078497,0.1864946920610556,0.1864946920610556,0.18514670975259107,0.18514670975259107,0.1838018869654929,0.1838018869654929,0.18246027317599495,0.18246027317599495,0.18112191631419855,0.18112191631419855,0.17978686508327146,0.17978686508327146,0.17845516586718282,0.17845516586718282,0.17712686504990172,0.17712686504990172,0.17580201056152966,0.17580201056152966,0.17448064723990359,0.17448064723990359,0.17316282146899253,0.17316282146899253,0.1718485773135673,0.1718485773135673,0.17053795961146476,0.17053795961146476,0.16923101320052167,0.16923101320052167,0.16792778059937655,0.16792778059937655,0.16662830587280003,0.16662830587280003,0.16533263076636442,0.16533263076636442,0.16404079934484037,0.16404079934484037,0.16275285103460171,0.16275285103460171,0.16146882912735294,0.16146882912735294,0.16018877304946788,0.16018877304946788,0.1589127237734527,0.1589127237734527,0.15764072149874725,0.15764072149874725,0.15637280565172537,0.15637280565172537,0.15510901488569467,0.15510901488569467,0.1538493878539628,0.1538493878539628,0.15259396320983742,0.15259396320983742,0.15134277728742768,0.15134277728742768,0.15009586874004122,0.15009586874004122,0.1488532731287211,0.1488532731287211,0.14761502678757646,0.14761502678757646,0.1463811660507165,0.1463811660507165,0.14515172647918423,0.14515172647918423,0.14392674131482425,0.14392674131482425,0.14270624689174569,0.14270624689174569,0.14149027645179324,0.14149027645179324,0.14027886323681132,0.14027886323681132,0.13907204048864455,0.13907204048864455,0.13786983990300522,0.13786983990300522,0.1366722947217379,0.1366722947217379,0.13547943664055484,0.13547943664055484,0.13429129658210215,0.13429129658210215,0.1331079046959598,0.1331079046959598,0.13192929113170768,0.13192929113170768,0.13075548758505812,0.13075548758505812,0.1295865211133265,0.1295865211133265,0.12842242186609273,0.12842242186609273,0.12726321844680444,0.12726321844680444,0.12610893791277702,0.12610893791277702,0.12495960886745809,0.12495960886745809,0.12381525759509687,0.12381525759509687,0.12267591115300872,0.12267591115300872,0.1215415958254428,0.1215415958254428,0.12041233712358214,0.12041233712358214,0.11928816055860982,0.11928816055860982,0.11816909164170887,0.11816909164170887,0.11705515356486387,0.11705515356486387,0.11594637029312556,0.11594637029312556,0.11484276656461082,0.11484276656461082,0.11374436402517193,0.11374436402517193,0.11265118663985962,0.11265118663985962,0.11156325528146005,0.11156325528146005,0.11048059314195775,0.11048059314195775,0.10940322032107273,0.10940322032107273,0.10833115846465725,0.10833115846465725,0.1072644276724313,0.1072644276724313,0.10620304727104868,0.10620304727104868,0.10514703813329551,0.10514703813329551,0.10409641881275948,0.10409641881275948,0.10305120708996211,0.10305120708996211,0.10201142229155719,0.10201142229155719,0.10097708219806624,0.10097708219806624,0.09994820381694461,0.09994820381694461,0.09892480338258156,0.09892480338258156,0.09790689867549854,0.09790689867549854,0.09689450593008479,0.09689450593008479,0.09588763906153105,0.09588763906153105,0.09488631507729271,0.09488631507729271,0.09389054711949434,0.09389054711949434,0.092900350649459,0.092900350649459,0.09191574035544357,0.09191574035544357,0.0909367278334404,0.0909367278334404,0.08996332699864018,0.08996332699864018,0.08899555099316754,0.08899555099316754,0.08803341141301477,0.08803341141301477,0.08707692062724029,0.08707692062724029,0.08612608945877026,0.08612608945877026,0.08518092950359697,0.08518092950359697,0.08424145081158044,0.08424145081158044,0.08330766420564673,0.08330766420564673,0.08237957896258971,0.08237957896258971,0.08145720358613709,0.08145720358613709,0.08054054812614883,0.08054054812614883,0.0796296210863526,0.0796296210863526,0.07872443019740995,0.07872443019740995,0.07782498318998239,0.07782498318998239,0.07693128717627855,0.07693128717627855,0.07604334934581362,0.07604334934581362,0.07516117596042347,0.07516117596042347,0.07428477320463729,0.07428477320463729,0.07341414672183802,0.07341414672183802,0.07254930176887546,0.07254930176887546,0.07169024329337305,0.07169024329337305,0.0708369756245012,0.0708369756245012,0.06998950285951053,0.06998950285951053,0.06914782878642518,0.06914782878642518,0.06831195665212302,0.06831195665212302,0.06748188939425541,0.06748188939425541,0.06665762940932742,0.06665762940932742,0.06583917893923089,0.06583917893923089,0.06502653960740476,0.06502653960740476,0.0642197128826747,0.0642197128826747,0.06341869961541349,0.06341869961541349,0.06262350050138067,0.06262350050138067,0.06183411561788285,0.06183411561788285,0.06105054488761343,0.06105054488761343,0.06027278769211946,0.06027278769211946,0.059500843181028176,0.059500843181028176,0.05873470996282052,0.05873470996282052,0.057974386336750956,0.057974386336750956,0.057219870292847475,0.057219870292847475,0.056471159511911624,0.056471159511911624,0.05572825105629202,0.05572825105629202,0.05499114175641742,0.05499114175641742,0.05425982821079679,0.05425982821079679,0.05353430647679273,0.05353430647679273,0.05281457230254139,0.05281457230254139,0.05210062104964587,0.05210062104964587,0.05139244777048278,0.05139244777048278,0.05069004713089568,0.05069004713089568,0.049993413487501644,0.049993413487501644,0.049302540810384675,0.049302540810384675,0.04861742268309571,0.04861742268309571,0.04793805237995924,0.04793805237995924,0.04726442286607324,0.04726442286607324,0.04659652656538944,0.04659652656538944,0.04593435582455292,0.04593435582455292,0.04527790252636907,0.04527790252636907,0.04462715824441683,0.04462715824441683,0.043982114011128816,0.043982114011128816,0.04334276085893768,0.04334276085893768,0.042709089279129725,0.042709089279129725,0.04208108937645819,0.04208108937645819,0.04145875110106311,0.04145875110106311,0.0408420640165514,0.0408420640165514,0.040231017222690325,0.040231017222690325,0.0396255996646339,0.0396255996646339,0.03902579982369643,0.03902579982369643,0.03843160602657902,0.03843160602657902,0.037843006058836455,0.037843006058836455,0.037259987628716906,0.037259987628716906,0.03668253790332224,0.03668253790332224,0.036110643972447704,0.036110643972447704,0.035544292307435624,0.035544292307435624,0.034983469302321706,0.034983469302321706,0.034428161041915206,0.034428161041915206,0.03387835322449229,0.03387835322449229,0.03333403116179608,0.03333403116179608,0.0327951800109564,0.0327951800109564,0.03226178454257009,0.03226178454257009,0.031733829295314056,0.031733829295314056,0.03121129849863878,0.03121129849863878,0.030694175995461703,0.030694175995461703,0.03018244547408699,0.03018244547408699,0.029676090081672494,0.029676090081672494,0.029175093042682707,0.029175093042682707,0.028679437040435813,0.028679437040435813,0.028189104449023516,0.028189104449023516,0.027704077565230932,0.027704077565230932,0.027224338222003465,0.027224338222003465,0.026749867943060057,0.026749867943060057,0.02628064817481306,0.02628064817481306,0.02581665997714171,0.02581665997714171,0.02535788410069882,0.02535788410069882,0.024904300986910714,0.024904300986910714,0.02445589099989711,0.02445589099989711,0.02401263396263143,0.02401263396263143,0.023574509775393694,0.023574509775393694,0.02314149772001101,0.02314149772001101,0.022713577078310492,0.022713577078310492,0.02229072666827954,0.02229072666827954,0.021872925307905574,0.021872925307905574,0.021460151274029702,0.021460151274029702,0.021052382843493037,0.021052382843493037,0.02064959782929698,0.02064959782929698,0.02025177388982973,0.02025177388982973,0.019858888528866237,0.019858888528866237,0.019470918863648372,0.019470918863648372,0.01908784185680479,0.01908784185680479,0.01870963408443106,0.01870963408443106,0.018336272122622753,0.018336272122622753,0.017967732160942364,0.017967732160942364,0.017603990157032536,0.017603990157032536,0.0172450219139227,0.0172450219139227,0.016890802848109187,0.016890802848109187,0.016541308376088342,0.016541308376088342,0.016196513450516817,0.016196513450516817,0.015856393024051254,0.015856393024051254,0.015520921585508628,0.015520921585508628,0.015190073778319112,0.015190073778319112,0.014863823550153364,0.014863823550153364,0.01454214508060188,0.01454214508060188,0.014225012008108854,0.014225012008108854,0.013912397971118472,0.013912397971118472,0.01360427622154185,0.01360427622154185,0.013300620011290102,0.013300620011290102,0.013001402283047884,0.013001402283047884,0.012706595670273381,0.012706595670273381,0.012416172883731409,0.012416172883731409,0.012130106170347075,0.012130106170347075,0.011848367699738885,0.011848367699738885,0.011570929486912102,0.011570929486912102,0.011297763314952157,0.011297763314952157,0.011028840657718008,0.011028840657718008,0.010764133066375239,0.010764133066375239,0.010503611705556344,0.010503611705556344,0.010247247662587214,0.010247247662587214,0.009995011715567272,0.009995011715567272,0.00974687456528933,0.00974687456528933,0.009502806912546196,0.009502806912546196,0.00926277883967776,0.00926277883967776,0.009026760738250369,0.009026760738250369,0.008794722535990677,0.008794722535990677,0.008566634083318736,0.008566634083318736,0.00834246515334796,0.00834246515334796,0.00812218513265871,0.00812218513265871,0.007905763485137942,0.007905763485137942,0.007693169388638153,0.007693169388638153,0.007484371951435873,0.007484371951435873,0.00727934007307978,0.00727934007307978,0.007078042513966636,0.007078042513966636,0.006880447903071965,0.006880447903071965,0.006686524714758056,0.006686524714758056,0.00649624128423529,0.00649624128423529,0.006309565823023468,0.006309565823023468,0.006126466380298494,0.006126466380298494,0.005946910897007011,0.005946910897007011,0.005770867159482435,0.005770867159482435,0.005598302845828919,0.005598302845828919,0.005429185479537384,0.005429185479537384,0.005263482499061475,0.005263482499061475,0.005101161180510946,0.005101161180510946,0.004942188699496949,0.004942188699496949,0.00478653211567072,0.00478653211567072,0.0046341583649928955,0.0046341583649928955,0.004485034267464204,0.004485034267464204,0.00433912655031743,0.00433912655031743,0.0041964018170947736,0.0041964018170947736,0.0040568265631091725,0.0040568265631091725,0.003920367183174966,0.003920367183174966,0.0037869899716078946,0.0037869899716078946,0.0036566611299557574,0.0036566611299557574,0.003529346743806433,0.003529346743806433,0.003405012829171846,0.003405012829171846,0.0032836252861039973,0.0032836252861039973,0.00316514992961761,0.00316514992961761,0.003049552505151457,0.003049552505151457,0.0029367986499150463,0.0029367986499150463,0.002826853931541933,0.002826853931541933,0.0027196838248977357,0.0027196838248977357,0.0026152537352721163,0.0026152537352721163,0.0025135289906481244,0.0025135289906481244,0.002414474849432853,0.002414474849432853,0.0023180564772654596,0.0023180564772654596,0.0022242389934011295,0.0022242389934011295,0.002132987439788436,0.002132987439788436,0.0020442668042613184,0.0020442668042613184,0.001958041981885781,0.001958041981885781,0.0018742778445358405,0.0018742778445358405,0.0017929391867789004,0.0017929391867789004,0.0017139907490677324,0.0017139907490677324,0.001637397210009816,0.001637397210009816,0.0015631232250206475,0.0015631232250206475,0.0014911333644784443,0.0014911333644784443,0.0014213921678387796,0.0014213921678387796,0.0013538641436345788,0.0013538641436345788,0.0012885137462841376,0.0012885137462841376,0.0012253053760911219,0.0012253053760911219,0.0011642034178978718,0.0011642034178978718,0.001105172210162761,0.001105172210162761,0.0010481760604215157,0.0010481760604215157,0.0009931792452872164,0.0009931792452872164,0.0009401460104502972,0.0009401460104502972,0.0008890405784092079,0.0008890405784092079,0.0008398271562010753,0.0008398271562010753,0.0007924699044790564,0.0007924699044790564,0.0007469329854424415,0.0007469329854424415,0.0007031805357793371,0.0007031805357793371,0.000661176678262659,0.000661176678262659,0.0006208855217501328,0.0006208855217501328,0.0005822711658226898,0.0005822711658226898,0.0005452977000114013,0.0005452977000114013,0.0005099292068897435,0.0005099292068897435,0.00047612976748506004,0.00047612976748506004,0.00044386345818629784,0.00044386345818629784,0.0004130943561554697,0.0004130943561554697,0.0003837865416468534,0.0003837865416468534,0.00035590409955312327,0.00035590409955312327,0.00032941112017841707,0.00032941112017841707,0.0003042717046497983,0.0003042717046497983,0.0002804499625980585,0.0002804499625980585,0.00025791001988837814,0.00025791001988837814,0.00023661601552806257,0.00023661601552806257,0.00021653210707800458,0.00021653210707800458,0.00019762247219881707,0.00019762247219881707,0.000179851310196965,0.000179851310196965,0.00016318284357089824,0.00016318284357089824,0.00014758132110331555,0.00014758132110331555,0.00013301102249956202,0.00013301102249956202,0.00011943625374923179,0.00011943625374923179,0.00010682135640296214,0.00010682135640296214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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],"type":"scatter","name":"|B1|","yaxis":"y","legendgroup":"|B1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","marker":{"color":"#AB63FA"}},{"showlegend":true,"xaxis":"x","visible":"legendonly","name":"
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('807af5e2-0cce-48ee-9f0c-6a1d4a905ed6')) { + if (document.getElementById('ff074c82-7559-4fa4-97e9-a32ed8e5379c')) { Plotly.newPlot( - '807af5e2-0cce-48ee-9f0c-6a1d4a905ed6', + 'ff074c82-7559-4fa4-97e9-a32ed8e5379c', [{"y":[7.521221,28.654535,2.1523838,4.6478276,11.589707,3.9251208,7.713474,10.577215,26.181854,29.416779,11.8819275,13.360343,3.9535882,19.61393,14.043562,30.410164,27.643541,5.9096317,33.924076,18.10799,16.78215,11.905617,10.838159,28.298143,23.572739,6.5199184,28.156752,22.88273,7.4639454,15.230166,17.549294,16.683096,22.039988,10.455841,28.674818,32.505676,13.57966,13.085857,13.441586,21.928892,23.771103,17.025198,10.773672,28.452284,19.370111,17.802425,19.252687,23.13644,38.898907,24.886688,29.13205,16.563093,18.436987,20.318085,5.8508,1.7931343,15.430908,23.83213,19.005238,8.004346,9.75295,19.72646,32.89195,30.142757,28.959604,21.687965,11.288189,19.111786,25.17723,25.828444,2.9438064,18.422058,25.772303,10.905447,14.758005,0.5931637,12.214662,11.453047,13.914106,20.696737,16.435192,18.888414,10.100402,14.693119,3.813451,9.242573,14.491708,5.216642,16.671082,6.456437,16.341967,10.547142,8.791424,15.91948,23.099907,7.6779537,24.15569,19.114882,10.955027,24.39895,null,19.847933,6.6236086,18.207708,19.771776,22.903423,17.520603,7.5626774,14.344727,10.467022,5.929659,8.325525,27.456556,5.616958,25.168207,9.611738,23.784883,14.0513,1.5707271,5.1724663,11.493519,17.824009,14.040163,7.574846,13.246599,7.8705025,15.417185,26.438183,22.897295,7.7266526,12.634317,18.585278,43.692963,35.305275,15.594268,27.437584,21.712822,35.001812,46.20854,20.012426,5.8378906,24.560932,15.293841,18.58662,28.706295,32.55233,12.480455,9.219781,10.092938,2.9524698,8.235496,11.284607,7.7358522,10.708169,23.53234,18.91883,14.69791,29.822752,33.043015,24.315344,12.565965,22.413551,24.25118,29.184551,40.035114,19.69521,10.100975,30.047148,37.883553,33.399372,17.387705,12.952064,30.831673,21.195965,20.63368,32.597366,31.430569,34.212753,1.9359704,30.17439,21.19202,18.536419,23.840193,29.672878,7.153455,25.148523,6.43258,18.689726,21.241669,20.34846,11.342086,14.182813,4.988459,17.389965,9.449479,21.259869,11.325198,5.516761,14.1467705,21.418919,6.462093,null,2.6314037,4.1293297,12.839132,9.093342,7.222559,7.366737,3.2895792,18.20328,20.066801,11.242752,13.656973,9.684784,11.835551,9.7886505,4.4680133,21.786877,24.54742,16.556616,22.591894,8.124004,13.803197,15.579434,11.2415695,19.003448,12.543097,15.563915,20.654114,15.558886,26.94021,23.728048,31.939621,51.042572,34.05253,9.895451,21.538927,32.902557,58.56811,60.400414,29.634798,8.923459,11.296177,25.704784,30.88423,11.023831,18.72934,45.707684,27.409967,5.350478,20.469622,27.431963,14.169023,16.901735,43.181812,38.36784,32.56567,43.0512,26.690037,3.1986754,10.067237,18.166513,38.72671,45.05373,36.2861,22.68977,9.212889,13.102631,23.914412,38.71319,27.363752,20.096918,27.413595,7.979448,0.27510947,8.027143,1.5596509,16.444765,2.9663084,25.392782,17.699638,15.063063,5.0919433,9.84112,20.458118,8.339566,4.173379,4.934155,6.4252152,12.535374,23.12052,14.414905,11.177165,9.533239,20.384764,18.680141,19.042847,14.835556,10.608825,16.60743,11.672825,10.121132,null,19.048965,7.7664075,21.470333,11.437274,20.736341,14.32122,14.704654,21.605724,7.0016346,20.767725,1.3253789,16.187283,4.669241,12.126397,8.745344,6.034881,18.306921,13.137716,15.559266,1.7262284,5.225289,5.0364504,12.589682,9.525498,24.232172,13.043579,14.361377,27.071642,30.752256,11.030605,9.936299,20.268213,26.888458,28.53393,15.547799,27.534346,39.368946,8.259297,24.106056,41.69247,13.876358,27.429869,20.919815,32.166916,51.251217,41.579,30.204391,38.397144,38.24113,23.712496,29.451359,44.30038,32.775814,17.058996,35.123547,28.334137,5.8951225,7.415561,19.028864,35.488354,55.34037,58.168736,51.943924,31.14166,3.0989716,17.740456,20.837427,23.954893,34.647366,26.715263,24.607904,8.754399,11.825366,2.9546316,16.62407,18.392742,13.326935,15.161193,11.6075945,28.895866,18.686962,15.68016,26.763876,26.965847,15.721017,15.258678,13.4166975,6.352598,7.864815,5.0332317,11.724303,2.167154,10.525016,14.981699,21.980019,14.944537,12.594706,14.722945,20.085577,10.479105,null,23.557764,3.0211132,2.0236278,19.937193,15.466669,7.9350767,2.1173658,31.111393,28.85746,22.201668,5.279546,15.528677,15.407374,12.811258,26.75861,10.537,46.45161,22.210718,23.878925,34.134785,26.848942,9.876895,24.09991,33.300835,1.6066287,30.678009,18.269411,12.35287,4.4647775,16.41488,18.956226,13.755235,14.241073,16.273348,18.341175,18.895777,24.102102,34.229767,35.686764,31.548386,21.503174,15.351166,13.018342,29.24056,26.285522,21.912909,33.20228,49.009853,46.833866,39.8817,40.34761,36.146652,37.882492,48.192738,31.239653,20.159529,30.857233,18.258781,4.7887673,13.17696,34.68673,33.17987,6.281563,21.462387,9.462961,28.754822,28.766,14.243076,12.271085,16.411497,16.481205,21.643747,11.018038,4.57059,6.57512,16.566816,11.583698,5.398474,13.479668,16.952822,7.832339,3.3990955,16.371586,17.989342,11.404816,17.9583,14.819599,32.75879,20.976763,4.8955965,6.831344,20.196444,17.053726,13.114164,9.49558,22.667807,5.774562,20.288097,4.455391,21.93053,null,6.2430363,18.454165,9.043785,17.04039,13.998257,33.20426,19.007223,21.05675,30.297346,22.396564,23.088188,12.323627,14.452131,11.658925,16.744377,8.928243,23.906965,33.661263,16.1378,8.159863,6.674759,12.831103,10.249892,7.3915153,3.6542988,9.292087,3.3949652,11.996264,5.0220184,12.835005,35.798794,22.32878,6.3892903,7.4278817,22.401243,26.193653,44.5124,24.462763,2.9345357,14.719467,14.108727,12.248419,14.9887085,10.894422,7.0392733,12.239377,33.288513,33.696114,25.094063,37.65917,37.41829,22.288612,32.47555,38.812016,13.917188,1.7486141,12.822413,18.109285,9.970687,16.961721,14.357899,6.0410504,4.5557194,31.053595,32.456806,21.93892,23.634277,20.195768,38.617886,35.24093,18.92293,32.212433,16.696457,7.4322004,13.592282,28.293232,20.180365,7.663249,23.571978,17.837364,9.847302,20.990564,23.264954,12.377339,4.401865,3.7162383,22.224152,25.649837,20.949018,11.992547,20.429218,23.200329,15.432643,8.517773,10.962505,18.745556,21.987524,13.401568,7.7401934,7.887215,null,24.761358,1.8446165,43.39498,24.250076,12.066628,8.093859,11.980041,15.140446,12.034812,20.916666,20.341066,23.420656,5.8797016,22.321629,12.010761,6.544878,10.471333,17.227318,24.975885,14.369015,18.05494,7.505231,17.814875,16.70759,22.92067,15.725488,24.541487,46.46644,16.787693,20.802692,31.081419,40.337563,18.89517,7.0284724,8.327447,31.088085,53.993355,29.945919,14.479849,5.849512,13.509576,17.665712,2.4376826,12.970966,3.8043513,3.860419,16.40991,14.659084,14.630225,18.558084,15.854217,10.342802,4.6547165,11.708234,18.506353,18.311508,8.89908,6.1059523,23.492235,19.903517,32.936348,36.75445,28.079773,24.056692,25.861979,3.9434404,17.930397,13.4179125,7.4926977,18.654524,9.369298,20.318323,11.560727,7.273992,15.354842,8.649277,16.288893,18.772898,18.037434,7.5083337,19.60653,29.712427,11.472188,7.1392636,14.017413,17.618374,9.922386,7.1397986,3.9554224,14.501165,5.5165467,25.463728,7.4550233,26.356766,11.097794,12.373529,13.798958,20.911901,4.609736,8.568065,null,8.319905,16.522839,11.745546,8.750149,16.90508,15.608502,2.5243273,23.842432,4.9961762,18.619438,5.7078567,9.932184,2.0239294,16.30098,11.836414,12.692592,3.2173524,23.636593,25.110104,7.5977154,17.386614,33.100304,11.178371,22.09586,19.981182,7.7024465,28.274115,24.62344,11.511362,13.810254,17.618362,19.087288,25.511362,5.959796,20.825861,19.904814,13.28596,29.864141,42.213768,21.423779,5.6374173,16.978926,28.954462,13.864001,17.742243,15.976912,21.965027,5.5826488,3.852012,7.2948194,5.2794547,14.7711525,9.73785,8.445543,1.6775988,8.80011,6.581677,3.3479671,17.14245,18.692768,27.508137,47.556595,52.205284,45.942715,27.131718,8.791573,39.710377,56.340412,28.96442,19.72023,19.037483,13.316757,35.373123,11.954877,28.895212,12.527494,29.39859,18.336168,29.676817,32.08532,27.261463,5.0460267,37.222282,17.923542,31.853647,17.79863,12.97918,7.336085,11.601397,8.10949,13.845502,14.521845,10.740502,16.437548,5.877224,3.8450136,8.6517,8.090153,20.592976,14.779731,null,15.267958,6.689398,29.06467,12.944466,10.71924,4.396649,19.997728,17.344816,3.8611639,7.253234,21.032846,9.421861,18.845732,6.272237,22.703123,12.766555,22.308487,31.412819,4.026701,28.638733,19.62253,11.478778,21.122992,25.047012,30.426897,16.844988,9.745247,16.815802,37.18282,16.824026,31.442938,46.536156,23.079258,5.1237807,20.704147,25.603899,30.622328,43.429108,45.649597,23.504278,11.340243,15.526889,22.71833,18.19519,16.978945,17.568838,17.338448,23.35922,19.107407,14.993111,21.675846,17.838295,22.96995,23.025093,21.275469,30.69434,25.418945,1.8632159,22.338226,2.5838497,21.939743,26.429153,34.345394,22.784275,22.151495,5.809391,4.2039056,16.066298,11.555752,19.726316,26.914291,28.225056,20.46554,9.43251,9.400784,9.239915,16.033045,23.534555,26.264616,3.0437322,7.1703563,25.577923,13.109318,7.8018622,7.2508907,16.732746,6.120193,12.326452,9.605573,25.073208,6.9683366,27.159681,1.2742169,23.07682,19.741875,12.587667,21.02616,16.03141,27.498217,17.40281,null,5.76092,22.637152,8.442761,13.24556,29.887753,41.139122,8.317223,2.2983906,17.310186,14.236499,13.77391,15.038283,22.060366,12.740737,14.065328,11.751953,20.346785,26.828789,22.807756,13.574841,20.151203,32.20815,20.089594,9.140867,18.58742,2.2569184,5.1006613,17.749346,23.355331,18.378796,8.934954,11.743987,18.609035,20.636448,6.606014,11.414978,13.802859,18.197601,13.385723,20.504282,20.671543,37.884663,24.250372,14.625936,29.162346,28.652462,31.17974,44.894226,34.34501,31.981009,34.246895,29.490652,27.02756,22.468796,28.067,29.865675,18.285616,26.510933,27.330029,25.989286,24.737165,24.331375,14.109082,22.510262,23.732283,18.18625,28.11152,8.736665,18.786133,12.662412,6.1731777,9.575588,23.542185,15.07803,31.998283,23.606153,10.789348,4.088879,18.284588,13.156854,7.641174,17.259022,10.869973,18.314604,8.9546385,28.635303,7.038928,21.78792,3.3994257,18.263447,19.575903,7.2855263,11.782572,8.742077,10.641595,18.639639,10.337428,0.9870983,6.792439,4.194155,null,5.2800746,12.4310665,4.517153,9.011797,9.913229,21.055132,15.156359,4.29959,4.4920464,13.096638,12.475922,14.789068,3.951217,13.524534,16.48712,15.152488,17.10957,14.922495,24.401514,8.318246,21.364727,36.395336,5.823451,46.530373,6.1183944,26.431293,6.449842,23.795181,25.271526,18.491133,22.917324,21.212801,21.840881,12.428481,21.531994,10.834357,8.97579,11.32217,7.8691425,15.612117,20.580803,29.805984,33.903828,27.381186,20.827597,20.427708,25.898998,36.986855,25.684248,26.374985,35.266613,30.21214,24.600513,26.08493,7.520411,12.331269,20.58134,24.907578,37.42423,21.0238,4.649692,9.085662,14.094806,12.694954,8.581736,7.708051,7.7527623,18.8101,10.86011,5.2081046,19.076069,22.625135,2.6805558,16.062712,11.986099,12.604879,10.124532,33.640488,11.3832655,21.102774,25.612864,27.3161,7.7190623,16.557697,4.5068765,14.194829,12.438202,16.827032,19.80751,15.355668,12.019632,23.20736,32.011528,15.415534,6.3377705,22.40868,24.33614,8.201379,24.22741,26.174227,null,26.46673,26.570948,11.351702,22.674591,4.8997374,18.828459,18.242954,19.02155,0.7631471,15.417046,6.1775193,6.393547,5.118921,3.907613,15.989822,8.24085,13.320792,16.948215,31.162258,28.543262,14.351381,18.966879,7.85931,5.7785783,9.19866,5.3454924,15.237542,15.504386,10.354054,17.145008,14.648589,3.5757523,17.41958,7.681654,11.124095,13.712175,12.418227,13.233727,14.979533,9.386376,19.942863,20.75968,12.346146,6.8154736,15.28103,20.388191,31.565134,15.9137125,12.388342,13.980289,27.782812,12.97679,10.028334,26.141409,30.60133,19.57916,18.68105,12.3566,3.3829167,8.365199,24.580793,20.152754,16.801369,36.520653,31.117233,17.10361,45.957584,32.570007,10.638534,20.15565,16.512318,38.994625,16.758059,23.408909,13.350195,13.897636,19.988995,12.991906,18.125534,19.92781,12.747549,2.1169548,11.764975,25.002256,19.32422,31.916698,12.684978,10.61705,16.89113,9.6985,17.500357,7.2327733,13.275032,7.455034,21.907276,16.298416,9.507707,7.406468,23.038113,16.269053,null,28.158613,12.196718,13.528612,12.050022,12.683051,1.7473919,8.648311,7.7041726,27.61042,11.103381,21.482018,15.33733,34.579105,14.884481,11.129692,18.126007,28.757711,18.872852,24.154139,18.121792,8.010852,8.749577,22.683907,17.721676,21.02706,12.929058,22.923573,15.499265,17.288523,10.649899,20.138828,39.97395,16.353975,17.519308,20.221228,28.552221,35.759182,35.041958,27.35724,20.327286,22.289934,19.82434,14.6061,10.296679,15.434122,18.589142,16.948172,6.4365435,11.867041,10.217373,6.9300847,15.20281,22.00725,4.603772,8.143222,7.242511,6.7302995,4.745051,12.8849535,29.876171,16.076384,17.655998,17.406528,2.881482,16.418037,1.3764676,11.466474,7.567704,19.831038,10.072987,31.043594,31.297718,11.48695,6.121165,6.9523573,13.097525,20.047375,23.839216,17.38603,19.48396,31.41012,9.543388,19.896435,6.4015694,13.371797,10.40004,12.467743,9.028051,22.89346,13.170303,10.589664,4.86034,9.334746,16.752848,23.425385,33.155632,14.235826,22.083567,4.495808,8.021777,null,21.393549,16.742292,16.637602,22.277716,4.6799884,17.927137,25.186432,15.649071,18.424507,15.331052,10.556905,11.975969,18.39434,11.934295,19.654,10.983839,7.350916,8.730064,31.20309,28.628448,27.223763,27.35939,23.30853,8.479852,16.415894,27.96583,30.445278,16.584873,16.626196,29.988775,14.231918,15.612459,12.661553,24.323868,10.179672,9.521428,14.090477,16.843845,7.2313666,13.7353525,9.471609,3.510214,16.66779,22.414019,15.230861,13.796915,36.134373,21.169458,3.6364727,13.248927,20.421923,7.7030663,8.065526,4.986716,9.562265,15.222829,7.572327,4.34578,15.211208,21.352354,8.297117,32.68997,36.41649,9.248422,9.268524,9.1197605,19.183022,23.309498,19.581808,3.6527522,17.662006,4.586374,29.831469,30.067612,20.087511,11.492691,15.356523,13.531259,19.738083,9.744388,18.623363,28.468002,7.6094704,11.378452,12.01546,21.672466,17.932152,16.524431,12.354173,7.90886,17.469461,18.521849,5.92769,1.941928,17.067837,8.9440775,23.053545,7.456931,19.667334,16.66511,null,13.046143,11.217664,6.8261027,22.915144,15.500263,11.302188,13.463078,14.975432,8.266591,1.3889999,15.21648,4.415355,10.740185,30.157665,0.1176286,20.373537,25.793255,26.699959,11.980058,13.792123,15.760209,0.92662054,9.795504,19.616116,7.894309,12.113997,17.015705,21.850588,7.4305315,12.513374,8.095366,4.9588842,6.3135157,19.23808,13.930834,18.874924,23.839735,10.563231,13.998725,37.165028,25.070637,21.70943,12.998241,22.370108,14.524837,3.5324798,21.378511,38.08315,19.264078,27.2355,42.588955,29.382793,16.766218,19.703884,14.218181,1.61553,21.446377,33.541428,20.054266,17.562304,23.940191,22.23469,23.888964,13.152891,8.773733,8.605837,15.587335,17.385365,16.61756,22.366913,22.9253,18.91082,15.162716,21.28944,14.923543,2.4984944,6.761369,23.104366,10.438873,10.52106,30.203959,21.477446,11.190462,19.530233,13.413387,10.3272915,18.55121,18.206198,6.2430673,13.834558,20.771734,26.984869,26.164436,8.614987,20.595146,28.8154,8.188521,22.536018,15.195014,19.07567,null,18.41484,23.862597,10.874826,2.6589904,13.111649,15.736046,13.123139,21.714369,9.369964,27.690754,5.6011076,13.185025,20.048279,25.956543,22.783537,21.782373,24.309618,27.808834,35.158287,20.206133,10.210213,6.877214,15.569788,2.169164,12.400292,24.483282,16.384523,6.1012726,6.8671265,13.919564,21.428478,20.077953,32.705368,20.344664,15.925932,18.669697,11.077547,11.975768,19.445034,26.592766,36.79364,16.40175,10.438863,7.4643493,11.435286,12.536576,12.788013,18.951336,27.402452,24.445522,19.119753,5.4556966,6.0607047,19.01117,11.650489,16.292692,19.684328,18.159626,32.226562,36.74831,31.88548,28.190825,34.428207,19.618933,28.548084,24.39796,3.9097085,17.959106,17.60101,7.0922217,29.803434,18.264957,10.690028,12.940499,4.894448,10.985119,10.65999,5.6764565,21.677624,12.65055,34.84834,20.875017,14.550814,17.48856,13.606939,13.020337,29.609118,21.343054,26.79169,21.218262,31.893578,10.146999,29.936218,9.163628,12.369105,13.636963,9.363428,7.630045,4.143229,2.0680099,null,9.835319,11.315785,9.134766,8.773085,11.761293,9.689621,8.743327,5.5224247,14.812498,12.63056,10.692334,7.057096,12.019213,10.390689,15.176948,23.925476,19.243313,19.046198,14.45148,21.20564,21.536291,41.535313,10.643331,16.474016,8.319921,15.65251,10.683848,20.361773,42.729504,17.388771,19.723255,5.2530503,6.2373357,16.281622,5.569235,37.64915,23.808577,11.051241,31.261757,19.37181,19.93206,22.193703,17.782677,7.097791,6.753184,3.024125,8.5342865,10.633142,5.9685493,18.414463,20.65256,18.045649,7.88569,16.631008,15.121315,11.29222,7.116568,18.007414,0.5501249,25.044558,17.011868,11.488805,16.079529,17.780382,5.8718295,22.588604,21.282293,14.727749,6.0323043,10.348794,9.320261,3.1564457,13.595943,21.548954,16.584923,10.711956,20.390348,21.605627,31.118849,19.940865,30.980812,3.2658331,19.972456,11.96584,22.909695,17.759146,21.615902,13.106601,11.859738,1.7519149,21.508059,10.968518,10.4380865,8.3463955,6.343446,18.306515,13.392386,28.067158,26.03894,11.116068,null,8.181781,13.30474,14.339296,6.9676723,9.57109,16.954283,14.225452,8.061446,10.27802,8.667149,17.351818,16.92389,9.96411,32.977924,12.963204,29.859825,20.472546,22.635504,14.365668,19.08266,12.586358,27.53623,26.983362,11.178408,16.05829,5.480912,20.822914,35.38949,18.837069,15.699848,12.416216,13.399968,8.601824,16.703188,16.971342,11.80833,19.001663,14.903869,13.357188,0.82764256,5.506005,8.391674,8.324353,15.333268,4.9831066,1.8426397,31.85402,32.306614,10.9960375,22.561405,24.40513,22.430891,29.594007,15.958249,4.5028973,16.04966,19.685581,21.149696,9.689203,9.508363,16.674675,21.618656,1.251563,13.807254,1.4617299,27.924013,32.278404,16.893673,7.9907327,19.626743,29.681604,15.143546,18.033073,14.733189,20.219814,13.159366,31.898285,36.10937,17.764326,9.446819,15.295904,10.943039,7.054085,14.413333,9.055182,9.717551,13.125505,22.596338,4.0993524,26.093582,10.636135,35.742535,20.312294,16.545576,26.49215,23.666773,6.6833005,11.233156,11.072707,5.3799634,null,3.3704484,5.505121,24.981174,12.450582,6.365524,29.60711,5.0660896,22.598639,11.912967,4.6533494,10.742652,19.344957,22.505985,11.926421,17.244856,10.8631315,16.887236,9.724269,20.170046,13.263633,22.004837,17.267385,35.790943,10.533519,22.90534,12.564243,10.048675,8.507919,19.99514,14.396662,28.551682,8.537649,20.711102,4.0018897,3.0648963,17.418652,8.308687,29.703512,31.537256,12.92429,2.5362508,2.5326574,9.829392,12.367022,22.574385,21.879652,14.865018,23.287643,25.573767,29.287914,36.235435,14.130303,8.618486,16.025833,25.7564,11.078941,6.856033,10.940052,18.031384,13.996102,14.025913,13.238347,21.148409,20.509546,24.679632,20.642017,13.264746,33.581383,19.244501,18.277805,19.532925,23.829105,16.410557,8.810396,11.65261,6.135752,32.933125,33.472603,11.386136,12.435733,21.303505,9.16256,18.083805,22.543903,15.946379,18.460403,21.50431,15.179363,13.961193,12.10524,21.457008,33.75447,18.45766,9.509464,22.99381,24.576084,17.766413,27.612883,16.212276,2.4309614,null,17.782093,14.245848,16.40184,23.464222,13.468475,13.962966,8.419935,12.426856,19.706089,9.634685,22.228874,4.6064525,8.512663,9.178395,11.671661,2.0892787,28.841764,16.013363,24.02119,25.564285,5.8547206,2.5394835,27.388294,27.351627,20.479723,45.72333,16.606693,32.98715,41.255077,12.501414,23.745367,10.510375,14.151665,14.731261,26.1094,29.269152,14.752933,28.264313,47.063908,16.285738,9.441275,16.851217,26.457672,21.684181,22.149641,7.173022,40.291447,16.527355,37.403706,37.968807,22.298378,21.615864,17.084316,11.777646,15.056539,14.134286,14.49049,3.258821,22.904024,23.35519,6.4166856,2.7711818,36.073654,28.548962,23.201298,6.9706697,20.900982,14.463867,26.791002,8.8923645,26.489525,24.359724,30.141617,48.61356,13.292589,37.12711,14.305628,23.276634,3.965583,16.498816,23.14953,9.284137,24.934912,19.917309,22.314514,21.49665,3.7016003,18.407532,14.7108345,1.6897557,20.529747,22.951199,12.721833,5.9447846,14.331385,18.17163,15.313425,26.516638,6.650292,20.059767,null,15.995052,11.3163805,13.714979,7.551404,7.1234727,23.626467,12.576513,26.043339,5.691445,15.815968,7.2456675,6.2379594,2.67488,11.593673,4.2876515,17.647102,9.203043,18.05382,11.471532,23.39087,15.03382,25.489893,18.900753,17.00134,15.764173,18.63567,38.70488,27.437265,26.51759,57.761845,20.461843,35.6704,12.131172,18.218956,25.002035,14.153347,19.336485,35.870632,36.943676,21.21357,9.908832,11.028405,4.8194757,22.873064,39.179276,27.473192,11.961386,15.075833,34.843784,22.51164,6.426587,18.0243,26.652393,29.8209,13.795965,1.9709707,16.226074,15.741286,16.452671,29.11285,24.050325,13.70992,7.275651,13.912525,26.008,15.100011,28.443132,22.340948,12.238989,27.467428,14.6979885,8.972414,25.170242,22.538399,14.651255,10.768623,13.340401,13.354286,19.003841,13.984444,8.239447,10.531278,7.941386,27.38643,12.504201,24.735607,4.4690013,23.732824,10.547699,12.905083,19.731277,10.606348,28.796547,9.179001,25.003952,8.499326,9.943474,10.07033,15.922179,24.573875,null,22.67283,17.734396,19.334152,18.1319,26.033184,9.435427,6.9470344,14.046936,10.420765,13.727699,17.902443,5.073353,27.534843,4.2560573,30.505615,7.781406,39.66131,3.2707052,14.852207,9.751849,14.942948,6.314438,9.373129,8.723263,7.360031,13.465167,27.733702,57.471165,35.83227,13.884452,8.127609,19.257776,18.191856,16.700628,27.33759,23.669085,7.2879515,14.579538,15.468685,20.46546,16.063744,23.421585,28.575083,10.437781,21.26844,11.519617,23.303785,4.339477,6.774017,20.7185,11.281984,19.999321,21.249554,15.5176525,4.130479,12.501651,10.931107,13.515713,6.940044,14.779504,30.968939,29.583456,23.448362,21.678858,9.76555,25.312635,43.59143,10.687072,24.223577,13.073664,11.225458,19.198465,11.434692,18.052877,14.234461,17.772974,33.818584,29.346075,12.014402,17.57705,11.895366,14.403426,10.359802,14.737195,10.374348,5.8044786,11.184888,3.5762963,12.164019,8.415126,20.004362,6.5716023,10.597644,17.810476,15.749734,20.085514,2.5717537,7.2895184,24.425543,10.437535,null,35.797783,9.805926,2.1721895,11.674093,9.800065,18.211988,19.17809,7.656766,8.683656,20.311953,20.251501,17.378227,22.249676,24.553125,10.500692,19.668982,24.639694,19.152948,26.03804,21.893764,9.262863,22.756569,16.003105,41.158775,4.0497704,52.34692,30.03108,23.820059,24.070032,28.408644,14.915815,8.767524,17.170698,43.95492,22.162266,18.919598,10.896328,19.101652,7.175873,8.40921,24.278969,29.438677,16.48469,24.256092,31.163652,7.0310245,13.569116,23.6768,14.104734,9.671865,15.981379,18.147253,17.63031,9.428435,20.408413,18.267384,13.026011,22.721703,13.821114,20.25031,16.505926,4.292383,20.883083,23.135742,19.446737,24.602741,19.61018,26.664364,17.269985,13.817608,26.712933,18.69481,9.828303,8.674747,20.86547,11.144548,27.000559,26.951496,2.8153462,14.2895355,12.12075,20.29525,7.215211,2.8233051,7.878252,11.651277,11.261594,9.314292,25.043804,13.318074,21.892399,21.4134,11.084442,9.895564,13.449351,11.842001,21.117422,9.154223,6.1766,27.539146,null,29.444614,20.028631,29.403448,16.602852,10.694875,17.845352,26.167812,10.807441,5.028613,14.200041,2.1594932,30.983501,33.058304,22.427391,19.019295,11.818264,10.998534,9.356679,7.061029,15.357005,25.616,22.73344,33.074875,13.485968,20.39002,28.504513,9.174207,23.827263,19.203625,5.524513,24.045105,35.010597,12.126836,12.953847,25.247711,6.6585,8.728434,10.139486,7.5467014,23.898968,33.45925,31.771507,29.677713,32.207092,26.956112,17.48222,22.653912,26.267563,12.064581,14.953145,13.951587,6.56391,11.689951,16.34854,45.371376,66.4539,40.56931,14.059072,9.226116,25.412981,11.762919,24.896044,13.488006,38.654247,38.73093,16.609528,18.600363,7.0513797,6.1691747,21.807974,4.341093,32.701794,38.36213,21.166742,14.802377,15.851774,19.438835,18.10924,24.363102,35.231762,27.152126,34.449757,13.585962,33.527122,16.149902,24.85317,12.437312,12.496218,11.672328,21.912169,10.238774,11.5840025,22.590052,17.476555,20.93163,18.07282,15.448532,31.28774,8.274711,30.494045,null,24.276777,10.602663,24.0543,3.0497801,16.59613,22.329878,13.30574,33.622414,18.044538,30.311026,24.051865,12.380615,18.139921,16.01631,14.195708,20.282125,17.515999,11.742462,18.508585,6.8165045,47.360237,10.624035,29.44272,21.375769,21.735645,18.91694,17.905579,20.126148,7.8819265,20.35819,22.954378,21.67588,16.264097,4.8545766,11.297745,16.14236,26.747726,17.50771,26.107573,35.8197,19.776968,27.874811,34.714035,29.689655,35.785915,39.902065,22.643621,10.856279,32.240337,12.220919,13.499202,19.359106,12.633714,17.450294,37.872066,41.698597,26.549494,27.428701,37.804207,28.153372,9.056891,21.280893,6.5249314,25.348461,20.593794,15.190905,21.058058,1.8508064,26.621243,37.057446,27.644176,26.141754,34.716286,13.188687,29.955746,28.756392,20.567978,12.144603,13.46987,12.00813,13.37686,16.091991,4.0016613,19.446772,11.660424,10.417687,13.684516,17.634136,4.473309,17.43006,10.0710745,18.525494,6.412912,13.577588,11.440769,5.9826508,12.308909,7.909173,6.5535245,15.491084,null,31.250124,30.491,17.404394,18.562004,10.999574,20.428448,3.087961,6.0025206,21.152758,14.595634,11.229862,29.150034,25.693483,19.307316,7.9567776,20.780727,24.118492,19.648607,23.757744,12.000786,12.53975,22.197422,22.153395,21.010923,11.269451,24.853226,47.116985,57.963078,28.47666,10.177629,20.128174,6.377211,14.600727,21.239,37.364326,18.706018,16.793718,25.548594,6.8295183,17.320948,12.227637,49.63673,59.953453,35.28323,24.258245,40.52088,45.97599,21.457006,7.03984,26.93875,18.013445,37.39446,42.605755,41.77327,38.860897,29.308977,15.114369,8.775435,18.150894,28.538265,13.7712145,35.610397,37.0615,8.225827,13.022291,16.400517,16.831215,5.350278,17.844767,9.909584,3.1571157,12.69818,13.294976,21.069414,15.671954,28.32947,16.56528,33.964718,32.695564,19.520653,35.826355,4.8786464,31.0993,18.18808,27.221478,13.831677,37.698204,16.31617,37.878258,8.440978,27.482668,16.214432,14.951779,10.516707,19.118963,15.13474,9.458906,44.221817,26.086588,17.067713,null,8.275252,6.385337,17.415346,23.80163,28.981329,10.0037,16.874443,11.45661,25.56782,16.994068,13.926775,23.644062,17.933702,35.41907,11.204064,47.03909,25.732218,25.56125,23.122543,28.841423,25.466385,16.405354,22.0902,31.811983,37.536503,14.222049,39.899525,6.65736,29.213623,27.9365,5.883722,9.128728,27.269405,28.4741,15.713273,38.699635,11.011371,15.537215,16.236193,11.615768,7.796054,2.0229292,9.773995,15.381711,31.704184,60.47726,53.424465,19.604984,15.50851,21.26075,15.1644,10.327931,30.381962,46.064404,34.020966,11.6687155,8.73369,8.965852,12.041341,26.182274,32.869286,13.238734,38.009693,35.054718,20.008732,16.650557,3.5817628,25.23466,21.758347,25.762985,39.92066,19.183544,13.487572,13.715364,18.948868,24.205828,33.80561,5.03595,10.082435,20.099266,13.991863,13.62761,4.2162538,18.106182,21.61187,9.401534,12.447936,15.07158,13.6219015,2.5618486,5.2055283,11.434656,18.831331,6.1421785,14.745616,20.464317,29.65524,9.73797,42.809685,15.239728,null,15.164391,11.833427,5.4461446,29.506887,18.539444,28.69089,18.136068,6.5585237,37.43037,11.651314,11.206165,17.55656,18.04246,8.282089,27.180277,13.815942,13.180954,18.460766,1.1448364,17.457624,15.4296465,5.400126,21.055885,20.215424,31.090967,39.205944,33.751163,39.532063,29.916264,30.331095,9.598836,21.538454,15.1474085,8.69649,24.148375,53.334763,37.44665,24.549593,13.33553,26.540329,46.892544,39.932934,12.783627,31.01148,43.131763,45.04799,52.64899,47.94288,40.795033,37.44568,44.987396,65.70277,58.60415,44.93979,36.788372,16.891603,26.027086,26.895895,35.165283,21.41181,17.886671,24.115505,30.017563,20.243305,11.607795,17.447254,1.3551708,13.72955,30.114006,31.180025,39.988014,34.993046,23.681353,27.109259,19.773779,7.041534,13.194309,9.136478,21.943401,9.777018,30.695116,4.040912,17.155355,5.0651584,12.130272,15.380912,11.816748,7.104474,15.172982,8.6384,16.860973,16.633041,3.4599507,23.784267,25.501568,3.140072,17.325893,5.6963196,15.55427,18.014475,null,40.39574,20.295954,36.66924,27.514496,14.762978,36.73537,25.423912,9.912573,8.2246895,12.973506,10.275387,15.533128,20.242489,24.664303,20.463686,20.604816,27.391613,22.493008,23.925032,30.42286,23.526026,57.803017,19.013216,35.16794,13.959205,21.870995,27.656626,32.333363,28.445047,1.6119275,32.09733,29.685442,8.423331,26.501823,21.33076,22.640993,32.12134,46.01862,15.85071,19.030685,25.45704,57.188023,53.81442,35.053295,16.670216,47.91834,47.045322,47.197838,57.672523,54.49377,69.395546,61.898106,37.10291,28.664253,20.190386,21.89021,44.85861,66.7944,44.51943,25.04116,21.731201,50.247955,33.210842,29.696209,29.69423,5.55145,4.360773,12.555047,16.348372,12.163735,44.143486,40.99806,24.063908,6.9361115,14.375878,15.401487,16.22828,5.116702,8.438451,23.708439,20.70421,21.631105,4.0124674,5.0785074,7.7413106,10.960006,21.089685,24.48911,17.059345,17.475159,30.539286,11.881662,39.388233,22.912298,19.960089,31.349697,23.328857,34.828125,8.709904,45.883118,null,31.620054,35.427986,27.748152,29.57983,10.1932125,12.448553,12.680888,6.266321,15.824816,23.65884,23.863821,27.972904,11.470236,17.213,11.060624,15.815584,21.425888,12.781201,10.920199,10.189987,20.62105,6.6439033,18.472542,34.224693,59.319073,21.268227,21.32551,35.776028,58.734993,35.80812,12.292697,20.025267,22.023113,22.033754,38.716423,47.6027,28.246584,12.520318,46.75914,33.425797,69.13718,87.90265,102.930336,62.707066,12.153584,4.713072,22.40531,48.229786,67.43648,74.48468,53.069145,42.1943,17.561129,30.406263,33.921223,32.100296,47.421776,41.924637,41.743492,19.430126,38.922237,27.355059,11.112587,42.705826,38.95367,16.263931,35.694206,23.152897,15.40174,32.812435,13.405082,9.934962,14.731743,29.824734,35.72654,10.525255,27.042212,8.205512,21.742208,26.855585,11.409734,26.255056,22.800138,23.897568,9.655875,7.6987643,15.084624,22.87443,13.163986,3.9912376,26.263214,15.034505,17.323797,21.443258,15.877925,9.025204,23.584774,29.118954,20.605574,44.769688,null,28.614532,16.73196,37.927525,16.503675,16.222198,25.197393,19.761808,10.011507,15.847096,35.45868,27.048964,6.2833037,19.139015,16.420101,31.231886,8.677309,34.73049,18.061419,21.037666,36.192513,28.835653,9.713612,9.744657,42.29081,14.586258,38.48324,14.881081,40.190426,16.550617,23.535055,24.423912,6.588039,50.819313,49.240562,26.555122,45.426292,43.94181,6.7089496,36.403164,57.152405,28.177801,31.350504,57.410156,62.59146,28.723715,5.596661,16.826431,38.76744,85.91416,85.67308,57.768383,39.564957,44.209774,17.182245,49.369286,62.947994,68.810326,61.677544,3.076175,46.99267,47.672894,23.918232,46.01101,23.871758,24.831814,17.790777,48.874474,42.041054,37.508812,52.5943,11.4134865,24.83312,10.554739,42.226177,19.426247,18.034622,2.5619557,11.812906,12.253195,5.470142,16.699099,1.0646367,4.36095,19.727428,10.982281,18.112837,11.825415,33.17874,1.0680124,24.070086,26.323881,34.499035,14.649147,15.497078,25.887072,16.934761,9.047259,38.40667,3.6311054,28.601974,null,31.933556,8.835062,26.51652,14.052322,12.742417,15.954585,11.700731,34.90698,12.138532,19.704126,20.608887,24.610617,25.427225,24.591312,37.20907,29.611942,20.650284,3.390503,23.4757,21.108301,23.256596,16.214264,12.539722,20.557365,13.785954,4.1463733,10.62619,22.80138,33.473343,15.884282,4.027461,8.304673,24.69004,66.17018,28.914509,39.81558,41.824154,18.969193,34.34038,71.297005,56.6297,21.775988,43.448753,89.68042,81.840034,51.087708,10.275383,34.942863,42.41983,33.951603,16.682709,26.334751,13.067792,78.71497,110.21683,75.09729,31.096884,4.707531,27.465698,41.03995,14.225427,42.581078,65.163956,28.653337,41.142075,49.333946,4.8187404,19.644188,28.100946,39.65687,43.827084,10.802875,26.493437,17.620653,19.154392,10.4516535,17.851835,18.215872,25.475193,27.632374,11.382875,46.024174,5.844626,31.105652,9.638181,10.234209,7.469765,26.367199,13.663977,7.623791,5.9652066,32.58012,16.668732,30.43942,1.8411857,34.167606,18.143143,28.920574,25.084955,26.060339,null,10.992985,14.071365,11.576899,7.6225367,28.440006,10.220355,6.878385,14.7078705,20.064024,5.031524,8.184673,11.46548,24.59739,12.097624,16.861826,8.557261,22.594114,18.25788,28.175852,39.716652,37.68527,24.540846,23.4557,38.596985,29.40826,34.387447,13.975542,19.031605,19.11775,41.896015,28.218168,55.589493,60.375355,22.052977,51.600155,47.49311,52.531307,76.76399,51.972473,19.94634,52.218338,50.545517,16.180817,65.211845,72.616745,76.68312,65.58885,36.807014,33.18805,57.85703,27.335686,22.523607,19.87826,49.088776,64.97964,46.1376,6.5739594,74.42301,88.198296,22.092083,32.53603,38.526608,17.133814,12.322921,17.215105,15.340538,6.1602416,46.31955,24.755375,58.053516,55.004097,5.0325637,25.086164,20.706785,51.861916,15.992381,28.394398,26.02334,37.958134,6.741092,20.190132,18.10986,4.800555,14.851411,27.30285,25.53667,25.239891,12.478261,42.136826,10.079859,18.26532,5.0954404,11.763116,15.689249,14.27644,14.524741,15.939913,28.749504,28.553297,18.852345,null,11.14926,15.349654,39.329365,9.946828,31.886171,14.855208,20.78816,11.930573,15.343627,2.6917417,10.344767,26.465218,25.053438,43.09009,17.116255,21.281612,31.138153,9.886673,29.373917,21.311281,29.37434,17.605356,18.63616,34.220547,3.499742,41.295086,33.101788,11.974231,12.188511,35.670418,43.081093,9.445078,50.179867,10.259544,66.27461,58.677944,23.434795,58.567886,30.580244,25.58792,59.622707,73.24805,56.524616,22.968157,50.722225,78.67226,87.48658,65.47556,40.120888,44.451088,57.6052,61.914143,66.86965,64.12817,47.696304,17.95375,44.734753,79.5953,94.22064,32.947514,70.12885,60.985806,41.09868,87.85703,29.992777,41.368137,46.262928,7.4788165,25.356228,12.007284,42.058414,33.87618,9.161382,6.7401786,17.447334,12.101734,27.409046,23.772615,37.14818,41.23579,26.029396,39.327827,6.030217,42.014565,10.978274,30.102936,5.046882,39.25819,9.647979,21.11422,5.7835345,16.211323,6.5386977,16.866741,15.359372,34.43088,26.199753,28.029524,31.32402,12.299923,null,13.844078,24.386831,25.068132,24.329643,14.485857,13.856097,7.630006,10.680301,20.85529,29.063896,10.522568,11.49617,43.966072,13.872233,31.646267,22.068186,26.398985,26.210098,38.910736,18.177252,28.101835,32.723663,23.999323,26.089643,29.98186,23.402996,23.844774,25.721449,19.722387,29.893324,41.046772,62.63921,7.6446056,55.295914,33.232212,75.862404,86.02282,31.507526,41.469124,59.434555,19.735426,67.02997,95.59094,59.847286,14.261377,62.4712,90.22691,103.41273,87.832535,80.25721,88.542915,108.21813,125.1778,106.89058,38.806133,40.42726,76.99391,71.72192,21.044819,47.024483,76.16497,29.407803,64.28415,82.06207,12.946553,35.353065,18.491682,40.258373,57.43296,34.495243,25.196821,1.4938045,41.512493,44.614857,9.743426,6.584584,53.36872,41.340263,19.336807,43.881176,24.609228,31.985804,23.714788,63.07377,17.408503,29.001692,24.074017,25.801159,18.786444,25.64053,27.693195,37.54128,9.239562,21.944601,27.434235,18.347935,36.281227,12.612781,34.80275,16.231337,null,22.422722,16.011946,14.0479145,16.154446,29.043955,7.6273556,14.899692,24.57159,7.3349123,36.484104,22.506546,61.386696,17.62451,53.960636,48.246735,57.21839,33.779545,14.772989,44.147224,19.756218,13.827366,42.78871,13.577805,32.070263,28.274843,47.747482,15.754054,25.101784,43.8443,48.330338,22.652678,22.614666,15.71892,44.51172,65.91363,11.330234,71.868355,52.84359,41.857876,72.91395,27.145735,41.44331,82.37671,80.41689,39.525173,20.6772,74.95485,114.09124,108.459816,102.52727,101.58606,108.62663,68.46166,18.870955,72.16016,104.04406,100.373146,53.316727,35.11227,90.12065,36.431175,84.46418,92.6431,31.083874,89.01889,15.272759,51.203236,19.272493,55.50054,49.207417,24.117825,26.257689,22.514383,28.612015,24.753029,30.967419,23.66336,16.556704,39.93645,18.021694,33.684547,40.274242,11.505156,48.583096,12.681871,45.79661,15.945879,10.344189,13.95756,4.3911147,4.623087,10.8958,18.256662,31.326391,31.979733,19.269102,30.098843,6.644765,22.862387,20.06065,null,45.40323,48.783363,28.071745,45.289055,21.608168,45.010998,11.675762,27.432142,21.584156,17.858446,19.291677,13.036283,24.614098,23.463787,26.86269,11.912416,61.95086,30.988424,51.56422,20.16952,10.86593,62.535217,20.954645,32.946968,27.866602,27.14827,25.240137,19.249819,35.6621,37.37354,24.62015,22.697004,79.50239,58.35647,40.97393,78.19377,1.2735242,103.202034,73.13631,46.475655,81.40498,30.784195,48.188828,45.474953,16.923561,50.69111,94.33247,100.31127,112.62036,139.94751,125.51188,105.9755,88.961,35.736267,38.840153,58.73108,37.74595,31.540337,95.87138,76.2287,14.043281,63.55163,41.580864,29.098162,48.381348,8.341158,44.628643,20.71922,42.700237,39.708626,56.9913,16.540422,54.842243,45.714657,25.525988,7.3196197,44.5189,18.383522,17.879217,53.82941,9.235498,37.327705,46.20324,52.02898,30.450489,19.96095,57.606056,12.732701,7.365579,32.848656,4.6741023,16.879154,22.301598,28.753595,21.953321,19.891321,17.383059,34.98722,16.978409,21.572254,null,7.1459765,14.484421,36.625107,26.145388,15.868169,41.836452,20.01356,19.56032,29.648352,15.298322,18.01715,33.67341,20.890926,41.13792,26.76227,46.0361,50.196026,30.807531,46.477688,16.864023,38.15868,13.563499,26.327074,33.26194,12.730474,26.004541,24.576914,48.327347,4.5900674,36.886627,58.23356,33.801117,38.66863,47.23139,28.818892,107.74591,75.83705,37.49484,63.113026,44.470818,111.02278,66.88585,26.615232,49.514004,73.36669,56.83979,37.82752,46.44999,67.28924,59.162277,52.356842,23.62445,17.725212,58.085873,100.716705,82.054436,26.534231,104.00166,93.53885,15.748259,67.553055,17.375536,70.747986,79.56126,18.857876,45.973938,58.498295,75.513954,32.440266,43.71817,21.765886,33.7679,15.793701,13.307481,36.617104,28.951336,27.345797,37.925987,19.909706,42.052406,14.729201,44.08477,7.175035,33.268505,10.289542,15.50427,16.602507,13.935522,12.204517,16.451237,45.666496,15.420827,35.825825,26.933428,37.097107,47.044003,30.23622,55.189774,32.334663,31.71654,null,9.727506,20.96655,40.708824,35.08583,33.814682,48.837906,28.994602,30.516436,32.959785,30.334614,4.530994,20.902815,15.109784,33.42955,10.061983,28.228111,42.74211,11.181721,41.175045,12.148027,30.428999,22.036652,10.435,27.58168,14.064379,23.105495,33.513714,8.403173,25.398607,20.90394,46.42246,36.91654,62.764732,12.933946,106.18327,49.52016,97.47516,52.704964,74.692924,88.47126,8.716595,43.311478,34.63709,40.73038,46.14204,82.25792,74.77456,40.668556,23.394537,42.144333,16.808617,41.232475,70.77728,57.623676,49.032337,35.605698,34.89141,71.927216,9.343521,84.82716,81.55194,21.75707,77.96026,25.821135,65.77917,50.318367,48.79896,25.546343,61.63074,42.488117,27.166273,24.867579,10.99494,11.169757,8.641951,38.149147,17.736183,30.153484,30.231339,52.860405,44.276024,54.50183,58.444565,3.9312289,52.62816,25.285307,11.813505,29.656885,26.37039,38.517216,21.83349,23.639868,30.342548,41.505444,19.322128,46.097225,9.465306,27.06419,19.408247,17.108917,null,43.560425,39.1549,17.56666,43.221664,41.843113,43.216797,37.604244,42.30667,31.612179,38.368996,14.941718,39.98265,23.089048,14.110296,26.03667,14.89254,15.697088,44.826416,24.610788,21.0869,55.517845,26.108047,16.757854,18.245932,43.010773,20.971703,37.830658,20.480822,31.829287,33.69635,37.647953,40.991825,44.92668,54.15694,30.5727,54.982704,53.539043,82.561646,16.0061,82.53243,38.75019,70.34844,101.54793,55.289005,78.41554,94.504234,56.31112,16.599403,11.374318,23.238491,21.932283,29.374603,78.69035,80.2068,47.508682,88.63979,152.2742,70.69264,67.15027,97.09079,7.362455,96.05334,32.618168,77.62554,14.44987,70.59055,7.5086994,83.17616,21.31673,42.66711,8.356371,28.033188,14.490349,0.45075577,6.705896,30.37547,37.00343,13.1289,22.06006,51.32169,16.748512,51.5183,9.078038,19.545761,20.75397,13.856246,18.449535,18.243649,32.03027,18.669472,32.715504,37.425663,36.241264,56.86143,19.700632,52.087086,25.00072,26.735985,16.371035,7.074448,null,29.863787,24.470596,6.425866,41.939556,20.731968,24.01519,46.026115,28.53794,39.4675,35.83198,30.968493,17.98151,2.2190936,27.659046,5.3054223,43.178402,10.87779,34.55093,46.981823,16.824903,49.747837,36.510983,23.338724,45.881454,19.254356,11.972927,7.831736,28.28691,46.822987,19.544611,60.574768,11.60046,55.430878,33.413673,61.375565,52.11633,74.44499,42.467926,106.29214,38.34182,77.138794,42.368053,74.29138,36.11854,65.816895,102.49529,68.99913,76.33205,85.71292,70.080284,76.28267,98.92521,98.897644,69.30817,72.9962,36.213387,56.53692,23.871658,108.15953,35.12752,74.73368,57.155594,44.5104,91.3573,14.412504,45.719467,21.720028,27.993776,48.602936,42.979847,53.835644,53.9033,19.514156,44.713028,42.486717,7.5757217,20.07603,54.28805,13.67083,50.997334,45.365818,37.435535,39.01926,29.704004,20.76219,27.041122,22.487883,39.279423,35.515194,24.161728,30.938677,28.233078,31.6936,31.644346,31.12059,21.911886,9.574745,32.140087,6.4937367,13.9449215,null,28.57489,21.14364,9.951519,8.930335,20.629549,13.952805,6.6799717,22.81562,32.761456,39.564842,29.450157,9.664406,33.16953,35.874092,23.293436,41.37108,42.37863,59.241962,22.792969,89.89829,72.481445,34.647854,88.12488,22.558285,36.954453,48.603394,38.60038,23.860535,88.80407,50.298744,41.410072,51.20577,63.311707,16.997454,86.60314,11.738124,80.15491,52.25627,61.086906,59.517406,94.42249,70.02033,26.697676,86.62588,36.40231,69.31191,38.94469,46.072525,72.98359,73.46521,45.784878,28.433216,44.90528,17.147234,63.22782,69.992256,19.422228,77.43518,54.3116,35.154682,69.74765,34.2223,66.01025,49.15697,64.018105,55.905094,22.875587,87.53392,29.33602,35.242268,9.229621,30.56866,17.040918,10.435756,38.44368,40.331295,46.52017,74.726036,22.945526,42.420086,49.0576,21.244808,35.9435,40.646397,35.15883,23.413462,8.378672,38.04479,19.117554,50.944214,15.323077,29.770006,44.890682,4.5841665,31.435453,27.598476,17.205893,24.206697,22.797617,8.317524,null,32.5053,18.547138,27.981432,42.331112,32.15635,6.829916,26.926311,14.59133,21.970955,29.45338,10.220606,19.14392,37.26393,20.88764,36.122562,25.580349,53.83935,37.81384,26.013136,67.02429,55.55149,38.09346,82.849686,26.921028,54.6647,47.718925,19.644436,25.202356,18.9697,30.567434,38.66545,27.057749,47.859795,63.38541,37.783047,115.87599,74.726295,124.25491,70.09125,76.0722,14.27089,45.93179,57.653347,53.95417,26.152874,36.208626,67.379036,63.321926,36.334877,11.588711,17.552006,65.3563,91.0817,30.709969,39.458305,105.4558,115.28659,53.281628,15.3638735,115.723694,30.08775,85.168945,12.3200865,74.4822,42.266815,62.19992,64.15638,49.01635,52.238483,12.058776,21.345001,23.517462,47.845608,40.570045,46.715378,63.84829,88.228516,46.816067,82.88572,45.63457,48.085556,60.321487,6.9793534,45.206406,12.277368,14.093531,15.939487,21.303083,6.381811,14.364431,16.250889,21.658422,20.104313,33.224056,23.034925,16.751009,20.8854,28.544296,27.56178,25.751825,null,25.603674,29.040508,30.816162,20.077585,33.46079,33.720436,15.452365,19.674532,23.257502,9.514284,17.788942,2.6180904,7.3348207,32.07627,4.3360395,33.218227,26.479658,34.14433,59.315968,14.979539,71.58929,60.351177,24.810377,93.21579,39.926037,57.30784,37.216873,31.672726,6.0895767,17.79218,18.526602,20.50941,41.480606,13.178088,92.930466,21.773182,56.113087,90.06869,32.066326,57.786995,38.98961,85.657394,102.32147,47.124268,81.391045,70.87848,61.409405,11.683285,36.004967,80.52365,75.60492,39.46487,54.265568,99.22437,62.9209,18.628876,96.96555,74.102776,43.609116,35.906563,28.049795,27.694311,45.78927,83.81041,92.00736,67.401054,50.57535,40.52297,35.052376,54.89463,16.325018,27.99382,44.19828,82.413734,35.06945,40.8932,78.50918,41.522617,68.09362,56.01671,50.56655,53.435303,37.689907,50.01914,32.301067,0.6475196,31.540646,12.489147,22.701933,25.4772,21.256657,14.74132,18.533936,19.078411,30.178854,24.893646,17.119873,48.43285,35.983192,25.599442,null,23.400095,46.2085,18.997965,2.1116173,31.877897,25.060312,10.086865,31.385136,12.04458,7.6126957,13.74849,24.140799,10.834012,33.66564,39.37435,27.149252,21.032274,64.84045,43.30789,6.3848014,76.96944,42.175785,36.827213,63.67909,12.677146,27.906446,38.56563,37.121777,24.459183,29.524494,44.332016,18.712303,80.13625,79.01768,84.03846,56.143723,49.020588,84.97327,44.84062,46.357414,63.215458,46.645287,58.84642,16.464012,70.7405,76.651436,76.86527,96.5277,82.57132,35.419025,39.23631,96.04652,78.19064,58.889755,75.51815,36.789116,20.136328,42.171852,47.215656,50.500137,112.64123,45.757256,86.386024,57.158077,51.411674,104.050026,85.915474,53.303036,52.96152,33.86062,51.07302,18.456505,47.223183,42.422615,75.31862,36.68758,37.95704,66.65783,28.699196,33.375713,57.56205,4.10947,19.353971,22.307411,41.078667,25.490625,16.543196,31.877106,25.675058,11.923808,21.468018,23.059689,17.809315,18.174421,49.814194,12.757777,36.30529,53.89956,10.123738,31.760864,null,7.315298,40.6413,43.311035,9.963026,44.30504,27.62565,21.61845,9.838554,9.807782,21.679268,10.753914,17.519152,34.441837,21.206854,32.62795,29.938536,14.963309,20.217419,39.849155,27.932272,13.241547,52.919426,25.49661,12.990368,77.067696,20.704086,13.406014,25.788034,5.8929186,23.675617,19.65836,59.415478,13.064702,59.371967,79.57778,24.349443,156.05055,73.21735,95.83358,51.35103,102.82499,146.46974,73.702324,20.782608,49.030804,61.494736,61.352444,48.262947,48.689995,41.586548,42.895264,60.173878,54.863407,65.97087,85.04288,26.754637,60.266163,131.28679,35.140656,40.06244,106.90893,38.373295,130.74878,35.90904,61.107216,71.95139,29.374542,17.45869,70.113,23.431377,23.61511,12.131521,19.631865,30.12003,20.220243,44.09589,43.12657,37.321724,60.78044,28.959236,55.867004,33.678017,28.572905,11.210278,39.167027,18.353315,32.01208,20.34631,27.91594,11.380754,6.5027447,23.118916,20.701021,14.6227665,17.349066,19.59917,34.626797,43.019314,20.968771,34.165348,null,19.070114,42.459854,26.2485,12.553563,19.368797,17.609838,8.891074,7.26714,27.113573,4.71105,23.126434,33.198067,28.131046,25.351402,30.45414,42.12142,3.377093,43.096123,43.603012,24.006824,8.884762,55.17753,49.003105,26.397518,39.77502,34.18066,35.06197,7.021238,19.98639,13.06036,31.30006,56.67568,23.452175,49.799397,101.83676,53.282944,67.94651,147.8737,94.09158,49.79018,131.00417,47.803345,14.558852,106.79206,77.268715,168.4058,34.063507,240.21494,286.5265,293.01398,310.73514,231.56947,48.977783,135.90973,110.127365,136.24915,68.284004,17.872772,171.99742,35.851818,36.016552,115.55821,71.05099,69.456085,112.31356,30.267204,39.986538,47.551857,15.054692,40.709415,23.04852,37.323135,18.388773,34.068348,22.030766,12.820342,40.28604,32.103077,14.261282,28.827602,37.37404,38.02734,23.512157,42.33138,43.448166,16.50036,31.782877,24.534454,12.375476,23.540539,3.096197,16.776697,12.829033,31.109497,19.00582,26.618301,32.06708,28.3059,13.466136,24.630817,null,24.899023,31.859388,18.90697,36.031067,22.701914,18.995495,30.654215,20.090652,14.771331,32.1629,13.603735,26.079271,28.63384,15.087054,48.95003,22.896585,22.874857,21.603342,42.88093,51.08132,19.054682,34.811996,44.778625,8.887224,22.40022,52.67037,18.907415,28.58812,45.075302,41.13813,6.794843,17.539581,73.07276,32.137196,58.949757,72.564095,46.04848,44.23751,147.8508,45.576458,22.545826,145.05478,155.69507,101.04703,243.24022,111.08015,182.53436,134.12878,328.12436,372.38574,328.65118,94.25865,224.05678,97.29948,241.7304,88.58676,132.82939,97.72452,21.0316,30.924406,142.95149,74.20869,18.890997,85.946495,66.23296,52.083443,54.708862,45.656002,23.480312,38.57782,19.40728,27.838879,29.343529,26.6112,38.61834,25.601027,73.83345,51.308212,6.144632,46.903595,36.83887,25.927814,19.310228,36.670784,30.648802,38.51945,25.944077,24.958694,10.082599,20.262241,39.23922,9.807014,15.136793,16.862885,26.107624,24.078413,23.663729,36.25256,12.915713,28.139364,null,17.987947,17.489912,25.349901,16.827265,6.040011,17.575684,19.77647,15.639723,6.0418944,6.95289,18.462568,14.223105,7.8055477,15.521851,15.621008,25.793406,44.58445,15.184492,59.173794,48.737316,6.159302,40.429276,57.367825,27.411493,53.656002,42.565006,44.615887,13.190738,19.874329,47.87469,46.190704,26.270885,77.882095,61.141808,54.293747,80.04412,63.921192,29.604435,73.60688,110.28345,109.50058,86.1284,143.19435,174.13478,37.666443,270.14883,282.1484,140.39082,509.1098,645.2792,465.12482,124.568214,276.54147,263.25894,64.64009,148.25137,161.2539,66.29084,108.29257,82.05865,104.46587,52.338245,47.806797,74.39053,34.460327,71.27563,93.35496,19.042694,28.82416,30.229712,10.483346,9.502842,41.524094,58.812157,13.840734,17.614103,47.411293,57.446484,11.999085,66.0635,58.09346,3.514974,25.045097,45.302834,18.814537,18.120111,35.633823,13.547131,7.1422057,16.179913,20.135807,21.373709,5.7779093,37.69748,3.211222,12.636808,37.81341,17.136347,26.108364,21.719395,null,9.287904,24.030365,40.741184,22.80424,10.0323,29.965088,18.184263,8.332434,13.998382,15.600511,1.0603703,23.046776,19.283337,25.30421,2.5139089,46.996716,27.763533,6.5716267,48.939846,56.98893,9.686833,36.49687,47.45936,43.54554,46.073784,37.86025,36.32544,3.9538991,28.406399,37.608078,20.827616,19.933851,47.256573,18.620785,6.6981654,64.80393,80.04759,10.709543,54.684475,66.87174,111.9713,16.837084,46.282444,157.40286,222.85948,193.89429,360.30032,755.4328,319.55984,1890.0546,218.94157,728.08105,407.44302,189.49777,133.98619,261.45273,80.20004,54.597973,171.54453,56.645245,78.103035,39.024162,35.792656,83.94021,11.01162,12.14892,87.51031,25.374102,12.385264,24.63246,10.820283,21.555588,46.302174,16.322548,30.09866,29.151127,47.848488,29.264946,12.064181,57.12331,46.561005,26.145494,51.660244,40.67494,21.536453,24.04292,15.114221,2.2754524,14.54233,12.641335,9.107701,7.3269,29.374367,22.831457,14.9140215,17.88416,24.058357,16.38618,11.736318,25.730867,null,7.3431916,25.473063,3.2005503,36.922993,5.4945407,32.999237,20.080265,15.3259325,4.3087134,26.700722,12.846117,7.6882987,25.45584,35.18423,24.741106,25.958525,48.212902,6.3710036,47.291702,53.819702,16.373785,23.837992,44.83891,25.750254,12.095324,22.964212,29.091042,22.111153,20.343613,13.072475,17.544691,18.515514,70.34579,20.934597,23.103186,57.327145,74.31222,25.5034,74.44909,24.071245,179.24051,76.17444,138.12259,252.92133,120.87246,392.7365,190.4913,745.92194,2753.0215,6262.1987,2746.4915,748.81836,188.78961,391.5393,117.49708,254.51735,136.2083,73.11165,177.66058,21.597265,72.52387,23.430098,70.26431,62.61402,22.979828,20.944033,70.85397,19.765192,19.23928,12.771343,20.589855,22.448065,26.574482,24.46602,12.92661,26.115097,47.123245,19.980322,16.64962,53.023937,49.46377,6.0865645,48.02531,26.982685,24.237982,34.928253,25.377806,5.904169,14.04631,26.292955,3.9554474,14.348676,23.339712,34.59559,7.9016767,37.510887,5.368136,28.486366,7.0304523,24.968832,null,10.065993,16.34692,25.80746,16.3175,15.481875,23.341728,31.138334,6.747795,12.24895,12.429199,16.261478,1.3328805,14.228,25.448093,21.882282,41.405785,50.785587,24.869757,47.11493,53.760098,9.760679,27.193415,48.706116,27.811726,30.42462,15.47967,40.68821,16.565552,11.342176,28.923292,13.092898,23.215492,83.573944,15.820358,12.061033,79.42493,36.9077,36.047626,76.35961,51.18079,168.55913,52.128574,75.20507,259.85638,133.88965,186.6777,406.77402,717.9574,209.23344,1853.5447,303.90192,749.3002,360.1317,193.45372,228.32071,153.57262,45.744476,15.308305,111.961365,66.44658,52.94217,9.138189,79.99773,59.55149,2.7454536,19.843958,46.731285,18.627888,21.940636,35.70264,27.16188,5.6065216,38.394405,36.425728,43.21734,42.926758,49.04399,40.697067,11.274559,56.76542,48.186863,7.6783214,29.407902,48.71533,4.8123193,25.697811,17.218155,21.400875,3.198398,17.373384,16.3216,6.579978,17.61675,27.098778,8.98008,20.223495,39.02507,24.602901,6.9900494,23.427584,null,24.922283,16.028461,35.336056,15.593431,6.1001797,37.80441,4.767228,20.818184,17.768839,14.970512,11.422908,13.016214,35.368637,17.757536,22.300276,48.045406,27.524948,1.4545647,58.55593,66.54936,12.987074,61.142128,46.73549,16.481628,12.843715,59.7865,42.707077,11.191136,13.233472,33.87448,30.51385,17.544579,89.16528,74.00639,34.564117,67.29687,47.00773,54.995518,101.451614,80.62564,113.96434,66.50684,162.28522,146.13795,66.64269,263.39886,271.6767,128.02342,449.37973,613.7903,483.08987,141.22687,266.10687,271.4782,33.221397,172.1625,144.24014,85.266304,109.77382,107.98471,73.07222,28.777197,61.676624,77.26655,56.247715,64.20256,75.39349,27.555044,49.039337,48.196228,18.941504,15.888532,45.10759,42.822216,54.89534,25.6364,58.487396,38.755024,4.6899276,44.633797,60.266712,12.756754,44.964756,26.02179,18.417477,15.353423,9.615359,11.278362,19.542162,6.021766,3.7526543,14.745957,20.714275,19.300112,6.0750055,17.399622,27.379065,17.334028,17.678736,29.21958,null,12.389614,35.133736,22.766605,23.230585,22.983286,17.415277,14.314994,10.399373,38.667942,19.621315,14.668023,25.56283,23.414469,38.87643,30.01252,38.167274,20.872763,29.886166,39.41479,48.55163,4.713056,56.267223,71.26217,29.793606,35.93383,29.13173,31.241213,27.97171,21.724083,35.15366,27.281359,37.76835,51.935555,53.740337,64.49467,82.31663,15.693514,69.30644,142.7797,31.92898,15.395137,91.724106,137.05998,88.22211,243.49817,94.07314,229.59674,81.62671,313.02072,359.26614,309.96393,119.01857,182.84203,109.76514,238.04298,103.768036,156.65176,142.83209,26.31869,46.392494,141.47293,42.83362,45.22677,66.44464,53.1304,35.962826,64.26163,18.505827,4.4802747,42.45149,44.594337,30.94769,18.254444,54.285084,20.179564,10.440885,44.97828,36.197044,17.38544,50.349552,41.85592,22.481241,24.820213,22.410517,49.30563,12.545592,25.42426,25.470552,8.756182,30.368948,11.177145,22.708847,28.408724,20.051546,21.857174,34.60133,22.625046,30.242804,24.061956,13.064127,null,12.558142,26.907024,32.992073,25.627665,20.888308,29.731953,10.584863,14.078944,5.3246794,27.212934,9.649657,27.196627,31.601484,11.609162,45.544697,40.564743,25.090122,38.448856,38.2982,26.060503,14.291997,32.531403,40.77927,9.873203,23.74728,32.48324,16.978115,37.69648,25.055723,42.20919,12.329101,40.983604,37.83104,32.142757,107.59282,59.97638,70.91231,103.14629,33.70532,45.073936,169.0921,20.212883,77.11919,138.61002,114.05608,130.66838,54.244484,232.96436,310.56393,291.10944,285.68,240.15356,34.95479,169.72644,79.09133,113.099785,21.889025,52.213055,129.95941,44.333485,98.34355,142.40073,59.159077,47.091793,96.78029,48.909603,18.98155,55.717506,32.3684,13.633032,21.572803,11.637706,37.410812,34.608025,40.978397,31.460598,49.50494,59.911194,8.741675,24.82219,43.674595,46.960567,5.2772036,43.63522,28.942362,25.101759,29.333067,32.5014,24.474976,3.5277684,25.956612,5.3853073,8.852812,17.25185,18.792076,10.38956,24.522291,43.73771,15.594349,50.333786,null,20.02668,41.17507,33.95808,17.926014,18.016518,15.272219,19.697495,23.90897,9.118815,9.998155,30.85551,19.493475,33.49301,18.530733,37.92729,14.604636,25.491123,38.606888,55.60272,27.534485,62.536278,38.685936,35.70681,46.806526,17.117928,30.649233,19.32158,15.1454935,22.788633,24.127928,67.07069,13.330042,32.641426,70.76973,54.11643,38.04859,117.386765,37.991096,100.697586,30.202581,45.549816,129.41426,60.68406,34.255108,87.6404,62.87688,50.959373,53.057606,43.16316,45.24915,46.221046,45.49727,64.19289,59.053276,51.36728,20.732368,72.61712,142.33629,107.724846,40.76677,94.20613,62.221363,147.47592,18.614208,73.25809,57.712482,18.512901,60.76285,17.73572,27.465023,8.8130045,32.59964,12.258269,18.83391,76.24982,11.345739,21.78849,54.74721,15.1850815,22.829008,41.855846,22.270903,15.336836,32.321743,25.9071,22.544333,34.11724,12.709464,14.661005,24.416174,7.8226814,8.036127,21.86531,26.709036,40.385117,12.518142,41.95727,40.935932,9.08867,49.724792,null,11.655764,49.138023,39.22638,11.076463,47.048283,20.879484,14.045323,22.255768,20.181576,14.206878,25.103573,31.97937,22.461811,22.503733,39.27329,19.174212,13.603346,2.5783057,61.151123,30.833454,33.128063,67.513855,34.176,37.403023,74.77015,46.04805,49.16526,15.356515,46.978024,41.117233,49.63331,58.19796,88.25637,100.60018,47.00972,51.43493,86.02566,44.91033,114.377205,54.487823,43.11124,37.270454,15.600459,44.73072,70.543846,55.972984,84.517685,97.87556,38.035896,32.32945,87.821754,104.223045,82.44042,82.987015,75.91671,12.955511,52.98895,44.52785,61.958168,40.636658,38.493248,78.37489,55.59095,51.57941,81.74906,73.34738,80.55785,19.749743,39.823624,31.501036,26.413147,37.982506,38.65511,33.262516,12.382869,64.14924,33.399,39.60296,81.146095,6.5185933,38.999283,68.82233,20.104485,24.960503,45.3961,32.168163,5.5440197,22.728909,17.144152,5.3427277,11.590464,28.262753,10.110135,23.358713,29.569002,1.2740344,19.56839,46.43955,18.473635,18.319424,null,35.40253,46.613247,14.432554,24.598999,26.533817,17.277893,11.729668,15.564007,21.976513,20.742426,22.621035,15.860943,28.323048,0.9982828,36.802647,43.785393,41.80862,49.257736,47.230747,59.55383,63.68856,39.34084,81.31854,39.50833,36.84144,85.77763,46.884956,32.977844,15.31263,51.619675,39.541603,37.0361,47.912273,68.86504,87.23593,87.02437,39.27635,35.938248,21.811522,35.595234,37.213676,69.8568,85.78506,27.344906,70.72784,98.55577,50.82492,37.976765,76.71841,76.63128,36.364895,12.980546,66.49954,70.61537,79.5387,55.58842,92.769615,73.909256,28.606623,47.582737,23.466764,90.83819,57.45997,25.80186,84.64977,13.832788,34.531094,19.172073,16.836824,12.281835,9.992466,33.63706,43.301147,56.029125,37.749374,95.41348,27.953417,61.268192,71.77439,20.125189,59.14593,34.588264,22.094788,30.050678,9.692613,30.451973,7.9938507,3.3090985,15.913078,6.4196997,24.700588,15.582437,14.032768,34.34104,32.181858,15.047804,29.60494,28.350086,23.931496,27.331356,null,30.240759,26.480854,21.737,16.49741,19.72712,32.10174,16.654793,18.942379,17.26987,13.730995,6.7186885,22.081484,10.124892,13.424055,16.825834,41.20261,8.5868225,60.6518,43.888744,52.692295,80.80303,50.198006,91.81662,64.71393,48.069054,44.064938,45.79053,21.68344,20.707539,14.690841,49.475437,48.041565,67.3756,47.693172,39.2196,65.3744,20.861721,65.92669,28.769821,108.851234,26.98535,38.928936,116.63107,112.7817,31.836157,28.466537,90.13544,62.548084,11.44643,3.000061,28.650793,56.75465,63.897785,38.192833,30.616373,54.11072,55.104237,37.91764,18.247406,67.82529,72.80607,117.44987,78.518074,106.659584,31.395609,49.034267,45.401543,23.320602,38.91964,37.571682,20.909538,26.207296,24.514574,46.755615,56.537468,24.29425,84.39049,40.57768,50.702045,66.59751,26.95651,30.679235,57.009953,22.722553,32.602768,28.54213,35.86162,22.300575,6.4303994,26.732227,24.617529,12.424828,26.082117,7.67465,28.979284,43.540173,29.637527,17.164946,31.46825,9.323587,null,21.250187,22.478205,17.179579,29.714014,29.690483,2.0980508,44.976585,25.149868,11.913295,50.731388,22.253334,35.811195,11.1265135,28.474823,31.76997,48.322582,32.538284,18.118237,52.589638,43.25814,28.337246,75.290375,48.204548,47.479954,40.889027,7.479206,19.794632,32.458855,11.617276,31.064669,27.90101,85.844795,32.842133,55.508636,55.34631,46.769737,57.38966,33.923035,56.400093,25.483505,51.79474,75.35474,23.937885,64.33571,60.646507,14.957677,36.459103,18.795944,43.6339,74.22827,68.68253,45.538803,31.248283,69.303276,48.32441,82.85963,31.891556,61.14714,82.62626,53.915768,54.581493,48.0125,66.96785,20.494566,79.716324,20.666088,54.467857,53.2252,34.829582,50.15982,92.56872,26.942451,35.987663,50.179913,38.253902,15.7880745,89.82628,41.224007,72.99587,89.52922,24.38022,53.681717,50.786266,35.274075,21.044184,36.29998,28.32598,7.046095,27.169327,37.232998,33.070984,19.681412,4.5652,12.842412,17.805601,12.502849,12.934181,18.338892,28.040058,30.81039,null,7.0429673,31.733912,7.2525444,21.258707,30.394144,29.372545,34.620453,21.704885,36.15121,21.9184,30.25779,38.799294,16.355545,24.422415,15.165711,27.168056,40.50686,34.61066,48.825726,49.627674,22.251463,51.77858,22.055191,3.4789155,44.833138,39.003235,17.674997,55.72287,52.39781,44.89679,48.972687,18.92279,20.619085,35.962105,11.983921,83.453384,49.360638,45.2412,71.24133,21.851446,90.31843,17.252604,34.90735,42.697712,77.32676,60.61414,97.46106,100.05636,71.43155,71.63142,92.34006,77.11336,59.534256,95.95959,68.2506,19.67896,59.492287,30.472132,65.479225,34.995445,97.305504,29.43579,73.8602,43.44621,62.237637,25.340315,52.093616,8.6136055,56.342777,27.924406,47.634266,33.273712,0.560178,15.326873,22.602297,48.885773,28.761618,35.292706,56.027454,19.786469,44.42757,44.27748,13.864941,46.58263,11.113345,26.643248,6.22821,16.80314,30.740278,30.77951,39.46139,26.521921,44.73584,24.551298,21.472097,40.695877,5.1740756,21.994308,27.410034,13.672169,null,14.462166,26.086597,25.66823,51.132248,14.629269,58.557705,36.029175,37.279556,31.589886,18.264688,32.197857,22.304684,16.268276,11.797616,26.010221,21.788124,15.815896,48.95046,19.185753,56.933125,19.545954,16.15428,38.190033,36.350746,6.055055,4.364105,17.887201,25.372631,17.397068,41.98194,14.257418,75.675804,13.971596,62.5584,22.22762,69.93899,29.617147,79.515366,6.9585967,89.59948,60.12541,64.12459,141.14398,92.97917,47.845337,77.58752,74.96134,24.162142,26.620117,23.729992,12.691053,16.590128,49.664906,84.31125,74.59065,54.31842,86.447685,53.289455,33.670074,73.93057,15.1193285,62.089172,34.72557,50.20777,28.481544,51.406975,36.29858,38.058918,30.243141,28.972563,26.120487,17.171385,37.097527,21.524075,38.748825,23.348654,15.431238,29.060692,53.513527,23.566183,22.401876,45.352463,14.768369,11.969154,30.979696,12.97083,24.407137,39.944763,15.94676,31.802954,30.693008,40.801487,35.02014,44.222084,42.507065,44.59484,15.349641,38.618645,44.670197,22.59571,null,23.187994,26.749582,6.850059,47.480038,17.984106,42.172062,28.884169,26.790054,17.909903,35.979256,27.052906,28.472443,6.9334764,20.345465,51.884052,3.8154602,59.69084,50.758785,51.11551,48.809673,35.664722,30.635462,20.966356,35.142143,4.6492643,17.725952,5.1571555,26.939426,26.933256,41.703808,62.168488,27.345163,48.55332,42.85391,62.602295,11.616193,66.19627,32.39856,72.16185,90.88648,14.709269,52.484413,27.591955,31.084904,41.125347,54.58683,69.65584,47.54752,10.263798,28.0744,24.913807,50.620075,77.12691,76.294365,37.155827,39.38238,42.2009,20.173986,6.6089606,78.007706,62.93618,49.07496,88.05013,61.20699,98.569145,8.158226,55.608585,41.750805,37.010563,20.428904,23.025719,14.359614,35.40817,24.695778,18.42487,33.473522,9.881102,22.471949,30.2999,11.585636,44.09367,14.773745,46.705418,33.278507,10.255803,33.806305,9.979892,26.574734,9.2657585,24.69406,31.943865,32.564575,28.262186,50.569164,35.631836,35.765873,41.97636,19.931097,10.77704,19.779398,null,29.208067,59.9897,32.703426,45.631344,38.28507,27.740784,35.709698,17.199032,43.34184,14.821763,13.118864,11.777365,17.578037,17.197765,11.649664,37.544216,13.33275,45.929512,12.717544,43.17243,19.932634,42.868786,20.955324,26.673609,33.67211,16.725824,17.139128,31.338326,18.430586,38.46448,27.668867,73.9512,67.354576,33.526768,13.787527,73.76187,71.751236,5.44812,45.140076,11.406635,83.44957,110.07092,48.2901,69.10242,96.805916,61.85218,25.796154,16.41317,38.997997,44.178417,50.389145,29.05165,34.066437,55.88331,61.542446,34.7946,29.329542,62.58201,100.210846,43.135143,48.690876,18.521362,81.66175,98.86004,25.695988,36.41961,35.045513,38.17028,67.32295,31.175566,16.716192,49.54631,24.457705,24.488077,17.13267,30.053558,32.205097,14.608748,38.049744,18.141312,43.356064,36.41451,48.139793,48.645084,25.023796,38.901268,27.555069,26.709188,19.315302,19.164625,28.489187,26.654713,16.520761,39.08244,12.809711,22.290041,35.328762,22.23519,6.7211304,25.140017,null,17.989647,43.573,10.193035,23.050894,22.574245,27.754917,25.383667,12.651038,6.356485,32.862404,9.226948,16.238384,65.93091,21.089481,33.579952,50.053776,49.992355,33.574947,6.684882,52.637917,13.836585,16.981937,37.31546,8.049773,22.214525,46.701912,55.193127,18.154057,55.14773,38.694286,39.186867,29.081701,41.080986,17.03948,31.507633,15.864229,34.33638,54.801697,20.602692,59.37929,81.20327,33.597237,16.59683,47.358627,38.765995,35.879272,87.06085,99.93228,119.57763,135.74446,108.453865,98.477554,90.944885,54.412193,4.0383215,22.689642,35.3367,33.951046,70.59247,34.424698,69.31981,89.24622,5.2153854,64.4365,39.72526,62.41271,78.30015,26.065754,18.770712,40.56008,32.400417,15.517069,22.440542,28.205647,29.247267,26.25832,28.942905,59.7869,12.622359,14.826523,51.172974,30.858437,58.746086,13.155935,26.661142,27.60206,23.178661,12.969933,18.983334,20.627289,17.577848,27.719843,7.39621,45.437477,19.756197,50.334408,28.518227,47.670284,47.56427,30.04442,null,24.692108,9.074901,35.04526,14.740905,27.45876,35.904015,24.463694,10.771047,2.0256548,4.570049,14.944146,9.634561,20.357145,44.377903,23.391106,43.734886,8.597367,47.509327,25.90942,23.430233,33.5029,25.17029,17.274965,33.191273,28.13289,30.501078,21.727108,25.453066,21.405642,51.551132,56.218792,11.284912,42.547558,13.8267355,82.868095,39.73039,71.04154,70.208984,31.3532,81.98609,34.009216,46.710754,93.12306,108.09335,85.21301,21.612228,54.059917,97.002556,91.726326,98.55756,100.42293,101.142685,54.391254,15.22556,36.87678,75.68633,82.254105,35.213043,30.94211,61.10959,30.741018,56.935,62.25747,22.624138,67.498604,39.278828,14.354054,12.793592,22.647093,52.068657,43.49374,24.032902,12.050723,47.683323,28.39224,25.238623,15.819599,40.410744,19.610718,22.345285,43.01939,24.865238,31.129519,61.16031,44.50312,55.579937,15.433258,61.01447,21.609655,41.21923,12.674214,20.356379,14.229999,9.241867,26.822151,14.042324,14.112492,16.853477,24.491428,7.093018,null,35.68846,5.7516756,38.306633,18.182444,28.289951,16.594893,6.0330987,38.481064,30.03655,29.21188,22.479717,23.855381,28.901821,22.627916,19.789522,60.269638,28.27174,33.290085,22.198425,43.85586,13.849798,41.296402,51.83734,4.441661,4.945988,38.741043,39.298996,3.825833,35.157215,31.725122,60.929546,33.689747,23.551235,33.654648,13.505356,66.90785,55.23279,24.799067,75.24999,59.111046,6.4657636,52.08832,55.163036,37.764984,30.901558,100.35179,119.079185,99.13878,85.00457,79.69549,78.19148,93.04785,86.40996,58.34583,8.528577,60.249084,93.424385,57.35987,34.947952,67.16676,28.714003,37.914543,80.47636,78.34133,45.541588,53.08607,10.151506,66.9387,44.48315,25.95128,17.733631,26.3885,26.657454,20.57626,30.942646,22.632189,29.61909,30.611555,35.992928,14.931724,48.680386,23.622984,31.650429,17.522167,32.482456,16.939415,35.413963,23.379513,13.906703,29.320614,18.59461,12.231673,11.256273,10.354694,14.71169,24.549726,22.681673,25.834545,12.2967415,30.149986,null,28.373785,30.817793,26.508905,30.755697,8.636132,15.176105,4.2571797,15.061145,12.085276,20.5224,5.150399,40.852566,10.566705,28.54886,9.696065,41.711315,14.270096,36.834373,23.882095,41.51658,32.78361,30.456678,28.83073,17.096354,18.593456,0.17288783,2.299598,37.160854,38.68601,9.817236,13.118078,17.21759,38.30014,27.588545,24.41893,73.22398,39.398975,53.45175,62.54213,40.137035,97.53502,72.69191,48.782494,14.233714,36.949596,53.36407,56.06709,57.542095,56.891644,42.606667,40.782993,60.665314,71.9,62.94248,40.99591,26.174427,55.444122,60.1338,40.638115,23.601109,21.581842,53.9071,26.188715,53.627098,54.22986,16.057604,37.65857,9.676535,39.988377,32.046,9.555324,19.732506,31.978613,41.241047,8.925367,36.313156,17.364243,19.40876,32.819416,15.038698,26.91621,9.069511,26.801304,21.133305,12.990088,45.497204,26.738508,30.319778,14.294541,6.1136847,19.211647,20.155085,21.339912,8.998009,29.041555,12.375615,44.75379,8.729685,14.952554,31.20591,null,28.36538,23.550913,18.407133,5.93632,11.468161,13.907694,13.676978,3.0348418,23.676544,16.96787,52.67024,13.480183,26.121449,28.391994,37.14248,9.525598,9.543267,22.264597,20.112354,4.2789397,36.382656,30.446278,29.04858,15.056983,58.5198,24.769407,26.214481,9.606823,54.714397,61.38337,15.810302,45.300186,9.72344,15.1622095,16.556833,10.8296,9.457667,25.119444,35.165565,12.834655,83.87482,77.08851,18.507143,28.789043,46.810123,34.233765,17.204594,16.414927,42.872704,70.7178,38.235485,35.804417,63.422623,71.887436,58.726776,49.3514,7.1847844,55.962143,45.896824,27.585321,52.282005,65.837234,45.554497,48.79927,44.71775,26.081835,60.76168,48.099037,21.945478,35.913067,19.108732,18.917603,12.169856,34.173492,36.078186,47.722744,22.116646,23.192526,48.271423,39.27154,30.847261,9.660196,31.731659,3.2392476,14.9793215,23.607767,27.266495,5.6292677,10.956842,6.9731045,15.221232,11.281815,4.721275,18.648758,23.157774,3.9259071,4.097437,14.727968,14.623452,26.307125,null,23.07441,27.80632,20.023838,35.80704,7.104945,30.200218,13.379523,32.379726,8.00821,14.140124,23.535278,27.036123,5.335138,12.944002,12.378851,42.17851,5.8452168,54.568604,8.558544,35.402428,23.437563,18.843065,21.764153,13.137915,13.280766,14.71323,31.90714,13.1267605,43.16487,42.457863,30.41407,22.158684,3.703914,44.61975,37.350536,21.453932,61.230198,44.04445,16.153301,43.57016,28.674109,11.024285,31.057592,73.170944,104.18557,69.96488,16.03128,27.460611,14.606494,30.794823,31.009087,39.3617,16.849165,54.731552,74.194016,81.97954,43.03895,34.103706,57.499405,67.60032,31.81407,16.666637,27.345465,25.000715,31.96086,69.65849,24.318476,6.7315006,2.4212904,12.899523,35.42236,20.473387,9.43555,10.773729,7.0432343,16.663094,19.350925,14.681747,19.523458,18.899302,22.752537,5.818821,10.512407,36.936287,36.29142,29.175018,22.805138,26.061247,19.457659,16.389912,10.877598,33.195393,8.905401,15.758174,16.168047,10.786957,21.766838,16.13332,30.885036,19.435286,null,5.7139106,33.685486,11.982002,6.6233487,18.827085,8.794172,10.381791,32.23433,25.90276,15.719039,6.970387,27.430027,20.134739,17.167885,12.192916,24.205757,5.7927103,3.6429262,12.790336,5.2815833,12.467361,13.108773,3.9147148,19.55715,14.219268,44.27703,11.618404,26.475939,4.0996714,48.537796,39.345974,41.847336,48.313015,21.580267,31.687147,16.65474,37.439804,28.634441,44.66748,52.13825,10.8197,59.745438,53.40777,41.25974,46.998444,11.820822,46.742546,41.61408,53.758427,84.44652,83.332664,34.604233,13.390072,15.9971695,26.778303,55.58492,49.65134,22.92225,34.674553,52.777245,29.978552,5.756755,37.764755,50.840393,41.71012,36.680195,42.430325,12.210536,22.449232,20.0464,13.561199,31.387184,10.960897,27.101597,21.379734,33.401047,11.782124,2.842087,31.45543,33.812828,20.507145,8.962814,38.067337,4.8931537,29.501287,19.114698,23.396484,5.618812,30.786644,27.571707,14.297869,11.651164,21.333662,18.580221,10.19702,10.815453,40.23373,24.7994,28.142046,14.741461,null,24.705292,26.757502,23.812078,5.4393725,9.863079,24.997375,8.2565155,19.948824,20.252289,9.519913,22.296862,21.502289,29.771025,10.526225,21.042545,21.668781,25.045801,34.821068,18.032589,34.251156,24.011528,13.601465,23.964453,7.581512,29.469946,32.955338,8.404397,18.981865,8.504771,27.8838,11.8129,20.423395,30.05891,8.7675295,41.57104,36.81076,20.075703,34.58627,37.77895,7.4513125,34.392426,36.028263,40.429504,22.832375,28.41683,29.97672,10.890031,37.637627,52.055767,71.022804,70.533844,44.103195,19.854553,10.041488,10.675294,64.79036,87.18467,66.07625,65.78244,48.73226,47.665283,6.678589,33.51635,50.7091,38.396378,22.263657,25.267181,20.292456,12.861049,36.445057,44.745808,33.604813,17.308191,25.981709,55.28259,35.134583,19.06642,5.274173,14.7827215,16.201569,22.792303,21.57737,21.113354,18.315195,13.8694105,13.708932,13.884493,35.37738,23.567122,30.925934,9.392208,12.660056,4.3835053,25.199997,17.272453,23.348682,25.27519,33.367805,29.149092,8.1582365,null,7.8044224,24.124598,17.738504,29.439808,14.70959,22.661217,46.9468,17.73294,36.843544,25.663404,20.396341,23.74924,25.350256,15.631246,5.0267158,3.234591,6.5189896,20.94307,17.533041,28.691711,12.969718,3.5866604,11.59824,12.572298,13.838991,5.6909914,19.383862,35.81538,47.94039,21.072927,22.40621,34.502254,9.934138,13.369877,24.955519,28.830103,24.497963,40.584526,25.775816,28.905796,40.83209,50.163086,35.424633,31.895687,23.575562,25.528164,32.11158,51.707222,64.39466,54.011166,48.205044,41.804714,52.847424,42.29108,7.7718096,29.148962,46.048252,60.455917,34.252953,12.962471,32.464767,56.753254,36.990707,24.62303,28.81325,28.313116,6.328592,38.79412,33.523212,14.599032,34.53859,30.629734,26.465382,28.600561,15.696341,26.675713,25.10276,49.689716,22.363766,22.715229,25.503813,24.31617,28.930147,22.905994,26.632633,27.38972,26.897263,13.5837965,15.332542,15.262205,10.555449,8.660631,29.758572,40.643,11.871831,23.945744,35.216084,16.575306,36.256035,22.204262,null,14.360333,11.00186,10.337034,1.9906778,19.489756,21.922878,2.1478992,16.894829,10.884916,13.103879,10.904939,4.329214,23.978989,11.824013,12.036817,10.864588,19.266079,7.237608,30.61037,15.693148,17.076775,13.201735,19.979582,7.2263145,17.885672,18.348928,36.349506,42.45007,30.140623,25.149035,19.038105,13.411683,13.974576,24.55064,4.9752827,14.191256,29.541357,19.109425,18.032232,32.745632,42.346474,28.119358,28.710579,17.364548,30.01484,38.65841,45.242886,55.942368,38.66259,20.368845,19.061508,34.619083,42.375145,36.343544,40.022884,29.642414,30.961601,58.49021,41.341244,17.211693,13.323674,26.078444,41.4911,47.612755,29.789783,10.484675,23.278847,22.69311,28.183485,28.289457,29.309254,45.481575,21.36245,41.145695,21.650185,20.54462,14.73503,10.329623,12.563258,25.322418,8.228033,22.019726,13.885357,17.636786,23.42222,14.322238,17.614283,11.988243,13.453266,17.611214,38.081223,8.150548,16.597668,31.631495,11.007797,31.809795,8.498466,8.6220255,18.636353,17.246607,null,39.364418,8.820535,31.882986,13.63332,26.972612,5.153578,4.3736405,15.150233,7.1047344,8.286112,16.957682,8.164065,15.596717,17.450687,25.952662,19.958515,7.3711824,18.69145,13.3752775,18.189154,17.04424,4.457507,37.235653,22.549835,15.643538,15.233075,16.556847,7.5508432,39.936676,32.62004,25.184343,26.708347,11.35188,22.006659,31.887424,26.287283,27.921534,27.543856,47.919548,29.488367,12.034915,7.5660324,4.701635,3.960484,20.994331,29.904266,16.969587,13.357421,16.64465,9.795776,4.8060393,1.589064,31.363556,41.87549,21.52222,5.465842,2.1619089,10.099688,8.921425,21.323595,25.275616,21.884893,18.415386,42.004436,21.436686,27.462532,35.766495,15.410282,10.338183,23.956272,22.928175,7.739589,35.86388,16.429632,35.983013,34.46522,18.513456,8.826642,18.141922,26.863573,15.772943,19.620338,22.97817,45.723774,16.116417,28.770107,25.607952,32.728523,7.0814633,19.567495,25.015112,9.173351,15.331577,10.721918,19.89298,20.590479,12.105646,7.9738493,5.7390876,24.563042,null,32.842014,52.134853,5.266687,14.470179,25.691832,21.665188,8.054159,20.786146,26.394655,14.509377,26.215288,21.297102,37.52389,13.084201,20.343046,18.003782,22.621056,8.084614,25.247612,23.587395,23.675272,36.805122,15.208328,30.522161,12.903245,23.59695,16.818102,20.822588,6.8186436,15.422535,16.817337,7.8641267,24.820255,29.984402,15.609108,11.695603,25.59569,28.171146,5.93356,22.044405,16.592897,9.142484,8.917938,25.202404,31.4077,25.761257,28.469324,30.180712,22.54856,33.767807,13.760654,12.036307,36.062084,37.97009,26.511475,28.668531,47.385193,44.56821,9.517315,17.230959,9.151076,32.036163,17.428331,17.412327,33.882687,20.087147,7.307455,9.999101,20.568924,9.569198,31.279919,59.42293,46.765545,25.237143,17.842245,22.056435,15.712487,33.994576,18.519962,2.9395714,22.669329,17.525438,26.35329,19.846033,7.4348197,14.192073,27.52185,27.339558,11.374429,25.277683,21.670645,11.835551,5.714169,27.7264,5.224478,21.82739,17.600733,21.03377,25.42252,18.897486,null,10.888497,4.4254475,25.3735,11.72245,13.140014,9.24643,4.4031773,12.514358,11.698756,14.288981,4.3789325,13.71884,11.431877,15.94389,17.362312,23.304346,15.064085,21.404083,13.142054,4.207487,12.703224,11.494796,15.462007,22.937143,36.439243,4.964906,23.660782,21.111263,39.520332,42.47647,29.71304,15.4523945,16.365547,19.960272,9.562934,17.537828,7.8993196,18.56482,13.7251005,31.600443,23.999247,11.878857,28.4179,35.591377,23.203167,15.593973,8.7045965,19.073109,16.55371,14.055159,20.910057,8.102154,19.69566,29.558151,22.059706,24.441778,30.327885,25.335398,27.811304,40.760597,34.51906,24.68903,23.35673,21.267864,28.801174,15.403351,11.987153,21.569757,29.112822,21.420341,7.1424775,12.078892,14.717382,11.122805,22.215273,18.15452,23.714998,14.071153,41.31978,6.7907457,19.768375,16.652441,6.732493,12.232673,16.32403,17.09674,23.45432,4.816202,27.064451,22.667643,24.159216,24.33756,14.914977,32.089115,12.647571,10.761363,20.994947,14.902423,21.247894,13.411318,null,11.237942,29.925997,19.117924,15.382208,20.96621,20.705338,14.889742,12.479652,13.7782755,15.941674,11.970964,9.64468,12.124732,14.732043,12.40174,22.03029,10.283702,27.60148,24.187607,34.546593,13.505852,35.796146,17.232222,19.278673,3.2024472,18.584885,38.589256,35.92729,12.447221,28.723883,5.3541036,13.984906,18.74529,29.334179,36.778023,46.05557,16.09722,34.179535,23.458452,36.15126,10.753269,23.741722,26.881918,47.2087,31.995483,19.97207,30.521473,11.239041,15.385032,16.762627,11.956185,36.38113,28.34662,10.2196045,20.147629,25.286974,17.272795,32.354115,31.564104,11.5937,10.746318,2.9975426,13.605557,4.784356,18.478157,15.828193,14.979681,23.136267,14.965173,10.577395,17.936821,27.9846,11.670807,31.8698,19.238062,16.813211,30.186655,18.115564,18.67559,9.558161,4.983319,11.203954,9.370103,19.510376,19.97755,24.872625,32.247944,25.577835,4.632078,23.855452,13.546184,12.765516,26.074038,18.18284,8.942483,18.447893,27.34053,14.152522,20.999166,5.2164,null,4.2653475,15.643892,17.584438,20.08007,5.6848884,13.795725,13.229875,20.344965,16.143122,6.0439553,20.54469,9.063685,10.404353,8.772311,3.3426402,4.897889,9.344867,20.593658,10.388625,7.1953382,15.215048,26.242283,28.476946,12.504397,20.081928,15.249332,6.0669246,12.963815,29.956589,19.865417,19.004047,32.78399,20.068684,20.943445,23.746178,17.895063,18.704466,9.512053,13.370574,27.339277,16.33783,15.774501,10.584295,12.071969,20.65522,19.998215,10.988284,14.112132,22.734114,14.261858,13.911334,13.56751,13.341665,4.74165,38.58857,19.393782,5.3080945,20.219154,17.950264,9.090915,3.155558,7.549359,8.994242,20.128862,14.352627,43.357784,6.5621896,21.142994,16.71891,14.215951,16.92655,27.325825,26.838358,52.878376,4.5691037,42.77981,14.450145,14.439755,3.8313472,26.04619,29.935085,10.6406,22.722351,17.500912,5.409457,18.722206,16.27924,20.202927,9.159583,17.592701,6.7960343,5.2505946,14.693939,14.585844,9.022327,5.6681533,1.6347986,16.378227,36.384026,21.094887,null,23.336409,10.718233,6.0188103,25.209604,19.102058,13.390746,15.286099,4.1371565,14.083177,8.172802,22.162655,4.2903333,18.42273,3.50294,14.169312,22.248182,11.751281,9.931195,10.864488,27.832197,14.231989,27.42234,30.176846,17.052486,17.147814,17.252718,19.078344,15.821962,16.904858,23.31761,29.16256,12.39329,39.554142,18.894138,1.9266242,11.933214,13.185405,10.76455,25.797123,20.585024,11.528553,11.402155,3.349626,17.810205,16.521982,20.05409,23.371813,10.101044,22.979504,33.18843,22.832802,17.576427,35.361904,18.143995,13.633976,10.7659645,32.041565,31.587763,13.517631,21.969772,28.875519,32.624565,14.662623,11.01546,23.970304,22.706224,17.106014,17.046106,7.2084837,9.824649,40.187744,60.679806,20.5029,17.82699,12.265805,15.104283,3.3115695,17.333942,13.695161,14.736929,6.292646,4.5258,35.63927,9.388635,24.93126,8.950042,27.146498,2.5393002,14.253922,8.8203535,15.0357895,13.4225855,6.1630263,7.819512,21.397083,16.854933,10.359085,10.548257,14.091749,8.662641,null,11.795101,20.506763,9.512982,5.5009294,21.543795,12.941221,27.63093,5.186642,16.907028,1.263055,10.226756,25.766018,6.872445,25.280685,16.176647,25.79785,8.029367,11.643217,5.8253217,4.617,9.969888,9.452017,23.753786,6.3885446,23.134912,17.559584,27.43548,2.6051762,22.13174,30.811287,11.040206,24.401459,21.43506,8.844463,18.611761,14.759995,7.001526,24.303892,20.20484,22.059801,19.570261,10.952252,6.009421,13.189661,27.235844,14.540174,4.0770726,17.243351,10.218176,9.547554,16.818771,2.3125057,11.6749325,3.7738547,23.363451,8.037255,22.359945,7.0319953,21.763597,20.336634,24.241993,30.930937,12.78006,12.489045,19.380241,19.697214,22.251345,29.638739,15.210211,58.602463,30.369038,34.196133,44.5037,24.598953,14.783979,12.237949,23.489695,23.215498,13.605289,16.245333,15.115241,26.643608,7.3256745,9.570977,7.4248595,5.8660855,2.399931,13.696619,11.370592,19.438066,9.226609,20.760075,16.916718,24.117537,3.9712903,7.3307524,9.290103,8.929771,14.921633,12.456493,null,3.9204087,26.560202,12.380103,17.11097,19.328192,6.6706367,7.3618393,21.081896,25.196516,3.3135865,6.1662407,21.09602,4.1140237,17.662222,28.208605,13.579212,8.371064,15.537084,20.13267,8.572503,7.4223733,29.116749,27.718292,38.047565,15.460201,54.04616,31.175005,28.291052,22.597513,7.391493,18.281794,14.981491,9.632843,9.578405,9.999917,21.333113,40.937733,9.60818,1.0195581,17.024883,17.545763,4.514807,2.1254938,16.2471,13.655093,14.577975,15.124565,11.67384,7.7984924,25.019903,29.593664,5.733528,19.733437,11.542674,20.681087,5.831312,18.415201,18.60071,14.035499,22.49778,48.878258,28.503252,3.3280036,30.688313,24.72436,11.002527,22.033522,17.00282,1.1334381,15.747337,42.837414,27.982637,16.073977,40.98582,22.476871,25.908495,25.333878,4.294176,8.074987,17.172337,13.449675,14.5846405,22.595129,8.989248,4.040696,14.620047,4.4269843,3.1072295,20.961468,2.6561213,22.462145,9.929117,11.318651,24.666262,16.363361,28.379805,20.338127,7.2935114,14.496313,19.906017,null,11.486158,22.201315,9.272294,29.738918,21.139357,18.203375,15.403168,22.967144,23.376137,4.1738734,14.158965,5.0135484,17.402979,5.2672954,17.730328,18.613705,12.935023,5.350291,20.731419,13.977169,11.503074,30.590502,27.981575,2.8228452,14.552407,15.938808,17.796406,20.204983,6.9542646,14.444612,18.637169,40.78802,12.751363,22.774382,19.266262,26.047958,20.370218,25.535738,10.913153,16.74558,12.738172,8.878454,3.672313,10.012868,3.9084463,4.518715,5.4002137,6.830552,21.74242,24.123468,25.60802,26.749332,10.329533,17.87475,32.846134,6.861843,12.259007,15.822075,7.6470957,6.1650224,44.0776,38.69302,11.833713,16.417517,10.825533,10.27521,4.8774743,6.7868004,18.164158,11.76086,12.488359,9.645957,23.28384,22.735878,21.389603,1.2502084,19.92326,14.341968,14.067335,13.963764,15.283989,8.102065,11.135439,20.399733,7.8119307,17.10309,17.744102,19.332365,10.472692,9.2137165,9.43041,21.66404,8.889473,30.453176,7.931827,1.8991753,31.857832,3.378988,11.090344,22.334543,null,12.598774,17.234867,9.809083,29.729591,17.809278,16.727978,14.671894,31.093328,2.392358,25.132277,5.8328557,27.450346,14.691029,12.649391,8.991742,16.707203,9.801518,2.7282383,29.87184,9.92977,7.3793507,42.222454,45.868484,22.582922,20.915901,12.564522,14.634575,4.147792,15.704992,10.292661,12.827013,16.02593,33.3751,28.175314,3.1061912,19.857483,19.09803,8.676251,10.662691,13.76793,14.318658,8.892595,17.572754,29.151316,19.076712,15.520297,32.397526,30.171818,27.261608,13.877213,19.951307,35.102592,19.50595,10.297026,7.8739057,2.454088,14.056423,11.8426075,10.728886,10.261182,31.034037,28.447386,24.013124,10.49486,19.990578,13.319896,4.002142,13.356221,15.631902,2.2407396,22.151085,25.962675,14.745864,15.158762,23.30991,9.351608,21.177902,29.518095,14.668236,6.8684115,13.971403,17.6772,22.439735,15.498172,22.768684,26.076809,9.273082,13.546668,11.466855,3.641525,4.0065937,12.685799,13.898546,13.471054,14.427725,24.644716,15.488473,19.57721,4.517624,16.719841,null,13.562252,21.471632,16.672132,13.03636,6.4772844,11.390552,5.441952,5.8426046,14.017454,6.287425,6.149168,13.543917,20.945713,8.950809,22.821638,8.975277,20.245115,8.051008,30.093576,15.870818,28.309216,23.46694,24.298386,9.000739,17.38957,25.92209,12.926975,9.896909,14.253616,10.537111,12.157489,27.011152,26.827871,19.797747,15.282171,23.039562,28.224121,25.223347,16.897879,11.807693,6.6095862,25.51203,24.185642,2.7741156,13.445814,13.319174,8.931559,14.011902,34.38052,25.037788,17.448658,7.9136543,11.214661,11.4141035,19.365536,20.683851,44.62902,19.569145,20.22924,17.36569,15.341416,10.691468,16.986038,27.365097,5.679104,2.792394,10.580843,5.9433303,6.013239,19.216745,34.7989,31.273657,18.468573,19.545742,10.838817,18.299208,18.140205,35.088383,13.942287,19.116127,16.081612,17.905447,16.524244,24.066423,12.7139015,7.5838065,8.508878,6.189066,3.917393,7.2814627,11.17735,20.675337,8.764732,5.481657,16.537899,3.504676,13.366377,3.0788386,8.377424,9.410628,null,7.7216554,9.622501,19.289963,8.17623,8.787542,8.896454,25.245497,4.206323,24.245996,19.81005,19.103395,9.574959,29.78707,11.590774,16.914295,16.993057,3.613197,23.492373,35.552174,12.268281,27.764618,21.148628,6.8958573,8.674104,7.774254,14.060377,3.422222,19.636337,24.591,3.6579187,16.73134,10.6491375,8.477237,22.216751,27.708984,23.433891,28.178787,26.950773,30.933453,30.950092,25.68043,26.866879,24.375141,9.766252,1.8194381,12.288242,16.22556,11.737199,19.41237,20.304457,15.426278,0.7169291,25.842258,28.408716,11.92924,10.211007,8.29988,10.469418,39.212437,30.24696,7.183541,5.7510614,18.668724,11.425367,12.291399,20.06654,38.601376,17.434109,12.172355,8.014836,5.953768,6.260699,13.272688,22.708166,17.471302,5.8496175,20.315252,15.689763,10.529427,20.496765,32.847733,26.658895,10.757471,20.88375,17.479069,21.698437,13.068048,5.177988,7.822373,7.7988925,6.83347,2.6233287,5.2409067,14.676923,19.235254,11.520177,21.599632,28.581404,18.298923,11.174614,null,23.986874,19.33291,6.9972405,21.766836,18.648592,6.916824,18.9254,24.459675,20.453169,12.122312,12.990632,12.139536,16.735842,6.228292,16.865395,10.273481,15.506093,10.177139,26.407694,15.220953,2.658995,13.221487,3.6943161,12.343538,14.270859,23.55537,3.906961,16.389526,17.384768,13.833564,19.735235,24.132788,6.6132197,3.6850302,9.051852,11.5702715,10.850165,21.173254,25.150467,29.51947,26.982811,28.291164,15.121911,2.899397,6.9809046,2.7360504,3.5207214,11.502979,16.81475,16.366182,8.57951,22.421621,15.040418,14.119955,5.0655365,9.354508,10.847043,30.584332,35.181072,30.55106,20.081074,18.2078,21.626186,23.764088,9.311277,18.25806,6.3280945,0.73233324,9.925114,18.891993,8.271706,21.365458,19.112349,10.289978,6.661496,7.803638,5.656894,13.006333,2.7440712,3.4064689,6.8015943,30.350948,9.765755,22.313242,9.507302,16.550512,8.020262,11.191318,16.002518,7.0381737,7.751239,15.956591,9.930946,19.839657,22.815285,23.435556,23.21396,6.0489817,13.307417,9.148412,null,27.390142,6.877655,19.729866,5.1621056,13.671648,13.164177,6.6199045,15.75399,15.141998,5.679426,7.709093,10.018835,20.44949,20.368467,13.13743,16.556479,6.5419703,27.647045,19.2302,19.383215,4.257098,16.52094,19.77479,5.270896,19.1337,27.164597,27.826391,5.497609,19.911087,2.2332304,13.33427,15.31411,25.847992,18.415817,8.312127,5.4136267,20.874691,26.058372,1.9393408,29.55305,17.098888,11.99523,19.846067,24.699842,18.824297,17.634409,12.116365,3.5299819,16.005913,21.82417,13.198106,9.365421,15.879011,5.74446,18.69635,17.378862,9.940744,6.1727185,12.212541,6.825704,19.030077,9.585151,16.432848,4.3716445,7.636698,25.154287,10.861033,12.084364,25.572092,29.845003,19.929073,3.2520564,23.614601,33.14239,21.631302,8.161954,19.18519,24.249727,34.70909,25.522654,22.064093,8.554412,6.4284577,11.02788,12.644302,16.236433,9.686524,11.451623,7.8551006,19.40429,20.747192,12.255296,31.609867,4.1158686,15.534408,18.880754,17.267014,21.640734,20.521357,20.717907,null,19.851425,33.690014,10.955088,30.822418,14.019209,13.996689,14.006211,4.4053473,16.83603,2.4399703,23.703392,15.456743,11.877906,10.803046,9.576654,3.90913,18.534706,12.429353,28.907473,25.03347,6.9007745,21.113611,17.526423,16.823322,6.6956954,6.084913,11.669469,25.769285,19.703411,12.254015,1.5160018,18.168627,14.575881,3.244691,19.531034,8.397717,36.41735,27.708311,3.457952,9.391573,13.781537,17.621883,15.386807,6.6769366,4.849452,4.4265947,10.112185,7.2170067,7.35301,13.3739395,12.055714,14.513931,19.814556,21.138805,16.318073,22.261477,30.012772,30.251934,15.455426,5.1569185,14.584378,21.39193,21.441046,21.6646,34.01371,21.100376,23.753218,24.64638,13.5945015,11.481639,15.162241,28.510004,24.010063,9.64804,25.35746,15.034638,16.377514,24.320631,19.110157,9.831438,9.334135,10.135473,9.741857,6.0046854,22.691494,7.893158,35.186466,16.81211,18.476997,14.8277025,24.514502,9.934413,13.313129,5.220361,16.207771,2.2507062,12.876355,12.86741,18.431185,6.4266286,null,5.0623846,5.416706,13.339675,13.131656,17.01769,14.357901,11.6954,8.568809,6.9063125,1.552974,11.519207,4.588041,12.473095,22.903372,26.80215,11.246108,10.343871,5.983539,12.49652,12.857422,25.466953,19.560772,21.521605,11.640595,21.966574,14.353213,23.69549,34.98923,18.685917,20.829899,14.41628,22.314165,28.06434,20.73289,7.992961,26.987803,17.981382,9.804965,11.515207,11.348545,14.83697,19.493752,26.412838,41.036053,52.288017,26.46654,16.352978,20.03778,21.46959,9.403072,16.852476,9.36847,16.332596,20.963018,24.25231,16.790176,25.618364,24.237803,22.179375,13.63513,10.110249,11.353776,9.314188,11.241225,12.934697,12.948341,25.501434,15.073748,15.914767,17.851358,10.934493,17.319214,20.244667,20.263092,14.775152,13.824637,7.8836727,19.485939,7.0620737,18.523731,21.622356,14.423276,5.599046,4.4881177,6.7737894,7.1056333,5.8593173,1.4944493,6.6191683,16.541798,8.400366,11.231071,7.1382723,20.918259,6.4316096,18.83392,8.502586,30.9448,26.83375,29.288275,null,24.030005,18.171448,19.144562,25.92076,11.603205,14.700561,39.277424,17.631285,16.08858,11.145179,12.144554,15.841471,12.799738,19.813944,10.852472,21.836601,9.539556,22.777233,16.829397,22.698746,9.930591,42.99234,21.51947,12.596299,19.013414,13.928408,6.6497855,29.233877,21.312511,11.583287,17.632849,15.851691,4.642366,7.0204163,16.658646,25.81629,9.324734,6.7001567,9.606003,8.262184,23.879496,27.638956,24.728022,23.828348,5.869276,26.098066,12.857883,8.481892,23.68546,18.540178,10.548396,27.136236,15.546617,3.6433363,21.09324,32.634808,18.013899,20.931004,27.989096,25.8039,12.660079,22.047796,9.972327,3.2846103,7.6723633,16.556707,24.604088,19.901197,10.656916,19.019398,19.956911,23.746744,18.497843,23.949776,11.183181,36.393627,12.3560705,36.85109,19.766556,24.194332,30.737062,31.9918,16.46831,7.5433936,6.9643974,9.375823,8.36261,21.387074,10.7277565,13.001008,4.1362886,1.4916672,7.1193852,12.903124,8.100363,6.18291,7.6488905,18.075006,11.737858,18.79856,null,1.7639105,5.0902767,10.796543,11.694269,14.5125,10.817375,11.197287,12.832643,12.853982,11.637149,21.268261,21.58725,4.431087,18.666557,2.2764218,20.405615,5.9478245,22.059086,19.533281,18.872095,21.382689,11.857541,15.20849,16.585493,34.746216,13.5035305,17.483036,2.6744165,8.684429,14.265771,28.109226,13.671318,23.228981,17.531487,14.184823,32.595375,32.747177,26.234896,7.8073115,11.391319,8.921573,8.057052,9.812297,17.846277,20.177896,15.106422,3.3288038,23.263538,25.877394,19.84822,22.006035,30.09354,6.255759,17.418161,28.617456,18.912102,10.823616,25.544287,31.294939,24.927305,3.4394476,11.611998,5.143405,6.9237123,10.494704,19.15905,5.287576,22.663696,8.297487,16.145262,10.005863,13.072608,8.549137,6.3588986,17.48381,12.880619,12.783079,36.117958,19.082409,15.916148,21.058605,32.618435,20.670307,10.054621,4.358825,4.5896606,15.570716,14.760624,16.811388,12.7626,11.464351,15.076336,5.0765305,33.85401,19.413874,29.739439,22.654913,12.0180025,4.0950627,13.84503,null,27.99702,20.968353,20.82668,12.250848,9.356773,20.61843,3.6367836,28.770767,7.46682,16.206865,6.825703,12.984804,11.055416,10.349973,2.557082,9.896534,9.357605,23.9583,9.767486,3.2950568,19.249687,14.899671,15.774646,14.455132,10.841975,4.1842203,12.310931,17.051311,19.130245,23.851791,28.119272,22.89909,11.480759,11.251507,8.176237,10.079088,24.131287,27.939419,24.269318,8.524967,12.747,5.1661325,24.242458,14.576363,12.812999,5.3267393,19.256279,5.4937296,11.537131,18.341986,8.926587,4.762787,13.985801,14.177408,13.246146,9.859422,10.845504,22.456299,11.376811,16.264097,21.466953,32.09497,35.30353,20.199581,19.84752,17.298428,6.278463,34.861504,33.68909,20.494026,37.13543,4.2266593,15.467006,11.50446,30.959948,26.076662,5.4627376,4.660126,11.635594,15.141967,11.439357,37.35524,11.712871,12.245742,24.019201,5.6264067,19.11843,6.3000875,10.145776,7.5547237,2.526533,12.249685,17.024082,5.620537,17.567669,10.978154,23.741789,9.610706,14.031541,12.010698,null,12.505994,14.049019,6.1537094,8.039017,12.167808,12.232549,18.33692,17.0159,3.917662,8.850978,5.693065,14.190406,16.319387,19.664515,42.953106,1.7059654,24.427143,6.208225,11.348478,33.52369,37.762596,19.824295,23.30974,21.618204,34.682518,19.138378,19.302683,9.585612,3.8952632,21.917664,16.448196,43.527523,31.52038,12.638178,12.813636,35.45276,36.630795,25.311413,21.960598,23.866423,24.362982,6.608364,5.834807,6.86682,6.5973988,9.44839,12.270169,8.655277,20.20744,5.7555556,6.731064,8.104148,26.314741,17.167261,7.798876,20.162878,33.65315,13.105609,5.8908486,15.655903,29.215815,13.575311,13.246559,25.352642,11.910854,6.549746,11.8100195,6.2866225,18.082182,23.36863,22.241125,22.641436,13.072149,5.121085,11.233236,17.033129,14.629365,24.935274,14.194738,27.127316,17.108799,19.910963,4.5114903,6.641459,16.40459,24.080812,10.127942,11.616224,15.09389,10.317961,9.837003,20.543335,5.421326,16.870691,12.122843,22.82277,9.13458,20.712929,9.084383,13.660655,null,19.970589,13.800969,17.82651,4.2824135,13.024359,21.038063,6.1864896,22.03023,16.277716,6.3105845,11.439648,8.411187,9.107022,16.479185,7.0689797,8.050908,6.27538,19.225454,28.069311,6.7529798,6.5520463,15.924894,27.441164,5.2120643,24.179283,8.841103,6.459177,7.275122,13.20709,15.28573,5.345174,16.233997,15.846203,4.019905,19.907204,12.265976,17.05339,28.481106,28.09762,5.779475,9.096714,15.733041,12.342066,3.918159,16.5981,16.224545,12.536462,9.477431,9.078094,11.015369,4.776105,5.793275,9.821238,12.823139,17.617334,2.5241134,5.336356,4.967947,6.082855,5.2175694,4.7325373,17.909515,31.931135,12.443009,16.43347,6.0462847,6.187688,9.147724,18.238714,12.976007,31.892538,42.634,20.877775,7.9138236,20.242186,16.88247,5.9263744,14.569381,14.452567,33.59057,31.46992,13.578197,12.615577,14.264342,14.682916,17.156178,9.657768,35.322563,26.122618,15.0609,5.2142973,17.197607,13.407211,8.5092945,14.102507,12.281638,39.848915,11.269194,22.072716,16.302975,null,4.40094,9.818938,13.088179,26.685093,12.0309,11.947913,16.312841,26.913887,10.437579,14.288515,16.215096,20.506874,10.081935,5.8566246,7.5354853,6.3797545,8.235017,15.921543,20.508266,8.815178,22.306492,13.211138,17.499058,14.085986,6.3387227,5.429941,13.507817,21.81472,18.72388,15.136791,19.528606,11.980276,24.241587,24.837835,7.291375,21.42857,12.329061,10.868174,6.5979204,6.2694345,5.4416738,10.594403,4.6409135,16.360693,8.0346365,24.952738,12.531524,2.5915637,20.457085,23.35773,24.114258,19.9322,19.452223,6.7540064,7.6002717,18.546297,20.34458,11.285609,19.502821,23.720587,11.944967,18.66245,33.77184,11.968534,29.749279,6.6914454,3.1613798,28.636314,26.949734,14.1686945,0.39814293,14.93935,3.5376728,12.668147,8.37449,12.094845,15.196617,7.9192815,5.8159275,5.615472,12.780979,36.416924,27.589342,7.469443,12.322661,5.7932634,16.172098,13.639134,14.229837,21.446981,28.11621,13.444101,18.714981,37.547565,13.206343,11.730059,8.467441,21.780437,10.012279,19.108105,null,16.438417,14.839787,8.683671,14.548608,19.427916,25.88693,18.796474,11.680463,13.0579405,8.990366,15.46433,19.08463,16.650322,8.42654,14.571143,13.710192,25.650764,4.471857,12.195591,10.557444,3.9659677,8.261212,7.3622994,9.265501,5.361829,16.85505,8.370281,14.391936,1.1743325,7.5651016,14.806112,11.575266,12.356071,22.660454,1.4238546,8.870771,12.683014,17.828812,16.005346,7.6704483,11.155685,9.64419,18.527796,21.744808,24.294466,25.599464,23.718645,17.846882,26.226728,32.706078,38.06242,30.691692,26.425972,4.0322356,10.433165,13.689147,9.125175,25.804989,26.538797,14.787653,13.184751,25.810469,18.809885,12.16113,8.555779,5.8018103,16.049183,19.62482,25.199934,10.312138,15.473451,13.610372,8.166669,18.892916,8.224524,19.335285,9.77654,11.295835,22.003006,20.619465,10.217723,30.715034,40.58235,12.744427,29.805162,3.1457274,12.952845,14.097222,5.4904866,8.019434,14.477295,18.330492,9.806064,7.8051586,21.203182,7.7491374,3.0270543,9.259012,13.588054,16.350428,null,17.66074,4.6490602,9.464052,10.515348,23.91507,18.72059,8.239676,15.878936,21.834675,5.328656,12.751984,15.077657,9.36089,29.121124,19.646498,2.0366783,15.180397,28.528835,5.6931014,30.926939,15.67472,12.233926,18.350176,15.457352,17.63687,12.24297,21.322708,12.77702,19.808907,6.12236,12.620037,20.789654,6.871432,19.334581,10.64044,19.840382,32.85013,37.43846,39.443367,29.69695,13.498365,8.536333,11.099596,5.1841755,25.424404,27.646994,18.348392,24.958797,25.411743,18.121231,23.222502,26.319134,23.368044,26.075596,25.84854,25.540766,29.337421,23.489426,6.6371746,10.703535,2.246832,10.919349,13.915983,16.813515,15.289824,20.766958,15.833218,15.036241,21.736153,20.054445,26.711857,11.575301,6.105532,12.253558,13.472878,11.015649,24.125202,5.214227,14.106035,17.676447,10.266621,7.241991,22.711529,14.006959,5.8594704,6.4993205,4.065961,13.8307,18.987638,24.167652,12.831007,14.493722,15.347792,17.786264,26.111128,4.0942717,9.060853,24.043396,23.571396,4.9258924,null,3.9087698,23.530336,18.406025,8.208531,18.408014,23.95417,12.578306,5.6026535,6.262015,12.535474,15.112934,25.135021,7.146683,10.766919,8.68262,7.632823,11.532027,14.680012,12.400146,13.385599,12.60039,20.255419,11.469862,8.893036,1.2841765,13.95887,3.002952,3.0688365,16.717823,28.920103,7.7624907,17.673271,21.80506,13.431007,6.730342,12.781862,34.1318,37.241074,20.297077,13.391965,6.0177984,16.221287,10.643345,15.7578535,19.182734,19.171392,28.727568,19.081758,8.835619,11.663907,7.684102,18.23215,40.110176,30.998402,11.725501,16.014826,21.340641,15.811273,19.67825,15.237304,26.315897,35.700672,32.916058,21.087006,6.2266088,17.761683,17.134272,8.783961,15.37526,14.932944,12.293857,5.016696,15.919684,0.742136,15.501949,14.727997,4.5468016,10.061908,21.972343,12.1164665,8.70442,20.582302,7.373757,14.605592,19.023163,7.6098986,8.296847,4.8346486,21.610039,6.919686,19.942467,9.468252,11.284757,0.8371437,20.714994,12.119483,19.013874,9.309443,5.8446,14.948317,null,14.481301,9.989138,11.827785,24.300173,23.083588,5.7201343,8.325881,3.9510798,9.450856,9.871177,1.4752771,9.21602,13.461438,4.2723937,20.35669,10.195017,6.7993226,24.097418,16.213839,13.153483,15.195647,10.773048,15.26534,12.065818,18.246393,18.61375,5.5428653,16.199509,13.323531,6.1845756,11.316805,20.50888,22.688051,9.581881,8.128352,12.34071,18.312954,22.367256,23.038866,14.950628,4.500477,10.824023,18.65432,17.624823,15.978159,7.742273,7.1133394,14.247777,6.416307,8.808368,18.457392,16.828829,4.54832,10.577321,20.548038,20.575924,16.316278,8.4451475,8.004844,7.7632713,35.495197,37.936653,18.759468,22.319555,21.29079,5.6349893,27.596676,31.85233,23.712229,18.520613,2.6751227,29.732378,17.959064,8.485114,7.338803,13.196492,21.726242,11.789911,4.3467236,12.866564,16.3965,4.9207053,13.056427,13.882943,1.3411316,9.877067,13.137005,5.4273334,19.259247,7.8221736,21.144262,1.4208882,22.151201,23.546988,14.902667,4.187369,5.922483,9.343247,5.665845,12.777364,null,31.80688,14.740811,27.668592,4.345516,8.496206,23.057076,13.345114,12.760928,19.299227,20.457281,9.758044,8.4888,13.663794,10.009031,13.141224,13.356357,18.743793,17.766842,13.766914,9.274758,14.818713,9.491596,27.854437,18.949678,2.2896705,17.531195,20.999735,9.737851,7.261862,15.400486,36.24905,18.719849,16.197756,27.690722,28.2621,15.399175,19.453737,18.127954,25.669853,41.46138,23.12242,22.970488,23.079811,29.516068,46.31624,37.30187,28.362883,55.090862,54.116394,19.120031,24.196922,37.7922,32.4142,3.9906666,11.167023,15.417341,4.653799,22.581352,28.674599,15.972985,16.625483,34.88129,44.04639,26.089191,38.68727,28.829605,17.083612,19.957958,17.108585,18.429604,35.54289,8.215458,12.640425,7.9546304,4.479676,2.4434695,11.112286,14.776472,4.2621455,11.679554,9.110131,11.473089,15.945412,12.923701,16.606411,13.113092,9.2631445,13.472157,14.444197,14.537856,9.537955,21.006598,8.873581,11.228537,16.397749,18.667118,17.061823,11.15077,15.96172,19.267591,null,11.935676,15.484964,2.414059,12.652006,10.789894,3.586004,9.219448,9.846315,7.897502,16.60606,25.055021,15.770181,9.848871,15.477016,10.663638,12.72899,14.296656,12.596114,11.170067,7.6396995,8.864002,3.0212045,17.855328,12.136909,4.377577,25.465992,13.007305,12.017542,14.532835,13.292046,20.726332,12.170394,22.304178,47.73672,39.869465,18.191847,12.56546,25.750805,15.877949,20.706388,17.894722,8.951197,22.935848,25.515701,22.87236,14.377786,22.232635,21.27607,22.682098,34.296185,32.416092,43.176174,50.666782,31.580427,35.55106,36.959923,14.783865,14.015895,29.455719,30.232462,31.62071,40.58595,33.23994,40.72944,20.737095,17.895718,29.950613,26.079758,18.4721,30.020786,18.643112,10.45184,14.415837,9.429823,5.6995206,21.620731,27.061579,21.144066,7.8503838,15.031775,6.231141,22.02432,7.5732627,9.105,2.6180851,12.19515,17.101404,14.111063,4.421898,33.866215,19.05681,8.642314,8.612598,6.3466473,14.342795,28.30297,19.130814,10.032547,11.604321,12.792211,null,33.99085,35.1001,14.890587,10.03675,13.503347,5.939143,12.626209,10.443554,14.088514,5.713161,19.178356,6.3182683,16.34045,23.631975,17.72299,7.7830634,24.876877,9.252252,28.446419,23.39615,23.162174,7.3060546,10.007979,11.552995,19.273232,3.9742963,34.535454,18.941793,30.054668,20.211367,18.14378,11.177592,5.9525867,19.606617,31.992044,26.161654,28.689474,27.942661,20.201988,16.123495,11.24937,23.119417,24.492466,21.440714,29.40623,49.5324,45.905167,36.782158,26.757948,27.05265,36.15646,31.662909,25.336077,27.139193,32.67607,36.217403,35.731422,31.510916,29.514303,26.15036,14.815904,17.702032,42.921608,49.829746,31.285923,24.722338,19.3861,8.465032,27.308815,3.553752,16.427906,8.943132,22.07158,16.648466,34.31034,17.69423,23.038908,9.023408,8.693129,26.332396,19.453146,6.154967,6.440965,14.583622,0.3074421,17.941345,7.784967,14.993536,7.9938893,21.787304,35.99533,12.85709,27.334673,10.446612,36.620556,19.76126,13.85653,10.278148,10.012208,13.476035,null,16.052134,11.833005,21.31737,39.67032,4.7255034,25.574896,19.83134,11.768295,15.177262,9.205688,6.427924,19.912533,17.287106,0.46940473,2.9373374,3.010173,10.326926,26.778788,25.049252,9.154,18.997557,43.839504,14.429479,10.661736,14.384983,15.559118,32.60728,52.946087,31.270256,24.633524,16.46296,21.768166,30.304108,5.2587957,34.561375,31.702549,32.524376,6.4895883,23.441769,13.291612,27.28102,34.027767,26.695078,30.68468,41.411526,24.64717,5.230118,2.5569267,12.281876,29.918823,16.595999,6.6680956,19.72944,26.980608,19.729721,11.408048,17.01886,28.019457,16.112871,3.5786037,15.691276,21.35589,24.269411,24.60767,17.945961,10.266171,9.784291,5.353671,27.269314,32.728634,22.487099,13.087979,27.453606,21.010483,11.562394,11.357051,13.743363,5.4252825,19.898684,6.8139286,9.663435,8.128416,7.189211,5.862755,20.590296,26.36989,7.7522464,1.983187,18.716652,10.798233,20.355267,24.267326,19.65762,12.500894,17.211037,22.535133,15.020678,14.825949,14.158591,16.241577,null,17.022848,6.370675,18.698015,12.872517,28.699074,17.938728,16.773775,13.242875,22.341368,7.468476,22.3968,19.428366,7.352336,18.67484,17.543596,19.95788,48.364403,25.822306,37.649277,37.055405,14.483022,17.101795,13.449105,24.820745,18.455477,35.708344,10.636038,28.874443,31.995443,13.897841,16.763523,3.1958497,14.55617,5.433941,11.136364,17.00237,34.153988,37.853043,20.745884,10.316655,8.301,20.115034,17.458685,22.644966,4.3930655,8.81142,9.448948,20.168997,23.576977,19.484842,7.1377697,23.518875,23.52885,18.605925,24.28803,31.314316,23.737904,18.41691,19.673733,12.643523,23.990213,8.341063,19.21667,17.031166,16.72831,19.30908,16.803604,17.656126,13.530289,27.951233,30.12784,21.195232,22.917868,13.174345,29.067326,23.03189,12.635272,15.496677,17.02182,17.207426,9.814302,11.027744,18.938232,6.538348,16.288492,10.038741,22.303114,37.717113,31.466595,24.260838,6.190481,28.032621,14.766939,12.93211,10.7787285,15.285646,17.895128,9.976951,6.999582,11.915861,null,4.8813233,6.392641,8.889129,19.130838,23.380474,5.246942,22.862604,26.697384,22.847502,17.731674,25.02227,9.950687,18.423744,2.4530718,14.493889,6.2002816,25.099346,29.239578,7.2334046,4.8087125,16.063934,26.196104,18.57396,17.940695,10.683026,17.21117,14.265602,19.006304,38.45902,32.403313,18.220781,17.132154,8.915092,16.566744,17.739138,9.818226,31.229403,45.55556,18.117088,6.529042,3.184583,14.503348,9.560381,13.176276,19.59543,40.938095,18.541782,19.188803,50.5202,44.329395,29.01445,34.003098,34.63473,43.518795,29.281672,6.1087904,19.229313,17.756124,4.380905,21.33429,42.78945,37.849785,35.19214,16.564865,18.662062,21.611765,18.530937,22.737001,45.669407,37.716778,17.363121,16.215069,21.295406,13.918611,6.06906,19.387424,26.486002,16.963305,6.7708244,8.373615,14.60935,8.661348,22.835646,36.702015,1.0377136,26.56267,19.283184,29.116081,18.856104,17.192804,11.144452,34.0094,20.620556,28.189201,10.978478,9.912077,13.490072,27.977726,29.022728,19.663664,null,21.747969,16.570961,33.37086,19.195513,13.419632,30.012701,15.446655,14.709749,17.39405,20.918756,31.539734,27.005112,3.0784311,29.086493,16.444567,22.301966,18.555784,21.60331,9.843938,31.470083,18.491617,2.73601,19.005138,21.078505,20.702604,22.821653,21.064432,23.117477,14.19324,38.98254,31.00204,5.924911,23.168594,17.593412,20.463017,11.315749,31.818842,33.668854,15.078454,19.341434,16.33983,7.935086,21.816196,41.732594,40.54109,33.226936,43.344086,37.41517,45.179424,51.411755,32.83631,31.901133,25.377394,20.776646,19.758297,7.397808,11.934251,11.524766,4.9483657,13.86677,11.868,10.820737,16.028276,25.22092,27.156485,20.588799,15.914322,3.552461,3.0481093,16.84733,11.4034,25.932177,32.374443,30.611572,11.873957,8.222498,11.632304,13.85733,24.96372,13.363686,16.970518,5.946249,9.968482,5.9078975,13.196047,5.543676,5.930673,14.992216,29.89697,10.449388,20.109684,25.0442,3.8727639,5.4295135,5.068244,22.846699,15.938782,12.953127,8.564216,9.242498,null,9.822347,35.691532,20.222292,5.657988,8.266739,5.2458644,18.712362,4.513805,4.60192,11.572126,6.046782,16.63555,18.974524,27.74975,20.049913,21.865505,14.654037,21.722431,10.81702,20.254568,22.956614,4.806145,10.003901,22.374842,9.725666,17.27143,22.414179,39.990658,13.354868,13.592485,15.111319,24.854252,21.103624,24.531939,41.090492,36.595695,17.843332,2.6289384,9.757397,13.095847,24.670704,25.028753,19.18993,24.303974,35.87068,15.96371,15.471374,39.29024,41.898308,36.328407,49.08149,38.289013,21.710148,40.200817,45.60204,23.656757,9.101885,3.7564077,14.531327,14.692082,29.47957,3.9591494,21.161299,28.386847,27.140953,14.504555,23.300817,43.14556,31.685617,28.68745,27.326023,31.02276,22.876995,28.630379,31.728931,13.844962,16.831345,15.111491,6.1621323,22.456833,40.088078,13.730786,16.294512,16.34477,20.606373,28.770725,13.722869,8.374759,22.929014,7.555422,7.8691096,24.377508,10.841639,18.47137,23.79232,18.029856,13.751701,2.4846187,18.849348,27.216457,null,6.052658,15.643429,14.275209,13.671827,6.855923,32.459652,7.1954694,16.061161,23.026653,25.584627,28.141565,23.294596,16.546312,19.018385,24.808758,10.61892,21.216427,35.158554,7.343077,33.134888,12.083123,24.254648,14.138753,19.842388,11.159626,21.071165,27.608547,9.655865,47.436275,25.856535,27.837427,8.68652,3.4916785,4.8057737,25.29593,31.736633,28.298239,18.723913,8.534858,5.2795463,26.421099,35.051476,16.883469,26.218681,19.5827,17.15627,36.84839,41.907978,27.028448,29.111385,40.790035,39.702717,45.93947,21.04346,9.830169,30.21784,61.8801,26.28023,10.026828,20.069002,16.788645,33.93784,38.99277,28.058348,22.04098,8.602718,10.3821125,13.754396,19.185642,31.918808,13.533957,33.52185,23.987122,16.321854,18.609344,11.405686,8.839504,12.033683,6.217677,22.764551,7.145207,4.610156,16.354958,6.2199597,10.744392,13.836114,5.4455156,9.472835,26.872911,34.048855,5.559005,38.76569,27.68024,10.043205,10.031978,15.057863,25.17596,17.926779,4.427738,8.084208,null,19.408695,26.482557,28.593119,17.215843,16.56793,17.834595,1.3108724,14.785391,7.4637866,28.72951,38.667835,25.092253,16.041489,20.301823,8.4804535,12.366423,12.721188,27.673431,17.202232,17.03036,9.974631,29.632513,20.885824,13.4281645,22.317738,16.149258,5.135241,13.000201,35.749287,21.31806,24.736996,28.37738,26.674139,13.730596,13.185853,22.80508,19.91968,15.130007,16.453506,10.451085,35.391766,21.694544,5.9511085,21.58096,23.01471,30.13743,11.958472,6.3388276,1.617659,15.087681,25.167524,37.49856,34.17941,20.302177,6.4365954,17.006197,1.5171926,6.381072,3.4812124,2.9271255,12.603748,34.06302,46.854538,34.730274,15.165692,6.0771546,10.1029,10.016018,52.95855,47.999672,20.528507,6.2950277,21.034761,21.228458,13.220037,23.400085,30.663626,14.636562,15.067911,17.38722,9.980925,32.065025,40.24431,25.957184,14.446787,25.11355,7.072502,35.815346,9.683469,16.662983,8.4696665,9.02485,1.0837021,10.655758,12.786284,16.238115,13.315596,8.9225,13.276139,10.745974,null,20.579731,16.984392,6.8526564,21.641987,22.372833,11.015267,24.497702,12.315316,6.9556017,7.1904697,20.144337,13.199313,19.135012,9.261321,14.035156,20.893042,4.69226,12.430836,28.668974,11.726704,35.462154,14.845847,21.005629,38.626163,19.507452,11.589478,11.291111,15.181241,5.572763,34.265285,33.61579,20.047554,6.766274,18.081284,6.7854915,14.761251,19.398827,27.356092,27.10728,19.178705,33.499367,15.682525,30.637026,51.455723,20.749666,5.571447,5.67435,4.1110287,10.867832,23.905285,23.52128,14.975088,9.034851,23.977175,10.619436,21.80312,2.8978674,23.564203,17.151289,26.250513,29.642021,12.127885,8.790791,18.855503,20.956873,18.092194,18.839037,22.582973,30.084963,17.566954,5.0527143,26.811644,7.070817,36.67376,7.822123,19.166498,9.382886,21.319056,11.590614,11.841386,13.500816,12.893653,41.60844,21.333576,6.816472,9.619661,8.709176,23.233027,32.55992,5.5072904,8.074984,15.049743,13.162636,4.473205,15.300461,16.320854,10.999227,6.5572586,4.454795,21.343485,null,22.008469,10.386551,31.780678,12.850482,5.468621,11.1757145,17.884808,18.830612,14.175591,18.893564,23.238176,8.309022,14.748301,13.300932,3.2384706,17.284538,11.892981,12.817766,22.352459,23.719015,29.480148,22.293524,7.9214215,5.216461,13.272789,22.329992,34.248993,34.016804,21.99014,16.287052,4.5570946,12.739075,10.667439,17.891344,24.218971,24.678951,3.1714902,11.920784,4.4199266,3.047095,8.703018,16.76683,12.308913,4.315339,5.55966,25.55705,25.920576,23.205135,36.832954,28.388403,26.04366,28.090816,21.778408,18.119217,27.56978,21.163736,21.344301,17.133863,12.585955,22.289309,8.562578,20.143744,7.4082813,24.580694,21.59434,9.299559,11.157177,24.663803,22.41722,15.043198,32.0181,26.933914,28.888964,16.206436,9.79593,18.177942,21.701168,38.967598,22.682987,6.556997,11.618192,11.24739,13.893724,5.0025153,31.566128,20.728277,8.804886,14.516491,17.718746,17.661913,13.729747,38.03755,10.89491,20.874666,17.867376,9.129728,14.396551,7.504122,9.875797,23.05116,null,1.870822,4.0687275,11.9709635,21.857664,20.127075,9.559055,12.541582,4.1382394,5.732139,9.047599,11.059393,11.745408,48.57967,32.028606,35.918274,19.761108,21.408396,3.3637118,21.622383,14.878368,8.0584135,4.4084015,27.066362,12.584686,13.398376,8.645782,23.25505,14.597573,17.770124,24.838406,17.147219,22.878922,33.195053,20.12019,36.479263,12.296495,19.896595,32.160576,16.962208,26.673716,6.3409996,28.517483,36.922215,16.140907,14.193387,44.766636,42.34185,25.079355,49.305126,45.432056,19.1947,24.37006,29.968212,14.62586,17.730936,17.570951,8.385286,8.806355,16.68221,15.835333,16.081697,6.5310283,11.783219,14.88931,23.803501,14.337239,14.449669,11.790931,12.13303,27.21415,18.781385,38.958107,21.840504,9.256571,15.69481,18.956797,4.195042,12.970736,26.505434,14.415739,9.289176,10.209138,9.714674,9.840866,4.626973,25.476404,7.1014543,30.239471,28.22364,8.590233,2.8637564,6.360341,14.499177,17.96564,20.154736,31.98817,16.80711,21.265692,30.403698,9.494169,null,14.660339,4.6678514,22.529219,21.878096,18.821146,8.87895,33.978683,11.901537,25.292665,22.145502,23.14722,24.453136,4.6378493,31.56892,25.828838,16.789719,15.637099,14.231227,28.15078,1.9308224,25.646336,15.892464,5.992773,13.167372,7.4400797,11.424865,17.388342,0.71050864,3.1697698,21.405214,17.090797,11.286915,18.848112,19.339998,19.804274,0.9361713,42.483448,19.85701,12.170435,9.141687,3.2680793,18.365822,21.578817,28.954992,24.343426,20.649897,18.983555,20.70019,27.576868,17.406342,14.664602,41.896667,32.88579,28.131905,30.341665,17.340498,7.5533257,21.40859,22.598402,24.063103,6.0661936,16.27082,37.88613,38.986744,26.513035,34.531773,7.633305,1.0117201,13.385195,28.47413,25.973421,8.383083,17.084976,9.962158,13.284393,16.702873,17.71874,22.175148,17.570072,21.771338,21.15942,30.435028,9.69684,8.536981,11.728046,15.709788,17.709335,20.678635,12.326413,14.185567,7.694917,29.954193,32.76619,20.0747,14.158094,18.727936,10.024713,14.824199,19.548454,21.995275,null,31.651102,13.582677,7.6034074,14.218919,12.306148,6.4695997,22.804192,25.28506,10.715562,13.135155,3.2996318,8.672676,4.5641036,22.251225,7.7655363,25.926905,30.806295,25.039017,14.612727,15.812068,17.640366,13.771625,24.844154,16.6457,4.2027073,9.0027075,7.38122,12.256122,11.496947,7.2075133,7.1824174,11.2382145,15.203899,15.70308,4.4061437,3.1538732,35.174175,31.121805,10.8276005,24.7602,33.85474,26.215408,11.722568,8.401376,12.066765,15.780035,15.161031,8.811676,5.101439,10.06743,9.667192,17.96817,3.194623,21.778019,16.552359,16.80537,11.904626,22.05589,34.33013,28.102674,24.033348,33.890034,23.095242,19.442728,14.006644,7.307066,8.380724,21.544123,19.52398,9.766513,40.66346,24.549856,7.7803445,9.126476,21.22144,10.0911875,31.523691,27.54131,24.41442,11.649014,10.561199,18.97911,0.9471936,4.7799973,27.072105,22.943867,17.201277,8.496728,16.12134,15.23294,15.01319,19.071857,33.930367,10.639792,9.035339,6.7051263,10.691274,12.824496,34.794243,12.318164,null,3.4170158,27.787243,30.76007,18.261883,13.195771,14.194565,7.392018,7.365711,4.193521,4.5909286,9.997795,7.332615,8.101628,0.594266,7.9889703,17.412737,0.5846858,25.544699,10.90874,30.774147,6.7084284,14.283223,8.532554,6.5915265,8.926575,24.85544,27.819468,13.071159,21.922338,31.98178,6.6274366,8.093415,33.17407,16.75713,3.7279122,9.347346,10.005351,35.7215,25.382397,25.969822,19.45439,11.7651415,13.185585,18.339184,6.9760895,8.24631,20.880796,11.260711,25.5967,8.592954,18.25611,23.61304,8.872786,20.878485,5.5770383,24.415342,39.572826,21.056997,13.624117,14.334758,15.377244,13.727276,16.784542,17.625427,19.601444,14.661963,25.773537,17.042944,16.983988,13.615483,26.714901,9.056206,5.789489,1.2446347,6.1025367,5.1328006,20.662113,17.587418,26.694763,25.785936,32.848854,7.563093,6.5672135,11.10436,12.678684,16.01606,32.118015,19.556938,22.915958,10.34671,10.281993,15.6229105,9.286951,20.158281,15.7415495,19.979671,5.051607,22.424368,7.5900044,11.853152,null,6.414101,12.737308,6.1016603,37.292946,33.79677,19.809805,27.63415,17.110928,6.0151477,23.477917,3.621844,24.513031,11.578488,11.869233,22.020552,8.459766,34.366665,7.3986073,18.139313,9.727323,9.171467,13.065794,24.17035,19.82061,14.468108,29.248281,20.719467,34.06082,16.806683,11.394336,21.76866,11.226033,7.5357046,9.377437,11.4570265,30.647844,23.491333,32.118973,37.275467,23.419939,25.662483,42.125065,43.50742,20.435131,1.9409878,27.892166,25.833523,16.913967,32.90655,11.228747,22.45134,12.809466,14.267178,13.6615925,1.8328958,6.7220645,13.989982,22.058186,15.226478,38.000263,24.768707,6.326188,14.80062,20.436779,27.367077,10.852591,10.33055,20.946192,28.280985,14.299129,4.4398975,12.562751,14.500453,21.595284,29.245712,42.15171,26.701572,34.78988,33.52912,13.046075,19.436903,8.373877,21.83738,18.981224,8.907668,11.027099,8.228521,2.2268195,6.4982452,11.327827,2.2163842,14.26195,10.610513,13.956446,3.7098281,16.945408,10.121845,18.886726,17.274736,14.486504,null,26.982893,24.821413,7.7648044,20.11725,12.44062,10.359306,12.839492,3.4410942,21.339197,12.22401,26.061237,17.37598,27.689049,11.027723,9.870649,13.121967,3.8171008,4.797967,19.409754,7.2860265,10.158249,19.936123,14.46283,11.783481,19.881693,12.420717,21.49999,27.436985,8.1908865,2.914068,14.728053,18.157337,4.113013,12.146116,8.4571705,15.750702,11.835308,1.1540366,21.65004,18.427269,5.8660965,7.956545,6.258436,15.599947,14.928964,12.197722,14.739488,23.664913,12.833356,20.897654,8.230913,13.55616,16.755526,5.7798734,29.054863,20.004639,17.399553,6.822194,19.564686,19.267473,11.610616,33.391464,18.928535,9.826781,2.3582907,20.827312,12.219656,15.257039,27.638258,33.04741,20.008785,10.017429,28.76938,7.5226083,16.527609,19.800165,16.490938,37.32796,34.622482,20.720682,21.817024,19.420088,6.0350833,25.515427,21.937376,18.083418,23.903835,25.882372,16.040071,15.899766,18.62295,46.189312,25.361866,30.930534,12.979841,8.205109,16.560003,18.652481,23.736074,5.488974,null,3.7938097,27.830835,27.049015,23.248974,17.810303,19.304348,17.014687,8.699313,13.608844,22.665844,21.702322,21.64872,11.927139,16.934172,18.373024,29.002756,19.975641,34.693615,30.582947,12.185481,18.445402,1.9396905,10.737686,8.2729645,17.637306,32.509243,33.991577,32.523857,18.685858,11.555199,22.788668,15.838835,27.795893,19.590601,5.818851,17.3095,15.373256,33.883385,12.176442,17.917356,1.437923,29.036707,13.328119,19.988842,23.26635,15.932921,11.850555,17.432514,11.7267885,4.1078596,13.019942,7.870331,28.269396,12.892336,17.46244,11.866768,10.788052,11.349796,26.166174,4.3013897,4.459098,21.94538,14.5244255,31.718826,8.145117,22.929441,11.289967,15.922503,15.351217,13.169647,19.311977,19.77932,23.890259,10.459844,23.581032,20.407726,31.00976,27.853277,6.6389213,33.1888,30.454891,18.302732,17.016598,36.883884,34.235596,8.017843,19.685188,30.224558,17.606625,15.240813,35.670334,29.94834,1.6303738,17.341345,11.93428,21.164755,12.471453,22.99407,9.677065,14.16985,null,5.561087,22.309841,5.9848785,24.657053,4.2664924,18.71752,4.732047,4.1844335,26.618479,10.009669,20.613419,6.4212356,16.124096,14.810459,23.057777,7.04551,34.993855,18.322828,25.718483,8.1238165,29.372816,7.067531,39.458897,14.902343,39.220837,38.973217,22.149302,17.623573,36.69152,33.26555,22.588491,33.391,39.166702,17.510777,23.104696,31.39342,18.874775,18.741316,25.650278,13.625856,15.690042,10.225694,27.444576,28.266275,9.09258,14.754566,8.315354,12.5619955,27.774103,31.499088,15.54745,15.926917,18.375015,20.452026,36.345425,29.112564,15.852311,8.226882,23.19171,19.516016,11.760064,9.477954,33.964813,36.549114,15.701528,11.467946,15.124613,27.83227,30.411837,13.000177,25.046871,29.872145,11.439079,39.184464,12.5044985,28.591715,27.815207,29.575567,24.13991,15.935534,32.92972,20.592127,24.108812,13.256592,42.45619,26.348593,22.339901,16.203478,15.101011,4.4408255,24.004166,28.600607,15.414872,2.1817064,31.289495,15.796134,7.760238,24.93079,15.703999,14.086184,null,20.391754,19.400515,26.758463,24.992767,18.822374,36.91939,26.744734,41.946594,10.129473,31.838696,14.956536,18.695192,17.971846,21.105267,6.392867,16.404154,6.492707,14.740395,16.898365,12.663955,11.597598,14.970462,7.992573,16.219606,4.890288,15.205797,20.187563,11.974361,34.372852,35.6647,36.534546,21.02535,11.472714,33.787148,16.349358,16.422052,26.230593,22.859127,38.861134,38.016476,20.156412,4.1591673,30.511051,47.034668,44.365532,25.07796,38.28781,39.571117,30.086235,16.356215,20.498781,31.076935,18.39491,25.050829,24.535713,17.806696,7.998856,23.56963,5.0477004,7.6905594,31.466059,32.781517,9.497679,4.8483844,13.903487,10.41739,0.37355012,23.275621,34.505257,13.287361,13.683403,1.924463,29.002184,22.455833,14.240395,7.1466804,9.953067,8.8638525,8.429177,18.941717,17.926714,26.24197,11.421078,20.380198,14.332314,15.461226,11.661268,11.652731,9.400329,14.934245,7.2244797,18.921513,8.247929,10.213448,28.362947,7.2833095,17.598099,26.79074,25.69944,25.33641,null,9.236466,15.654854,9.030911,22.509823,15.040191,2.4233499,7.540135,10.577085,17.1704,25.566723,24.165277,20.416298,28.720037,26.71645,6.2057924,11.680544,10.582086,10.029029,21.834631,17.98452,38.79153,7.9588823,33.02452,43.58502,15.920497,18.541891,13.011998,52.59729,50.027645,22.70182,10.139059,15.924917,0.4088556,16.272964,29.513876,8.600597,7.952219,33.319275,29.424171,19.101606,6.1833982,12.8991375,16.440811,22.870827,9.533862,13.908709,25.089514,19.470045,18.657618,31.899931,31.445229,27.357094,33.941845,40.284954,23.820715,11.439477,24.965002,13.809966,11.519119,14.466129,31.88196,36.371403,20.156668,22.277584,8.475759,19.895033,45.55184,42.56857,19.55059,15.979782,22.90697,29.432177,18.867395,8.840411,37.12259,28.78595,31.909267,21.87244,15.666443,28.810402,21.01519,25.820953,19.219906,42.782467,11.670447,33.81071,19.568388,19.0097,26.596561,20.702702,21.48701,21.083544,17.723083,6.1281652,16.847116,18.148703,0.16192758,11.278606,15.581752,12.204351,null,25.212055,39.97922,19.876934,26.19041,26.13145,17.304754,15.428928,12.390729,22.517038,8.34809,18.53671,23.815413,17.562864,32.130524,3.1111262,25.138521,20.14827,20.321688,51.927208,28.45257,18.331854,18.51127,1.6664522,27.928423,7.382155,53.806423,10.5137,58.2808,23.678995,22.797009,18.399218,7.8887844,35.08365,34.625664,18.384655,15.714699,11.775806,9.6615505,9.614878,6.07097,17.274849,20.2627,16.987352,9.840324,33.644196,28.711733,28.112127,29.02653,38.828957,39.630325,31.182947,6.974471,18.362005,25.938923,20.980331,17.824976,31.86063,17.373344,16.305063,34.62342,31.208036,28.171902,32.607567,28.040876,15.209066,9.8306265,28.15858,11.949453,11.869699,27.767172,24.035694,11.832249,13.203701,6.340009,28.746944,18.15549,21.57533,12.9546585,7.251191,32.542423,14.157249,15.421166,3.4479816,1.213794,5.8843727,8.627379,12.73984,5.57402,11.415257,18.587557,9.159465,23.456081,13.908483,43.490307,11.060137,40.59788,23.234873,21.26357,27.187702,13.8006315,null,5.948617,20.41401,20.196815,33.784374,11.265588,41.90987,7.19887,14.810685,40.334663,39.41348,20.362389,21.986622,30.29475,31.327805,17.772488,24.472475,14.486557,14.434467,6.4296756,15.649575,24.633696,8.553011,39.43752,13.888924,32.52919,45.4983,22.636133,42.474594,23.433228,27.122616,18.205704,18.410435,9.01216,5.62697,12.308632,15.008299,26.884811,15.970045,15.598325,38.336166,59.761963,54.484585,28.608397,24.34612,33.47126,22.023668,3.5238874,26.605045,9.586981,9.593326,10.831249,20.461977,13.519185,20.112709,38.883743,37.65647,35.4643,44.066666,25.206366,22.64406,21.300629,14.859698,22.110655,25.13245,26.145443,12.232529,16.528162,23.743208,15.347347,18.12896,18.962893,16.457018,22.008438,16.34456,22.40765,6.5144377,26.840715,18.697903,19.810144,33.82754,27.49922,4.4455824,10.818693,18.86843,16.834698,6.6359816,16.56502,2.7506921,14.188653,41.84725,9.757569,27.44963,11.846133,35.88146,22.233835,11.218499,19.655716,22.14372,27.481337,19.923677,null,19.038294,42.077194,27.931124,24.615728,26.437725,4.7793875,41.514496,18.38026,25.874395,2.8380303,45.982044,11.860401,23.654356,9.691957,27.83154,24.44915,24.136673,29.867086,10.318963,27.327156,20.056309,20.092623,29.813179,15.469053,13.164997,20.65891,24.218512,17.054247,18.964645,11.886965,13.608476,29.719975,38.07289,13.6853075,7.6200023,17.364506,30.372648,4.572573,11.868289,18.355337,5.6656303,23.319708,56.363117,65.291595,40.8393,12.078392,4.7298207,26.935678,25.487978,21.849163,13.573931,7.3375306,11.225625,9.604258,20.929762,58.109097,42.09692,15.804478,25.629435,32.459694,12.2872095,6.600544,15.498052,6.175255,6.4450903,28.72063,13.893818,45.071896,31.257326,38.18389,34.57119,32.125057,27.310188,29.676878,30.719437,45.11767,28.548145,12.853429,19.089884,25.47771,33.233795,17.396147,23.332205,17.466259,19.40093,9.273623,8.5025835,17.160873,17.10442,14.524112,12.91162,17.339539,5.087275,12.47921,23.66228,7.8260164,33.152576,11.156226,8.0771,28.791426,null,25.680386,21.554382,12.792327,22.282818,7.588956,4.993343,24.476955,2.279288,44.296593,19.754486,43.58342,29.737528,38.2117,26.037657,23.178083,1.6476763,16.676186,10.499969,7.538898,16.119846,13.531963,15.459357,13.366624,27.14499,16.07093,30.248817,52.039555,43.75162,33.38989,16.215248,1.4095585,21.980135,15.37908,26.209126,12.627826,20.980764,17.000198,20.44332,36.39398,36.902565,5.585456,26.409279,44.284916,40.500824,23.243038,27.207342,10.769383,17.69316,13.392357,25.362144,49.432297,26.487326,57.78457,59.76491,33.762566,40.970024,44.138206,19.807775,25.934723,24.477219,27.636496,35.627197,10.921183,6.842525,18.579504,23.732798,21.713734,29.988424,14.498932,4.813214,19.3004,35.96725,31.12264,14.767355,31.327196,16.669876,53.168003,18.042131,21.03532,27.227827,52.036865,14.608589,36.287815,43.000366,34.244415,36.997643,33.06195,18.563774,27.18406,15.984095,33.89318,6.873449,41.716103,15.078259,56.0888,10.898466,41.719757,16.572908,36.6702,20.009224,null,27.608946,24.640324,23.593977,15.332329,17.195564,16.315666,33.29434,9.06945,24.433348,16.74485,35.273582,14.328283,11.627154,40.227177,11.95253,40.00596,30.92333,38.975143,11.291048,33.712795,14.348926,29.402992,18.755003,22.330347,16.505955,25.37724,26.602634,2.9936454,17.822086,5.816283,28.333593,27.018755,18.336582,20.910717,18.207022,23.358284,20.069012,12.160061,13.536859,30.200909,9.385079,18.207373,26.330015,48.651596,63.364227,49.240334,32.85837,47.283527,15.92323,22.019653,41.89254,19.860584,10.334574,27.487518,52.100174,36.813084,22.538673,31.587128,24.155987,45.34804,26.885063,37.521908,19.673817,19.93786,3.7666967,33.776417,18.743486,18.951624,19.697792,41.283348,39.342373,50.44893,19.933207,33.8148,31.648403,31.078518,39.521038,18.14133,46.435566,26.408262,11.751989,5.1786537,19.732862,0.78920066,31.013762,17.797354,7.704237,16.767925,18.865093,16.565191,17.622751,28.047396,15.466692,9.41865,18.612965,19.113169,32.961895,6.599203,52.743614,15.351919,null,40.30621,34.87148,12.215164,47.896297,11.611794,20.64149,29.7507,3.9962351,24.240248,34.456524,21.32703,23.836939,11.049576,26.965466,8.187518,20.54004,41.93366,35.415905,9.351007,26.21194,4.6918683,33.254288,11.6101,34.61038,29.31676,66.185394,32.83834,36.05616,47.865,43.02057,17.85112,6.337249,3.5057154,9.309031,25.444218,61.219063,45.764435,5.103571,29.182598,33.421528,47.851013,44.417835,25.69264,55.822895,56.71272,74.86049,61.771736,24.635075,18.281511,33.146336,36.07645,46.329372,43.914387,64.4767,57.479942,18.257494,38.924355,67.26133,56.79525,28.62092,35.654713,33.078133,17.694323,34.149967,9.781685,27.077173,43.530884,59.899548,18.696613,14.099327,14.741686,2.7102854,24.859581,24.437849,14.804661,10.694585,46.54606,32.969925,21.94444,20.626959,24.568186,19.839136,13.447032,27.147326,10.162025,22.118103,12.926519,11.129487,5.943131,22.08274,8.182177,27.99267,34.09735,44.148823,46.60859,31.55137,51.511734,14.822585,37.82946,19.586794,null,20.544142,40.432575,23.73191,25.567648,19.948189,57.51037,27.897202,30.08107,26.276527,27.08057,6.443927,14.986028,22.973028,29.564411,9.97009,22.886768,58.70823,30.218246,13.054469,23.277655,37.44504,24.471003,19.326445,26.28778,30.75062,39.70457,20.435352,40.661785,33.049114,22.025288,33.163204,23.942785,8.031255,45.174892,34.599136,31.803741,16.819792,41.258068,0.7845189,46.441795,54.084377,53.292637,49.098698,32.68191,6.1458435,61.272587,69.42126,47.311188,40.752865,38.008205,59.441483,98.048874,79.788284,42.080597,40.019836,20.309559,34.678394,56.995907,60.908573,52.1042,34.191036,44.219704,38.102406,8.589241,9.881902,18.952515,15.940791,21.792099,40.349007,28.102497,68.20107,40.42002,37.941822,20.309118,43.526,18.963444,32.14392,12.632815,15.875919,34.001938,25.364513,19.147333,5.112095,48.83285,36.29173,17.563227,17.404163,23.655054,21.620216,26.25032,14.462541,26.781548,21.898571,33.84375,31.834488,57.993084,36.318214,48.28453,40.04643,26.84227,null,38.969902,19.195715,26.838991,23.93918,7.327848,23.293747,6.5323935,19.196947,25.155687,16.340034,17.513432,17.602898,16.993395,7.4928107,15.163387,21.086485,20.742954,7.4567127,25.513622,11.00755,20.672268,23.340557,21.874275,31.87616,38.084713,26.822659,8.609187,60.31808,40.2532,35.576477,37.020653,5.73556,5.996386,17.416239,48.14259,32.13134,28.610987,28.691916,54.36633,45.092472,67.070854,61.286587,66.50162,71.66467,14.886015,65.67109,51.349285,54.293827,101.8339,94.17816,49.204628,59.90741,68.40148,47.710472,49.876663,37.62436,40.395977,45.490074,37.32925,11.431892,40.800907,60.889038,19.978874,34.20633,30.926182,15.060406,45.18384,44.098534,8.576601,22.910046,19.47935,4.0529537,17.858425,33.02624,52.370605,20.83602,18.117657,5.4173317,26.0043,40.21155,13.658724,37.84732,58.837948,28.596348,10.348273,18.334637,17.305244,25.082773,12.179699,23.418308,34.600506,54.05986,10.150417,7.4891167,11.550705,8.89588,11.932083,10.79959,16.600782,35.90599,null,18.878115,35.337418,27.965284,22.998224,23.328056,45.16014,7.7058916,13.015057,26.230684,42.510303,30.235598,9.801076,18.141434,29.500309,14.293459,17.883678,38.869522,30.731867,22.999374,61.731945,28.562483,36.96933,21.583197,58.450462,36.143143,19.57385,16.290514,28.250216,16.0345,28.370214,11.422171,11.437617,50.26164,32.52212,39.082108,51.801823,20.168356,19.199514,56.047527,50.662582,16.009893,55.831444,88.83208,59.053192,20.23509,10.326287,27.903128,86.19016,107.05745,66.388916,56.275852,88.92282,77.4566,21.136194,59.630676,62.787792,86.720924,89.93977,30.392935,33.9473,47.745304,17.326862,33.414547,13.894544,25.590542,30.724043,22.116201,42.763,29.162573,58.815376,43.79023,26.902641,35.85757,34.43038,34.666985,20.137608,5.641183,20.351257,20.822857,17.218206,19.166105,34.945423,30.348034,38.663822,32.175316,13.658312,17.374672,20.993832,14.392018,24.913427,12.345442,15.911588,14.370111,14.301146,11.827418,28.49599,21.33613,22.93292,3.983695,29.057472,null,45.775146,14.857837,25.28639,24.146538,28.29597,26.729689,27.769836,16.938395,12.970472,17.312033,38.606194,23.354767,37.73465,12.186561,53.409786,27.014668,16.525799,36.876728,39.715527,36.389824,43.51488,33.487877,15.908703,18.133848,21.473305,15.773708,5.881206,20.775108,12.587432,53.245876,44.92259,7.8742886,51.752026,56.67399,18.813524,69.97608,46.881355,9.792028,51.286823,68.71776,61.238255,25.70676,80.521904,100.571014,54.57795,16.499983,18.809446,47.50245,68.03511,70.543465,41.84197,40.77015,36.868935,54.848537,116.447945,74.58021,49.089096,61.81385,42.235176,98.30515,56.121128,44.734917,79.76776,35.54758,34.153336,47.622513,25.037834,20.63861,38.432137,32.378895,36.392654,28.769323,8.296916,3.0190597,22.313236,22.672106,28.834234,22.927927,55.264168,23.698586,44.17851,25.87127,25.079748,32.722294,28.505163,21.79098,20.092953,25.809963,23.905933,23.066322,3.910042,27.868404,25.023481,25.348032,4.2111998,40.94787,14.35518,29.939474,32.952477,28.721287,null,32.97096,4.5169954,21.311014,28.063482,29.008968,9.686825,17.412119,12.36738,13.758886,8.600535,16.987904,12.651115,18.238817,12.194231,11.524524,25.909838,2.1179972,67.60561,25.840424,55.21394,34.032417,30.27682,42.22141,53.534687,52.315155,18.606049,46.34467,29.42063,31.459404,32.976486,32.569973,64.996826,47.549824,48.909027,91.53388,29.20366,44.066162,33.3266,11.657053,34.34458,84.90415,61.807137,45.56889,89.21162,62.261368,71.941696,66.77782,14.16512,57.442783,81.967384,39.16204,34.34319,28.00938,64.45856,77.07757,55.159985,50.40923,35.503143,93.276634,99.51428,31.327263,27.346407,32.294476,8.331128,30.977705,46.56427,15.841266,45.83686,33.144012,16.311596,50.41422,20.165052,51.955524,26.986624,67.12838,38.041286,53.107445,22.57064,49.180546,20.92584,11.86833,52.194035,12.450685,41.315502,23.267326,44.50242,22.336653,25.809397,24.066353,22.234774,18.115822,7.179793,7.287122,25.78096,20.565676,27.345367,6.380458,50.566013,33.229836,25.988913,null,36.663155,26.490164,49.08962,6.120533,34.176662,14.703043,26.241947,12.142488,9.379962,13.578613,16.95375,6.3171167,27.22894,28.303503,17.023226,21.661749,38.476807,23.271465,43.78381,37.81021,18.393795,42.934853,31.180056,29.832525,8.86042,47.501686,21.52472,30.721836,33.487236,69.72682,14.630592,58.37189,52.882477,34.86939,71.364555,23.380177,63.87676,67.15829,47.522224,62.21998,87.26592,95.6556,32.887924,51.065403,82.98603,85.91102,90.3593,80.54145,35.080692,9.37006,23.189432,41.405506,81.9842,114.82878,96.17502,50.57448,42.40276,91.60268,113.73855,57.6575,71.040726,106.74808,5.499956,74.96669,41.096157,5.4622645,24.516024,25.96616,17.309992,44.989094,55.148624,49.312374,15.394496,22.864044,40.51614,38.64444,38.947254,8.899933,59.940025,13.629149,55.04742,49.082645,19.07843,44.43556,49.527645,27.82011,43.205944,39.010475,29.027323,15.295784,11.858762,36.73429,10.149762,28.920439,33.29949,67.736626,44.244724,49.8823,69.32809,22.095226,null,29.911146,48.5053,32.39767,25.740953,25.617962,46.479595,31.39047,6.6236806,48.829857,66.365616,10.895612,27.817532,79.88929,23.703508,36.693733,48.449078,37.242977,57.360443,31.061869,50.828903,24.321905,75.131516,40.00753,36.527214,46.015045,27.605814,39.966396,20.448065,45.49831,34.656765,48.395077,59.3099,43.06424,94.82684,6.733617,98.988846,73.8063,24.058966,76.676506,69.00488,22.72659,86.40484,97.14953,37.643883,84.613106,92.61241,119.342896,143.84845,116.12836,85.53642,75.46451,114.24896,163.49184,153.62106,78.55905,38.43237,73.39252,78.80616,49.31248,31.74026,113.317474,78.13028,48.622856,104.30753,35.30511,63.346962,60.0437,7.1323633,58.753822,50.608982,8.913923,29.071424,10.937834,29.373056,25.16226,22.668194,53.535168,51.36489,46.0339,55.62132,60.900406,40.819324,28.981152,74.36615,23.508595,58.51562,23.929983,62.524902,21.95543,42.644714,25.104977,56.203625,13.140603,38.10139,22.707981,42.987614,38.64548,18.248333,59.74051,7.350402,null,27.596354,55.527954,14.38077,33.59573,31.11705,14.331845,18.614271,39.77724,12.838919,60.60271,29.137402,65.47828,52.392498,48.35248,70.84835,7.842123,78.48441,11.92447,59.933067,39.515827,16.755617,61.291306,32.61028,36.822365,46.610073,52.86207,45.880875,40.273384,44.32734,38.136936,58.83489,61.504833,35.659935,76.90803,37.497055,50.789433,108.308655,35.159233,109.30554,106.74361,45.437393,82.999405,105.544586,60.641266,40.37267,66.25534,79.69942,122.3804,135.08,108.80743,111.024574,130.90395,122.87875,82.30151,28.596046,106.97308,128.14894,86.471855,36.714077,116.77871,84.12872,66.51723,125.49647,15.109156,72.697685,29.927792,50.418663,42.014374,76.71188,69.09412,19.875566,42.814945,14.774143,30.478601,38.899292,50.887497,50.14983,18.289253,61.12201,45.369904,71.12417,53.444046,28.449717,80.49488,8.4942875,43.290436,15.826446,10.81167,24.046646,12.044549,12.46902,34.76009,10.256685,23.651762,30.5704,14.348608,35.423927,35.397774,29.042284,36.830704,null,62.591187,62.97192,40.69627,51.429123,55.44583,38.209488,26.92931,15.962006,19.293318,28.681116,16.297857,35.281197,23.942387,33.803497,31.50876,13.118557,56.967632,33.998814,43.797413,52.62366,24.753876,85.43271,26.27845,63.835205,40.88677,45.88817,55.16822,14.478393,72.70854,14.456801,53.495373,36.087852,70.01856,37.657787,126.83476,124.98492,14.496678,104.941086,35.993427,89.54523,92.58489,49.18088,54.848534,81.55684,37.61398,76.7086,131.44551,123.42433,152.8207,175.27592,146.55994,137.68718,133.8255,58.483044,49.088707,75.145836,69.07002,9.555221,107.622894,131.17894,17.377432,82.190025,83.136215,11.326096,96.89408,39.096737,78.80695,20.336443,72.331116,42.37563,64.69218,40.322205,31.665283,27.610538,39.118484,12.753562,61.135624,45.698505,45.418827,60.325733,23.102041,66.01909,24.991669,84.94881,32.875195,25.125685,76.86008,28.093765,26.275032,37.46345,6.780929,12.732647,38.21691,32.623318,30.199022,32.49337,24.897905,45.879578,21.75849,47.072895,null,28.295061,27.849392,39.92976,39.894337,8.021071,61.786602,20.509449,9.912054,42.28437,17.506348,26.3828,37.976387,18.502357,66.573685,47.32791,55.082047,73.60561,6.246348,69.0941,41.534515,64.40415,15.903228,31.80389,60.074993,29.173553,52.526825,15.723708,44.389637,26.488771,39.419952,76.66009,47.929466,69.87221,64.34806,34.76931,114.05615,45.016285,79.96761,61.654755,75.14797,138.02489,60.787663,64.098946,87.455986,72.09591,38.51867,8.752079,62.316925,119.10989,138.38646,139.07928,94.841965,20.244741,96.131874,100.151375,71.77017,60.5623,120.21777,119.44045,39.26849,86.61585,83.30814,32.647247,93.69042,22.43002,61.713886,45.72435,92.189316,24.253952,76.05193,16.52402,25.361174,37.741573,16.598392,38.269146,27.540503,56.99063,30.910563,40.298134,47.050922,33.364994,55.650036,5.4951315,50.892254,23.666204,25.597038,22.990551,7.1797757,9.391143,13.174423,46.126938,8.816991,44.73091,40.991005,52.954197,47.60009,62.585888,58.151337,30.395634,44.155525,null,11.757568,21.533573,54.521294,42.855736,39.32122,57.482483,35.886887,60.426575,22.578413,24.331585,12.272598,34.928917,22.949675,31.846066,11.85625,37.668335,47.728832,9.547916,56.178516,42.602448,29.4857,30.224361,22.486385,45.04664,12.357067,34.857185,5.707928,21.472818,23.378681,14.547995,34.517082,35.809814,81.78414,39.81848,131.72878,42.72019,144.84286,64.491875,128.8917,122.32053,66.33648,116.57045,55.978558,67.76441,88.24569,92.726585,60.697964,43.13626,63.004704,58.03028,55.70288,52.8116,70.24542,84.71462,99.73078,85.22534,36.43831,110.03252,38.65076,95.60818,129.79486,40.104362,122.842155,109.040535,67.96619,90.231865,46.31323,69.481186,45.673447,51.47985,25.798004,49.49014,58.059223,36.66238,31.01808,58.748848,39.087456,51.42997,46.976635,84.642555,42.2597,101.41023,69.61888,41.40182,67.61203,17.27606,27.183815,23.778229,26.31403,46.990456,33.609673,31.259996,35.136078,49.169476,28.585485,70.86636,19.397844,54.710083,47.906746,31.458017,null,37.564125,56.02596,36.088448,55.83135,46.277344,50.02304,46.41919,41.774536,47.033485,40.13666,24.06004,36.473164,38.487015,49.807785,24.638086,50.51835,35.134995,73.93285,59.768803,32.13618,78.10241,18.595364,45.45797,37.89494,62.843872,18.197943,79.61299,45.119553,50.281273,8.994716,87.11341,32.90676,80.275635,64.67091,75.24956,65.04889,71.735405,86.47301,58.596382,118.96658,9.838768,119.70963,124.56961,62.70298,93.827415,107.39283,58.37253,3.8510456,55.08185,49.58169,28.30086,44.72475,73.44153,92.09907,82.625824,49.502556,169.68863,110.13448,66.12,104.457214,27.167805,75.01783,32.259132,99.088844,48.881824,83.111244,21.153402,116.496544,39.36949,65.21566,46.90473,16.531342,34.04458,11.032425,41.88743,20.207184,76.99169,24.259975,58.123272,49.911507,21.565474,73.97592,15.269272,42.750656,22.794724,17.307657,5.8279743,14.39388,22.327303,13.649986,46.782654,24.675627,35.803474,52.9692,36.926365,73.85263,35.937565,44.106213,25.065767,26.30159,null,59.345646,51.703182,23.464245,59.496067,38.514095,33.270325,56.715843,37.003803,31.545181,48.968105,25.834393,28.41274,28.192253,29.145315,3.8484023,73.42626,48.949272,43.907665,75.98829,27.537075,66.10773,60.330173,31.60314,108.08059,37.317135,36.9494,5.01354,49.761375,36.630238,45.501453,61.834293,23.019138,78.073555,38.9566,57.402607,109.38852,91.442184,92.6398,122.15815,8.423498,108.992455,100.85562,61.14513,37.91826,81.25432,130.87846,106.00863,78.974014,54.10655,72.82065,101.041466,102.389946,113.44564,101.32904,86.41209,51.468384,70.55617,66.6264,143.66084,76.672485,67.37089,109.9773,31.789679,135.69363,30.714464,83.87434,9.545487,50.333305,69.89769,64.757195,71.8483,73.162476,31.633627,40.205257,68.325134,23.123564,12.692173,86.548355,36.63093,85.83019,76.89417,49.00559,86.69142,47.487625,48.331665,56.45356,27.551962,48.296444,20.05798,36.245853,30.07722,45.430126,35.69899,44.42669,41.266075,12.439355,24.091797,37.85581,12.920958,31.000885,null,20.657843,23.756878,19.018219,5.9280596,16.623932,41.97397,10.6510935,29.136602,41.746933,43.201515,28.709444,25.33344,40.5837,49.42585,36.998837,63.924194,58.563374,102.566414,54.54095,127.38553,105.30074,44.891357,130.50902,36.12247,58.42976,47.69619,39.35228,13.274593,90.902115,42.050198,65.09039,61.23866,103.699425,44.541245,134.19368,59.547955,140.19615,33.27278,54.442192,79.30447,147.96014,107.19919,58.17537,157.19363,50.434624,60.367096,60.76893,74.09309,77.271545,60.63247,66.433136,53.261593,45.766796,17.394812,112.830666,136.65997,41.862106,99.35745,111.09279,23.307356,77.138336,10.02107,74.71217,73.5652,126.10615,57.214947,53.619606,74.22438,38.08497,30.161674,19.726997,31.956722,35.717045,22.042566,53.191692,63.823627,71.38463,94.97537,25.373413,93.50877,84.9765,41.081738,70.551125,57.406322,33.04162,41.744934,17.239067,39.956345,14.045447,30.416529,28.041777,28.236076,58.514545,10.687186,38.439243,49.772427,4.769771,47.192863,54.874973,16.503927,null,42.14841,44.528255,13.733326,41.630444,41.398895,14.279608,26.248384,34.620205,36.50057,16.703957,11.141734,20.05548,27.355019,43.942482,30.216658,24.46974,89.02133,47.954338,39.297146,98.63829,65.65695,59.310852,79.514114,54.52643,37.158566,64.371704,39.943386,43.08724,21.824368,39.64316,51.799606,85.77821,76.7942,93.34678,19.26227,167.50618,71.923355,161.06598,29.34766,109.8969,22.56597,42.42438,85.78445,91.00396,60.95205,109.323166,135.96649,103.64202,83.31793,68.74441,50.08753,78.817375,115.94171,50.837425,20.927898,102.842354,122.85697,80.41753,41.537964,166.04053,68.39567,134.12483,63.57278,122.136475,43.163006,100.33639,71.166565,68.3141,36.985622,23.607964,29.413021,43.579235,58.911175,51.311768,55.21938,94.93892,130.52472,56.59849,146.36588,60.707527,84.20385,91.35042,27.67254,71.770996,17.524994,10.357933,46.745136,32.907238,21.518145,7.6065073,35.863277,18.284145,2.2930737,46.95187,21.556906,12.71668,24.229107,18.662136,15.22941,17.093164,null,11.109674,31.426516,39.35546,22.904177,20.844847,39.827564,17.11095,16.010792,31.817715,12.3391285,19.447544,23.354885,4.896691,61.375988,29.380379,51.947014,35.733635,47.844948,75.54625,47.415684,87.13978,104.090614,37.462204,114.5889,55.340797,49.030506,83.14099,48.970226,23.907894,30.22648,47.188995,59.304146,42.580036,52.79872,147.7261,38.19115,107.66576,87.42055,26.769041,83.09118,21.016747,143.71515,109.58826,72.65379,103.01611,90.20624,28.254328,27.752298,44.837044,68.33294,5.5428457,35.411438,107.551735,146.3379,84.02721,12.661267,133.39566,128.37413,46.009895,50.735985,70.30403,18.261137,93.122246,90.897865,159.52126,52.268658,46.835926,85.55476,73.48936,65.4824,18.333189,23.637697,54.65629,83.14688,37.20894,65.1802,78.546974,67.56681,91.67506,54.946163,49.561268,72.33708,37.678963,44.572247,30.264196,16.016548,12.363227,21.281176,26.18978,7.342298,10.83233,25.3155,22.141304,30.054226,45.109905,24.756786,17.73358,45.632126,33.039913,35.12016,null,6.7486615,47.311935,9.288666,11.656162,42.487198,19.443056,11.77122,40.141994,16.941921,9.835919,33.087788,27.837679,18.403608,36.15606,22.537092,44.03768,34.877472,79.32599,62.148373,5.2613015,93.89966,58.863594,54.37999,87.18559,23.647789,51.394115,40.185074,30.058617,33.83045,44.59796,47.581142,2.250568,81.51685,139.74747,112.46387,72.04358,52.272858,142.58377,35.37361,89.14883,61.337425,63.598206,57.416885,43.63799,101.707756,96.62987,109.35372,156.45573,143.68723,96.31201,149.34543,192.12544,117.67948,92.577385,148.6525,51.832596,22.495674,77.76966,93.64213,56.497883,126.23503,78.70055,114.06404,70.34327,71.01918,148.1443,80.628716,51.900723,58.23365,43.023846,57.102436,6.96676,71.77768,61.565254,105.49643,48.58626,70.78147,90.77378,33.736065,77.44052,69.38321,14.511004,28.028027,43.80316,50.83512,31.454578,9.287132,39.563423,6.0051637,13.35699,38.011234,25.47577,21.394316,3.2613213,43.945095,15.07572,36.92208,53.75806,13.035806,45.692726,null,23.120955,43.646675,44.83035,16.49155,30.647394,29.143692,18.146214,4.600908,14.748631,20.811214,19.500944,35.46935,42.113293,34.56809,43.054836,23.14096,30.466682,29.794615,57.90018,64.625046,29.633371,69.2484,66.64219,21.21611,100.87739,22.255909,29.841145,40.367073,21.333782,34.859238,22.68626,90.79691,33.65005,87.06027,74.37622,48.200695,205.12888,96.80394,109.14473,27.984154,134.44666,175.18958,37.683968,44.103264,44.485794,43.954914,39.84834,54.397655,70.635735,97.498764,80.8792,81.881256,44.286674,47.677917,83.75747,85.358376,61.256123,175.81981,111.93832,29.037228,110.43509,23.580389,161.7481,34.52658,78.848305,86.394005,28.77321,34.42356,55.18078,40.761665,30.794386,28.03333,16.30691,53.540237,46.66669,49.21263,44.134827,59.30708,56.44932,31.515106,91.37011,22.34621,38.737827,30.363052,16.697964,36.989788,44.797653,26.43203,38.881935,4.905678,10.8276,37.661926,18.447819,25.007792,10.821334,9.732074,24.059576,18.805218,22.382587,34.320763,null,25.521938,8.014013,18.017319,6.453826,28.009508,26.859974,18.438185,17.883501,41.766777,15.784644,32.865036,34.56998,28.852987,20.55584,36.104874,54.033314,17.354923,25.563549,75.46697,47.025787,12.81034,86.507,66.19472,26.680634,68.30477,43.8672,42.434063,21.875313,49.251404,13.18898,25.605682,62.278732,35.32116,25.67917,117.48212,83.181335,87.31121,124.39011,101.17072,53.92603,157.20085,68.798004,28.490742,157.76465,159.10352,240.44052,87.57447,284.05054,351.07013,341.08102,326.85565,264.75772,65.024994,202.68703,198.51796,176.2763,52.68852,37.943336,205.73972,61.20284,68.23171,124.31894,82.89841,83.60364,110.59372,46.017048,47.693142,71.53912,19.62571,45.7856,29.372158,67.291,21.124222,71.07126,38.0701,34.197422,64.46923,46.056755,24.665508,43.5423,53.948063,21.310724,12.87025,56.470737,39.118813,32.335117,45.898457,18.761787,3.305069,12.537176,8.10657,11.103241,2.9985535,29.907652,17.132608,28.130774,39.088787,35.85397,24.223839,38.04734,null,61.739773,23.05638,3.4570606,59.015327,1.9300314,29.772573,49.309715,19.86878,13.67175,28.714682,24.223732,40.25343,27.145498,49.900364,36.103516,46.20957,49.49151,29.633587,36.934555,64.18198,21.270857,41.436302,77.99438,19.139874,40.260647,106.72255,10.224329,30.761028,72.93255,57.3286,41.961056,39.781734,114.67968,43.356197,57.69819,145.60599,34.014935,38.018223,182.82245,105.67081,47.24437,145.29413,201.04883,147.86711,337.77737,175.76678,249.95296,232.51205,500.6583,496.2038,447.19153,216.71152,283.56384,142.3219,339.8761,177.80255,146.44449,132.41806,28.070158,91.157845,156.26015,72.99815,35.516384,99.17797,61.727596,65.588615,83.86383,26.08971,48.235813,69.33078,23.866627,35.186398,45.459347,43.999176,77.12625,16.023354,106.11521,64.62706,34.561707,65.593094,44.48792,15.102137,36.672882,37.90535,32.549828,38.45878,24.285192,32.80429,13.509588,15.2760105,33.05783,11.865854,25.986858,16.836674,8.871991,39.376595,14.537408,22.467932,28.88,17.63457,null,23.44033,23.369865,12.310899,42.071564,21.733248,18.55764,27.0919,48.513054,10.68748,6.1758513,19.881449,20.849253,9.115155,26.244577,24.835632,41.84389,76.63153,36.485798,55.91807,102.91156,10.797083,31.49186,83.28133,79.94261,79.83483,44.88469,75.49624,42.028446,14.429693,89.08489,80.04926,34.25199,100.312485,101.423195,65.73248,64.08088,84.03899,32.442802,85.74446,205.04619,140.28214,84.5047,203.19319,276.116,22.686403,352.72443,392.79337,245.75403,553.4995,721.9799,491.1226,197.24312,353.54037,394.68356,76.63091,240.69937,233.34596,59.330532,140.9487,113.84959,108.345535,58.67178,100.018,97.72681,49.72615,108.070335,92.70929,54.625633,56.85503,41.322876,59.375206,30.16776,53.566326,68.731705,16.535904,45.63413,87.054085,35.144253,39.289623,81.63346,61.94638,27.712389,43.198322,61.675224,6.8535504,10.940871,42.309696,17.057558,6.586388,36.072994,17.48464,21.219654,21.467604,29.694918,13.041514,42.97176,37.23643,15.386765,60.19074,9.136973,null,43.438408,37.255196,39.55025,43.440403,11.65061,24.212408,32.12372,11.965779,27.396408,32.86649,2.4648929,42.258728,38.1634,23.784657,24.52137,45.709396,30.793951,48.01701,58.38568,60.329254,40.10654,28.871542,62.19592,70.47036,58.991425,63.66559,42.409668,7.1802726,35.489906,38.36272,43.75133,14.554088,48.181618,72.553894,4.1538434,91.23932,58.728973,51.763527,73.663506,48.041096,138.46748,93.71794,123.59867,253.97382,287.31546,309.0181,520.49316,918.996,363.65335,2267.7197,211.58542,922.9692,589.64923,308.2962,227.18427,313.18814,105.05446,23.939293,220.47385,100.97278,117.36794,97.47816,62.49612,77.75184,18.137165,31.732647,84.464714,6.617433,32.642426,20.751785,36.848145,26.725828,83.72681,40.386387,28.464085,45.268604,74.82243,29.118761,19.497183,109.85772,45.227665,35.52538,101.76413,35.45664,25.781122,59.355343,35.567654,22.064793,11.391451,23.846315,27.376774,6.039569,35.44776,18.754023,23.898735,42.90327,3.6176994,38.164177,11.225096,16.496023,null,40.86647,17.58987,9.733942,46.049995,20.780245,9.845528,37.04553,20.144012,11.955049,26.878437,19.610182,35.461422,17.929674,58.365025,17.223143,28.865421,95.052986,14.585726,27.265795,105.592674,12.64236,14.177705,82.39357,31.561953,13.786426,68.53006,7.598276,18.125214,32.550987,23.095427,15.214893,21.278296,83.19575,36.387886,49.590122,104.94117,15.455892,110.43248,114.99567,63.636223,236.62355,57.3234,210.24234,356.29416,190.30978,576.1107,415.60797,897.191,3230.1577,7475.338,3220.7795,904.15546,382.4083,566.483,155.29549,342.1896,166.71045,57.20224,252.41397,61.415604,105.681465,115.4664,19.23506,135.90753,48.582058,42.784897,92.42132,45.97019,42.15148,7.3879657,28.868504,41.735855,13.650336,62.99285,10.111862,36.797623,94.223015,10.745293,4.5470405,95.94544,34.14646,25.34621,80.69279,35.186928,40.476585,52.989994,32.064903,31.596123,34.820114,33.66495,23.219395,15.868138,50.063797,20.591837,34.070866,43.475292,3.9195745,20.104027,36.181194,23.00467,null,24.04952,26.352757,18.778418,27.874346,30.572525,11.863007,40.37156,20.005814,10.932482,18.1086,5.5784936,40.068623,26.43076,68.37849,33.72197,40.34844,96.90974,30.648636,49.649506,78.40845,16.35155,9.24326,84.572075,46.796257,26.506788,36.975094,54.29903,44.294327,42.45823,58.480255,7.8868136,26.493128,64.582436,41.61564,14.664647,54.795097,73.64906,79.981445,104.77977,51.353455,211.02577,29.629011,92.52886,325.36285,202.47076,266.83368,555.2124,870.7842,169.52435,2169.3293,291.28986,898.4443,509.219,277.42325,311.18793,241.04779,133.91895,88.71387,136.2225,47.497345,75.70421,74.32698,54.931713,63.273464,37.58632,68.33714,60.70165,21.256964,40.02331,37.52087,39.40435,18.076622,42.361355,59.60278,41.439976,47.66152,61.30189,52.06572,51.036503,72.96604,48.5991,32.294083,42.954884,61.738926,28.315445,29.079012,20.271408,22.031128,18.956911,37.7708,23.088007,6.139046,23.207193,13.054481,15.755763,29.310625,31.614632,38.368908,31.179674,10.098652,null,42.251873,33.009827,27.093307,48.820835,13.059649,36.328777,18.05858,19.348015,9.020409,30.043419,23.1215,21.39465,39.573074,14.088186,39.06031,65.71179,52.522842,19.749527,68.26798,76.84854,48.370514,50.59277,80.31089,10.541193,8.433398,75.26878,44.72754,5.4083123,48.7069,56.534557,59.04127,39.033276,68.16115,86.40163,64.97912,59.580353,98.40643,54.08266,87.148865,121.1386,157.68149,45.083027,231.01047,211.35182,94.483086,383.34277,356.00104,216.7666,467.29065,656.3651,481.04715,262.11456,339.39706,361.74664,20.577488,268.9474,209.2727,88.01963,113.40293,182.51996,124.48789,61.384495,98.11799,89.14705,42.16008,95.07418,93.84608,28.470774,63.108845,97.581154,8.754816,53.52075,67.11831,44.589832,71.14877,76.4197,91.654816,20.168726,21.592669,93.86087,54.932278,22.37932,73.708885,40.291744,39.419838,26.474276,15.340781,37.148148,28.760784,18.845896,11.047065,26.80395,18.273987,35.499435,28.36413,23.004793,21.389349,15.737181,31.692095,31.487623,null,13.231331,19.80137,19.876532,22.686613,18.249458,13.096328,28.86117,16.669888,42.014763,14.137909,31.781694,45.746407,9.215793,56.303894,39.255,28.509218,57.946495,20.332386,48.446087,77.89987,22.379782,75.8525,86.636925,38.92581,49.2263,65.39924,53.79252,33.005325,29.500479,51.545082,56.692818,21.95633,62.15891,66.40879,35.05433,90.22965,33.008354,65.817055,159.79727,57.25552,32.335026,138.64238,157.72516,139.07706,330.66238,169.63051,313.08817,142.8235,423.0205,482.38736,455.6531,203.7872,236.18788,193.12,308.57016,153.3628,184.10085,175.59967,45.70297,123.46068,153.93076,39.30884,57.930817,107.05261,40.34929,47.45175,85.57899,26.49427,32.57611,70.85818,73.31086,35.323803,11.241765,108.24635,20.375793,17.064222,78.25595,23.344698,22.060051,73.4753,33.81113,20.899324,61.391327,29.427185,40.86733,47.37881,31.490725,39.332947,12.527743,30.673256,12.528962,37.135845,34.631123,28.962774,10.990622,51.06182,19.368319,37.41506,58.18341,6.3668337,null,18.491152,27.996199,48.51468,22.82553,23.65368,20.501888,1.0187552,36.932453,6.5513372,23.03658,17.070349,25.852278,36.32202,13.380669,34.729733,51.707043,37.739403,19.267857,52.400005,37.082745,16.39471,44.660393,60.4554,21.599836,26.30927,74.111435,6.814761,56.187366,54.768993,64.599655,10.622625,36.408066,61.80154,55.739185,89.04548,65.82613,81.342255,79.247536,89.29646,101.3247,206.62077,33.739086,46.53058,173.66878,174.39366,185.72647,59.076588,279.1522,356.42383,352.17038,363.8073,291.4387,101.08603,243.27351,140.43608,153.33894,13.795978,71.33864,161.50815,35.8232,71.488815,138.02657,36.420498,64.00925,97.84488,35.67225,27.011513,77.25774,42.8455,23.976013,70.09659,43.014107,47.69997,51.30402,69.31559,27.796307,56.82299,104.96373,11.920858,45.730236,80.10233,55.15834,9.851605,65.42148,39.083782,27.642654,37.237408,46.28151,46.58597,6.682436,51.750233,26.228058,13.878347,33.176395,24.100208,11.436232,7.0699816,28.0102,14.986071,45.57798,null,24.234001,18.716084,28.08537,24.28873,16.66736,27.351988,15.871543,24.498255,30.561047,5.1243596,52.392445,30.472563,51.52966,31.775553,17.52706,48.467648,24.992804,36.186996,88.52747,30.693996,55.179447,81.125984,16.331366,43.051174,40.079483,54.00755,12.324563,30.771303,39.19437,38.48848,46.849277,33.82854,32.29782,97.43929,32.128883,47.430614,120.71636,20.79036,76.46292,44.12987,104.42074,154.24596,45.771866,83.2142,90.480354,36.560356,48.055004,60.737045,75.64174,112.19046,63.60407,37.83917,34.499905,23.670195,51.736206,34.341843,12.565135,135.35802,135.64441,12.701413,95.071526,86.00196,175.09048,17.338713,79.54638,81.160225,42.81394,99.833694,23.181053,53.307716,30.097723,72.38084,30.292246,21.896704,102.47194,27.98314,41.888054,75.048584,6.095112,42.15624,63.59573,22.444195,30.180708,49.44557,14.496767,33.687218,37.90783,10.427112,25.981726,28.955025,12.7274475,17.515375,27.110226,33.285725,24.2486,23.360003,52.53668,38.375126,21.110758,73.25745,null,24.721159,48.633522,51.85145,17.289581,35.649693,20.809036,6.1513696,32.464474,27.349274,13.932283,3.9520173,48.152275,42.814083,17.57136,36.562843,32.523754,26.05083,24.387218,78.02624,53.291748,30.215673,103.885445,41.432804,39.32931,97.57409,49.79131,61.850376,40.2964,56.079063,39.755604,45.159866,81.533646,94.39074,117.98335,42.456882,99.762535,100.58253,75.5065,152.91353,86.66568,67.95161,66.4598,35.15261,62.5454,114.17195,81.41271,87.02192,180.72151,157.31317,88.49691,125.10313,140.94754,99.078,112.15287,142.48302,62.547935,35.639107,73.49458,89.074844,77.77274,24.719685,102.47112,29.638727,84.71675,112.16062,85.78176,78.05507,15.953737,41.33276,40.395176,59.05988,27.844357,51.257114,76.1773,31.436646,73.69477,23.976917,56.005882,108.51942,18.26922,50.38802,91.392006,34.5847,41.273197,54.246563,32.40485,29.412172,23.914377,45.345367,18.699055,18.750074,45.538025,17.153584,8.479066,42.921593,20.532217,10.735462,50.55582,22.753756,7.2449975,null,29.940538,55.98973,22.164894,28.626799,37.378376,11.916379,9.412803,38.775658,25.579142,25.60969,14.785618,32.704178,11.868786,5.265952,57.899136,35.137383,52.610428,61.386097,51.67927,64.03955,79.365715,61.361095,92.92359,58.675705,36.74428,88.747025,48.966465,35.336502,26.080729,62.50201,68.779144,73.402306,51.106422,52.9314,158.202,83.00164,98.99489,29.92641,72.53457,55.728203,50.20463,115.85127,113.23932,33.31528,75.96436,128.56238,89.43534,35.24106,7.7085557,34.42836,46.744007,20.935888,59.79681,128.78038,126.53988,63.428085,110.04,104.65808,20.939688,56.99038,22.871206,80.88811,62.073223,19.468895,124.38323,54.701553,34.58437,59.642838,53.66505,10.226704,23.731367,35.423862,78.73314,25.311644,40.92597,107.748184,41.38034,104.329315,81.800995,54.63558,86.9714,37.30171,36.15707,39.070297,25.78241,51.62137,16.349504,13.676506,15.802887,15.687345,14.799356,9.279582,7.657229,41.763283,34.04878,20.951466,39.41536,32.135395,33.698666,36.40902,null,17.595646,22.554457,33.79737,6.4579835,15.682596,50.18013,13.110687,20.82616,35.27454,14.663248,10.429958,27.838213,31.206562,20.777754,36.46117,60.780968,30.476206,92.54334,72.76603,53.21987,130.14679,60.10822,88.5102,99.027794,39.314175,50.080902,39.153336,23.989449,10.542761,25.634293,30.8842,63.285423,57.808784,48.27553,40.79865,103.21539,36.470413,92.585205,78.44732,159.20648,60.565697,56.505836,136.57974,135.56267,36.195347,54.515438,90.72257,64.15654,53.706795,51.031563,66.75584,95.86342,126.74463,104.58353,81.36172,110.581856,91.30097,14.478601,47.308174,133.29453,39.152325,119.08817,58.01725,133.74841,14.78342,50.023453,58.455124,58.255184,39.377308,24.691994,33.51956,51.77718,37.98284,69.025696,36.199837,62.21011,81.940544,56.87531,57.775562,101.11901,36.325905,40.409462,92.21083,19.867485,41.798103,74.87727,30.211098,39.00498,18.19923,17.305933,46.319176,19.695541,38.604736,20.16181,41.11843,64.60985,28.802382,45.501797,46.170116,25.11653,null,46.042023,54.569706,15.230986,62.664463,40.735126,7.9934015,61.20693,18.780556,21.251768,33.698467,10.169743,46.169567,28.347622,68.47103,34.83177,82.586586,61.202026,21.656956,86.02053,96.429535,57.170242,77.520195,75.7123,64.00455,38.64546,11.227325,33.419834,11.9719305,18.476498,34.57249,17.876743,79.61002,34.020405,67.293106,78.12963,77.27765,64.195335,22.721533,74.25666,14.860796,124.62754,110.26004,39.733948,130.4853,106.01892,17.774168,21.993246,35.111103,55.846336,63.78335,69.146996,73.57461,61.289505,29.316889,77.33267,159.03365,70.17482,104.14202,132.4533,58.932236,61.093376,45.07911,129.24539,43.95675,125.86118,48.17815,83.63724,60.39916,42.974045,44.581055,82.35572,41.82822,18.470457,49.386642,46.07193,31.595459,114.64878,49.228584,102.20051,115.77833,51.711964,78.53842,76.70887,63.695377,34.555206,44.0027,44.72544,14.033449,22.837332,38.712193,56.174103,11.017536,17.693996,33.59309,16.39587,12.11117,30.582964,18.16554,18.250296,27.2596,null,17.150116,42.572758,23.597359,19.759512,39.22106,27.98933,47.18422,24.211609,49.51313,15.132923,26.41322,35.948116,30.352858,30.5376,37.881035,29.268257,87.44619,41.252434,58.524357,85.72652,44.140354,79.938644,26.806448,10.018429,50.955017,29.58737,19.370525,79.57001,63.19079,71.00117,63.298016,44.999798,5.8728127,69.02556,28.575974,116.250854,20.216284,103.40645,71.66083,53.234383,120.91641,65.91737,36.79862,49.39358,101.20484,109.902504,119.62394,110.73482,98.82717,89.21463,76.22051,84.32444,110.805824,131.80962,64.65841,17.497711,29.903719,82.1175,97.43822,22.359493,86.38242,70.57593,71.96707,84.75389,72.52304,52.363483,82.29776,23.503838,68.657974,20.978346,39.3659,47.28074,18.405678,12.722018,35.618835,87.89326,20.1542,25.168592,91.05327,44.67764,60.435547,78.25299,52.984592,85.43881,27.283295,47.811726,37.589607,16.367556,35.065002,30.19713,35.241314,21.022833,58.66831,18.488874,50.723118,57.20052,15.425194,50.737293,51.454456,32.775703,null,23.107834,47.240612,41.619156,56.23198,27.995401,52.91874,46.71269,17.599901,33.138866,4.297475,29.31887,19.599304,27.822655,12.925944,59.959763,46.97339,39.669407,70.4837,21.860548,62.323986,47.78144,29.036432,75.52932,38.35877,29.72367,4.753851,24.548643,10.724809,39.21995,45.789757,40.486855,99.96361,17.659052,56.15734,37.690296,81.137184,41.62525,55.71907,19.77466,99.3165,56.593052,97.1981,174.23012,90.06019,18.251678,72.65893,58.717472,51.51418,30.134342,43.211685,47.21355,33.697624,61.687653,80.536835,69.48557,42.55275,109.50382,110.16515,27.126797,90.55069,51.100746,31.554092,27.852692,48.23457,45.654964,74.93036,69.25193,18.449358,64.60363,13.825166,33.721497,26.470407,42.60052,15.328709,41.21746,33.65541,36.591053,37.904102,63.5371,30.655592,67.197365,51.072865,32.219257,44.3902,27.029133,40.696415,30.495827,33.272495,21.596766,20.27796,42.98968,27.555174,45.432728,34.458817,55.52339,59.43559,32.642227,52.413143,41.87344,23.425186,null,47.715584,46.217087,19.942425,66.012,34.556015,50.716293,41.340473,22.786097,34.995255,23.527792,22.58886,18.045938,7.471912,19.493864,62.97485,27.29403,64.31114,81.50013,46.432858,68.759445,57.50215,47.04373,42.401863,56.086964,10.384768,53.256565,42.22743,36.79568,37.165295,26.996319,47.7683,27.369038,13.358211,79.5849,44.448895,93.81595,140.34085,47.722397,113.8116,109.18229,9.665109,82.43326,33.228474,70.43067,115.07342,101.88702,50.905075,3.468867,24.173155,55.57548,26.89674,37.169125,66.246605,79.180786,90.819756,82.002144,34.50244,81.80658,35.96616,99.20442,81.93037,65.06482,116.94285,36.533756,114.47236,12.392712,59.6906,20.256943,53.95509,20.947348,17.29738,12.93676,20.001347,54.30999,17.805113,60.077694,15.955449,48.08949,36.97012,49.95913,49.360428,20.533276,61.931885,54.860676,21.743315,49.273582,25.137613,50.39334,33.414967,12.821969,23.736849,43.805202,4.8160186,49.77342,41.66512,32.664116,40.017475,38.189827,25.827572,30.746174,null,18.938482,75.592445,47.005676,47.734882,43.7646,31.362963,40.05727,4.6081142,30.648474,7.984517,20.632067,13.1231575,23.93765,43.939037,33.708305,61.99337,23.792097,43.1282,31.910778,38.395546,57.45532,36.02426,41.581554,10.585623,32.38731,9.768683,16.887125,17.542074,12.28216,54.7843,23.762434,93.50801,49.991005,60.89877,10.027669,89.759384,59.516525,54.420864,66.97595,61.30949,129.25645,134.54974,70.16962,41.544575,99.92071,106.112144,34.95557,62.653683,92.55418,105.70795,99.03733,57.281174,13.9616,46.083683,56.70176,66.91464,37.561394,84.550835,153.61038,81.52183,33.80779,55.94377,70.57603,106.86131,39.64687,34.806637,50.29213,27.428066,73.42566,29.762863,48.9618,55.366425,22.949093,58.765926,34.59504,53.454903,54.437603,21.605886,63.56306,34.48411,63.463646,17.962164,72.41332,47.611763,35.761772,57.89116,10.605565,20.87829,14.781968,8.952669,34.51538,16.752232,27.740929,38.589733,25.160688,22.403456,15.249486,21.498177,30.796604,16.206917,null,19.323568,36.853844,6.1697626,15.320007,21.05706,18.284857,30.624023,12.315998,5.373899,13.705067,23.07223,18.800875,71.62219,11.516597,21.664988,69.52355,21.6763,55.24235,9.83229,50.099037,25.414164,30.995266,50.503563,15.458485,40.820892,40.63577,42.178738,28.356804,36.633114,32.04699,66.22595,18.809359,59.91864,15.536295,56.290253,19.684181,51.919834,84.24543,24.181904,83.20218,75.763084,25.808434,39.450817,68.9085,73.61368,54.814922,124.53717,149.36983,164.99083,174.56615,149.69785,140.1356,120.54061,84.20019,13.634563,69.95863,74.36164,58.996944,92.1168,79.73045,52.89446,122.43681,30.979725,98.91407,89.14068,35.398594,82.33458,58.512825,49.428867,23.134996,65.70944,0.22901466,46.8644,55.489338,48.336323,50.126667,26.68967,78.90443,20.700436,53.677036,48.181538,25.02861,66.34606,12.47453,29.508526,29.460783,20.692377,13.143291,35.403015,33.611954,5.101379,27.762054,19.170784,40.42643,29.14021,62.849133,35.047657,64.846306,56.78555,48.196903,null,26.572865,42.550327,26.907726,19.585552,25.287603,33.45134,26.594193,21.382448,8.938476,15.228271,42.811466,12.2554655,33.706093,33.92682,13.1910095,49.36978,35.10801,56.189514,55.971684,26.267326,57.504066,33.7896,30.020325,58.957996,37.48109,43.50267,14.261118,45.737682,21.491283,50.634117,63.23102,36.771637,51.163906,20.256588,68.44802,33.74689,82.577805,30.373455,63.39189,78.12336,14.766788,86.43792,125.03006,138.3958,62.937233,60.343864,115.57925,133.81277,121.19299,141.32289,146.43622,106.97074,66.22773,71.46773,40.962017,58.911533,127.61426,90.27702,30.135359,104.68192,86.894135,37.707497,106.88115,39.383003,49.22396,50.190426,23.095814,49.7369,47.668995,29.775902,47.271236,38.157715,41.080845,61.340343,39.320473,44.619823,30.021212,66.89201,24.845415,53.13034,58.383465,10.897555,46.34141,43.872955,49.527317,58.8114,50.657566,47.040234,24.425253,49.37656,16.385164,14.204116,18.151745,21.865562,26.119638,32.308655,14.899836,41.77628,17.971676,1.0378642,null,41.490322,23.61988,50.391212,29.813648,31.391043,22.797949,9.938432,41.12708,23.480585,43.264896,27.048468,38.726467,22.675425,47.495266,17.991581,66.518715,35.192966,41.63328,39.547092,48.89332,35.001266,60.158413,70.752,27.436031,30.63445,17.840244,17.122198,7.605897,38.32914,50.710518,52.681923,25.158558,59.5133,58.793503,35.517723,93.11588,46.65529,52.90137,98.253654,45.118786,35.80412,61.08357,54.89387,53.176743,44.195934,133.17839,172.80437,109.11861,50.222004,76.1061,109.71741,120.72319,80.89996,77.88187,72.20458,15.284942,104.24945,97.40005,20.954565,81.38059,74.85464,37.42074,89.92558,72.7387,37.876835,111.3849,54.805702,72.53484,50.64844,46.60051,62.482853,10.587522,43.77931,30.041115,60.19187,32.379204,50.2551,68.2016,32.902916,50.311855,52.556305,62.501286,33.67804,35.535854,42.53182,12.060378,56.03814,30.388788,12.865982,46.416126,45.169773,13.623033,14.470048,34.294956,17.632942,22.176184,23.160326,39.154408,13.329603,33.70932,null,45.542084,45.46256,34.406235,54.662403,16.62683,43.074463,12.72853,13.681711,30.427984,32.651363,5.3195586,41.054695,12.633349,29.550247,30.72525,36.380585,23.867596,26.630663,55.054836,7.238735,67.382164,18.856611,54.511414,39.272533,43.838673,20.52073,28.136696,61.219193,21.04432,36.929043,17.665396,48.06137,42.407185,29.886003,58.25084,38.23424,20.623043,70.196075,56.14768,61.021473,111.53626,90.97162,58.387547,23.435003,69.90225,86.96548,83.42607,64.964775,37.86712,12.185947,41.93414,72.5299,57.658688,58.70988,68.424644,30.699438,55.086517,85.31932,82.544716,70.26578,38.436466,55.50188,41.823483,30.44399,53.806213,32.447918,25.056433,28.777266,29.31327,68.803986,14.337847,32.130882,16.945501,51.123505,8.832985,33.298244,22.829521,38.88182,27.322676,18.807512,61.25469,33.23168,36.93791,2.7632608,20.551485,32.764412,3.108705,5.655534,19.756456,6.889104,5.7913,16.95323,47.5801,17.334211,39.538662,9.167674,50.032036,19.643702,11.464999,36.497128,null,42.07108,33.691467,14.200623,20.538137,16.961039,37.561348,22.378073,18.637987,16.370548,17.552437,52.925777,13.737357,21.558613,41.62167,38.699963,23.652294,21.295448,47.281578,21.505606,27.937325,45.01029,33.60495,58.237087,17.39144,62.368355,27.463531,51.30069,16.176176,52.65297,35.57314,40.024372,38.5536,8.230178,41.673347,36.463036,30.869322,39.3804,17.399826,26.900288,79.61454,110.28498,64.2161,24.15384,57.868603,73.26759,80.96793,40.848595,11.484826,42.126858,91.83727,61.346752,18.337475,86.711945,101.84658,61.270493,50.73346,20.07135,60.90896,95.113014,76.06062,47.919647,42.947384,14.223789,68.23363,72.70366,17.788792,47.51376,62.39733,18.078152,23.530907,22.25312,32.342804,40.65746,24.35047,58.339268,63.39203,49.30065,31.683933,41.595932,51.611473,25.90818,49.542347,22.662157,21.135136,26.64507,15.035602,26.223799,10.130987,11.927041,14.826378,7.3645024,6.0237446,10.320861,9.989633,13.5389595,25.342276,22.476683,10.730931,34.111897,32.13501,null,48.362034,44.90862,21.806927,39.711246,11.981326,25.18729,18.54726,25.064901,14.57622,22.638514,26.534586,27.88411,10.117514,14.990209,11.93064,26.566088,16.628578,46.137157,37.748363,22.20093,46.489376,23.71505,41.578857,35.70133,33.554333,7.2386427,17.88379,32.44113,51.904205,8.958032,35.948532,39.001675,9.682568,42.811985,55.860138,20.26806,65.98346,35.50673,52.584965,86.06095,35.307617,40.979538,66.047905,102.45088,97.39814,17.360537,41.00911,29.192675,46.745403,81.20428,73.016754,60.008953,5.453075,43.577347,62.882465,72.96192,38.128963,19.83917,48.893566,60.38846,41.22034,22.90098,21.083076,46.977066,29.545456,41.08382,46.60047,21.528807,28.84991,42.771255,31.482513,23.673721,22.81339,17.588451,20.51483,27.904037,6.228567,37.99333,27.42032,37.281746,36.431446,31.478735,21.447834,19.405594,41.08745,10.752476,30.541952,12.604264,23.35233,3.52281,17.128222,17.891703,18.87769,17.633097,40.051144,12.338382,27.573961,32.248444,35.458904,33.832195,null,8.68684,41.66726,19.253302,27.671267,11.972987,11.002301,20.441713,20.39846,21.047434,8.12748,12.769774,18.33473,25.607141,9.840211,19.029827,26.591913,13.942474,23.498293,23.105583,9.673147,50.723446,34.827065,11.329695,29.660711,29.781507,40.398174,23.699005,44.414833,42.232327,44.45742,33.42187,40.628956,13.570704,37.167355,23.967487,8.606887,49.519413,39.359737,28.5487,43.958553,31.6142,94.372055,87.08183,50.46233,43.796524,38.957664,78.15357,98.36703,58.602493,56.911034,91.309204,91.05251,43.568295,26.586672,37.70028,67.33826,89.65772,58.851933,27.89074,24.597012,34.024498,20.903639,5.138307,41.97936,45.978287,27.741127,48.618835,32.882256,22.742975,40.801296,16.800787,30.769558,25.627872,20.551365,32.25827,42.76388,25.948921,44.752895,49.784195,56.23902,25.272436,20.757956,50.96977,16.824654,22.83395,45.68515,40.900177,2.3411498,33.536987,25.5,21.272758,22.990225,21.873592,30.10525,6.7732034,31.613747,30.033955,31.148294,33.726482,11.676355,null,31.186611,26.92066,14.416861,7.4944124,13.649918,23.545954,13.945994,26.457458,5.787048,8.629373,44.383923,22.029726,38.54813,37.286396,8.478381,27.820711,53.316006,34.294975,19.941887,40.238026,17.688068,19.164816,35.278793,26.617674,21.694738,3.778839,23.107555,32.703102,25.966208,18.034378,10.414383,18.709473,27.080282,18.680416,36.931976,36.717022,46.053303,65.56126,45.257114,26.372524,44.322464,57.31427,37.784966,53.34923,57.309616,31.927542,35.573273,41.830944,67.41281,114.55307,109.66577,57.093163,33.280293,45.08247,23.325048,47.195637,45.45808,43.34946,70.09483,65.0417,58.725296,40.533524,23.320988,58.516827,49.685493,31.76261,27.19095,3.3640525,27.596916,37.01609,31.670738,50.665787,18.409773,36.029476,40.754745,30.975775,11.767386,30.45107,41.360012,14.757598,33.671333,14.939421,26.657682,2.1528132,19.963482,9.508031,26.954283,11.759999,8.576716,13.736119,17.727869,19.787973,16.546906,53.194153,39.680912,19.746342,18.29795,27.910471,26.231327,12.718712,null,14.650557,27.292099,32.67103,45.605892,29.599222,13.754682,50.75852,31.70019,17.692078,36.780056,18.143284,16.476755,15.388296,33.04707,10.3534975,43.703747,14.307985,18.405077,7.182858,38.708572,10.543211,18.177265,28.07923,6.946829,47.355453,26.244589,37.604443,30.686287,58.732704,45.299095,17.137306,48.79057,17.062698,27.584211,25.012026,17.509045,26.388899,25.49187,27.774563,54.018753,62.499733,57.5879,37.30969,17.850761,12.094638,49.16835,68.01063,60.413746,39.403156,39.831913,41.775684,44.657505,58.52823,43.674404,21.816513,34.272766,45.672485,57.92035,77.82006,60.058098,30.208157,49.260967,36.048164,29.915308,33.410862,32.21499,2.0702863,41.702435,52.73552,40.274246,37.70021,45.048218,29.659729,38.24169,28.329515,31.481342,38.848003,42.5496,26.635324,35.358677,26.752918,29.464314,58.99172,6.8761435,22.587774,33.791214,32.813477,24.97655,16.958422,26.044874,21.897022,21.323174,3.9744623,52.90068,12.101358,22.575777,28.672169,32.88614,25.234179,41.585266,null,25.382826,28.081387,30.82926,18.665203,6.4149737,39.332977,24.86529,17.927742,12.708318,12.599162,14.295355,20.905264,40.901115,6.281782,11.154945,30.773113,14.300337,8.859669,43.856297,13.7402315,22.784868,19.71594,53.640125,14.570599,21.364761,21.602543,49.35777,17.52644,7.493092,21.993334,28.455027,30.821896,4.884843,24.937056,15.734169,16.484205,20.07025,23.099468,32.713448,24.351393,49.868343,53.778778,34.65079,29.098501,67.547966,51.640667,20.191088,19.470425,19.170614,24.172163,20.630945,17.299675,40.377373,58.109955,59.247307,39.6549,32.938717,56.81637,32.96782,16.060596,4.3205466,17.515251,52.48379,59.579185,31.961725,23.168146,22.745996,17.480227,43.437065,41.498955,47.50669,65.966644,4.979308,55.179943,25.19873,33.42801,26.092358,21.318806,26.136557,56.36332,8.054527,11.7270975,31.82073,24.500277,13.9392605,14.918497,1.41449,21.442144,13.416223,21.69471,20.85755,2.2680728,24.489494,19.786127,13.076985,27.746378,23.063719,25.511827,44.24514,21.372421,null,40.039177,1.5166075,49.67081,6.2501836,28.471758,5.739672,14.222926,32.790176,20.477648,30.285559,22.5309,24.417849,14.239977,24.425236,18.212797,21.846468,21.927532,22.705929,26.723768,33.031063,46.079365,25.478903,37.263527,25.864761,36.576595,32.53849,31.413582,39.885857,37.080933,55.578312,18.21702,38.674084,25.23176,28.193867,31.55109,6.9022775,10.932707,36.21601,54.43898,42.58549,31.146036,15.907254,12.435957,9.839345,6.4149437,12.100671,9.468394,29.52235,42.329025,32.48207,21.397835,11.037521,24.348265,18.293972,14.621293,28.010818,28.704798,24.484331,12.320279,25.09398,42.975372,32.91923,8.318113,38.871307,34.915962,15.481069,42.65766,36.281353,36.3893,15.154126,13.83456,19.06887,9.332316,26.647015,32.87484,35.669144,17.52268,25.626339,24.45295,31.964142,22.573097,23.760603,21.493732,43.21532,25.730005,15.472016,44.297207,21.903479,10.02311,28.793001,11.011667,10.306614,23.266914,9.42975,8.795577,1.1226814,8.1973505,15.373215,16.014294,2.648516,null,5.558624,47.245808,19.446926,18.258877,13.118941,14.554548,4.0035114,11.188483,3.7960484,10.010064,12.094657,22.166002,28.106733,22.432436,22.211,30.359047,15.547877,16.014557,36.890293,41.353485,12.68918,21.511353,48.485268,14.805623,26.16055,16.174198,22.619328,46.829575,24.51942,17.165545,21.180534,43.001316,34.20229,45.57265,18.783813,15.248339,30.29886,32.273796,24.700401,18.028698,16.275406,15.465717,14.331419,4.428735,12.033718,33.108875,35.949505,2.1949625,43.088108,26.484833,22.394463,21.868767,14.517442,13.103472,15.240556,30.525787,50.491306,35.16561,3.110244,28.925884,35.73241,9.273229,18.558378,41.160305,44.17223,13.61043,23.885464,46.614853,17.04234,27.077536,49.08076,47.79964,45.417328,26.794493,32.81263,53.21783,11.866112,27.731071,20.566927,23.952452,11.166443,4.2566924,19.191772,27.080322,21.079388,7.844056,9.880821,16.0195,15.041701,29.098572,10.497155,17.815496,14.806375,15.189634,22.446903,26.978914,15.791879,17.237001,25.531294,10.780758,null,20.214783,9.49978,30.716663,17.596914,23.865149,8.701768,20.490566,39.22833,9.886308,19.808172,13.315394,11.708787,7.5178485,9.879066,28.43888,22.00523,18.466003,14.955531,33.775166,5.2726784,27.363537,18.876486,24.727276,13.352747,31.820696,37.14951,12.725668,42.63439,52.631943,37.70998,49.2449,59.976097,14.89204,24.924778,23.19763,8.5839615,27.84048,18.264002,9.094625,26.751556,40.9695,41.814102,45.061726,42.037727,27.640186,25.510292,37.378902,13.247658,17.828497,12.29929,15.340973,33.07719,20.31033,26.50999,41.309025,67.711685,60.55779,33.4178,33.4389,57.27289,55.42628,28.248539,20.034832,28.034384,29.27952,28.01238,28.037851,12.041081,32.07686,25.45248,8.468772,4.8985667,30.70314,12.3515215,29.349304,3.612682,24.359081,12.910816,4.360473,31.901209,9.48065,18.6234,4.5185103,12.802562,8.342793,11.266738,15.055967,8.963047,20.73083,12.336086,35.56066,4.6999936,36.679016,33.55071,13.898985,26.860498,28.128468,17.217983,9.819354,30.657265,null,14.071613,19.408337,8.528237,2.4602444,14.910165,31.251154,5.137982,10.216283,20.042635,18.685453,8.05685,8.471447,17.902365,5.5585966,14.369147,8.645015,12.570812,21.091764,17.49825,46.889175,16.907713,48.10505,25.234774,43.37373,1.6758312,22.064957,26.653091,25.029503,31.16507,34.490932,31.915043,27.540457,28.799683,41.753796,38.54257,43.29186,38.85119,37.497726,9.721094,33.81485,26.266562,13.449203,14.810497,29.061068,29.12883,22.944296,38.077576,14.943902,22.821053,23.355747,29.094976,51.02121,8.802566,11.826347,21.400473,21.241142,18.509094,34.11663,27.183334,13.593921,9.404227,14.768589,13.47438,5.24719,5.952837,6.898787,12.741585,11.517334,30.864563,36.47306,31.168934,40.78806,10.1894045,31.140064,32.56823,15.936146,26.761337,18.301277,17.170967,8.69267,20.691105,25.398993,2.4058022,37.937195,30.502192,20.78239,21.900629,14.275677,1.547441,19.041788,10.575177,14.871139,10.793235,16.489183,17.012348,15.477128,16.847689,7.7992983,24.383366,11.543792,null,32.560417,11.651393,28.05759,20.421663,13.972047,8.1157,25.94301,18.529045,9.774211,23.159452,20.068605,15.489572,4.0964975,4.8758864,4.188475,14.867976,15.769475,6.54687,26.533062,28.511637,8.903571,27.627977,28.880405,3.116368,26.371881,23.60176,9.454865,14.689878,25.38042,37.180256,12.044042,35.41221,37.921204,16.56078,16.703106,27.121096,30.462898,14.685119,4.1265116,22.361286,12.050435,14.314335,26.60684,29.188654,23.346933,33.552914,24.588234,25.992527,18.459852,23.370039,39.683117,20.173483,34.360523,24.312975,39.792427,25.206991,15.677669,18.240261,18.203018,11.190278,9.16861,17.689587,26.377813,32.2884,12.385724,52.491188,23.281769,31.280788,35.20041,19.857437,20.226515,37.132553,7.7863913,31.92971,16.804138,14.517436,9.599108,11.293411,23.251045,24.747803,35.00666,6.251943,12.681143,18.50344,23.833532,22.93428,12.349951,20.80684,28.741154,19.172424,14.8294525,6.8702793,15.150814,16.223537,28.988564,21.34355,23.194136,27.638796,16.653854,30.20771,null,24.283506,17.732883,5.3605576,7.178239,14.687326,7.261586,9.777209,10.7655945,16.71081,23.271158,29.801088,5.3243937,16.915337,18.941626,10.718255,25.089264,18.041147,19.919834,28.407406,42.94307,2.9566782,53.32735,25.080322,28.584024,28.862453,30.634226,19.072292,29.531727,19.26152,16.80047,13.702031,32.15979,35.405872,5.6250815,15.765297,6.9620543,6.083031,12.803194,28.935902,39.390865,28.400246,18.44874,9.565006,11.1493435,20.666159,17.94265,27.9276,12.282031,24.545048,26.394938,29.436724,14.175384,9.312911,26.023737,19.569923,24.871473,33.843666,17.419611,22.192036,8.493617,25.766922,9.51719,10.874185,24.323135,22.597734,21.384619,25.663118,29.24396,12.552516,12.418525,59.323433,65.17821,33.595734,37.326176,11.676213,34.41736,22.78258,8.096445,27.071878,20.690365,6.4422483,4.1301055,14.299136,5.663858,15.7337475,28.324987,25.698444,9.926733,28.976456,4.839288,29.658577,21.63613,13.959991,11.867608,8.345326,12.961474,2.990515,18.503008,9.378969,4.374157,null,10.147755,17.314884,13.113575,4.1662774,26.96907,19.717508,7.54128,7.213842,18.456459,3.4877913,13.549107,28.42378,18.094843,25.279778,17.55379,25.354414,13.707644,28.105698,17.472397,1.3484231,12.564267,3.316979,26.78977,13.726341,30.714447,15.224739,14.487666,11.717165,38.13273,11.871766,24.542566,22.64903,17.486336,25.599417,7.9790564,7.2171683,34.234234,31.806053,38.111835,10.289037,11.121977,3.5492322,25.11979,41.55829,30.037235,24.129042,12.7268,29.28126,0.46714407,29.135769,39.409927,8.910684,13.489422,14.481053,7.9132776,4.549408,15.219465,12.878404,17.960087,35.81929,67.74889,62.28813,24.83293,4.461271,17.10851,23.291277,16.184113,26.86143,34.786777,43.969418,37.64887,20.330473,43.316235,15.17649,18.108389,7.5090766,18.249672,8.800049,7.329827,11.937633,5.9393477,19.5639,17.108675,17.874014,12.017562,15.909267,22.986858,9.357138,32.315254,20.271122,27.489355,12.95828,12.132114,41.178017,16.83335,15.733979,13.212251,37.027775,11.56232,6.849787,null,11.367686,16.091051,12.003672,15.4303055,20.010677,11.8550205,8.213553,25.703732,13.06594,14.169142,19.130308,26.117527,14.183988,13.599984,41.203327,11.392645,31.534164,9.101286,29.671724,14.541838,31.351252,35.496624,12.561147,34.78686,8.714457,45.5437,28.54075,36.472645,33.023197,28.986637,23.899948,16.98447,16.86049,27.57877,15.3996105,30.194704,46.508884,12.073338,16.944029,20.16063,6.8330703,27.325325,25.210766,5.3827534,5.742529,13.153106,24.730646,10.7926445,20.431183,12.563082,35.15051,7.053407,25.502474,13.696268,4.5323467,11.202637,8.9574995,3.9890006,29.406057,40.032463,25.246695,28.848812,35.406475,20.708336,13.679554,7.6646466,17.960556,28.146585,37.194206,46.434166,55.37321,32.09616,7.7529254,46.872353,20.700516,32.180363,9.818081,26.355965,19.326557,11.832469,13.622975,30.986143,27.891079,10.092983,19.788746,25.181026,3.5672777,18.003704,14.269095,18.34254,25.309317,7.7267613,7.7251196,39.237957,35.335827,16.283165,7.9129934,22.200037,11.034145,6.616241,null,16.742119,18.181839,7.764288,20.897305,25.654408,12.738083,17.862,34.177715,35.749775,14.59115,13.961333,19.2919,18.662775,12.548952,16.770727,28.524733,4.5363564,10.3612995,33.76174,28.023321,17.638056,28.990284,14.723796,34.98223,20.181868,28.480438,36.20695,36.205814,21.77391,14.019151,17.91354,16.186111,18.40352,21.066595,13.572965,9.334804,9.019481,16.537693,8.621751,27.935043,25.286394,12.102763,9.177246,12.820546,10.7747965,14.154484,17.198032,3.8822026,28.741467,30.769514,23.959719,10.968529,8.519428,15.7495775,18.930567,17.309906,15.970116,25.981226,12.3408375,35.006508,28.956697,35.564445,16.68641,15.996539,10.480757,6.032426,7.6134934,9.325098,9.733098,13.060147,24.877533,22.047792,24.88312,22.112505,25.978373,14.187198,23.357948,20.328365,28.913034,9.072251,20.176868,20.601913,5.4141088,19.799143,14.853924,8.647837,14.500097,19.198004,18.483257,13.070334,16.57625,24.551561,18.36268,29.752403,23.031483,32.48982,19.803278,23.355227,9.742215,9.202152,null,18.958364,8.489844,12.939193,14.886387,10.716922,11.471591,4.7129145,21.14191,14.090298,37.877678,11.034903,27.445612,9.317759,20.899513,14.0047,26.23914,6.6572013,13.595377,38.156532,27.828533,22.739317,51.39618,38.148754,22.559986,25.34888,1.924284,22.417978,12.780806,22.17909,5.384133,11.063886,11.461043,18.31231,22.114435,20.226534,26.743944,14.389878,37.326164,39.92836,24.953455,42.304714,38.190487,11.818014,35.301678,28.218134,16.403316,18.884296,32.544884,1.6125938,15.810466,33.437943,53.34401,18.145185,16.268463,18.279161,16.692127,18.31704,30.126972,34.99686,29.210533,24.342049,32.00964,33.988594,16.758362,13.608397,18.221584,19.066044,8.095071,16.263351,16.790302,24.638208,32.442497,19.809364,21.29826,33.24781,7.940878,23.549818,11.061737,8.342525,15.427836,15.094618,23.03887,15.534915,28.419104,18.900295,11.222442,22.235455,13.833678,18.354,8.0275345,18.36951,10.231303,26.69263,26.435509,4.1049166,43.14695,13.685605,27.026142,11.225808,23.25467,null,20.563076,14.357997,14.583801,23.250889,21.55576,7.6376505,14.261279,5.445968,2.174156,22.572062,14.6316395,29.51415,25.060207,14.089962,17.090118,25.040585,21.30084,8.341347,28.211649,10.410617,19.790094,13.71415,35.974907,33.300766,19.41893,27.052345,21.873375,32.70501,28.534092,16.505919,8.211966,34.871872,34.474094,12.920975,30.858389,20.428076,11.902743,3.2463295,18.27833,20.275644,15.515023,20.54432,15.367758,8.847056,7.8132057,17.292261,15.008277,8.219882,14.5463505,34.232212,28.076168,10.651364,22.85151,21.454218,18.538013,10.85799,25.949642,29.6396,13.736971,24.543068,24.019732,14.141478,2.7463713,5.262633,12.114643,16.029371,11.1288185,1.5200436,5.937611,26.28594,36.61816,32.755863,22.235975,21.82446,3.2697556,4.820813,17.410023,12.635478,19.215286,7.107096,29.244213,8.688856,24.936045,11.406622,16.221792,21.771404,11.057016,8.580345,13.46808,20.235939,14.6521635,18.707413,12.99168,7.1667466,16.450245,13.320027,0.8928666,19.016884,8.809989,20.354061,null,5.8697143,19.71478,15.487542,17.55289,4.591355,18.455803,4.0319633,6.4593534,14.123015,20.583235,9.173031,20.474619,27.055395,14.885666,12.014245,22.911703,2.482939,31.439697,9.689022,16.574356,19.846558,26.9491,10.754424,5.960035,12.63958,23.325748,27.780626,9.629676,10.831731,9.611129,17.221466,14.418931,12.154749,20.465513,4.9812884,38.109253,42.64973,23.642366,23.36195,28.771997,17.54578,12.1092415,19.82096,19.146471,11.056115,36.12822,22.943832,11.948821,14.190793,22.912756,17.044113,8.988588,13.854575,21.492756,25.1472,16.976137,12.132956,10.66577,38.02935,39.594997,21.096027,10.362833,4.841254,27.018394,23.36524,11.6135845,13.834521,14.804009,9.913618,30.432808,19.056309,10.179326,4.314681,13.7787075,18.162336,17.922932,20.346254,17.640278,1.2192639,9.138557,12.413149,18.426958,5.5856023,7.6753597,19.813217,15.2114935,16.904459,15.789109,6.097564,22.536112,3.2759233,15.315829,2.9504478,2.4540808,10.5655365,12.921095,24.276325,36.96163,10.009072,39.447926,null,18.946877,10.467102,5.2580795,18.152328,8.770967,25.345848,25.594845,13.815887,19.050978,16.288414,9.952964,9.579456,21.884527,9.277875,23.512388,12.432606,19.139162,11.781042,13.115058,16.347631,14.602452,14.362935,18.718224,11.502647,11.238935,24.877169,15.443836,10.072721,15.932381,10.38597,18.34969,28.533293,4.435754,8.677707,5.4001303,7.2164507,20.242577,34.78714,18.653347,14.016773,17.087683,11.73357,15.963178,24.70545,14.357986,16.676598,11.435436,9.849828,11.2098255,7.7576733,18.089102,31.149454,26.992985,14.878516,20.37727,23.523888,7.366723,28.839752,14.682807,19.341904,17.864986,32.918472,22.422228,25.582096,4.858007,23.314089,21.889814,1.7910565,15.083822,13.187728,10.9673395,20.102055,15.553175,28.687138,25.113337,7.1432385,18.460157,8.530613,2.5542169,11.393688,13.187578,36.186626,12.607802,20.315313,20.681229,14.93692,26.313528,10.69412,25.909899,17.262678,7.617723,18.718739,17.677065,16.984385,18.622421,21.42205,11.768659,7.9236884,4.2118883,16.72268,null,7.100528,17.359287,16.308502,8.565322,7.848245,21.792025,6.37124,13.7187805,30.866978,15.328629,11.154713,17.70896,23.777311,19.148485,4.6598535,11.736016,8.271811,25.665682,23.842756,34.708126,21.731049,30.017878,32.293583,8.191821,14.885058,12.5110235,16.075724,16.591755,18.907097,10.811207,17.509174,15.656888,9.160276,18.053051,3.7450185,21.071714,26.08388,36.39259,18.192549,18.507263,25.391293,18.884108,28.654177,36.87519,33.174137,26.480087,25.115835,18.619734,14.941053,7.2363224,12.754174,17.16029,23.494328,28.547796,21.214323,48.00681,46.910088,27.036465,13.330065,6.5562778,21.755268,13.244,11.500328,17.05292,16.218582,40.160652,8.358352,29.337458,41.67182,29.355726,10.37821,12.532071,9.445879,21.987349,17.795822,19.413292,17.797628,24.421137,10.225608,17.290209,31.659441,5.136489,21.394495,11.445314,12.741896,20.128332,6.6735563,24.542004,12.73508,13.791867,20.831842,12.8622265,21.942509,5.1430264,31.488998,19.7848,27.686666,7.1752467,25.265915,28.33363,null,29.079409,21.229214,17.810894,21.436752,9.232877,15.984183,2.1709995,6.8006024,30.121096,14.511825,18.689058,5.691157,17.415508,7.984876,7.4563446,17.38579,14.723476,12.87928,20.968298,4.3108897,15.663654,8.885769,21.18364,6.917314,15.53449,0.5832756,32.11313,45.55,5.9541416,29.990013,15.90297,8.339397,11.155085,11.293999,12.76801,24.9381,34.215267,20.439857,16.516119,6.72507,24.389824,36.269123,15.801038,2.9564471,16.614202,25.845222,28.981792,16.807652,10.290455,9.409272,19.977833,30.978464,40.84894,27.616077,9.99119,27.637062,60.826702,52.718678,20.075874,19.911459,33.545963,24.772032,30.858107,36.591423,32.25663,9.873486,18.423557,16.64374,4.222393,4.871347,17.226608,21.463566,33.597694,22.03425,18.759207,16.903704,29.1244,22.938248,40.858253,12.877397,9.987751,17.155922,23.77439,7.6062136,29.541782,12.1291685,15.996017,32.25222,16.642942,25.482275,6.2672224,14.138119,4.20164,6.4609017,16.515789,27.677643,16.392046,16.227869,17.003017,8.059359,null,11.368557,18.671144,4.564007,6.5464463,16.941603,16.728111,7.0552697,1.8961568,4.285929,6.0947266,18.109034,15.907832,19.26869,27.933537,27.79393,6.678332,5.1275077,9.498429,26.430264,17.140501,39.050453,29.165197,4.035321,12.449896,32.437576,20.961857,25.14817,28.97116,20.905354,29.31402,38.16258,25.211424,15.783389,14.821783,15.459861,3.824072,26.86477,13.44727,12.151702,9.672293,19.488153,17.440187,14.257484,36.003807,52.43156,25.73498,8.507505,12.207176,18.90178,8.262255,10.553401,23.720795,12.718064,11.813522,10.794228,22.029055,21.395868,14.188956,27.873547,42.509068,26.76667,26.870914,7.237434,18.32725,17.381317,5.3528543,30.995352,34.87737,11.0221815,15.723225,20.113167,31.116232,38.660717,40.329777,14.478494,12.604866,12.825441,17.304955,5.770202,5.0144734,19.718925,23.118961,4.6226873,9.199343,12.999693,10.2007065,21.241495,12.981827,14.868102,26.966965,15.615703,22.928148,9.546919,23.992065,11.375411,17.851706,0.4753018,25.591125,21.059875,26.04218,null,22.7004,17.784557,17.60905,11.86206,13.910154,21.52926,23.271004,8.829801,4.672308,6.3751235,15.3787365,12.625075,12.574589,11.301207,22.248495,2.822623,35.442596,33.071583,13.404234,25.006264,22.808361,31.337265,28.517344,4.585595,19.590141,29.021341,18.015085,16.156994,24.693224,2.768509,25.318527,14.052738,2.7072399,18.004795,12.09182,32.09522,19.012772,12.842635,20.811783,11.787212,10.0308695,11.854192,12.985731,10.115665,11.426266,21.07191,8.103452,14.846375,31.749691,28.240854,11.4667015,11.775644,26.075094,30.593458,15.693442,22.38172,9.954432,2.6272562,14.448256,9.529812,22.180683,42.065395,38.641834,12.042857,9.531269,24.718521,25.621826,21.766418,42.827557,44.806126,17.270044,17.37547,23.79746,25.426037,5.69622,21.934914,17.692656,35.12401,25.912457,26.444511,44.28718,39.94369,13.477482,14.718679,8.75977,27.685997,18.18175,26.569624,11.366733,18.913643,4.1137094,1.1064754,13.279691,2.1870792,3.085161,14.15728,13.541108,20.176203,29.706392,20.831776,null,20.890902,14.395323,19.94792,6.377809,21.084993,6.462654,20.104351,7.016186,18.128185,10.090603,14.601455,6.594891,8.927417,10.422383,21.222141,10.044565,25.082245,31.009892,22.844343,32.20976,26.475353,11.665211,25.87103,34.06605,10.677126,38.9288,33.659557,16.071707,25.260445,35.724335,43.92517,13.182018,28.720394,15.127185,26.930378,49.800365,49.214157,31.339106,4.7952166,18.87054,15.426437,10.264206,6.304461,23.413212,21.888916,3.7843723,22.708199,45.330364,22.105371,11.632361,19.421864,16.934044,10.245223,2.2609596,14.327634,16.431837,11.963866,20.80348,23.373472,36.31222,18.6658,12.394244,6.2099967,2.8523293,24.04285,19.986368,6.1877594,3.7010112,13.538844,13.090964,4.37726,14.646369,13.055639,18.683388,16.319685,4.7839394,14.759815,29.480898,12.749459,26.686647,26.26681,25.526068,7.0901318,11.704033,8.781316,21.563652,33.575756,6.82168,32.817635,32.293747,24.273409,15.111496,12.442035,20.280235,10.856289,22.931143,18.120338,17.878664,26.72938,19.085924,null,20.39441,13.659086,15.438013,0.1805342,20.230572,13.757768,16.093584,25.666916,12.669926,22.974508,10.236244,7.4098587,11.668341,18.520178,15.545515,10.119062,5.9562917,2.1252975,10.972515,4.593672,18.533415,5.723129,20.608662,11.9585705,15.320518,17.511887,23.647865,15.654095,15.649207,11.18345,38.063244,30.50743,11.787112,20.989956,13.092442,17.648455,14.306559,32.473255,19.033298,9.767312,8.4862995,9.610158,9.414957,17.460447,25.497137,27.326359,26.334887,25.982098,30.889292,40.177467,32.732273,31.30236,30.143946,31.049461,15.872452,24.79487,20.255955,18.929943,20.1269,16.403418,38.260303,40.962593,31.07706,27.172823,20.84638,13.527645,12.382671,17.941153,43.755398,2.9180214,23.847988,13.720587,26.25807,14.288996,12.47892,26.643276,18.843092,19.443718,11.304264,22.690315,3.632016,24.110838,31.01805,14.731922,24.580252,17.39202,16.445448,9.1430435,11.377038,6.983642,19.969278,23.318733,5.8907495,12.359225,11.679953,11.722356,21.85533,9.512463,4.5925145,9.511138,null,16.356226,15.384686,9.793356,17.852846,7.3394814,6.030188,27.659285,13.688275,21.425642,11.006611,26.546867,10.342852,29.403639,41.915936,37.88065,15.760942,19.62296,16.03344,36.61901,42.459137,23.312859,21.340996,28.556486,37.55405,45.233658,21.58385,11.204697,22.247509,7.7182436,9.404696,16.175058,38.023674,21.587757,20.377363,16.493284,21.330154,17.139956,16.381266,20.652477,24.058449,25.806606,12.556698,10.838466,13.590158,50.84895,41.000546,16.394957,23.694511,42.994396,30.363653,28.58028,38.38733,39.17466,25.183138,16.878405,16.170683,11.97374,12.210965,5.401596,7.9789443,7.072175,11.518539,16.146114,34.37331,15.783904,11.9774065,19.870678,23.728743,6.22771,17.40782,10.254777,16.547731,27.740494,31.6765,40.87293,8.764253,48.214302,29.716406,31.854063,41.046177,20.964506,26.241985,12.954062,7.312923,14.07384,25.408667,21.148186,10.842232,12.405135,7.3651733,6.994877,5.982087,15.005016,6.748985,21.314583,24.219282,20.032133,38.132935,5.774827,26.324284,null,22.497787,10.401219,10.767576,9.807667,18.9188,27.885872,8.454096,19.68726,2.4813643,34.580826,29.25991,20.242321,10.320341,12.434929,10.525739,21.087227,28.869967,17.877354,24.4646,13.389906,4.0938315,5.522882,25.488853,22.580923,21.806696,20.426199,2.434629,10.969301,9.290914,22.98275,30.993433,30.042767,22.213158,19.415003,43.235584,16.445925,19.865807,17.268667,8.707168,4.9547687,8.281765,10.262474,11.194612,26.272346,26.92316,11.490968,8.809285,28.611841,42.101013,33.378147,27.065168,37.744446,40.72198,18.739653,17.50774,16.619032,17.713331,5.262323,13.156339,23.103197,19.162678,19.076267,27.537888,9.82963,33.325024,29.953157,20.311296,7.0640106,37.814793,35.358574,14.991418,21.585182,31.16182,8.519945,26.163172,29.248865,22.430557,13.450255,20.615917,38.0559,27.622887,24.988342,10.315368,22.006279,14.567598,9.970725,3.9527192,32.668335,33.7404,21.7341,4.5446553,15.622679,17.119625,21.869833,12.271078,13.001453,27.472782,16.979084,3.067875,10.241601,null,7.5591245,3.4475698,4.5490847,21.546669,5.6121917,21.03698,13.206296,32.234962,6.214432,29.60492,8.374689,23.267292,15.217999,4.0526667,9.647407,13.413672,14.26044,10.902615,4.9319787,11.796062,16.90911,2.22069,28.426744,14.655333,21.0055,30.845325,20.38764,6.2867093,24.495104,39.23344,25.575804,0.78977245,8.897455,22.467495,12.895811,11.510956,22.77775,37.87498,30.125664,5.7508564,10.977569,7.966256,13.080588,13.106945,25.10764,32.572445,27.627102,19.92463,25.392382,42.28983,37.61183,14.911284,18.6462,26.076962,16.610504,7.216813,5.0288367,4.980046,9.935153,16.56258,21.486671,22.390291,21.42154,10.291717,26.584438,14.813867,8.787975,10.62703,24.165272,27.020311,25.683662,7.772853,16.867199,10.991475,3.0589786,4.685809,8.552952,19.210905,10.75619,12.978341,11.75667,25.625544,21.880215,4.8780074,9.2465515,6.0751495,10.765324,13.610692,16.504309,28.320429,25.647131,5.3243804,17.299158,16.977108,10.568938,18.357517,12.246621,23.654022,8.921497,18.115183,null,3.4168148,17.493082,17.216269,24.646797,35.164112,1.4526882,9.071639,19.504192,17.354326,1.5466363,8.904179,14.288424,4.9723864,8.4784975,16.0946,14.814049,22.253422,4.9693136,13.442076,11.52857,24.099695,10.653413,7.51439,1.565189,5.6217284,13.477488,20.7457,18.206108,11.837083,18.619804,3.31682,20.74089,29.166187,23.889172,21.737022,19.465755,9.008703,0.8866449,5.2297974,20.541325,25.926184,20.631056,26.378994,30.806955,36.464855,23.284575,20.226593,22.783396,13.689885,23.473291,27.109015,15.221411,10.721811,3.0329475,3.2822115,18.07793,28.005621,37.465717,26.435785,26.58023,28.342598,34.623676,33.415848,15.128905,6.2738824,13.663949,24.06195,11.910743,12.479309,14.971842,16.975502,25.835407,23.17362,18.528364,20.032202,10.2702055,16.899712,31.380327,22.513893,28.692919,13.811846,22.705172,32.018974,27.106834,31.25719,14.253777,3.8167577,5.8355684,9.05462,15.354325,2.948873,16.598673,9.910335,8.816473,7.564698,6.5314827,21.552675,10.091168,8.454442,14.565538,null,2.6740553,7.5869365,8.721493,13.777509,27.807472,7.1927958,20.049154,18.426617,31.751879,7.006719,27.512331,7.3651958,4.8688693,22.544352,6.7213054,8.762838,5.235438,20.402292,25.998613,16.573816,19.017378,9.383005,19.53028,22.130997,20.259604,26.232927,28.42095,25.470842,31.934982,16.38531,21.336435,7.5540366,11.992584,23.608194,31.245937,27.061983,28.048605,33.609425,23.546541,12.18546,18.887856,10.625298,16.373415,23.73306,23.550665,20.16526,11.134471,2.0766947,9.008449,5.676847,14.7622385,15.387783,3.0997756,19.08608,27.552284,31.742899,37.04259,31.986301,18.961025,17.91658,21.221304,1.9312608,36.765247,25.637547,14.22947,16.115158,3.9771626,28.1279,19.530693,8.197333,10.571938,21.926908,40.653988,13.462378,6.2982893,10.317512,9.647869,9.427513,32.207233,24.096235,15.581295,22.64404,29.181614,13.780329,8.795056,11.285639,12.285003,18.192213,31.172699,14.842892,18.137863,4.0616965,17.32442,3.6812007,26.941572,11.8900175,3.0172746,5.9658327,3.243013,2.7721045,null,13.522708,6.746004,4.1782956,9.722016,29.544294,2.3076918,17.881792,7.0409293,17.7032,7.309149,21.213743,20.23153,2.6818175,24.112135,11.687692,22.429604,11.119378,4.9181466,13.985679,11.300257,12.280074,13.453746,18.282196,21.591703,6.4495854,16.250685,5.422837,10.375263,15.410625,28.930828,16.35625,23.890236,17.112228,18.934832,30.310595,24.705502,30.022827,38.8582,18.261374,10.148559,17.956377,14.334775,11.883672,13.924248,20.041983,14.396826,12.888095,10.274356,26.361877,21.688128,18.233976,6.8851857,21.135115,25.09248,17.113361,9.760226,29.636757,28.264954,20.32073,18.584858,2.6310577,7.782839,12.975003,26.639008,33.45267,31.932575,17.349812,11.222457,12.089003,20.287653,37.519783,14.672034,21.448584,7.9513707,26.297379,29.359934,17.95049,7.354918,11.437454,1.4955746,8.756604,32.47511,17.391714,7.1914897,10.72739,4.1647162,8.531527,19.09798,24.685589,4.1520367,4.776348,14.173273,21.783287,9.070267,29.974838,11.681952,26.850096,16.063332,4.9331555,2.6108928,null,14.809749,31.647005,3.6825452,3.9757652,13.010133,2.9619012,14.085795,7.7811565,21.282797,1.2981273,25.238007,15.228694,22.524378,6.030728,32.95116,14.388858,5.4427733,23.356783,20.038776,12.3181715,26.314594,6.335614,9.4069605,9.233232,13.197049,5.7393894,12.8859825,5.158834,13.843861,19.056858,31.35597,9.973297,10.083447,11.3504505,15.254549,12.899289,2.6783488,25.307428,27.192774,26.066595,20.23894,12.181046,5.8369493,12.308812,28.818083,15.379588,23.459112,21.619888,23.190464,31.804543,22.798233,15.307828,15.432078,13.548093,12.299565,5.4076667,14.15822,19.250149,21.75175,11.52527,20.324247,16.104177,11.202978,21.302986,34.279297,10.414931,8.387028,18.524794,50.610794,50.451347,9.981293,24.21197,10.364724,7.5969443,12.988247,5.8671303,33.30602,15.652976,11.762211,11.427591,12.139467,17.17867,17.456114,17.356028,6.1952815,10.093024,9.77207,7.6625433,11.013023,25.444843,17.673344,9.341928,13.035691,24.155901,10.273426,12.540587,6.194918,19.099848,17.419313,23.485989,null,18.006157,23.173069,13.29316,20.517326,20.535967,7.3521647,31.229088,15.181205,11.755062,14.178711,24.352184,17.191704,8.245536,21.163265,9.366642,27.230654,12.850126,7.8883967,16.799292,3.636843,24.632383,10.702215,15.272319,5.426234,14.287777,12.855071,42.619133,34.96483,13.451521,4.5690427,41.408127,28.322514,25.617697,23.928629,4.593415,31.576792,42.67058,35.260742,32.224594,34.738453,16.51348,21.62207,19.92013,18.308865,31.667088,22.627064,23.535751,41.271652,42.66354,39.984505,33.49889,29.834784,29.358904,22.309296,11.495657,11.490606,31.59273,29.95496,20.180605,20.752281,28.023817,43.25395,29.786688,14.880021,22.517782,24.021103,17.256601,7.4074225,13.473239,22.268661,36.37101,0.84126526,23.263912,16.336773,7.613934,16.515638,28.740318,28.4257,12.0405245,31.397015,15.326891,45.057423,40.476692,4.131176,26.91871,15.959822,24.660534,34.855713,13.0233135,8.211234,18.724112,6.9730554,13.181463,25.90507,33.222885,23.662466,27.415754,26.612757,16.047346,8.81773,null,24.614796,39.323277,52.185326,19.750135,18.12622,6.298543,13.794064,32.47004,27.22747,28.847706,41.60765,12.648891,23.523573,31.89682,5.9111166,16.32026,8.017344,6.064324,10.198686,12.8848295,11.910063,15.067635,24.37792,29.784006,22.75902,29.563757,12.308969,23.701452,15.431453,32.73255,27.541685,18.096807,21.615923,56.689987,67.02607,26.25218,16.959234,20.472803,20.04102,24.259598,46.14509,46.291126,24.901379,20.541748,12.185128,7.4833374,5.6571794,10.726456,42.633656,47.076332,35.08625,39.080128,42.43817,17.620125,11.76049,24.850964,19.409777,16.125711,24.384157,46.51855,43.148502,35.8626,26.023191,27.631104,19.494469,8.302216,24.52549,8.33866,18.968224,28.378891,42.470238,21.427794,29.7936,35.74368,13.056692,14.018174,32.308247,36.280876,15.9319725,17.139526,2.4272723,31.715311,27.488695,28.68984,45.938343,13.56646,11.9531,5.3501887,9.351353,19.582964,13.668463,21.104078,22.346367,5.801535,22.851965,15.028939,19.103392,4.7691693,7.7804837,16.072176,null,17.269274,21.437624,18.63328,8.090065,13.1182375,9.616728,9.160788,3.8807392,25.115778,23.288996,29.63616,13.824297,20.683445,13.863211,18.790573,5.3754134,12.246879,3.5692902,22.312244,26.002735,33.727764,17.762373,12.690923,21.178959,21.92558,31.123714,23.827187,11.106713,10.493477,12.215341,13.610184,7.8715763,12.597583,24.906027,33.696407,11.439274,4.366611,10.360381,13.113478,32.679874,23.871166,6.088982,6.837278,16.680973,16.784878,30.877949,30.524721,35.947666,17.158678,15.337753,18.182718,44.18456,41.049553,10.639998,20.42845,22.992552,25.560379,28.143936,24.199244,26.926054,24.387999,22.633604,31.598385,31.15733,27.014437,26.625212,14.606051,10.497405,26.927296,29.147522,33.202507,31.606218,26.949732,15.771356,26.020092,10.106777,21.37942,19.948742,16.832644,6.1342006,9.0661745,37.324436,37.676697,20.686728,20.397207,17.36106,5.530537,33.67619,25.926567,19.880587,20.691551,8.5763235,16.55565,26.999435,4.5848303,13.431439,18.348133,24.294512,24.80496,23.357046,null,24.73138,24.52173,50.571114,8.924579,39.030205,12.997394,31.534107,20.387983,21.493265,22.21649,4.7604814,31.422247,47.013718,10.805999,24.699303,2.5231142,40.437164,47.37097,42.512215,54.107437,23.416986,20.981054,20.023039,8.533373,4.3738112,21.076475,45.93899,38.734406,33.766285,24.274193,13.884792,8.598237,13.124805,19.90238,50.696095,20.329473,48.79068,32.80885,21.793476,9.033379,29.672129,10.956678,7.471968,5.7646375,17.163818,15.971118,24.226828,22.897205,8.487905,24.11608,34.69745,15.682856,8.447577,43.97743,24.916595,41.46879,27.213524,10.768944,3.2095587,35.493343,38.65223,15.598142,29.811949,40.01532,27.95025,12.653861,7.67685,10.148289,26.704983,26.956512,10.993956,16.800558,37.12919,42.355843,10.156191,26.051445,10.750798,28.815426,22.34709,13.920533,2.0853262,21.141695,28.746124,28.334951,14.312836,9.964725,12.901863,13.754571,34.28787,16.60046,10.797442,19.224916,15.135425,4.6017056,9.081166,23.607922,26.259485,27.83656,15.057647,8.619527,null,27.36134,8.241601,24.344334,10.543846,20.319784,7.0354323,16.893343,14.878246,17.197441,19.105032,7.07131,17.137964,9.229384,18.068203,37.89015,22.194492,17.88801,17.622993,26.611076,20.737803,7.132592,17.790298,14.90893,16.529703,26.52007,25.34122,16.817059,65.07867,47.79213,4.0665407,12.732979,39.641315,30.430262,11.880361,19.842234,28.654066,28.899275,45.147915,61.78899,42.87323,19.143246,27.552923,29.291393,19.839548,25.913105,39.667866,29.842672,21.52191,31.920973,20.760124,34.961315,30.354197,5.256778,8.897748,15.884529,15.124913,9.25378,8.509197,10.099951,20.801943,30.907215,3.0884948,20.912283,12.071179,21.76907,36.181152,28.911812,15.143013,24.322784,21.906826,16.602331,20.62481,18.926552,3.7795382,17.48411,17.683784,18.567781,22.786804,35.92976,6.490541,16.990587,12.38039,21.082247,20.345589,19.21477,31.32419,12.538147,10.755137,23.439463,34.621532,6.594486,28.21722,10.316877,35.55177,14.26854,28.943125,21.428211,31.378353,5.1077313,37.762527,null,33.55677,12.58548,21.999115,29.496935,24.803509,22.569473,18.522093,6.768249,8.223703,10.015531,13.377213,28.275412,26.737488,26.482798,57.127876,33.455063,16.993553,27.102451,20.821829,14.4311,21.318693,19.38125,1.8451751,22.768644,18.464563,23.54645,18.218204,25.023014,44.755447,18.668484,11.041116,19.961794,16.52818,35.25495,39.27281,26.437094,6.434823,16.560621,43.77443,48.889496,38.550674,24.417955,16.485798,15.505531,9.538598,24.446894,44.510952,38.328846,43.202145,39.02428,23.650068,37.202877,53.6892,39.37314,9.197083,8.458286,21.226969,12.106887,25.577387,37.38938,50.794453,72.160774,60.797295,23.439663,11.032315,27.165432,16.08436,17.747293,20.139345,48.814487,36.029327,11.947763,12.268988,20.231743,13.000962,38.42946,26.140415,9.344029,6.400325,8.096638,7.9065595,12.196911,15.535601,27.427326,9.420001,14.547783,8.509573,23.053015,16.568491,37.413475,11.960258,27.10199,19.705683,26.350405,19.340698,30.052568,16.853924,9.086235,3.484359,11.934799,null,28.625608,6.215171,23.669945,22.996367,17.111893,5.6992884,7.7985005,13.3904,18.877954,16.774502,18.717234,24.241684,16.07216,23.529478,12.775112,20.980001,24.397236,8.928975,19.628843,15.675756,24.399136,22.946583,16.686167,15.670722,45.103363,34.785645,29.59806,2.7562945,32.4806,41.809597,45.36539,17.167805,38.383728,26.349619,17.86224,40.582302,30.101128,51.867817,21.076889,10.408589,1.7470448,23.475563,12.126504,37.909172,51.029007,33.177902,29.119663,53.130802,59.418663,39.169533,43.391045,61.231434,50.717907,31.812185,28.389576,22.191935,25.605509,29.066172,28.854067,26.531534,25.80903,18.83832,20.877113,20.554287,22.896162,14.441734,23.35201,23.279276,10.103748,28.534199,27.604858,30.570791,37.70778,51.698406,30.38133,22.171291,49.030922,27.197638,30.18076,23.1626,36.93819,36.231834,36.396084,34.933056,25.498981,16.72812,17.101898,30.640839,23.017578,14.540545,15.797787,23.951649,13.628885,15.051954,21.170671,15.446814,15.142735,24.18486,17.438814,16.312891,null,12.388594,8.1574745,4.2765036,18.713375,8.279526,17.528677,13.811597,11.626514,8.9640665,15.506937,26.139875,10.866551,11.488024,11.284623,15.118206,17.377697,16.667446,20.223177,19.785519,40.782623,17.813313,18.749887,23.266085,23.76298,14.792128,18.207033,23.41225,26.490894,22.520123,27.897795,4.8910007,8.696715,17.797667,20.611313,9.490669,6.334781,19.734838,13.983148,26.411572,38.787815,20.107399,15.754551,25.490019,24.900686,37.483234,38.883045,32.69637,27.643267,47.69707,28.732027,6.229121,23.18011,31.567223,24.887459,28.19587,7.363836,26.785244,21.088541,21.711042,33.305527,30.724243,16.876616,18.633223,6.567239,30.398993,34.10445,10.065587,33.9733,35.979786,31.96501,9.602974,36.66667,41.197166,13.397211,31.432186,11.038104,14.2114105,26.552526,6.5403647,21.808231,27.144688,7.9241323,9.566428,4.6688223,11.698308,25.162485,35.89324,12.701395,28.436178,21.45756,11.162932,16.120039,4.4550233,9.681919,16.130322,18.286785,13.753973,13.909805,17.906218,6.1207924,null,17.015802,11.6919565,7.6555753,24.515764,4.093543,10.41479,5.4228706,17.985466,34.450665,23.135895,8.258187,28.584501,12.440411,11.024432,6.7909784,19.454826,13.71196,12.420927,35.118,35.520477,28.501774,30.85409,21.35676,12.952903,25.359837,1.8136287,33.131893,39.151413,51.567947,28.129251,27.692642,38.714222,37.029675,1.2212425,34.91894,29.502506,15.791434,26.644943,36.345894,25.332184,26.431772,10.869758,16.96075,25.93129,21.241142,10.110923,16.572676,21.768959,12.44512,25.922955,12.759699,14.019684,28.207853,28.406553,23.343132,37.91088,36.736404,9.928483,12.380754,28.324945,11.869126,17.760723,23.20974,18.196539,12.354633,9.338974,12.892942,27.383772,26.755653,7.3417983,13.857439,36.507046,34.06786,13.86333,31.24458,12.125778,12.984201,15.175774,18.6288,14.559897,10.922996,28.195309,18.40987,42.13397,34.10937,19.638752,8.506628,21.69242,6.796993,19.6321,23.503922,26.75299,2.9787977,7.384091,33.99686,41.203835,29.558393,9.241581,16.584402,5.8178935,null,12.360799,26.889977,4.9102893,17.271935,16.302168,35.67419,13.525162,13.989378,31.568197,18.199057,17.029045,15.349307,12.406276,19.109463,30.075766,27.597662,12.287168,29.883963,48.510605,47.937447,23.808088,34.972515,31.730015,18.124664,11.753498,9.7714815,25.892628,49.07038,52.77467,19.47785,18.284775,18.494923,17.621437,27.397566,13.005289,21.684895,23.430647,15.065939,4.094236,9.193129,21.89526,11.982201,8.07277,13.20347,16.735023,13.383552,15.279115,19.852192,26.277327,12.1174555,7.9995136,14.164698,17.977814,45.562115,36.70126,9.296997,10.606945,16.96318,8.242739,6.5274596,28.899721,49.624825,57.93934,38.215908,24.535238,11.890333,11.468017,4.087284,30.699207,62.344418,45.315094,19.046385,25.947855,14.853885,21.236032,24.53096,17.307405,24.182005,19.490835,32.046062,22.521597,8.3551445,34.196163,10.726502,21.159687,12.706654,5.271835,15.1998825,27.013298,8.598739,18.352877,15.308788,27.168684,7.8317575,21.650412,23.384832,16.218523,9.955489,16.908003,3.8619664,null,15.893162,20.541117,19.010468,5.368942,15.554884,19.276255,5.3380585,11.047858,7.642613,25.372654,15.390236,20.66368,14.682906,18.146452,18.381271,8.562867,15.67505,9.460618,20.24693,31.429668,15.038093,5.2606206,5.218837,21.393276,6.5136733,10.362844,26.328766,22.658972,11.4991455,30.344112,46.833298,20.526583,39.48869,38.181656,12.868212,10.496843,22.890318,28.362831,28.000656,29.221233,12.81796,15.037611,23.423674,42.34522,36.26054,27.06432,26.952227,24.062582,32.34562,41.955967,31.279984,24.301773,32.710835,34.79746,28.232546,28.483294,26.83743,14.827876,9.61419,10.470286,19.44131,9.37948,17.343166,0.87897056,2.7671824,7.08009,25.049036,33.43579,12.151904,42.036938,39.665775,21.327211,29.550463,38.648792,10.960837,36.855476,38.52401,17.049807,25.304026,25.388113,29.644417,21.49079,43.854504,22.972263,11.481744,15.0675955,27.34038,25.140724,22.482103,19.147842,13.660557,26.401825,14.59608,27.87184,7.5117636,19.27128,27.683369,9.913885,21.88143,26.417547,null,5.8520937,13.969053,31.889603,19.26667,19.090391,24.870262,34.152836,13.186646,21.201687,3.8346176,31.03445,14.277827,6.5269637,27.610514,11.561576,37.02392,10.102632,36.010906,23.748354,16.699171,33.41336,16.23318,44.418465,24.175158,23.237381,25.023182,33.86596,27.939106,23.910542,11.555319,1.9246383,21.678032,17.83007,19.782072,4.487166,12.5197525,15.467619,31.48731,29.751793,45.826954,43.14124,24.560415,29.868744,46.256275,62.492634,47.802036,35.75461,50.775723,55.249454,32.736557,28.26753,34.509583,23.384909,24.994398,33.23923,13.793413,1.2859285,30.193838,36.030754,16.879484,28.217678,41.733665,23.06109,13.519655,49.35687,34.331085,13.832897,24.277115,41.608047,39.93066,17.644897,34.998325,5.719553,4.252452,14.846411,17.55488,17.112284,35.441822,25.16518,18.806047,2.3579803,20.137709,20.95314,9.062069,16.210733,11.625113,9.456055,8.731367,19.311604,37.405373,17.988455,16.124372,24.374128,7.6074266,16.868282,15.622333,9.053991,7.964431,8.856014,6.6050744,null,21.799849,14.3082285,15.666731,23.886448,32.680588,16.340326,4.2971616,20.81698,9.196115,26.164112,11.455639,24.485897,30.965397,36.559357,17.149796,14.39022,35.129314,17.704676,27.082531,23.913774,10.500517,14.772542,24.974552,22.238247,11.250185,19.456621,17.957182,19.647676,26.20588,42.89001,11.37748,25.184181,11.539277,8.565388,16.655424,30.680664,27.793406,10.808065,22.29743,49.191746,34.221493,38.066414,51.426548,10.995157,22.503708,14.50863,37.204044,25.522339,27.740557,38.334774,16.819489,15.587825,30.534517,34.10944,30.884483,21.451693,25.261763,28.595657,25.946491,7.107483,26.271416,15.87928,4.329427,1.7686296,12.182723,21.498383,14.614933,15.432936,6.4301195,5.8890085,30.235859,39.703495,15.568428,15.333251,20.524595,16.330774,13.821511,43.90637,32.97037,13.654753,24.960712,16.815962,30.56334,38.514053,33.247787,5.413643,17.583282,15.110632,12.580864,17.628878,25.329613,15.570976,6.810658,9.994316,24.175829,32.212807,8.205052,10.109577,12.366982,17.773808,null,19.280203,18.86051,9.645722,12.011,29.329653,34.151054,38.680588,30.21639,24.870121,15.885439,6.991125,20.093384,21.698936,28.679676,11.189318,38.788177,29.493834,2.3111005,24.039965,30.683802,36.728058,33.136185,46.34192,36.34075,21.68056,29.733591,1.3786155,11.93337,9.813393,20.568514,20.034344,27.19519,12.039101,25.931068,28.439255,31.721472,8.229412,6.591057,24.623196,23.893097,11.739754,36.054993,46.037,41.785484,21.431383,32.10337,42.03026,7.1415625,22.243557,16.243294,4.7962756,6.146547,19.505697,20.683016,22.653164,42.693134,45.696957,19.49086,13.742602,4.352825,20.891308,31.481623,23.70556,31.53609,19.134981,25.494097,12.900078,6.746883,22.34549,31.18622,17.842184,7.8605857,7.91911,14.732076,11.122258,26.739567,19.114433,18.00909,37.87874,36.242603,5.9881525,3.8372247,1.1837243,24.000776,17.330364,15.566409,7.079507,7.746033,11.4284315,21.32427,19.052338,28.5075,9.463743,10.621177,13.072101,11.530034,30.19344,29.832407,28.055624,9.482243,null,8.618293,11.688554,10.168353,44.297504,25.829773,34.88519,22.337202,25.21182,9.614273,20.218029,18.747053,23.473042,15.8724375,14.745554,15.560273,9.473266,32.102936,27.021242,9.395915,10.768365,24.436241,15.36927,19.284634,9.889851,26.646532,33.66343,19.390146,23.630508,9.9194145,12.395474,10.941642,3.7617123,24.373547,23.07533,18.57164,13.867957,22.349146,35.573624,22.384747,8.149609,24.450504,30.079035,7.4789696,43.30463,46.001232,33.70476,31.93401,45.811993,26.015411,21.565668,18.454405,30.731485,13.782418,5.8767414,9.152105,11.424477,18.00127,13.445902,14.37167,12.258762,18.89241,30.580536,15.771573,27.594969,32.092827,9.473623,15.875222,19.70747,3.9479733,14.254623,26.989386,13.144896,15.323519,33.15699,34.60218,42.982162,58.292377,4.1965466,54.8622,21.469543,25.674877,6.3683767,22.464802,24.717592,4.379337,6.066789,17.676653,25.79395,3.8512604,14.435721,16.29785,9.105732,24.168917,5.040295,13.870917,14.880132,9.646751,9.174454,8.24081,8.474019,null,13.775556,22.614803,17.757645,6.8024516,30.820623,29.227669,15.812709,13.475931,24.179773,14.616155,6.79623,18.989058,20.275497,21.568783,21.912329,27.48622,4.5666885,20.228455,24.667185,20.89722,8.297005,21.405407,23.111488,28.375998,40.051258,5.6900353,41.07137,23.690739,6.7981973,16.182943,6.176046,22.231544,25.283493,8.005518,14.675494,12.046511,16.27827,24.85045,30.759317,36.750423,32.4021,29.156612,24.99805,19.642344,37.148514,29.136116,16.380459,16.570799,19.15682,26.332779,12.0846615,25.111162,28.734356,48.6167,23.462543,27.963745,32.888294,9.092382,28.909973,24.353083,23.236507,41.10003,32.428596,9.831925,20.909185,26.667732,26.842339,10.043104,6.7263107,28.22165,23.850101,7.052186,23.175747,32.852966,3.8075712,19.80617,23.472227,29.199461,5.0526834,17.650219,23.02732,6.6723104,32.732304,23.280602,19.25227,27.648432,18.040724,14.359255,16.631073,22.478722,10.690585,27.411737,11.570717,13.261729,21.658916,12.601472,37.76772,11.510307,41.312447,26.410645,null,7.125439,14.390009,9.30444,24.704386,32.004417,16.909824,34.91594,17.145119,3.6053507,16.91757,5.7573466,15.197948,13.359644,7.590711,5.3165774,23.732193,14.155762,2.3306043,32.997906,8.789061,39.287983,14.514197,25.241505,12.97402,3.8632936,10.388769,1.8450125,4.580294,24.217001,26.50951,18.704313,8.733051,4.697747,6.044634,12.999792,4.88874,17.740137,22.373653,35.60226,41.212044,37.67425,24.373451,20.363657,18.336735,1.2924807,12.670285,5.263685,11.302564,25.514585,21.322107,13.938193,5.635062,25.578176,27.304121,29.74204,29.806154,24.835585,24.675043,33.19061,33.3267,12.55201,11.8994465,30.356358,28.8568,8.00083,11.912875,13.585524,3.1118448,19.14491,21.673014,61.61803,44.73191,13.295412,35.275696,12.535569,31.496914,35.699474,35.48489,5.0696483,21.722233,11.8481045,17.056122,14.188386,30.565136,34.80034,20.853668,17.350307,14.553247,18.504574,6.933286,17.173214,12.167853,19.058361,1.9054394,22.82675,20.933886,7.140393,29.32628,26.09634,11.992256,null,18.955462,13.434545,25.185202,26.616442,17.079712,31.656006,36.021038,12.325195,30.34669,19.717592,23.961351,45.189007,47.01438,10.839019,20.124382,10.631111,27.457775,10.70746,15.270531,15.8891735,27.552933,15.354007,34.68374,18.0652,19.610386,5.42033,28.179256,11.118705,15.314006,3.276501,15.241976,8.763023,22.912472,13.369283,9.110617,18.045778,16.437765,20.15177,26.084925,37.195026,18.363419,40.216778,27.282225,18.179197,16.072481,4.8089128,22.372196,26.517527,17.185827,21.167194,35.577026,20.832191,21.168436,45.231888,32.864307,20.620028,19.550167,33.737316,46.87838,27.372322,16.18379,16.809813,6.988652,10.552269,17.801125,4.9789996,8.211639,29.188725,32.577713,15.4290695,18.93614,18.259235,9.559657,17.005049,35.171444,21.348288,10.584771,10.348817,26.421507,26.204193,21.40422,27.568302,19.503569,23.567072,22.914042,31.7372,44.4845,10.169226,27.918928,18.512459,12.2921505,15.149273,14.128444,26.594337,19.74289,30.704325,18.496376,16.282312,23.782957,8.64419,null,10.211102,10.970487,12.698412,19.209995,33.638977,25.58577,31.263487,19.234306,27.922316,20.604279,14.005933,9.44523,39.757786,34.917374,23.25527,12.654649,27.23036,12.134916,12.738329,6.908158,3.8095284,1.5108503,3.4131958,18.224377,17.33193,19.653708,6.9501266,19.48569,27.778412,18.594889,10.906253,13.937849,14.152372,15.691782,38.14026,13.810823,37.71741,17.236511,25.07961,8.143685,22.125797,4.4756017,19.812145,13.342531,40.641033,40.222458,24.315758,22.4885,20.387714,37.514103,19.036507,22.694597,7.6115274,37.30537,13.898561,24.751257,21.635128,16.913618,9.794664,20.604332,5.4767838,15.133004,19.81637,17.905157,13.946164,31.230488,20.811996,31.67821,33.729626,3.474615,14.549657,31.482447,39.25104,39.037476,33.494873,37.592712,26.123957,23.660616,18.161741,17.590733,11.766236,21.94052,23.99329,21.001556,35.729053,24.673683,0.82851535,28.675016,10.58541,9.229446,33.680508,15.903909,11.223703,14.421621,4.9837723,12.550423,15.522938,14.887665,14.12882,26.577703,null,11.100628,25.177618,33.90239,7.214816,24.495535,13.262971,15.794374,21.109806,13.137462,17.131262,8.755689,9.167205,13.027777,9.91305,21.944588,9.367269,22.600536,12.539085,38.11658,10.830073,20.685242,16.071587,28.536375,11.762267,10.373822,35.791714,6.636178,37.488167,57.84316,39.44009,28.032734,11.701408,30.360682,12.386681,22.69604,13.925483,31.235218,24.334429,16.662897,33.8702,34.454174,2.902815,12.783057,20.906952,12.167732,3.8812335,6.9764485,18.805878,9.668546,8.770255,23.23999,52.503532,51.686066,27.730787,25.831865,34.738697,23.857418,16.27057,25.370068,31.82832,38.150074,20.854816,17.289028,15.533855,12.202098,25.685738,29.302395,15.538392,32.40918,7.684066,14.77162,13.915684,23.535578,20.02942,18.36005,16.076416,32.746536,16.223156,27.068178,26.112164,7.0996537,39.843197,28.146135,22.796572,14.743051,7.977771,14.250554,9.856086,13.739493,19.717749,7.4365435,5.3265753,10.95516,11.670148,28.580416,27.481306,4.239309,15.167467,27.324503,31.424112,null,16.909924,14.306276,8.072692,14.883333,24.300562,0.89073735,28.687689,29.944344,28.292416,19.394411,25.124195,14.252002,45.405632,26.587982,11.2256565,11.906027,14.370613,18.883377,36.08515,14.874335,28.470818,5.451345,29.644188,9.973099,10.449569,25.937054,9.7134495,8.36411,15.257508,12.579792,11.714236,16.055489,20.412752,29.216358,38.4132,14.441192,8.813659,24.294615,47.629745,48.534023,10.5222845,9.862325,17.711681,10.518123,32.13008,12.358212,10.985401,31.086153,32.395046,9.65236,8.760622,21.085978,15.332249,12.047142,20.721651,19.490702,16.956142,23.886599,16.757399,15.3257675,25.375898,3.929367,27.392939,37.95449,12.007973,16.26498,14.820094,28.60662,43.66435,33.35492,26.66283,12.129455,5.8659306,5.9307327,12.712039,11.252253,23.519531,13.024748,22.038734,23.923658,2.7612698,12.760519,10.573389,10.4172945,2.1463847,8.125102,16.166912,27.255249,5.415691,16.831705,14.106703,31.72719,19.110218,11.582892,32.241146,7.675327,24.629395,10.409094,21.537903,14.868299,null,29.008608,23.330156,34.92586,14.466941,26.431475,6.888561,4.4960785,33.45803,35.687206,9.234654,7.655042,10.795296,12.625066,19.1216,8.776221,10.124831,13.404102,13.417392,11.595708,11.235418,31.370638,18.928328,15.421464,18.555374,14.762677,15.938613,17.50278,44.610523,46.616093,11.892793,18.858603,12.512757,8.625688,3.470396,13.544999,31.321283,37.894382,34.732334,20.90296,21.816557,11.439545,31.200344,50.733116,26.881939,15.753354,18.176165,7.1491323,11.534549,26.762508,23.63353,23.892511,32.673714,33.59938,20.351355,22.6453,33.68087,31.293703,15.8777,24.897207,32.6437,28.024912,17.343132,10.359954,16.237164,11.725224,19.70662,14.500136,16.945896,17.73306,4.4136887,16.057428,8.876746,17.650028,9.999913,19.262136,20.150408,2.1138878,18.016893,16.197197,31.747694,11.936613,8.55284,24.252892,15.587764,12.42557,25.69863,18.526226,7.7028294,16.903381,42.49428,17.47039,18.107298,6.289128,23.886786,30.00084,19.232527,28.020332,24.930866,32.484043,33.078674,null,26.609804,34.56328,17.91761,10.931781,16.816746,19.940166,20.24333,24.2426,23.401775,6.5926814,26.494514,11.616104,29.321882,21.11681,4.8465595,15.378049,9.217786,22.049225,0.8344112,15.669035,8.419645,27.70658,17.727121,10.414768,13.030761,20.143011,19.76982,32.33638,14.194776,20.092436,17.963747,9.347005,26.75397,27.550858,10.884387,12.851694,13.656926,29.376797,41.205982,28.263655,11.883273,9.401562,22.782255,65.58773,58.819164,22.696346,36.052525,56.313602,46.184288,35.472843,41.822163,26.710892,31.760239,35.40248,30.346819,34.246246,21.530127,25.155205,14.878622,20.475382,13.836594,14.849925,18.073061,21.994835,33.371387,2.1542046,30.61503,24.834194,13.288918,29.95291,14.464885,12.658717,17.345898,20.645819,23.14844,20.019667,46.839977,19.400923,9.919285,44.103024,40.06952,25.973764,4.9304442,12.25819,12.417137,11.041323,12.98135,20.145893,17.238396,25.48212,4.1407795,22.059874,36.52534,38.423527,26.290453,28.63459,18.87305,20.536182,1.5473899,21.592388,null,20.567738,24.66115,13.661254,9.671531,32.040977,35.488785,25.234028,28.697708,21.294325,19.853718,21.44729,14.150586,19.036207,16.436867,13.725973,19.776224,13.769368,18.544632,5.936977,19.933094,7.576753,15.303522,2.6761465,28.192389,22.193008,7.1376367,4.8384113,11.00693,16.241627,21.784927,36.182198,9.799472,10.645645,23.929974,25.991514,12.572748,14.869321,30.723518,16.034838,22.12677,24.76231,22.870619,15.630519,17.680826,21.350513,24.004969,40.745815,50.899517,40.170868,24.10132,30.242374,35.03538,52.02722,56.8664,23.876596,11.481326,16.562479,15.077668,41.74883,33.528667,25.628645,19.367538,19.026964,8.287232,24.977194,28.885447,15.688252,14.269617,27.843193,12.095883,19.922901,16.213438,10.482743,2.1936471,11.285104,40.024483,30.50736,17.134905,21.728113,16.22256,27.622398,7.5064974,10.417197,5.7496734,5.4468255,12.164148,6.0153575,17.24394,29.833256,26.468822,15.696474,7.152888,36.562782,17.446022,45.913353,5.1082964,32.141228,4.2865853,22.533306,20.653353,null,32.4553,7.812943,26.414764,17.17276,19.953178,31.276463,34.872864,25.276207,6.7578063,38.384495,27.328959,18.676483,30.54615,38.974224,20.874878,26.146152,10.63995,23.513376,24.671307,2.9526145,12.118732,5.2872233,21.77109,18.880571,13.847791,8.790076,10.664803,29.79173,16.215199,27.93908,1.8174368,32.191174,31.915068,12.689319,45.60866,22.930407,10.676281,14.285503,27.850485,19.750895,13.945843,25.304892,48.82705,60.863457,37.82002,17.203362,25.879923,2.4865696,23.814249,35.415855,24.32294,18.828627,27.120903,36.858734,5.3787737,22.680624,17.314678,44.29713,30.747068,15.777738,3.6512477,19.19614,28.288292,21.859924,38.481346,36.79697,46.10859,76.90764,28.490505,8.584159,6.7598104,18.397558,16.32974,29.214678,22.421808,11.748018,24.700123,26.861753,26.225796,15.967349,23.28295,16.818623,13.054873,12.594322,27.11633,19.756413,9.713022,13.27071,13.766828,21.866951,24.719728,17.31232,26.529087,4.3749876,4.7293344,22.216475,12.929535,7.7941775,21.865126,26.01668,null,14.422817,17.82846,7.1908956,29.196543,27.500324,27.712261,26.75986,11.542762,13.794893,11.260949,26.16078,14.565768,13.836617,17.310608,14.106875,31.458855,13.7296095,10.442246,17.548018,43.52139,13.180272,32.287075,23.748953,24.975077,12.101715,26.230019,16.434357,12.94353,12.90428,16.44563,20.169231,17.47631,29.864822,26.186749,35.028225,59.884853,30.743275,31.19103,42.591404,36.23471,20.126362,31.473978,22.222,39.912483,14.606023,48.604416,23.339708,28.516346,23.594456,19.110186,19.822708,22.7172,27.074553,17.380457,12.199276,15.584599,25.713823,31.72312,11.500375,4.089566,18.431683,8.599962,46.24225,25.372051,24.018475,6.276494,10.260047,9.976869,29.288553,6.344586,20.054434,14.025271,29.685831,13.322763,30.962814,28.39345,18.249235,31.870852,9.329355,36.65087,10.641295,13.533935,14.81614,7.595633,16.72171,13.239057,5.2926297,7.1234355,24.508736,9.236937,16.413364,3.3398228,42.714497,23.851921,40.797558,18.715322,52.750942,40.669876,31.636734,2.6926162,null,28.796368,11.482802,10.666844,25.282692,18.879229,36.060467,15.470548,36.234303,32.23619,28.086416,20.17713,24.010399,15.233612,17.849045,7.4712095,8.024436,17.943647,27.819794,18.768566,9.001686,12.087492,24.648735,24.594095,18.506586,16.939043,11.36662,7.562146,15.891623,10.888055,1.4673367,19.892788,16.906961,25.715254,31.167582,8.449496,6.8381968,30.876478,15.612457,40.959263,26.44834,6.728136,14.938348,46.944336,37.20575,8.7934065,22.222244,2.7253523,17.88156,21.67742,30.131002,17.018017,17.77491,37.95132,29.8231,20.38729,17.527933,28.175777,50.169502,22.466688,31.79031,19.788408,26.06738,31.428373,18.210957,29.526348,43.300823,47.098957,10.276125,43.16317,20.43018,8.07132,30.728895,38.72,11.960113,16.545353,8.844063,35.155754,29.374008,20.730057,30.420002,39.41687,16.631012,27.8091,7.9388385,19.898426,5.774346,15.901624,17.911005,26.675323,18.5673,19.847223,22.392847,18.174202,16.80133,12.698034,19.250319,30.765533,6.8647523,3.5247066,23.632616,null,15.315891,10.561758,7.7267575,18.206055,15.832723,22.730032,9.481096,14.212736,2.4191232,6.0623937,7.9097953,13.265677,5.591086,30.099607,15.611938,26.20902,35.616257,27.022459,6.818739,22.12527,13.695101,26.4464,14.56817,29.376074,33.953644,16.971813,24.411718,40.081593,33.89281,18.711706,26.079288,32.614025,38.52272,24.887781,28.119013,13.43412,20.214493,16.040451,25.772863,10.721108,10.018939,31.861965,12.359693,25.625128,25.683186,7.007287,20.796007,40.68169,15.313043,20.029966,19.77732,40.252895,39.13091,44.497616,55.568764,37.66157,30.839645,52.163105,48.385715,12.17847,15.630337,34.38441,19.929113,11.706769,31.22373,15.342392,35.857803,46.469093,10.755754,13.889373,12.054978,37.05595,31.55991,8.021994,6.2810035,27.433832,19.994314,21.424778,25.712069,6.169927,25.352604,24.82145,24.220993,7.1439147,7.9638896,33.58386,26.035559,8.029244,20.763565,13.704244,24.711142,10.559039,35.65969,36.66693,10.081725,24.224558,14.649392,22.887537,18.141909,25.551006,null,15.70656,4.933673,17.442081,27.953886,35.299995,19.677313,26.612818,44.550636,34.8003,42.268795,5.808546,35.213753,1.3782253,18.677052,7.7170887,24.84626,4.2011,12.955189,23.753845,31.625187,15.840348,25.871616,19.076365,29.095512,56.69314,20.402044,35.986057,12.482505,22.566053,20.841421,28.591312,8.684154,6.636725,7.621757,12.704811,44.063828,39.931873,17.609459,28.164175,53.499043,58.175694,48.655342,51.78652,24.63373,32.173817,50.881954,52.298447,47.951004,49.66482,22.300852,12.0307865,16.679384,32.804783,42.499092,25.253263,19.569084,51.695618,31.503733,45.80634,60.753727,38.54352,22.9758,34.814163,38.732525,13.799641,21.862757,35.31029,23.606207,5.5017796,5.680903,3.1916537,14.2154455,3.0686083,24.282675,22.49255,11.835564,19.89296,8.942237,33.66354,11.548003,25.309387,25.29333,11.22536,48.8893,21.405834,25.074009,11.128631,32.701126,10.7450695,19.684414,12.115519,10.42491,13.9612,28.94436,16.75944,28.016052,17.994482,14.9038,10.314819,5.733963,null,30.728071,29.335999,22.351295,11.844408,22.136545,12.4364805,31.39495,14.389827,32.657543,24.158949,17.517504,12.082655,41.550934,4.095563,29.212639,26.614454,3.9207146,27.344238,6.2664037,21.57735,39.276375,37.683327,7.6950755,33.02465,17.997484,41.698677,21.643074,12.578166,28.250057,27.986269,10.72797,7.3190026,29.012728,25.991425,25.363705,18.1761,41.035973,34.48326,35.68619,34.846375,41.212685,30.15961,20.43768,54.854813,60.519615,48.01299,47.295383,30.666903,22.675537,36.283234,37.113316,19.099771,27.347183,48.719643,43.45942,48.142075,31.463905,46.02645,46.738564,23.795574,12.554601,21.506088,19.686518,9.91644,33.05181,16.969118,18.22936,5.0845695,20.239412,1.2772506,28.369658,21.143978,11.525452,11.450854,19.598465,4.6486807,21.434877,23.386662,22.251905,25.833881,19.845938,23.440258,18.818485,13.221847,20.666212,3.9253798,7.0261326,11.36081,35.631443,35.02186,23.838358,14.557257,24.225199,18.675224,15.836358,15.202061,29.58266,14.899089,25.341358,28.823912,null,21.921268,25.185457,7.7260594,15.188953,9.025581,17.289396,15.847987,36.667934,9.392699,27.817183,18.646399,26.414225,22.148994,32.95834,14.885592,17.078718,19.461922,35.7995,13.302868,21.582556,13.255399,18.45506,20.21145,24.356354,18.683203,15.888311,20.813025,25.12964,30.981762,18.865843,10.797927,19.875751,33.922234,6.937906,13.554427,18.089756,61.052402,44.74949,48.262207,59.314198,48.904682,48.011738,46.851997,24.180721,15.150558,7.620462,41.868366,52.088146,20.772287,36.236027,29.393557,63.639484,67.39181,77.5807,60.664326,49.206017,58.282707,69.61217,61.49555,42.783783,46.204704,46.413944,28.441227,20.83227,10.327906,19.255009,10.968475,20.591612,23.368258,28.023293,28.04415,30.746342,15.76227,15.789291,19.781773,7.659832,5.712229,22.013214,37.41152,31.26422,17.711166,36.403133,39.03585,14.187746,38.20985,24.1955,16.763689,13.82955,9.5121355,11.021287,18.765255,46.709488,8.3275,12.151844,25.453163,0.12949377,29.283785,24.264399,39.237362,20.580482,null,8.725117,10.828052,19.797241,21.815598,17.67799,12.338934,27.27009,15.730199,26.521835,5.0594177,22.333647,13.304054,1.9955225,17.006819,32.005527,32.61106,15.882354,28.982328,17.294409,31.034794,16.022375,25.687181,32.98109,27.866114,28.419582,39.908066,21.37438,23.761442,26.792713,15.002739,16.61721,14.279946,10.58408,25.917847,33.202076,31.901428,65.640594,42.748882,7.407909,34.083004,60.53469,59.102024,44.019985,23.184946,9.2356415,30.245388,62.436176,81.2668,68.44973,54.303417,52.88455,36.414906,37.951466,61.714306,35.23554,39.73894,60.3613,68.42737,72.80068,62.03904,59.60355,14.978173,8.407169,14.470361,27.399925,28.84248,11.453656,10.674273,40.420223,35.76947,23.686026,18.943623,15.118849,14.391914,19.688961,18.949537,19.71744,45.602875,15.833125,57.787777,63.224586,62.56627,11.995221,31.872078,19.731947,7.9555283,6.718776,31.26364,37.31287,3.5221856,17.001831,7.4547753,13.208807,29.002888,12.807144,2.8150482,17.849718,23.012182,4.4010124,13.941839,null,38.88401,19.22219,17.147375,22.279263,12.063676,10.043542,12.746804,18.656473,16.864323,5.5074816,21.048641,7.8867903,19.907047,20.405817,32.321083,55.008163,14.240342,43.890488,22.28846,29.091785,35.811596,6.910516,52.82222,10.161508,34.0753,26.117754,30.47679,7.7311053,17.214918,14.190339,21.020216,45.91275,14.299279,41.78541,31.892975,21.479338,20.591488,24.327593,53.811256,54.20781,62.16613,70.11121,78.40368,78.92434,68.69756,58.91093,99.933754,56.945023,51.4062,95.58925,92.411064,54.719696,67.364296,60.367455,56.948296,92.175735,100.63413,71.58244,31.159962,72.9573,65.71404,43.93922,26.967417,35.796356,7.7952423,19.819952,36.181454,33.968143,43.4215,46.166077,18.005114,24.404587,39.32928,23.043802,6.825499,13.275964,28.851332,19.065468,21.042059,13.619878,48.0083,34.553867,6.401851,29.409435,23.857979,27.653786,16.933647,32.48784,25.68986,42.52571,23.205471,12.455805,26.542648,15.030249,23.123407,12.915311,38.528137,14.840116,31.567846,28.044428,null,11.910601,31.762867,12.298901,23.509966,22.057867,21.36616,28.770052,16.967297,20.771452,25.828596,19.061153,32.42181,15.877331,19.935705,16.205664,28.928429,20.074892,38.701244,5.8152275,20.495459,40.139996,42.421764,25.64242,20.830774,38.941853,12.902282,29.586592,25.8845,16.047258,31.887838,0.86944956,24.629372,24.76161,57.52012,39.56834,22.06626,39.134594,32.750465,99.41686,94.126625,67.42113,46.851505,16.687922,51.351624,77.14017,55.086403,44.030014,60.110764,54.193356,71.21967,95.27946,64.81586,36.562405,70.68937,83.24499,77.0361,109.727394,49.876854,49.1294,87.42243,54.644093,17.717218,61.347115,34.72915,42.564617,38.03695,33.037846,39.32991,26.943302,58.27375,58.617443,20.628511,32.434376,45.297348,14.871648,33.008945,22.794712,55.118095,18.471468,49.815323,29.098436,17.932877,48.396225,32.99115,46.29982,8.321442,38.962864,25.35594,22.426964,23.88221,24.911568,24.701387,9.520572,21.889257,14.396402,36.535988,16.484299,14.658011,32.117138,34.150127,null,21.930382,43.51475,12.714882,41.33662,5.956545,39.66663,19.651709,20.354988,35.11008,45.17122,10.159019,12.246182,30.850897,26.061253,17.812836,19.505611,16.406107,30.656654,41.42495,51.215626,54.50476,19.613401,41.995644,8.817121,46.18042,10.437307,27.453037,23.298332,55.02685,14.888095,35.14649,18.400078,45.96484,57.9495,37.150974,33.407528,2.5367723,49.6941,54.108177,68.70741,106.834885,83.85765,10.677985,82.363945,117.55822,56.065735,38.456734,72.6849,63.818024,42.80844,39.00272,44.35611,72.33067,72.11374,79.32655,93.2756,54.16011,45.47007,92.95426,92.98175,55.324352,63.82265,38.998543,35.648357,22.029692,25.780394,29.838509,15.999764,19.246035,34.33119,36.481857,7.372832,25.490084,31.773876,13.7171335,12.883988,41.135548,38.65247,22.65074,19.437834,25.935696,3.6901064,20.705112,5.5810294,25.858908,6.528666,30.427765,41.450287,17.736816,24.84557,18.687405,25.350906,11.785486,26.361763,18.124752,38.987766,10.835524,35.854946,39.66204,24.143276,null,17.67378,29.741394,16.129192,49.717995,23.638044,17.117165,7.019103,15.035332,14.44862,47.217606,7.6767945,47.58837,45.270306,37.15849,11.514432,30.813366,44.897438,38.970924,16.937975,30.7037,28.753979,30.140562,26.272541,12.173848,27.704306,7.445096,34.533535,24.288315,34.826622,12.792436,35.627064,27.171192,21.299969,40.08425,14.34569,67.956436,52.55179,74.87971,110.52532,75.40156,134.91524,109.13611,39.181026,33.0059,83.80998,103.79274,78.694374,50.050797,58.16258,59.93114,38.58159,65.6007,110.35234,81.08528,38.74842,37.44057,68.18562,146.88657,122.36271,21.100176,107.6486,87.50004,18.78572,41.152264,33.17487,53.816116,55.95265,57.4931,64.489494,17.13867,29.019144,42.913498,20.906862,51.693874,6.0610642,65.35822,50.450665,72.27584,30.815575,54.778885,34.37607,24.24389,40.83722,30.869753,13.4555645,10.079695,11.064453,13.267233,27.079346,15.88651,17.307503,35.559307,19.436796,16.308043,46.999138,8.401829,11.262677,61.76618,8.781999,37.01113,null,19.006027,51.008213,49.814957,32.86198,35.16929,3.2763224,18.044899,10.486827,17.939528,12.352465,6.8658667,43.008648,40.54736,13.977851,27.482595,33.22658,12.615506,56.265106,8.788938,40.34537,41.315685,45.073788,53.010376,38.949142,50.042694,33.532482,39.452812,17.767452,20.99854,40.778492,43.004555,50.850677,44.127678,42.576153,72.03717,62.036358,72.97142,58.61009,46.83462,83.04034,40.12079,70.38621,154.5111,116.8647,53.79408,97.36935,76.512505,73.32996,83.025055,92.83619,107.11062,119.01704,115.98884,96.74859,68.33667,59.897488,105.06945,111.886955,43.874428,82.18793,60.245808,12.452894,19.355219,19.811539,29.661146,42.327267,47.451096,41.88414,55.47344,39.35351,32.009815,37.740276,16.041605,37.40886,25.432926,42.523323,37.491547,33.343002,54.518623,15.766921,30.48735,22.56316,45.460987,28.929525,47.726574,38.91829,48.41539,21.83546,2.0952144,39.47267,16.965048,24.002253,31.236404,10.869913,18.230574,29.689747,17.462948,27.644476,44.795715,32.403755,null,45.597233,25.028347,20.777039,42.325603,19.48978,19.395666,38.053833,26.185953,21.656183,18.71205,38.248947,23.617838,43.39067,31.560143,56.80236,21.301249,25.600683,31.93868,17.389788,34.046135,28.874756,42.488865,29.672335,52.856415,15.693597,44.851402,24.662888,23.415304,60.8798,15.261852,45.716003,13.8210335,66.60404,39.054497,69.61499,63.68059,51.901806,59.411983,73.598434,129.43416,84.83957,53.58455,142.35683,122.84823,36.418697,62.633034,110.928444,123.23989,101.230354,84.82906,109.346756,143.80585,139.35623,76.6828,74.556725,94.0352,103.38847,59.923668,119.23443,147.73628,54.12143,74.94278,13.957475,72.78628,56.49918,61.331562,64.02356,60.945602,39.95117,33.35617,11.230299,8.856216,24.737082,23.848503,27.082714,39.025734,34.56053,55.84348,50.87074,29.24648,46.779274,33.010006,10.943741,39.102085,37.91248,36.82388,4.8162894,17.473562,19.047794,4.299728,10.150448,9.847913,15.786184,31.08142,25.535315,15.741379,49.207546,23.99443,60.596245,31.306183,null,39.600567,42.69474,14.092131,69.623276,21.769888,34.165535,36.263092,30.585445,16.303896,3.8046036,13.713879,30.323547,50.42112,19.105318,36.060852,31.647701,37.3292,35.542027,12.178604,59.24572,23.201765,48.205933,43.94602,23.663275,70.49486,39.02689,34.731113,13.118845,30.279402,37.03722,22.846401,38.318897,48.56088,52.85995,54.574867,54.718616,45.155647,34.041344,59.779865,45.322174,107.87577,100.31515,76.56294,156.11346,114.6025,35.927837,39.48345,68.36526,120.822945,149.2364,119.73659,89.81677,48.58121,79.05034,133.26956,111.01734,67.82165,70.648994,128.14047,61.807056,89.98644,70.21793,47.401894,85.9287,34.31652,56.86672,53.49328,41.292408,40.292442,31.353851,35.05609,27.354591,37.645073,25.944193,10.554714,36.498146,3.6825452,14.60586,40.561306,11.700794,34.028355,44.830795,29.458096,77.26551,27.529308,54.686462,34.73818,21.372168,48.559822,9.018134,21.557217,17.851187,25.432491,25.640173,39.00268,15.844717,20.929405,28.412323,29.4449,19.6317,null,6.0136266,24.837467,14.472008,6.7409644,37.508556,6.8741994,15.505344,0.8835019,31.805407,17.628649,31.880428,41.632538,35.992825,50.616306,26.07465,66.509895,70.66452,47.69144,59.666084,50.475178,14.073201,52.816708,19.262344,30.823322,40.992596,11.38412,30.362886,69.42954,50.932606,26.91908,24.746412,51.66892,80.87313,49.151897,78.71558,35.405872,73.58621,46.755592,92.63068,43.782703,103.36804,177.33069,62.272125,110.783325,110.96383,38.759617,37.455467,26.6531,56.55423,56.97084,92.76366,88.35608,13.00852,86.71684,83.19586,10.104023,105.259285,126.911736,41.601387,80.27554,88.08841,39.804424,79.83531,36.42767,109.53292,38.83129,56.213356,60.188755,75.76225,50.053238,46.578186,18.580345,23.254534,11.935348,47.58343,38.4382,42.776978,23.941256,59.323875,17.866116,42.74108,54.833115,7.055361,58.56082,42.448006,51.088737,37.232452,3.8388526,36.73529,7.246,36.53574,27.209162,52.32783,21.102316,71.66645,25.795845,30.539623,50.203175,12.513394,51.751896,null,31.690828,25.384228,39.257385,16.746004,55.737213,20.77979,27.617283,34.007416,17.751236,34.471535,9.543205,19.166897,19.093203,52.483276,18.132132,65.02195,77.89211,40.598465,66.28626,46.46356,50.41313,44.577892,18.717388,44.4306,21.076557,22.834589,34.18178,43.85186,22.360592,56.035465,42.52099,71.923775,70.99688,110.16937,58.58473,115.58714,47.47303,86.86042,34.848454,121.76475,100.944405,80.19059,137.58763,59.3151,28.718674,38.53461,42.76934,46.872154,19.713484,33.157654,48.841183,28.867985,55.43109,102.03603,41.48567,81.55756,121.39438,42.27151,64.60843,93.837616,34.855183,67.213486,49.70951,85.14191,70.77911,63.396687,74.96837,29.386204,42.20839,59.12578,68.299515,76.02774,46.812824,21.249,22.65318,23.517414,63.500717,22.126673,57.79907,85.76273,48.46212,66.5212,52.155964,44.24884,57.621437,23.438429,51.96747,26.338299,33.08574,3.0119195,35.71624,12.840148,7.179326,20.359726,20.924295,18.782831,16.660343,15.110543,17.026993,8.158624,null,26.247705,7.74163,22.11648,18.393867,3.5958188,30.147635,16.856447,4.7811375,50.14763,20.711367,32.122177,13.356826,45.46739,67.530975,38.94898,70.209785,47.587772,46.908295,84.940094,69.51079,82.75513,30.896757,37.881176,46.909275,19.858095,21.609379,35.344147,25.880621,71.93764,20.595034,52.589756,95.00312,77.087166,85.126305,54.3432,101.40399,95.62374,91.49707,79.04896,49.344208,83.44156,24.10014,104.4996,116.411995,43.941536,37.62997,61.55292,20.472626,11.628095,11.533612,30.540987,60.312424,101.23249,62.4778,70.82002,147.82394,85.3654,28.480322,78.78248,32.190582,100.38919,37.78993,121.722145,78.176155,98.14597,46.704807,102.479034,43.40064,10.275081,33.443935,30.228237,9.008202,22.429697,34.538067,31.676172,29.99076,54.218857,31.977293,70.11563,80.12253,64.8106,62.33643,61.108204,25.826847,44.900913,40.155994,24.522324,39.392246,15.365767,12.089881,27.909353,22.229515,21.272139,15.392311,16.23339,31.749237,23.163317,36.857426,34.282566,28.193167,null,16.627502,31.140526,27.16915,10.680221,38.96633,27.824852,14.447847,11.445245,35.436188,26.59783,10.273012,24.2542,34.722557,27.37699,35.169308,32.920116,40.242985,53.341373,56.977005,57.489353,59.352062,55.612762,56.99162,51.953278,23.308842,62.600025,2.9259808,21.135674,6.9434156,20.436148,29.121527,92.52748,47.760895,57.495537,75.293274,139.70174,113.912315,102.235,85.27604,112.73725,73.39218,65.58182,83.472336,47.478012,49.062042,51.666157,66.2569,59.651566,29.74026,28.315401,57.105618,72.91865,80.08073,18.85849,65.67244,36.587914,41.65661,79.917496,100.34435,94.427864,111.96304,69.67806,107.05074,100.58763,74.522026,104.457184,58.103344,96.62324,49.97553,72.720505,41.503933,23.971966,46.858036,33.254368,34.94707,79.917175,27.528288,69.91373,90.45972,42.013947,82.115105,56.884712,65.513824,59.717957,45.430702,39.303993,49.540524,23.820484,12.294445,23.688856,35.607002,18.047268,40.45646,16.47361,5.533837,26.612385,24.94809,18.528496,40.028217,24.993643,null,27.586216,20.544996,18.730217,29.6633,14.320469,25.708317,13.126497,5.901549,8.425535,21.702282,5.0964212,33.18104,36.24863,43.5825,38.08433,36.259045,75.93606,49.10063,75.94939,61.89578,33.31517,97.98777,55.228996,38.782005,49.185577,21.700975,34.6564,16.146807,52.334526,42.604717,60.10912,28.385313,81.3385,77.63835,81.55079,98.49638,64.17561,60.589134,36.039433,79.635826,59.980736,64.65098,61.96864,59.67848,121.16222,48.899666,75.314156,72.49241,76.26898,62.877785,65.16598,68.33817,30.816938,20.848232,29.08308,19.732101,62.111584,83.52754,87.08174,114.35879,81.025955,45.317898,129.44763,88.84351,110.01656,34.197994,88.90802,24.422745,42.491283,35.08235,29.334187,20.387848,29.795315,40.383984,58.39572,59.852226,35.62673,76.12134,61.269695,26.439068,69.91015,24.683481,8.455702,56.064423,15.85465,40.744156,15.954453,23.738785,16.503218,6.5840707,26.306334,11.349402,28.513933,29.849417,34.68182,19.566805,50.110924,14.992988,26.923285,9.029209,null,39.223824,28.712877,10.016042,36.38355,39.01911,6.0409,30.843243,22.68887,21.451927,34.02566,11.272508,32.656998,10.082867,39.603397,10.867563,40.04763,40.04977,32.855537,34.938652,66.01918,17.820847,76.90356,32.457867,43.827255,57.28742,22.1924,38.769936,25.09966,11.361636,21.649395,48.869205,34.971527,45.538395,90.58468,60.41926,109.14163,50.38999,88.36721,71.204865,36.621384,128.13712,66.86831,53.808422,46.63309,84.49892,15.307058,46.03369,47.38344,21.803791,38.53691,92.95189,90.13035,67.55944,26.645912,74.32698,43.067905,32.846497,22.263277,53.74647,28.333117,122.36259,79.17694,133.33461,57.80293,39.581276,140.0943,52.293537,113.73009,18.585787,44.697636,28.119822,21.07451,22.162657,24.808811,54.147034,32.893776,46.477127,61.251373,32.80943,44.07793,59.227066,18.8456,40.121414,38.768276,14.630649,46.122303,32.588753,12.162785,17.46076,11.909934,1.9520011,19.23212,20.357046,14.750763,16.676075,20.709923,19.736263,11.659053,31.58334,5.3533845,null,14.606472,9.385713,14.458572,10.799148,4.462601,8.257201,11.3806,15.53606,34.30838,16.040955,16.830599,26.053509,8.861058,18.785301,32.35923,22.93874,35.887867,17.412159,32.605457,43.812916,38.93293,38.99057,48.959778,35.234184,31.84747,26.450245,37.23518,34.324867,45.7902,10.226478,11.908184,64.86329,54.848217,38.080177,100.517654,65.123764,132.88722,101.755424,21.930077,98.4474,78.40205,54.283478,33.205074,75.207,78.11648,42.780857,140.53236,159.20747,117.71697,132.26018,131.34055,143.85698,104.35662,2.7648528,76.33738,101.02335,47.883797,69.82637,44.330585,68.94163,32.865406,86.12891,143.30647,46.643425,28.375038,69.682274,3.1845372,66.1361,33.478455,28.427582,17.997498,54.32807,6.6243296,59.667,42.782063,36.30667,42.328037,53.06055,5.1832123,76.53262,27.143614,31.917557,30.89188,27.745384,21.75252,25.50729,36.332096,26.767092,3.751259,33.497406,36.035515,32.629665,36.344486,24.712757,40.540962,40.652794,20.200415,27.912785,36.514576,17.806883,null,27.600601,30.77272,29.22326,32.04651,47.489674,29.156519,34.948784,39.107437,32.610054,27.590982,20.375715,20.703289,26.3613,31.462994,19.512072,11.857484,35.416004,38.396046,27.247984,73.030106,33.08895,44.157116,37.426468,55.039993,37.660896,40.428833,9.997597,47.859684,42.892445,49.926945,36.277065,44.564598,62.068092,7.3092465,57.63814,81.42414,53.514355,105.77352,96.18123,33.018456,157.92104,32.60729,43.284977,66.32611,72.27944,166.39868,33.86216,136.55414,157.66124,142.93376,164.4931,144.51909,39.043667,122.477554,79.57677,125.425766,29.32303,88.861115,119.74678,84.087105,143.52391,50.09244,52.812035,128.39783,19.542215,48.39205,72.91989,36.969437,31.298628,13.385062,24.962702,50.33181,5.5263577,48.27091,30.942219,31.041245,36.153824,27.682959,33.782772,35.943016,14.025076,26.648922,39.582985,14.644312,44.954617,14.543878,13.853089,25.53426,3.496753,14.644289,23.933073,20.504314,10.175902,7.249555,10.538222,14.494282,16.37242,10.397163,16.240608,28.433666,null,11.481744,27.146149,10.652088,9.8227625,11.655134,13.646727,16.70032,16.306671,25.666405,16.188564,12.327915,13.643993,22.38077,29.29378,36.645584,24.634928,40.116566,36.095245,23.138784,47.52686,38.701687,19.233608,45.58499,47.472343,52.061565,67.555565,19.880173,33.278313,19.81276,20.296932,74.48431,53.929806,5.603046,83.98156,69.92619,144.68869,68.177925,56.18687,110.49074,205.24435,53.477116,139.40523,130.09062,64.34974,185.16467,159.07864,131.21307,246.61041,423.75113,427.1,387.2074,250.71043,128.31392,175.35254,161.62172,82.04779,88.03222,113.62933,12.482824,82.805695,142.35783,35.46228,73.37539,111.368126,17.123014,48.60755,66.728584,21.73517,19.924717,28.163534,27.712252,42.980434,18.993908,25.134043,12.85516,42.020733,61.433952,23.745543,58.140755,42.767956,21.621218,34.43224,57.67246,7.1588106,25.358519,33.659595,10.64743,24.454775,4.1800585,30.39665,19.085106,42.716488,24.10946,5.863712,57.323906,14.77455,3.7052205,55.523018,20.271694,12.82609,null,15.257155,35.380135,14.19722,17.948652,42.83056,13.423795,16.424965,37.706947,10.007318,30.000309,11.481517,26.068228,16.85112,31.05816,60.004604,17.887228,48.761116,78.09606,27.926271,46.034813,62.216248,5.526842,41.386646,76.95791,19.463593,36.014515,25.719563,26.294127,10.266488,18.504753,55.655373,53.726696,11.064902,88.59731,9.625999,113.50273,113.29654,95.0152,101.15057,165.19974,54.96213,106.37514,140.65884,194.21724,127.49021,214.24513,400.76303,181.63014,604.27997,709.17737,535.8768,123.07888,392.91815,227.45885,183.57666,146.86209,131.66603,78.84264,130.20103,190.4193,57.87401,61.08935,100.53821,37.850674,2.0613356,98.265465,7.4483447,9.901502,48.372047,47.461926,46.624046,18.288143,33.038616,49.054893,14.5174,48.420624,42.78506,5.148734,73.88822,19.446821,9.882135,60.168076,34.52898,27.683397,54.15787,12.647207,13.770928,43.962612,14.141019,21.09942,23.519295,15.653441,8.872428,16.724123,51.231762,22.874208,14.629448,28.22945,7.0386033,5.616479,null,19.598108,10.829992,29.448774,21.243095,16.41182,23.875492,20.343065,21.704964,23.156397,43.539204,16.797503,33.82575,31.259764,33.635334,50.96314,33.07101,42.316196,47.93348,43.17584,60.75948,45.84252,43.579468,32.808746,37.541565,16.803127,6.296537,27.37152,28.528557,14.696399,22.881893,4.4557137,50.55776,84.98083,36.032654,23.425129,57.229336,68.05627,66.7002,44.664036,120.289406,99.532555,109.349785,53.152077,120.276146,269.56708,297.8228,390.73532,858.68225,301.99655,1866.4878,264.93906,814.02167,446.92657,255.17549,192.1713,172.16681,33.7796,123.565834,35.447796,90.83506,58.47302,62.427517,73.91061,70.21309,24.686317,38.31376,59.81243,20.643658,11.595475,53.820503,34.706764,55.53429,22.910093,46.521606,10.730065,67.472244,36.57115,22.909899,72.61419,47.866394,18.550995,56.90487,57.47216,15.3526945,46.1052,36.699516,25.938635,19.99231,13.439968,36.168427,16.098867,26.530293,31.443493,17.40093,46.457935,23.770441,9.938842,21.47927,31.074137,10.052013,null,21.745735,26.661612,15.600892,25.600092,19.175417,32.318874,42.5228,13.247691,20.44734,33.902233,29.846764,2.4028924,22.688223,33.105354,32.13039,15.064512,33.662823,49.484814,45.94481,39.94419,70.8589,54.943905,78.55755,31.902576,51.352787,50.022438,21.636953,31.699734,28.636633,66.17491,37.93424,50.700092,121.43984,54.7491,60.047882,84.66332,5.4240637,90.21197,49.026524,27.219471,98.37686,108.522064,73.1193,116.6123,188.37468,424.70047,227.37546,721.19073,2653.7073,5950.6724,2670.6882,697.7574,193.9001,416.44476,198.76668,143.07294,76.73767,100.76522,77.18842,78.36387,63.635365,106.83391,101.52945,115.91105,54.63288,29.392708,76.610855,19.809603,28.171423,48.196712,26.723358,21.616508,11.612502,43.3768,54.916454,14.35068,50.143124,35.591625,70.097626,74.296234,66.18912,37.619774,73.08614,63.062634,31.429115,66.40953,38.08975,44.676598,24.069302,23.664328,7.304067,20.53954,12.265944,33.03989,7.82497,24.06392,34.063793,29.98444,22.980581,29.828356,null,18.750566,16.711641,22.954254,6.4496713,35.49693,14.062705,21.05462,2.7829971,15.882646,23.214918,16.534367,47.07681,49.573128,43.78226,63.328762,55.798973,58.549816,93.19379,31.734327,70.73327,64.62388,14.400496,9.621436,57.025043,19.35395,27.525578,62.172737,42.357834,22.82722,43.68973,62.243164,15.108991,93.645584,52.04125,3.3198392,97.550705,35.120323,75.57052,72.207115,44.60468,48.394814,124.602776,113.89944,83.05229,293.8111,122.72114,344.66333,702.4137,206.67654,1780.6389,317.86798,752.50616,282.07712,191.94183,261.9409,83.810326,108.570625,147.2584,45.42883,87.56617,30.26433,30.410948,61.450157,53.2705,69.56929,38.595253,55.241165,17.254124,34.46105,33.9819,16.259918,24.570538,25.227734,27.037327,37.238773,68.12597,32.053135,69.49584,88.99453,12.728786,32.753967,62.92248,26.94512,29.908504,10.692058,30.930035,15.103759,19.149996,6.0630584,22.272497,16.096428,7.523524,26.300816,14.794616,13.544699,34.363823,16.097982,26.864363,46.649822,23.103287,null,41.08277,37.20107,26.459675,35.019974,22.796278,18.74669,33.42069,9.550929,27.514946,18.797785,22.334568,13.556179,6.7666955,31.300205,26.330345,34.89614,45.11293,36.296406,39.047955,33.811226,53.280285,29.61566,26.78644,56.264816,33.8272,19.466026,29.085764,43.36628,6.084518,18.236998,24.469147,23.805998,22.651083,24.93122,71.63879,97.85695,46.23578,84.202354,65.86998,124.70203,53.970688,157.12277,195.92128,92.10433,169.23524,248.28732,259.54257,120.62024,409.78665,658.1581,551.4974,120.87006,344.71152,242.41728,171.27126,93.6848,171.29002,100.16491,57.377697,141.56116,48.288254,1.3991752,72.56679,114.62049,29.372887,45.897694,103.448685,33.19506,31.160082,74.88818,41.371075,38.49964,59.4355,45.563965,38.19991,47.051937,34.265247,6.2219243,56.915527,58.13756,38.332184,96.303696,61.716084,65.56403,51.345303,40.26202,33.141895,31.505737,14.644091,22.746025,27.230064,24.92561,32.999256,19.94055,35.42416,40.960995,43.141212,45.74577,16.765388,9.823462,null,18.62734,57.490795,21.869106,39.200405,42.919224,13.909964,22.90777,11.298879,6.1831603,28.035774,19.424177,50.120106,33.248585,25.100996,59.804413,19.801722,32.76458,67.37739,11.5826025,52.234455,59.039745,20.944422,68.2903,30.613743,39.880024,10.018083,17.676811,29.615843,23.715355,43.736958,36.603554,48.823597,96.42992,14.42937,62.41163,95.38172,46.37434,92.91026,61.025085,117.43687,79.02257,52.533424,120.86359,60.91254,84.81211,207.88914,136.4579,239.46472,386.01794,403.25073,445.8633,261.77026,144.98534,222.21114,60.1197,33.960766,180.06146,71.37106,15.695147,100.479256,96.79474,37.047676,14.255841,129.50539,65.71089,38.99649,61.052803,56.331573,42.85397,47.914196,52.490555,15.705565,51.259094,64.585075,62.120323,22.333824,35.212845,16.553118,47.658237,41.817104,20.963707,36.82348,60.207886,32.839394,29.576292,44.23594,16.740591,36.767277,20.313066,8.148026,11.6988735,28.888927,23.172619,15.932388,21.791962,38.70488,13.22062,42.682224,19.701015,24.708126,null,18.258722,51.953514,10.105363,21.184856,27.744392,5.821966,9.205731,35.49294,18.974073,23.558407,28.865276,39.223114,27.056492,55.279877,14.608904,36.178722,32.246998,44.7413,31.239498,48.954006,16.535698,14.691642,19.853172,41.240227,11.849278,36.846184,52.992367,29.502195,39.458004,28.953558,41.84249,49.80102,57.761288,30.300833,52.70727,92.68581,31.067892,59.969833,78.50513,94.02619,94.4873,25.897179,73.56127,153.74525,46.116096,91.67676,37.848557,112.17981,166.21709,201.67944,137.03067,127.22487,79.519005,61.19161,56.671627,113.030685,42.30826,34.682777,138.49892,63.36791,67.57669,100.10121,45.84073,77.75118,96.9718,12.210562,60.334248,63.14183,51.782925,17.138494,52.093258,40.75849,22.080984,4.4777017,41.611694,53.95685,37.578255,45.61663,46.246952,45.609245,30.190557,74.72551,38.860462,47.403095,36.710983,34.748764,16.614918,36.156364,4.054993,15.135753,15.666663,5.9974256,43.095734,7.5287743,53.518982,26.599379,5.557165,59.652363,27.983292,25.893171,null,40.380203,32.267258,18.396944,33.891644,42.518658,8.137566,30.965569,22.969332,28.154781,12.524587,19.150385,37.01145,29.84725,25.467989,27.361174,15.722833,57.09899,37.625805,48.214466,53.82608,23.443676,20.995935,50.932766,23.088673,38.398487,17.251823,27.22508,27.331198,57.419014,50.462452,24.085459,59.560635,20.86477,65.80717,78.738075,52.62476,136.48367,47.239685,86.38056,85.42732,83.906136,130.29233,52.896046,63.59342,80.76933,30.405764,10.302164,66.19328,48.36093,57.99461,77.42866,65.89711,36.12316,10.315843,42.299,81.325264,79.691086,110.74793,96.50329,114.55609,37.668335,13.164213,152.20549,66.08242,72.076546,18.64595,12.039431,66.43461,31.573032,29.899473,33.93028,29.267233,10.780191,27.48315,25.528612,25.541739,32.91141,19.564896,28.749754,38.43779,25.563375,30.988396,51.619846,11.215081,31.95592,32.45572,16.920742,37.709686,16.56146,14.598961,7.0003233,16.80677,11.329837,7.719553,23.93534,16.826832,17.9898,32.580544,32.559097,25.64834,null,16.46708,38.9099,11.42205,33.294773,15.9409,20.475178,16.497437,18.628761,23.636065,12.453697,6.780314,30.053953,27.93705,57.578445,28.522715,33.733685,26.262466,28.890625,34.887302,35.192543,28.2601,33.864414,43.379772,3.3953004,55.34145,40.140724,21.095825,16.802073,46.482887,49.18818,41.2797,53.492188,19.9076,101.30672,43.19453,46.10168,107.82004,81.24718,83.70885,62.116634,51.614777,38.868153,55.35001,15.988042,113.262955,58.576855,41.625244,89.96507,119.54083,78.6335,49.358856,20.557228,7.163121,41.744286,69.36321,67.67889,52.200817,1.1726937,37.766438,81.725365,71.71288,102.323654,102.97951,63.52281,44.649303,73.80774,66.39119,66.29555,7.514325,35.243374,57.39415,35.45589,31.986471,46.62385,49.53927,43.841034,43.61006,58.33426,20.068895,56.46749,67.10071,24.297403,40.995197,54.815823,33.377895,40.79104,20.791975,21.07849,29.661547,29.105896,38.047222,27.450869,7.731833,14.228614,28.466845,32.730877,15.068578,47.27441,26.522125,17.027775,null,28.693848,35.25771,27.669365,22.686842,13.814431,30.800194,18.70637,30.183535,20.958527,30.718729,14.358318,0.7384519,13.033908,34.877087,14.238384,53.650394,56.32983,28.554419,65.59915,25.845987,49.02462,80.723175,27.975172,17.560606,62.953426,54.029346,16.3636,40.441605,50.168568,61.43894,41.210716,50.172848,63.04217,31.142136,69.3699,34.811016,83.339874,33.57953,45.186577,73.45751,89.24276,101.18055,129.73795,49.37849,23.815931,84.72789,96.15483,66.972046,17.653105,52.864014,57.843002,35.681343,62.491577,73.0191,41.433193,1.8272684,97.48568,131.22018,45.439075,124.7004,22.532837,89.656555,66.78634,49.00849,87.46727,37.379482,61.397552,15.59396,31.588552,42.489803,32.52647,16.842037,37.818947,4.136679,30.522713,32.15551,23.731892,42.161446,11.664605,32.69964,34.56513,8.563637,41.94955,30.179403,18.480957,52.167503,9.699517,32.472385,20.999088,17.68009,32.120567,19.259672,29.382689,15.581315,19.545515,25.42229,10.493476,43.16744,9.227127,8.352137,null,17.303617,20.394493,17.058952,36.81663,6.3997355,12.347836,30.423634,12.133972,20.660778,28.79482,38.673153,13.758939,17.483711,22.903812,17.97392,36.73409,32.822353,13.471757,69.73035,7.716748,44.349873,74.912766,56.56087,34.059868,2.4410157,39.453003,29.51243,22.617708,19.097328,53.70608,28.72246,75.34282,11.058174,73.08951,88.545166,105.26274,66.11019,88.34241,42.508972,50.65755,61.770588,24.966335,37.564877,74.75204,80.44609,62.12669,104.952286,86.83625,69.16736,84.331764,75.34285,86.16474,71.395744,43.12751,89.27305,105.01463,67.33332,71.21667,71.09583,58.057507,12.532629,129.09677,76.76969,134.25172,70.20476,31.635376,64.3122,68.73627,24.708858,26.93613,20.046919,30.031656,16.105022,36.208183,31.59003,5.613239,15.015876,11.098054,43.932915,33.125755,25.237057,61.025997,16.861717,39.165752,18.689348,37.00972,13.659282,20.77899,14.559959,14.939249,15.421848,27.70031,33.174133,6.562028,21.365337,33.631474,12.867128,16.850761,45.788612,4.11911,null,17.448105,19.106323,4.8017187,14.421805,11.81614,2.757406,12.4015465,14.826185,17.202667,22.091972,29.589798,31.64754,6.6826873,12.967497,46.104523,13.399907,46.359703,41.131115,51.015633,39.09143,46.530186,68.66958,23.984072,19.601778,40.341278,21.728767,32.66664,12.4063635,33.667828,38.75016,31.062153,20.83074,107.2565,50.905876,84.20881,39.992447,98.43833,35.152863,75.31809,29.523178,64.02324,59.853554,24.235405,80.56331,21.34535,72.39793,74.73688,52.529755,52.03825,46.374687,40.23147,54.217762,39.725273,92.168755,88.90845,92.334404,40.265877,87.04877,155.90909,88.24111,64.728226,98.24092,19.070648,49.77964,51.585125,36.946247,86.74858,67.73212,40.243843,23.779682,45.15994,39.664673,40.166363,53.037926,50.17337,41.674976,71.77354,34.28698,59.867928,30.855827,47.51699,39.23894,6.738484,46.53946,17.598719,32.427277,8.448424,18.438635,27.642548,3.7742972,23.281515,23.66437,20.985317,29.074156,19.739893,32.843864,14.614069,11.073663,12.785409,8.329767,null,35.651817,6.3837867,5.104232,20.792904,22.495474,37.40294,9.086561,35.096134,14.774086,25.223356,11.429183,35.318054,26.985544,36.03148,32.49872,50.972393,37.623833,47.165413,7.3244824,70.62516,22.512527,51.001,39.278027,24.679373,50.43879,31.573587,17.585423,23.168325,20.548761,21.389187,26.07671,11.625308,45.837715,73.546715,22.953558,81.906746,46.727055,73.36925,15.65623,31.301054,58.357956,108.21295,127.34386,89.21342,69.67727,74.17953,47.71022,7.3927546,52.93078,61.10152,20.360909,54.525494,107.58202,119.87511,61.18909,58.2013,164.22751,102.908615,38.85964,41.53507,64.188644,61.993855,23.169353,88.998375,27.995327,84.90688,41.34907,75.96672,22.586452,25.707163,30.83133,18.778444,22.388592,25.288328,25.150316,50.91195,41.367645,82.334595,38.670895,4.714603,67.12799,11.784327,32.85537,44.909058,30.487581,21.593502,15.634522,44.994343,14.394734,19.080088,10.004383,12.794432,21.415087,5.072438,22.10008,18.939417,6.5679865,18.568089,14.985586,14.854182,null,12.03979,35.20904,3.286459,44.31467,7.5426235,14.4479685,26.879261,20.573872,40.916225,5.540802,32.32127,21.034012,18.261848,23.556646,48.079422,39.886715,29.702063,40.99576,16.127924,14.582081,65.45061,41.489716,23.63838,56.254635,48.738777,17.78955,20.322351,12.658725,16.252323,14.10238,70.80656,66.75361,28.621025,26.262981,77.06709,19.697699,99.93057,53.296844,72.181786,81.23672,63.35934,75.771126,72.98505,52.259525,113.35804,95.37775,56.404743,80.43242,77.814026,36.453884,31.258455,42.033108,41.627575,49.881607,111.4277,80.10664,50.571686,103.293175,35.46434,104.89912,82.18486,20.640097,80.77151,69.33683,56.0573,44.930397,55.042103,7.27379,80.59412,30.603704,53.17127,23.030346,51.18931,8.1226635,52.836346,50.708202,48.752815,26.93811,48.486107,72.77779,21.692362,21.937757,70.59388,26.705082,15.9267645,54.700905,33.051777,30.125582,14.642836,18.999352,23.829002,14.639025,26.063234,17.25592,18.860735,27.784132,8.130811,37.998466,17.770021,19.913038,null,32.150482,30.87674,20.755562,34.733288,12.948099,10.331089,19.181988,13.89943,33.07182,17.83664,56.7725,14.489197,41.11954,33.496082,10.303329,44.95619,46.159264,59.699993,32.326057,43.12546,51.988937,35.057903,38.877506,57.910034,28.021797,8.595738,74.05051,41.60197,35.11622,6.2255206,60.46262,30.6368,38.753857,38.175507,14.00054,75.85998,79.51891,54.315907,24.313084,81.32094,126.923065,34.5292,72.5217,88.21588,77.95954,61.284046,46.195415,112.26279,114.58577,107.809906,111.53416,64.58522,16.836325,51.56561,72.63208,102.185005,78.942276,65.86141,139.90295,24.636267,55.53307,83.7987,61.997467,23.677286,42.331593,81.86891,33.7412,88.622284,39.433884,11.887273,19.306412,15.354261,31.159727,18.300444,31.169464,3.4335387,30.304585,20.070797,12.433889,38.10792,14.008689,30.594471,38.24327,17.44447,52.806404,26.657959,10.596043,52.496437,32.031612,21.095833,7.183673,42.525734,26.830006,19.192911,14.257791,52.75327,10.838171,31.824718,27.072239,12.449313,null,23.52697,24.124435,15.092219,18.882797,11.810971,30.803625,17.475449,20.644564,13.751743,25.12186,6.0701795,19.480207,14.198838,43.23457,20.877068,25.171337,48.114975,23.70194,36.14939,29.486094,5.2520337,46.305252,32.278362,52.85177,5.81816,37.735546,33.032616,11.844006,28.105902,37.925114,37.26239,18.985775,51.05114,38.590855,63.464443,65.47142,34.162773,106.718094,34.711716,63.24366,50.247883,9.335389,41.653942,86.53122,61.930588,41.419453,144.48962,157.86093,132.34853,160.37077,164.77165,113.64638,82.01283,59.25628,17.033543,72.57923,77.78647,19.44492,75.04685,94.45436,17.998926,71.882614,60.317543,39.06038,43.628933,3.457391,19.330843,24.722973,39.79541,23.589321,18.157595,48.075535,20.868309,59.254612,23.888157,70.07641,33.58766,36.961445,53.090904,60.80527,29.926601,43.11636,25.536558,42.548504,36.8797,20.569748,52.990673,15.7992525,34.989956,17.76698,43.684223,20.568996,15.387656,30.165646,8.378664,28.578283,34.69055,39.991028,42.22901,22.191818,null,14.509243,16.483393,15.472665,20.343874,9.17015,20.859951,9.496391,3.8618917,9.5855875,1.2172077,12.084123,11.491802,22.349882,23.245266,30.435751,40.60639,37.88874,25.755468,57.393627,34.66598,48.082424,61.08804,56.18587,59.13261,19.833141,50.095726,24.463083,41.79204,18.553078,34.15743,58.54877,65.488884,12.016564,16.186363,51.254288,41.633472,37.24786,7.1537566,67.21289,74.99244,41.018253,93.693535,96.16056,47.090015,8.147353,78.23255,117.75209,93.1353,51.928387,70.03526,138.10492,131.6049,76.790215,55.976276,26.064491,46.52301,101.42771,97.844025,47.392815,66.93131,63.25498,36.85589,46.080273,58.33535,59.387596,0.20078738,15.985075,33.57021,6.251145,51.08363,57.624203,17.175623,41.412495,30.251186,22.628536,29.75122,40.955776,6.773211,37.592037,31.61708,14.974161,33.123634,21.31122,12.145965,29.231632,11.073279,19.90725,14.976859,29.526478,17.6759,9.42387,26.184254,28.205793,18.496313,36.762024,20.012794,9.958265,41.507904,8.299489,20.5908,null,14.5594225,25.885572,23.290953,13.097793,26.265957,12.928221,13.002476,3.6215198,19.902584,23.916603,16.575373,20.93531,27.392012,25.56701,28.494623,25.605726,19.950085,34.18222,50.416664,21.984287,8.661147,60.25412,13.084589,48.182182,10.941912,24.400597,13.055351,10.184349,29.385965,51.404675,23.150093,10.625277,46.365166,88.45028,66.02226,64.294876,58.174553,68.07671,74.801025,22.878222,43.816242,68.74771,46.689587,47.02736,79.878586,125.080605,99.0067,23.393969,36.444378,78.482155,66.467865,40.49654,45.04559,48.74973,73.61231,57.346584,35.24815,76.83783,84.68158,44.965286,34.184326,55.743202,21.048624,23.277525,40.367043,12.7187195,13.588813,44.59301,27.328468,18.456148,19.80505,32.18728,36.158096,42.818962,44.817852,32.90292,56.175346,44.076473,41.374195,50.609188,36.779953,24.39342,29.795233,53.4695,20.14785,30.643467,16.115679,15.724051,4.264268,15.4871435,9.5364275,1.5625433,17.018972,6.36474,24.449394,17.832756,12.711675,25.206026,3.6343033,22.559628,null,23.412655,32.51432,24.284147,28.523045,16.64732,25.562128,9.797446,15.519996,15.8474865,4.5492015,22.875868,30.571173,5.3649554,13.837403,32.08006,6.32442,60.760124,23.698433,62.50529,22.846558,7.333286,50.66336,29.10083,31.092197,31.19117,37.752235,8.761596,11.196718,14.228409,29.61498,0.090263784,27.52622,9.340784,15.054245,16.44002,36.946693,45.21708,33.916275,21.121466,93.99393,83.5071,41.07281,25.192781,20.206081,73.32199,69.863525,40.399906,29.80503,21.302088,25.121609,8.65849,43.304684,42.157295,56.089264,72.22087,46.809406,20.898972,61.89544,96.70032,78.804596,16.726084,40.377796,23.93996,23.503242,36.322945,57.46996,38.402504,40.94007,12.748549,56.949947,25.507286,26.988398,16.09192,23.884336,29.981146,26.93499,54.055332,21.609613,74.79663,10.120313,60.65566,25.44558,16.412985,27.7416,16.390785,21.020647,46.91984,18.916977,16.008749,32.275917,14.044669,17.83867,13.899953,42.204594,13.804298,8.197747,21.418518,12.709178,6.123485,28.466728,null,37.3321,21.498585,31.075863,27.159761,2.419549,37.714016,16.257551,7.860951,13.489402,19.173853,36.916492,22.703548,43.787827,29.182354,42.74135,35.9316,28.006771,51.990734,11.434625,49.362286,17.419882,28.89189,22.131742,42.084484,39.182144,27.108633,1.4391198,26.973852,23.418087,28.114164,28.535944,7.280739,17.934351,17.985884,41.21329,15.863424,24.84136,36.558598,40.71364,43.205776,51.53526,35.726902,44.07873,83.10096,64.40046,27.682524,22.217215,81.28566,84.28949,46.88075,33.998875,37.899357,14.67013,6.026976,27.091005,71.91971,59.5768,29.320515,52.61253,22.40019,26.478611,10.0639305,39.104794,29.099234,14.476788,10.858941,23.947159,20.53078,29.447615,52.703785,28.856693,14.486646,23.648985,41.614006,14.322095,26.499456,33.51498,30.993988,34.53557,27.656693,63.842083,16.265062,23.922853,41.160458,4.416059,44.493416,32.807095,41.776012,19.768303,20.988522,15.661031,29.64187,8.486637,18.738455,39.257603,24.182737,6.3600345,51.923023,36.468204,23.044287,null,22.966232,31.550705,29.881542,37.605225,14.294853,15.339496,27.717564,26.564798,28.029493,26.755245,40.969837,12.157114,26.27318,31.167854,33.420288,19.97716,8.924523,49.242386,24.617493,20.415173,7.457408,26.047243,27.026134,33.43302,13.889098,33.41928,25.111938,15.24684,29.666265,27.190517,22.519835,15.052491,20.297863,31.723597,11.667942,5.320139,30.927334,31.648184,38.819237,26.912945,72.45986,88.084366,30.279099,22.767736,38.726597,31.519167,32.506783,65.05593,94.79439,57.3926,54.46514,58.196358,24.54725,14.925167,36.55423,87.43183,94.99446,67.51137,28.966364,16.629152,34.64179,14.319471,30.117268,38.34104,20.63153,16.45077,31.594503,42.800068,11.763783,23.528578,25.486282,52.147484,9.320812,22.365892,51.202587,34.590088,18.473642,12.986891,44.833855,12.308151,51.90585,37.348545,31.729187,13.316322,60.393578,22.228088,14.084637,15.771724,12.937264,16.619722,13.927291,20.729464,15.678456,8.099276,27.607605,39.45239,26.372187,16.831743,43.523727,28.279654,null,41.10136,16.260036,42.62297,21.856842,17.056156,26.858946,5.9694552,17.256052,8.911564,9.043248,10.918756,3.6673484,4.914475,24.87781,18.099169,9.622787,6.1278486,28.360308,7.1428585,29.08395,33.336365,31.733868,15.747835,34.961636,52.47536,16.498339,33.806126,26.08814,39.714928,3.8363485,19.820711,22.58338,21.495731,4.732314,30.151745,38.019344,43.182102,29.28163,21.84077,42.556618,48.458084,70.15915,22.220715,37.658512,8.710131,32.458485,70.287384,69.2663,71.86649,102.57375,93.4394,39.88895,63.47344,59.39676,39.41896,17.333166,59.206413,37.61373,18.487804,18.872679,16.700891,29.46605,14.993037,36.16956,29.74256,24.50178,42.32429,26.972122,19.715326,34.207485,5.5792885,34.403664,18.39536,12.524533,5.028647,34.202103,32.268055,24.522158,47.348106,26.042103,20.207436,20.61271,25.840141,12.065279,7.1324134,2.7563887,16.7095,9.189707,13.315837,13.524927,27.626608,8.118888,6.4271135,28.379942,23.719006,11.758952,12.95036,32.12653,12.610232,18.770588,null,26.716412,23.384584,20.823431,51.71008,22.351755,16.486618,23.809084,23.585766,10.337233,15.930058,17.146744,11.709493,23.127205,27.250511,33.72774,13.878218,4.2133517,41.257153,33.371563,10.437845,40.109818,39.57177,21.86531,10.647741,4.6313415,15.643385,10.259414,4.3915625,18.000118,20.039024,12.786493,5.366852,6.981577,16.873936,24.526382,25.91031,42.573368,30.780182,24.724718,41.829144,36.147247,36.168736,24.881498,13.843586,30.09707,26.41402,38.092537,34.625774,11.740615,3.331652,42.85397,44.046524,37.52143,37.80709,57.17909,19.65895,53.645134,52.393837,49.06016,31.436941,1.9670736,20.96358,25.929237,18.27706,18.541847,36.458614,44.366978,19.28163,20.441217,43.0183,8.231267,21.972101,26.39297,20.847322,10.296865,36.52583,35.365585,27.999231,27.12751,24.376968,37.56546,13.10276,42.78811,20.387623,20.68479,27.20901,29.308191,15.357558,15.305308,20.726467,19.026018,4.430964,14.303041,15.17037,5.2916703,27.06842,15.326545,11.064069,19.094225,7.4975586,null,26.274857,30.155155,27.777557,18.27379,5.193449,25.145124,15.076899,4.438033,10.479072,8.283771,29.888945,16.748272,40.758743,61.681145,16.740875,21.421986,35.29885,35.46107,10.970948,41.573948,20.300535,16.941074,30.11095,33.213512,36.79638,10.247357,51.97059,22.36652,45.08245,52.906036,11.713348,28.259634,18.319893,13.692469,17.031189,25.091768,26.581387,37.76322,20.555195,32.96644,11.34999,22.247055,12.921677,28.771427,36.691025,25.43741,48.920193,38.323257,46.746643,45.542637,43.35752,7.6602592,39.943245,36.993,22.293419,18.202486,30.477287,35.95436,30.953098,10.166063,8.414007,56.07443,71.676216,36.11378,44.99704,29.686424,8.348502,37.866524,31.366798,23.47691,54.437195,36.237686,15.178844,25.82309,34.476128,16.630436,21.99875,24.163315,19.826788,0.27869368,28.52876,12.080559,24.54944,15.917135,43.020657,15.494193,52.093906,24.683582,9.755278,12.324895,18.061552,18.072653,23.096226,31.274158,43.74303,9.760913,20.449675,22.725319,15.599115,15.5408745,null,25.189516,26.62466,4.1212416,21.544498,24.803398,15.851959,30.678888,21.116796,16.498142,27.245312,9.409792,12.475294,27.836357,34.386856,17.427813,34.659733,26.76246,18.342146,11.774237,26.07358,24.16288,22.93943,44.425934,29.895493,15.929822,31.92298,6.935416,33.90263,26.037834,60.469967,41.23376,23.362679,36.38162,30.680216,41.783424,23.900415,6.964365,19.004036,27.689764,2.813635,33.145706,28.642994,56.728943,35.939266,16.98174,37.609787,62.625946,40.730705,35.146145,35.82434,42.8795,39.099503,41.733955,43.593407,47.823475,38.249725,32.46297,19.917389,26.272083,27.256975,3.488078,3.6866443,9.415282,8.595976,2.8353229,15.189133,26.560255,21.842949,18.473282,23.26379,32.99085,35.155518,12.15832,10.34703,25.291002,32.06105,23.437645,15.344692,32.791508,23.622358,23.889566,17.74101,52.880917,15.387386,21.500109,7.0472493,7.845037,20.352043,2.2394688,19.879545,10.854423,36.010983,24.344759,21.095789,12.799067,24.272732,27.617561,36.303425,22.239016,18.095304,null,11.139593,12.083073,33.494488,2.46533,21.139658,9.738086,17.872393,2.1974254,6.0367417,12.659533,14.2719555,13.53087,14.778662,23.712866,17.727184,21.254465,11.170455,6.841502,32.857998,25.954357,22.651386,17.152874,50.04129,43.30712,15.297874,24.838097,30.344631,27.776392,19.678934,33.52748,21.042492,29.27153,14.416998,19.393534,27.00539,38.14923,43.89734,32.611347,11.990164,12.541455,36.694653,3.0201705,22.186136,43.294586,33.101,12.301888,39.46826,58.68108,42.776043,22.262623,32.524166,28.82463,11.294291,34.19337,25.673803,51.03296,23.090717,23.524757,35.66023,9.864917,12.858752,9.082773,25.402103,44.47862,53.8016,27.196323,17.797735,20.215761,18.106125,30.445883,40.570557,3.1276157,28.298765,10.814152,36.631237,21.874107,7.061259,12.622528,29.009083,31.604002,13.037588,18.049664,37.720478,21.585379,35.956264,12.18397,9.950909,20.49105,4.6027775,18.4481,10.784608,7.144287,23.960844,28.618202,22.076195,22.26344,44.314354,41.619488,34.72116,41.36021,null,14.945573,5.161285,25.627224,27.955233,24.14491,15.9879875,23.892311,24.800098,9.692424,18.850464,20.137,31.000875,8.214588,18.327343,27.10046,35.301735,15.411091,15.854766,13.011112,16.58207,32.04286,44.553566,30.59166,27.779055,35.448036,47.24999,24.665886,39.516075,32.63373,41.026535,43.499306,16.935831,29.603374,16.917313,20.299143,30.659777,12.0292845,24.945686,25.846615,9.885416,11.497498,35.79005,37.93641,14.230948,7.371725,25.396435,14.42266,47.463894,41.18042,31.53898,26.70854,41.817318,18.587643,27.302015,37.9249,17.246223,20.29222,20.261137,18.472635,1.6978403,5.3523464,27.216286,14.989774,37.282093,43.798225,11.140858,39.308765,18.327957,22.400845,8.772621,12.558758,35.359272,42.77246,34.043358,32.737663,10.243788,35.339653,36.17552,23.022444,41.833157,3.9728432,31.151094,14.369738,16.411682,17.429977,39.23329,39.856827,32.168846,11.030301,27.114464,28.150566,43.661396,28.48759,13.532442,17.88084,33.591137,8.268968,34.50154,21.147612,28.003403,null,23.3575,22.393042,33.656673,24.615952,4.238944,30.568989,24.048723,30.081533,36.94677,4.0093365,11.62233,6.7039156,11.500768,23.121328,16.34355,20.364498,5.8924813,10.542319,23.3067,31.385149,10.083909,24.251793,47.143147,27.020712,22.268574,43.38782,7.5979095,33.311913,21.543726,20.327839,42.25499,50.975445,9.49893,25.799368,18.18848,25.81844,45.65262,16.31711,23.063917,23.5587,7.209301,9.055333,22.063925,23.165777,8.511607,30.776205,31.004808,37.862114,35.92496,26.706186,21.954893,37.70992,9.420055,22.576494,30.07786,6.8152866,36.05605,31.139305,8.137681,35.644806,24.251379,9.163836,30.627476,38.01711,26.315536,15.655153,10.6783695,37.910744,35.037724,30.952187,27.445822,15.642588,22.53216,18.506638,34.96518,11.966307,24.373543,15.910438,40.45717,39.29397,21.140558,12.598303,7.1174808,26.465082,20.753464,11.147902,19.842014,4.8860106,16.660507,22.865458,17.503708,26.356562,17.176012,17.132936,29.439331,31.788998,8.842702,21.266956,16.070667,10.587742,null,22.017708,14.662371,24.163925,11.7514105,38.014244,5.2736416,8.06721,21.025625,21.998434,13.408893,6.450336,26.032612,1.5619688,21.789598,5.759453,18.307673,11.61246,24.976923,37.625725,19.86863,7.046225,18.181065,20.600735,25.738766,9.064388,27.737644,30.280792,15.336747,27.682318,20.094797,35.570805,48.411396,33.821617,4.1560106,45.508522,17.907722,30.339201,4.6605453,36.944603,29.572063,23.509083,37.68417,33.912575,51.787403,6.9615536,14.577664,27.171413,55.500015,26.2748,16.728407,24.856249,60.820652,19.351652,22.965769,32.246185,10.541674,14.839039,2.9581943,21.25019,31.03974,22.502218,11.690026,19.893185,46.8273,23.2202,28.049603,19.572779,27.300209,44.100777,30.502684,7.21759,26.169634,30.197428,34.552902,19.489561,15.809974,29.899805,37.465393,16.345253,53.927803,17.438503,22.222961,37.802826,17.000748,11.959947,28.375065,11.31619,10.9629345,25.615862,25.312393,20.3686,20.29925,9.651755,10.437374,12.812471,20.171864,28.866657,18.320206,11.815114,28.17692,null,17.21745,16.6978,11.455648,15.947751,28.189438,19.207167,39.006725,9.693084,15.48613,9.41434,16.885984,6.362544,25.452227,15.468931,19.774939,7.0648713,19.526196,11.713588,21.697063,16.098068,13.255891,18.727463,22.552444,17.00811,17.540775,10.466418,19.001808,23.906507,11.675161,20.43536,13.500055,38.6379,21.27117,16.65129,36.819565,46.743855,8.055714,31.572876,17.046505,6.6889143,4.5605226,17.150408,19.694407,11.931913,5.474297,20.401722,22.77684,30.328304,28.526594,4.629398,13.167155,8.427129,22.203928,25.090263,22.823753,7.9473066,3.462167,31.33654,30.377653,3.4582095,24.910385,25.830482,62.067688,34.644093,27.518187,18.579172,21.176722,2.1106987,9.509595,19.206232,6.635609,37.905228,20.735113,32.941784,34.02909,22.825323,38.231827,9.739227,30.97129,28.83239,20.878725,6.18727,5.6786523,9.797928,31.164438,34.004295,15.6027775,2.9289064,13.7810545,15.472046,28.804821,13.33682,22.48387,16.06104,29.267035,12.318019,6.348254,11.925836,19.588364,5.5201163,null,15.814729,9.219592,11.307512,11.0866995,12.665458,20.587904,4.297502,11.320501,13.310097,39.590275,39.01214,15.950474,36.1616,7.7156677,22.216114,6.7722964,5.040417,11.872876,34.429733,23.218266,21.606243,17.803951,7.852584,9.259868,6.587798,6.700952,7.231024,6.252888,8.972395,11.721455,15.239,17.41528,35.626823,8.885621,10.244283,13.834936,29.280016,5.0067954,20.456697,34.02684,32.323906,7.885453,12.830153,19.083658,38.554203,16.370207,19.000404,30.098465,62.714375,34.52488,31.954813,13.962493,45.72055,56.170803,40.62277,33.90754,23.892483,25.52844,21.429363,11.6793995,6.042141,26.074219,36.32718,21.069746,23.25653,40.94306,7.328864,43.137833,37.86952,25.65121,9.091229,10.255421,21.300623,46.95434,28.147785,8.54641,23.454487,26.970898,13.917096,30.938574,36.040882,20.577106,24.796179,27.311373,22.273937,24.415798,16.849932,15.61186,27.148073,22.06953,6.9203277,8.673472,6.6625853,27.625687,29.902143,20.5674,11.2397995,35.849426,12.093048,22.682898,null,22.723215,10.2747965,10.020816,26.119713,20.95822,24.1001,4.8117533,5.939074,14.618664,9.239832,13.04658,14.852477,14.9619,29.798075,28.94836,32.861523,43.09864,15.317602,40.25482,23.133888,10.164439,33.467716,41.416058,23.977283,20.75003,19.250206,33.00125,48.749687,23.1421,22.800385,27.513834,23.630783,51.07326,20.210272,29.19139,22.890413,10.27301,0.48854584,22.434452,28.053461,24.824558,14.226531,5.197234,16.148817,45.640312,53.4228,32.663944,37.281616,59.182957,18.679037,14.113445,40.61751,63.836533,36.12417,10.101039,39.999718,49.05096,30.573507,19.531431,31.57908,43.345078,18.421755,9.0044985,28.339773,17.362583,17.767075,8.693091,13.993098,13.296202,21.883217,27.984703,20.337944,19.09494,3.8646214,11.387635,10.106418,0.81856054,13.096312,9.164407,12.13193,11.65467,25.331318,10.556969,21.280851,24.550781,9.296201,24.896587,23.575663,37.478695,21.384912,34.51494,10.241972,20.296858,24.970488,17.744272,46.629887,36.803074,28.294283,29.68337,12.750609,null,6.411004,4.3648553,8.46138,12.108417,1.7021781,7.6263094,5.094901,27.727688,17.394049,23.322348,6.68077,33.238987,10.025288,16.267635,8.511783,6.5934515,28.01201,37.651134,7.7147326,14.398614,23.366957,7.980358,9.384553,20.080973,13.141851,35.671062,25.770813,4.8182635,18.209227,19.69131,18.908907,9.658961,13.742755,8.228049,13.970532,13.054909,45.77352,31.933191,27.044153,46.834995,13.227356,14.126656,29.566092,28.402271,31.107203,26.639868,29.098797,13.978662,31.797552,33.238403,4.21691,27.52895,52.732346,22.09116,17.31299,23.589685,8.715793,26.813314,21.498531,27.894497,47.497116,18.924942,11.332562,2.9447572,20.99472,25.301332,13.991678,24.589363,25.229641,12.544153,11.412087,12.87277,29.0302,21.094973,18.472734,21.225449,50.272602,2.931149,35.683865,21.946938,29.355253,17.986534,10.44919,20.005941,24.25919,36.343895,12.299752,12.8820305,30.541521,15.894539,30.379133,2.2703655,41.433136,21.090513,11.693583,17.207165,5.1458817,24.234993,5.3998203,6.8889775,null,9.406556,7.0217767,2.164057,10.109739,19.933077,12.941876,6.2358623,9.418513,3.5735643,10.389876,24.581034,23.622301,10.287184,14.83618,31.174854,29.662317,27.763275,36.126442,14.362915,33.993095,22.873276,25.908987,20.106188,26.283108,10.456995,14.043461,21.412514,24.949577,16.754507,32.302113,26.994495,12.269578,41.568,34.706543,21.98275,14.0892725,19.66841,8.64815,8.262897,13.763938,26.502779,30.463425,7.5442095,20.909096,20.270056,10.857143,21.302696,21.927343,38.35373,7.3735456,33.40119,7.0828023,34.40669,1.499492,30.506273,27.478426,50.64523,31.127762,63.67809,34.637775,26.885653,23.787397,8.548039,26.99223,19.496376,25.950232,19.359932,12.293613,5.8911476,1.7667457,20.325914,5.648121,11.581595,34.067303,37.718857,10.559538,36.012127,19.587694,33.65507,12.811522,14.228691,21.782415,18.622057,14.098663,19.272686,9.928675,12.662884,23.149765,13.842286,30.79483,35.6355,17.823494,30.515474,36.77021,37.716198,37.008312,21.154577,39.227627,14.917304,27.320608,null,30.21,29.391142,17.183468,6.660977,17.161797,4.10337,21.214909,20.802296,30.172384,18.210205,23.000977,9.015029,22.698816,18.970152,10.485183,20.655365,5.311166,13.24698,33.412178,24.509256,5.0805435,13.851805,5.2783623,14.744692,37.782368,35.32076,9.077278,14.08983,7.256088,35.88476,25.168644,4.1459303,10.181463,23.490124,7.881858,29.875296,18.227818,25.0633,13.427265,23.620289,41.785793,33.933598,9.317623,28.946226,21.099648,31.313759,37.471447,24.131912,37.156086,14.278894,13.138009,25.326159,5.1806774,26.532879,29.527538,27.095253,17.8789,21.019415,11.894719,18.354239,25.939932,5.358558,26.376768,12.957531,13.07377,20.455877,11.636299,13.925,33.837605,7.9481516,29.072218,14.614747,24.409098,41.980396,41.330135,33.025764,15.881935,12.955244,23.006826,7.285453,22.088251,8.723059,20.69528,17.397024,27.069128,12.435327,25.8911,3.8864694,28.712082,11.239531,32.020046,14.65678,28.378965,19.781689,24.222315,31.586107,7.1634393,20.096004,24.717102,27.022806,null,13.5748415,9.51021,9.432591,9.773161,18.198927,8.6365385,6.261408,19.341726,22.368462,49.920563,8.464106,22.675396,24.542658,28.188665,8.364524,16.447264,7.421497,22.063435,24.694477,22.61742,37.352352,17.559961,26.103582,15.606191,11.03739,16.203382,28.456944,22.304895,35.985283,31.880411,2.2685802,19.169472,17.530182,10.672279,5.4914722,3.9196446,9.833733,20.612122,10.528959,34.91772,22.964111,26.012678,13.657449,27.750551,28.386724,12.922537,11.594368,30.407948,15.449337,15.5641985,44.703762,37.091976,17.86762,21.48438,32.52187,35.04237,6.3184156,37.937775,34.005146,14.059466,7.470742,36.837395,32.089447,31.089306,19.497484,32.96707,15.813226,12.497693,6.3236046,13.091874,22.856329,26.273487,25.044273,42.69173,11.918648,41.141167,28.851269,24.242016,22.522865,20.631899,25.610723,22.574799,8.926528,17.002129,15.306001,27.02016,11.521359,19.277296,16.244843,12.270511,6.8129396,24.183466,34.56678,13.677947,12.072243,23.958263,18.441462,7.2686844,22.853228,8.508252,null,29.737864,8.316759,8.791016,23.898445,14.3014345,5.324354,29.218294,18.712774,11.629352,28.412323,16.122465,36.68542,27.713041,9.3760805,8.078264,5.7632213,14.00484,10.556168,10.933231,35.680634,24.513092,16.46585,30.268778,7.661846,31.724401,21.984816,26.397408,20.43938,34.31229,19.568369,21.390972,14.415249,26.81093,9.604238,11.282848,6.755674,16.079268,24.029963,6.293291,42.25234,27.065372,32.452007,29.032845,9.238407,17.25516,27.439934,25.635353,4.9815936,12.41445,22.930521,23.392809,10.032661,1.5642506,3.467804,13.68842,22.096502,45.836582,10.604916,14.446206,11.320886,3.7100532,24.880983,10.777652,17.7712,7.263064,29.91277,34.126236,10.466298,9.796154,12.39148,13.758816,21.593029,21.037651,37.79757,23.75779,29.891981,20.973923,23.763634,10.263011,19.155401,9.62403,14.808418,19.76927,16.428682,11.464571,21.969233,12.706106,14.1945505,16.716301,9.191103,28.775204,17.254946,10.912052,11.449196,16.884748,7.593217,30.751112,24.695555,30.235136,33.979576,null,4.87191,32.34024,3.1027887,27.122066,22.42903,3.3338444,22.409975,7.7280493,26.848099,29.394226,15.074206,7.660181,31.67164,9.209981,14.0029955,15.5762615,21.290796,24.347092,23.836079,20.130178,29.494514,10.809903,22.710161,17.578901,29.070642,21.865211,18.263145,18.25994,18.91427,7.450264,10.622795,6.9225616,24.390806,22.740248,10.236675,39.378815,20.946999,32.60959,8.0177555,2.1416178,21.18217,14.440108,5.808834,8.467524,24.794622,15.327689,19.212759,18.824308,6.852421,18.25329,34.31768,28.788857,37.619686,23.070175,18.195677,46.05739,47.187256,14.004152,12.753831,19.281092,12.901165,26.194195,30.783278,32.01887,14.650869,12.407728,11.931672,23.0424,7.06434,12.367495,6.501315,13.420939,14.324617,26.486668,30.353222,30.942572,13.282145,20.714382,11.458815,36.903732,29.430996,18.491716,6.9084444,10.519542,26.260126,10.354981,25.72365,2.8199754,11.524105,16.873756,14.693251,19.721556,9.17952,16.568312,20.713179,6.942917,16.650587,25.185785,9.365568,24.849558,null,10.803623,6.5112753,3.5218995,5.862966,7.888722,1.8006443,17.969416,21.432741,17.251162,14.413808,13.814019,31.903131,25.579178,36.867027,11.974881,12.909341,15.72217,4.365791,21.358763,8.749275,18.701015,13.480755,28.224628,28.221111,30.606623,32.903934,32.62216,15.664678,38.729866,15.848775,9.944813,19.635992,1.4667412,23.808714,16.646925,6.604072,25.569586,43.24119,20.730742,21.607985,11.066889,24.830263,18.238964,32.76067,20.267075,30.539118,19.342018,4.61514,19.040197,5.173354,17.53932,16.589178,2.2779047,11.302694,14.657235,32.648796,22.172264,14.1632,6.3735433,7.2833085,1.2659407,21.906643,10.549992,29.363861,26.14231,28.970747,31.667307,12.378623,30.415781,28.07308,9.688486,29.296507,29.828783,1.7673106,19.1276,13.862097,18.440329,3.6810234,2.6319666,8.971537,16.273134,24.569283,20.248394,3.5384786,29.520388,10.871757,30.42232,12.762649,38.09985,19.450975,11.822961,27.035614,34.309685,15.980443,22.145773,20.33245,27.30742,14.270013,11.213353,17.436514,null,32.610813,12.608352,30.297045,1.5957483,9.145626,12.157534,20.414415,11.476734,25.830946,20.98589,9.563319,13.0913105,20.211018,19.126108,11.069253,13.569169,17.759623,3.3832695,19.377378,14.427951,31.13005,23.604832,18.344532,23.957712,18.462954,12.021477,31.168222,32.935375,14.068096,8.345522,2.8265953,7.998279,27.35863,24.781174,20.558954,15.831559,14.7788515,35.59408,19.478113,9.552868,17.109846,22.116625,6.5255914,11.461137,21.629896,24.277536,16.509535,9.225583,15.816746,26.588482,5.7623615,28.992874,20.632168,36.201157,14.781857,15.648268,11.621237,24.453342,8.949486,9.726566,12.604933,12.3264265,12.600955,17.727322,7.7859783,22.486423,35.42429,16.611439,38.610603,38.33902,17.001612,13.483765,17.91902,33.0894,32.468277,16.802488,56.47912,11.736573,43.748085,34.474766,16.584948,6.4618173,3.6876626,22.050806,25.959225,10.583986,10.420444,23.727839,17.962223,5.986024,9.116576,22.442007,23.339142,16.839024,18.432037,4.5710897,31.858023,21.4545,16.778625,24.871208,null,9.852192,13.5476265,14.698743,8.210558,6.130347,4.6265,7.1175795,13.942605,18.698032,4.191477,5.066941,28.569931,25.45313,9.094837,15.240563,15.834888,11.597591,9.6098,46.58017,42.27723,24.56855,30.45873,8.3392315,3.5343556,14.763006,27.533314,22.418549,18.268984,10.597885,14.2098675,22.405914,19.196468,5.3459,10.962378,10.337032,6.4756827,12.40105,25.273272,26.147024,21.81185,11.8330965,10.116568,21.72349,16.613548,3.6490266,13.831034,21.585182,14.682422,4.697997,23.820293,12.339558,2.6983566,16.16889,33.035603,34.607742,27.571905,19.927309,22.605062,20.66838,10.854671,17.864464,14.346125,18.306435,31.63792,15.5489855,14.852924,11.286343,5.274884,10.095374,14.757531,31.443094,27.73132,13.9444,32.749176,18.899723,31.404564,45.465622,2.3165681,45.608215,26.707499,26.442692,33.531303,9.245591,13.702781,17.073812,10.07983,19.66136,6.321735,18.389708,18.595444,5.7667556,22.6796,5.5743895,14.7621,14.287106,24.495302,11.319739,22.521437,9.725654,14.815213,null,18.897837,31.205923,17.625711,7.0779214,17.752811,13.721267,9.183625,3.8485866,13.995304,24.565138,9.197815,14.855454,10.4323435,9.202181,28.722822,32.905235,26.497845,30.359621,22.686882,29.912775,18.24287,21.36774,9.834467,22.815533,14.045442,34.848503,6.1281624,32.1941,13.09059,39.324364,38.018097,11.8667555,25.025852,29.619757,14.983098,14.989869,15.781431,7.794939,18.565718,19.609467,6.313678,10.028162,9.344783,22.356068,54.615982,33.065403,9.327167,19.597473,42.870872,22.359953,13.145657,35.378567,35.96973,13.929335,17.382208,20.554638,24.465063,20.947403,11.683393,20.356129,28.10509,7.595256,20.166212,27.098465,18.465229,28.168133,8.757662,30.395737,35.154957,22.068373,14.545635,26.739012,33.055424,36.568447,33.065403,16.377766,5.5808434,9.769158,16.945158,17.133818,15.926823,5.5083566,23.586082,17.326557,16.08875,5.806282,21.479624,21.80889,16.496649,19.299675,17.358746,15.5338,13.540583,35.666214,28.934544,19.523903,17.358458,22.270626,15.637575,11.018014,null,8.746252,1.3849211,2.197798,4.9468226,6.6875324,13.276336,10.46609,25.82644,20.259428,20.38057,17.623854,11.831241,17.657953,18.113115,42.172592,36.206272,20.256,24.333378,19.457214,29.191393,14.443799,36.358746,34.430412,13.558743,11.756673,44.131,53.51989,14.979018,30.45723,17.712587,7.382186,5.6675367,11.000304,12.068523,23.333204,28.644634,10.16339,19.081163,16.14101,19.942823,21.195148,13.239108,17.898396,38.16962,6.3893843,42.648888,32.092102,38.008263,51.094166,28.535921,7.7877235,42.65581,71.33351,44.77508,20.298967,26.785833,18.370659,19.917355,12.182184,8.029314,23.669842,28.788849,10.671726,13.669344,27.510641,42.559624,19.298368,39.61542,52.992767,16.276657,22.089771,4.803557,18.864017,18.216969,27.892115,37.26301,8.225166,18.516996,19.027756,22.272293,47.56715,38.238285,31.862911,24.335749,11.647054,5.803289,19.303234,8.8418045,12.468269,3.933479,10.75351,9.55005,14.695371,24.694654,3.829178,22.678366,7.2537394,35.145046,15.654149,36.199806,null,8.056042,1.6767508,13.168851,5.2048144,20.903439,21.980572,9.886015,9.324811,11.83187,20.245066,23.078857,17.718332,10.6915245,19.677622,27.385025,5.3004117,23.79329,15.523767,23.017965,36.678097,38.924686,6.625447,37.022644,18.925306,19.692533,29.175423,48.570595,32.636127,39.74565,34.510406,14.555488,25.96946,24.802568,31.76731,29.93748,14.442445,29.256315,25.94767,4.66182,21.686066,15.377198,26.898657,30.399035,14.803073,32.6946,40.162655,26.180971,28.355148,46.975826,46.558453,43.047348,34.657967,33.45756,59.20718,33.48542,5.3766947,26.555937,26.187664,10.9093485,11.857363,5.1051497,6.077087,1.3875086,10.746077,19.643549,38.876755,38.819405,9.08589,26.262486,24.950949,14.47702,12.098288,19.968954,30.238363,17.861494,14.255815,25.90414,31.326015,14.859921,21.421606,14.480069,19.743315,21.57549,18.517809,12.90531,22.22746,40.432518,32.33526,29.053305,30.553253,13.683981,32.909,21.673368,33.879196,28.890635,29.239971,11.017285,45.26517,33.617664,25.628597,null,9.207133,12.236831,9.027141,12.086415,6.236874,11.970154,10.195486,23.837135,14.976124,12.704118,32.730915,15.002286,10.254365,9.060827,24.260471,28.81139,26.020346,26.198265,16.348274,8.067198,42.352814,3.076055,37.794746,13.557297,17.567131,17.537762,11.439358,9.559229,26.951399,23.386475,25.375257,18.601696,7.8517327,1.0629934,8.518987,24.537746,10.174597,12.40728,13.9681425,15.542905,13.388154,11.21237,21.075315,12.46318,7.8307743,20.23268,20.399525,15.801973,29.387695,35.2743,23.992973,7.21525,9.859918,27.606598,36.077625,30.874882,11.904773,8.550448,3.3252008,24.344175,41.673763,39.61261,14.456998,13.404731,3.9171703,2.0585084,32.221165,39.16318,19.271635,28.207726,23.607376,19.281328,13.439581,41.510567,22.394407,34.622837,37.107742,11.514199,13.83248,14.057269,10.586184,18.469242,23.449207,0.7261393,23.630306,16.612457,40.527447,20.80252,22.334862,8.893969,25.073112,11.173168,16.34215,19.572767,15.087959,22.830395,21.825777,12.045758,17.28671,8.199602,null,27.561556,5.5759144,4.2393804,3.6801755,17.627056,7.927914,24.221714,26.481983,14.519661,6.431634,10.549762,7.083753,10.114482,17.348925,13.961972,0.39093286,15.357663,26.425653,28.745277,34.369503,13.38651,25.023008,29.254047,53.09059,34.63362,13.636661,17.753061,18.28703,18.044706,12.790203,22.322447,29.901339,20.29594,6.146282,30.106321,28.820225,9.60913,27.807817,38.05024,23.191483,18.407866,11.055507,17.396612,14.5399685,23.198683,24.702951,18.418251,23.057959,26.801632,24.856287,30.839449,39.36226,37.134125,24.9017,18.727137,6.9460163,10.528239,25.80142,10.813474,21.174133,16.669601,19.025305,26.827957,23.610193,17.893654,3.9377124,20.253496,11.823357,11.1341095,13.550052,33.183487,19.401203,18.483397,27.356005,41.375515,18.22438,21.871595,7.0710835,28.9869,14.993569,19.186365,27.82741,29.197248,15.92751,1.9835202,15.915302,5.1560555,9.996118,11.696116,8.070924,9.17518,9.877724,23.487457,16.859598,11.224694,20.525917,17.018526,37.621773,13.373239,30.25739,null,14.958603,11.954533,22.040052,12.554511,9.753388,25.33033,9.198689,42.50118,28.92818,12.696762,32.66232,14.158997,10.144659,10.3959055,11.133298,23.109186,18.654593,10.769766,5.056388,24.237171,32.310104,19.406347,32.54925,44.654884,14.583066,20.587055,25.860138,23.263327,8.900457,44.507557,63.78571,17.560633,18.243914,28.126898,36.61441,13.232576,23.07376,10.769747,11.195099,14.39204,22.42115,30.435465,14.8793335,13.765082,9.087333,9.913101,28.142134,43.003696,42.261124,39.62913,38.92325,44.575146,47.561657,31.729477,17.40647,22.559855,20.7626,18.256168,18.315678,24.532253,24.923185,9.653577,26.945217,23.094482,17.991112,14.782353,19.14268,11.526403,12.927339,23.146408,6.0206485,21.58672,17.12527,10.423764,21.452934,25.275423,19.234371,4.941039,37.086487,40.175518,14.3534975,31.086956,25.872522,7.932542,13.698751,4.338539,11.689731,12.640987,13.124292,14.977173,18.208216,20.091324,25.13535,14.340072,4.7615595,16.23082,23.545284,13.959433,9.993468,8.230675,null,20.479372,8.072899,12.231709,14.401154,23.575678,24.994986,11.594484,16.886818,11.26013,8.514358,13.273001,19.531551,11.169069,18.163866,16.241663,21.557928,9.787018,3.5304909,15.90424,21.088886,17.676117,4.106391,30.52182,22.438385,25.37459,44.340927,20.550993,24.205849,38.70517,17.147207,6.4541755,12.180817,19.894464,29.942604,18.170158,2.3454287,8.08958,17.406937,25.540346,22.199585,6.672052,23.240446,13.572134,4.1079154,23.512663,46.10179,39.25891,28.244621,29.892767,41.828697,31.401365,14.98491,7.145671,20.044209,18.736929,25.322987,34.253307,33.82837,15.565479,15.688826,1.0723988,22.034641,3.5791562,26.574242,23.16357,9.0964775,6.7072206,6.902783,12.789458,23.17689,18.13777,27.177841,46.06346,20.93615,30.72378,29.616371,15.4737,26.546087,22.132238,12.728139,7.8714967,4.6948085,7.219833,5.228735,12.663385,4.7556396,25.103615,26.218594,17.49305,16.903301,12.931569,18.94541,36.259953,20.525162,24.117981,20.455883,28.667925,22.927505,21.857582,21.189878,null,17.315023,15.926229,25.453262,7.7676444,10.363526,9.569027,14.941621,17.733583,8.471488,9.286082,30.896173,23.217468,4.1803503,14.512997,8.663535,10.348502,13.708114,9.0591955,15.963439,28.6499,32.18341,19.591215,17.068707,7.3482842,21.081001,11.9171505,30.585793,16.96436,9.596023,15.367161,9.417648,30.320353,31.111252,34.111835,6.125665,31.500803,19.013685,27.932722,17.79786,15.431342,18.503933,34.62594,28.321125,7.6547527,15.26549,20.990538,11.520098,15.278414,9.4299135,31.633463,24.727926,31.454733,9.634206,27.9105,30.9097,11.324826,13.008813,5.4372787,19.330545,47.487934,42.836708,18.193417,23.923868,33.74063,3.537692,25.03673,17.497206,13.887441,26.579807,26.233166,18.833143,7.398328,20.204123,10.246392,32.50286,28.959352,12.850284,35.098186,11.313769,13.134172,24.785759,11.3035145,7.7055917,5.5801573,21.033924,13.022208,6.263956,6.456571,15.740196,8.402742,16.643574,33.210358,24.506208,5.551789,32.311844,22.38801,10.90648,15.061117,14.738021,26.34456,null,24.423143,14.576908,11.970605,8.50026,22.07234,24.22015,17.192177,10.124484,43.29791,29.461445,23.296041,30.443167,26.30191,11.673459,24.366133,18.651068,24.961472,33.480595,33.992214,20.246002,27.860498,8.716636,24.061861,22.691935,42.035698,34.530903,16.61869,15.052574,25.23583,14.726722,14.332147,33.106983,29.1456,13.921356,11.966533,21.001602,31.699165,41.682476,13.771236,35.584675,17.037426,7.352368,18.075893,12.805316,5.444956,17.007416,20.537783,22.353506,10.930013,10.02447,11.236409,15.018138,9.39351,19.185152,21.07326,23.44914,23.071857,14.951868,23.988071,16.90229,16.719772,12.016233,37.177963,29.910088,7.98806,18.235554,6.9656563,27.49896,5.4826746,11.960228,27.57646,30.343763,13.06497,6.8817,17.579592,12.0936165,3.2291398,25.722233,29.797527,3.5920348,12.600205,13.78197,22.197674,5.5646453,24.039581,8.08988,7.242051,17.9368,33.037567,31.835917,7.378994,18.388527,30.373219,18.166523,36.939762,13.7685175,29.251444,25.436602,14.152954,15.900633,null,5.431179,11.168392,16.043947,12.855488,32.020813,11.438653,34.90181,15.66736,25.690454,10.051344,29.884005,29.46998,8.257065,11.329689,15.246568,8.330453,10.366861,38.542164,12.943016,18.388178,15.770852,17.649654,2.8656828,13.002232,5.966967,6.485243,15.459543,23.034742,42.33742,36.518265,12.3442,31.622746,42.511257,5.10385,35.391026,6.9898086,11.344196,30.317587,26.219366,21.80612,7.075432,16.10993,15.48308,9.05559,21.086433,24.415726,15.851793,14.448033,7.966493,9.942686,17.13064,5.173437,6.9533195,7.394223,6.074753,14.566541,24.541843,28.896759,25.197504,6.9727745,18.278633,17.627861,19.481762,21.516361,25.132963,36.02067,20.27094,5.9236507,8.373006,13.815855,19.306614,14.661663,6.2262626,4.6736436,12.288897,27.736753,21.030367,17.867456,25.524588,25.724304,20.358885,3.2493718,11.559149,4.955993,5.2891765,14.908601,16.502356,16.984713,14.410446,12.047071,10.040122,18.906122,9.612478,7.2618527,27.979311,18.199783,11.323341,20.99411,22.770699,20.95011,null,15.624723,34.42046,7.0465837,12.769563,8.216312,15.811273,19.28171,33.46195,15.680722,17.3428,29.106153,15.134161,22.644865,15.796647,17.845974,6.099847,5.030743,33.385994,22.114489,4.52143,2.0289032,15.533402,25.541424,27.430109,23.80602,7.7421823,14.426267,21.374369,6.3996525,28.574036,14.32015,23.84558,29.665613,27.79648,28.558653,21.637697,3.6471539,27.234787,20.467588,12.695024,18.923454,10.5538435,18.11159,7.96095,11.049647,10.019389,38.735428,32.419754,20.945976,19.82726,20.333284,23.97659,28.662659,25.859312,24.25392,11.685855,5.2396107,3.14309,5.9059367,7.25922,19.776323,21.256721,16.007378,23.781471,18.762518,23.271711,23.34824,20.38268,43.2738,25.08729,20.119867,21.11768,6.7615705,3.1416981,5.3498125,11.741764,27.812475,13.190677,18.776989,18.464739,9.623253,7.5203714,7.9960985,19.911499,10.071138,12.9873,26.08726,32.903286,17.65872,24.783981,31.438637,6.8812037,18.267876,25.51323,27.498755,19.764292,30.866865,14.335879,38.762432,13.446062,null],"type":"scatter","name":"|S(t)|","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[4.184,4.188,4.192,4.196,4.2,4.204,4.208,4.212,4.216,4.22,4.224,4.228,4.232,4.236,4.24,4.244,4.248,4.252,4.256,4.26,4.264,4.268,4.272,4.276,4.28,4.284,4.288,4.292,4.296,4.3,4.304,4.308,4.312,4.316,4.32,4.324,4.328,4.332,4.336,4.34,4.344,4.348,4.352,4.356,4.36,4.364,4.368,4.372,4.376,4.38,4.384,4.388,4.392,4.396,4.4,4.404,4.408,4.412,4.416,4.42,4.424,4.428,4.432,4.436,4.44,4.444,4.448,4.452,4.456,4.46,4.464,4.468,4.472,4.476,4.48,4.484,4.488,4.492,4.496,4.5,4.5040000000000004,4.508,4.5120000000000005,4.516,4.5200000000000005,4.524,4.5280000000000005,4.532,4.5360000000000005,4.54,4.5440000000000005,4.548,4.5520000000000005,4.556,4.5600000000000005,4.564,4.5680000000000005,4.572,4.5760000000000005,4.58,4.58,5.0440000000000005,5.048,5.0520000000000005,5.056,5.0600000000000005,5.064,5.0680000000000005,5.072,5.0760000000000005,5.08,5.0840000000000005,5.088,5.0920000000000005,5.096,5.1000000000000005,5.104,5.1080000000000005,5.112,5.1160000000000005,5.12,5.1240000000000006,5.128,5.132000000000001,5.136,5.140000000000001,5.144,5.148000000000001,5.152,5.156000000000001,5.16,5.164000000000001,5.168,5.172000000000001,5.176,5.180000000000001,5.184,5.188000000000001,5.192,5.196000000000001,5.2,5.204000000000001,5.208,5.212000000000001,5.216,5.220000000000001,5.224,5.228000000000001,5.232,5.236000000000001,5.24,5.244000000000001,5.248,5.252000000000001,5.256,5.260000000000001,5.264,5.268000000000001,5.272,5.276000000000001,5.28,5.284000000000001,5.288,5.292000000000001,5.296,5.300000000000001,5.304,5.308000000000001,5.312,5.316000000000001,5.32,5.324000000000001,5.328,5.332000000000001,5.336,5.340000000000001,5.344,5.348000000000001,5.352,5.356000000000001,5.36,5.364000000000001,5.368,5.372000000000001,5.376,5.380000000000001,5.384,5.388000000000001,5.392,5.396000000000001,5.4,5.404000000000001,5.408,5.412000000000001,5.416,5.420000000000001,5.424,5.428000000000001,5.432,5.436000000000001,5.44,5.44,5.904,5.9079999999999995,5.912,5.9159999999999995,5.92,5.9239999999999995,5.928,5.9319999999999995,5.936,5.9399999999999995,5.944,5.9479999999999995,5.952,5.9559999999999995,5.96,5.9639999999999995,5.968,5.9719999999999995,5.976,5.9799999999999995,5.984,5.9879999999999995,5.992,5.9959999999999996,6.0,6.004,6.008,6.012,6.016,6.02,6.024,6.028,6.032,6.036,6.04,6.044,6.048,6.052,6.056,6.06,6.064,6.068,6.072,6.076,6.08,6.084,6.088,6.092,6.096,6.1,6.104,6.108,6.112,6.116,6.12,6.124,6.128,6.132,6.136,6.14,6.144,6.148,6.152,6.156,6.16,6.164,6.168,6.172,6.176,6.18,6.184,6.188,6.192,6.196,6.2,6.204,6.208,6.212,6.216,6.22,6.224,6.228,6.232,6.236,6.24,6.244,6.248,6.252,6.256,6.26,6.264,6.268,6.272,6.276,6.28,6.284,6.288,6.292,6.296,6.3,6.3,6.764,6.768,6.772,6.776,6.78,6.784,6.788,6.792,6.796,6.8,6.804,6.808,6.812,6.816,6.82,6.824,6.828,6.832,6.836,6.84,6.844,6.848,6.852,6.856,6.86,6.864,6.868,6.872,6.876,6.88,6.884,6.888,6.892,6.896,6.9,6.904,6.908,6.912,6.916,6.92,6.924,6.928,6.932,6.936,6.94,6.944,6.948,6.952,6.956,6.96,6.964,6.968,6.972,6.976,6.98,6.984,6.988,6.992,6.996,7.0,7.0040000000000004,7.008,7.0120000000000005,7.016,7.0200000000000005,7.024,7.0280000000000005,7.032,7.0360000000000005,7.04,7.0440000000000005,7.048,7.0520000000000005,7.056,7.0600000000000005,7.064,7.0680000000000005,7.072,7.0760000000000005,7.08,7.0840000000000005,7.088,7.0920000000000005,7.096,7.1000000000000005,7.104,7.1080000000000005,7.112,7.1160000000000005,7.12,7.1240000000000006,7.128,7.132000000000001,7.136,7.140000000000001,7.144,7.148000000000001,7.152,7.156000000000001,7.16,7.16,7.6240000000000006,7.628,7.632000000000001,7.636,7.640000000000001,7.644,7.648000000000001,7.652,7.656000000000001,7.66,7.664000000000001,7.668,7.672000000000001,7.676,7.680000000000001,7.684,7.688000000000001,7.692,7.696000000000001,7.7,7.704000000000001,7.708,7.712000000000001,7.716,7.720000000000001,7.724,7.728000000000001,7.732,7.736000000000001,7.74,7.744000000000001,7.748,7.752000000000001,7.756,7.760000000000001,7.764,7.768000000000001,7.772,7.776000000000001,7.78,7.784000000000001,7.788,7.792000000000001,7.796,7.800000000000001,7.804,7.808000000000001,7.812,7.816000000000001,7.82,7.824000000000001,7.828,7.832000000000001,7.836,7.840000000000001,7.844,7.848000000000001,7.852,7.856000000000001,7.86,7.864000000000001,7.868,7.872000000000001,7.876,7.880000000000001,7.884,7.888000000000001,7.892,7.896000000000001,7.9,7.904000000000001,7.908,7.912000000000001,7.916,7.920000000000001,7.924,7.928000000000001,7.932,7.936000000000001,7.94,7.944000000000001,7.948,7.952000000000001,7.956,7.960000000000001,7.964,7.968000000000001,7.972,7.976000000000001,7.98,7.984000000000001,7.988,7.992000000000001,7.996,8.0,8.004000000000001,8.008000000000001,8.012,8.016,8.020000000000001,8.020000000000001,8.484,8.488,8.491999999999999,8.496,8.5,8.504,8.508,8.512,8.516,8.52,8.524,8.528,8.532,8.536,8.54,8.544,8.548,8.552,8.556,8.56,8.564,8.568,8.572,8.576,8.58,8.584,8.588,8.592,8.596,8.6,8.604,8.608,8.612,8.616,8.62,8.624,8.628,8.632,8.636,8.64,8.644,8.648,8.652,8.656,8.66,8.664,8.668,8.672,8.676,8.68,8.684,8.688,8.692,8.696,8.7,8.704,8.708,8.712,8.716,8.72,8.724,8.728,8.732,8.736,8.74,8.744,8.748,8.752,8.756,8.76,8.764,8.768,8.772,8.776,8.78,8.784,8.788,8.792,8.796,8.8,8.804,8.808,8.812,8.816,8.82,8.824,8.828,8.832,8.836,8.84,8.844,8.848,8.852,8.856,8.86,8.864,8.868,8.872,8.876,8.88,8.88,9.344,9.347999999999999,9.351999999999999,9.356,9.36,9.363999999999999,9.367999999999999,9.372,9.376,9.379999999999999,9.383999999999999,9.388,9.392,9.395999999999999,9.399999999999999,9.404,9.408,9.411999999999999,9.415999999999999,9.42,9.424,9.427999999999999,9.431999999999999,9.436,9.44,9.443999999999999,9.447999999999999,9.452,9.456,9.459999999999999,9.463999999999999,9.468,9.472,9.475999999999999,9.479999999999999,9.484,9.488,9.491999999999999,9.495999999999999,9.5,9.504,9.508,9.511999999999999,9.516,9.52,9.524,9.527999999999999,9.532,9.536,9.54,9.543999999999999,9.548,9.552,9.556,9.559999999999999,9.564,9.568,9.572,9.575999999999999,9.58,9.584,9.588,9.591999999999999,9.596,9.6,9.604,9.607999999999999,9.612,9.616,9.62,9.623999999999999,9.628,9.632,9.636,9.639999999999999,9.644,9.648,9.652,9.655999999999999,9.66,9.664,9.668,9.671999999999999,9.676,9.68,9.684,9.687999999999999,9.692,9.696,9.7,9.703999999999999,9.708,9.712,9.716,9.719999999999999,9.724,9.728,9.732,9.735999999999999,9.74,9.74,10.204,10.208,10.212,10.216000000000001,10.22,10.224,10.228,10.232000000000001,10.236,10.24,10.244,10.248000000000001,10.252,10.256,10.26,10.264000000000001,10.268,10.272,10.276,10.280000000000001,10.284,10.288,10.292,10.296000000000001,10.3,10.304,10.308,10.312000000000001,10.316,10.32,10.324,10.328000000000001,10.332,10.336,10.34,10.344000000000001,10.348,10.352,10.356,10.360000000000001,10.364,10.368,10.372,10.376000000000001,10.38,10.384,10.388,10.392000000000001,10.396,10.4,10.404,10.408000000000001,10.412,10.416,10.42,10.424000000000001,10.428,10.432,10.436,10.440000000000001,10.444,10.448,10.452,10.456000000000001,10.46,10.464,10.468,10.472000000000001,10.476,10.48,10.484,10.488000000000001,10.492,10.496,10.5,10.504000000000001,10.508000000000001,10.512,10.516,10.520000000000001,10.524000000000001,10.528,10.532,10.536000000000001,10.540000000000001,10.544,10.548,10.552000000000001,10.556000000000001,10.56,10.564,10.568000000000001,10.572000000000001,10.576,10.58,10.584000000000001,10.588000000000001,10.592,10.596,10.600000000000001,10.600000000000001,11.064,11.068,11.072,11.076,11.08,11.084,11.088,11.092,11.096,11.1,11.104,11.108,11.112,11.116,11.12,11.124,11.128,11.132,11.136,11.14,11.144,11.148,11.152,11.156,11.16,11.164,11.168,11.172,11.176,11.18,11.184,11.188,11.192,11.196,11.2,11.204,11.208,11.212,11.216,11.22,11.224,11.228,11.232,11.236,11.24,11.244,11.248,11.252,11.256,11.26,11.264,11.268,11.272,11.276,11.28,11.284,11.288,11.292,11.296,11.3,11.304,11.308,11.312,11.316,11.32,11.324,11.328,11.332,11.336,11.34,11.344,11.348,11.352,11.356,11.36,11.364,11.368,11.372,11.376,11.38,11.384,11.388,11.392,11.396,11.4,11.404,11.408,11.412,11.416,11.42,11.424,11.428,11.432,11.436,11.44,11.444,11.448,11.452,11.456,11.46,11.46,11.924,11.927999999999999,11.931999999999999,11.936,11.94,11.943999999999999,11.947999999999999,11.952,11.956,11.959999999999999,11.963999999999999,11.968,11.972,11.975999999999999,11.979999999999999,11.984,11.988,11.991999999999999,11.995999999999999,12.0,12.004,12.008,12.011999999999999,12.016,12.02,12.024,12.027999999999999,12.032,12.036,12.04,12.043999999999999,12.048,12.052,12.056,12.059999999999999,12.064,12.068,12.072,12.075999999999999,12.08,12.084,12.088,12.091999999999999,12.096,12.1,12.104,12.107999999999999,12.112,12.116,12.12,12.123999999999999,12.128,12.132,12.136,12.139999999999999,12.144,12.148,12.152,12.155999999999999,12.16,12.164,12.168,12.171999999999999,12.176,12.18,12.184,12.187999999999999,12.192,12.196,12.2,12.203999999999999,12.208,12.212,12.216,12.219999999999999,12.224,12.228,12.232,12.235999999999999,12.24,12.244,12.248,12.251999999999999,12.256,12.26,12.264,12.267999999999999,12.272,12.276,12.28,12.283999999999999,12.288,12.292,12.296,12.299999999999999,12.304,12.308,12.312,12.315999999999999,12.32,12.32,12.784,12.788,12.792,12.796000000000001,12.8,12.804,12.808,12.812000000000001,12.816,12.82,12.824,12.828000000000001,12.832,12.836,12.84,12.844000000000001,12.848,12.852,12.856,12.860000000000001,12.864,12.868,12.872,12.876000000000001,12.88,12.884,12.888,12.892000000000001,12.896,12.9,12.904,12.908000000000001,12.912,12.916,12.92,12.924000000000001,12.928,12.932,12.936,12.940000000000001,12.944,12.948,12.952,12.956000000000001,12.96,12.964,12.968,12.972000000000001,12.976,12.98,12.984,12.988000000000001,12.992,12.996,13.0,13.004000000000001,13.008000000000001,13.012,13.016,13.020000000000001,13.024000000000001,13.028,13.032,13.036000000000001,13.040000000000001,13.044,13.048,13.052000000000001,13.056000000000001,13.06,13.064,13.068000000000001,13.072000000000001,13.076,13.08,13.084000000000001,13.088000000000001,13.092,13.096,13.100000000000001,13.104000000000001,13.108,13.112,13.116000000000001,13.120000000000001,13.124,13.128,13.132000000000001,13.136000000000001,13.14,13.144,13.148000000000001,13.152000000000001,13.156,13.16,13.164000000000001,13.168000000000001,13.172,13.176,13.180000000000001,13.180000000000001,13.644,13.648,13.652,13.656,13.66,13.664,13.668,13.672,13.676,13.68,13.684,13.688,13.692,13.696,13.7,13.704,13.708,13.712,13.716,13.72,13.724,13.728,13.732,13.736,13.74,13.744,13.748,13.752,13.756,13.76,13.764,13.768,13.772,13.776,13.78,13.784,13.788,13.792,13.796,13.8,13.804,13.808,13.812,13.816,13.82,13.824,13.828,13.832,13.836,13.84,13.844,13.848,13.852,13.856,13.86,13.864,13.868,13.872,13.876,13.88,13.884,13.888,13.892,13.896,13.9,13.904,13.908,13.912,13.916,13.92,13.924,13.928,13.932,13.936,13.94,13.944,13.948,13.952,13.956,13.96,13.964,13.968,13.972,13.976,13.98,13.984,13.988,13.992,13.996,14.0,14.004,14.008000000000001,14.012,14.016,14.02,14.024000000000001,14.028,14.032,14.036,14.040000000000001,14.040000000000001,14.504,14.508,14.511999999999999,14.516,14.52,14.524,14.527999999999999,14.532,14.536,14.54,14.543999999999999,14.548,14.552,14.556,14.559999999999999,14.564,14.568,14.572,14.575999999999999,14.58,14.584,14.588,14.591999999999999,14.596,14.6,14.604,14.607999999999999,14.612,14.616,14.62,14.623999999999999,14.628,14.632,14.636,14.639999999999999,14.644,14.648,14.652,14.655999999999999,14.66,14.664,14.668,14.671999999999999,14.676,14.68,14.684,14.687999999999999,14.692,14.696,14.7,14.703999999999999,14.708,14.712,14.716,14.719999999999999,14.724,14.728,14.732,14.735999999999999,14.74,14.744,14.748,14.751999999999999,14.756,14.76,14.764,14.767999999999999,14.772,14.776,14.78,14.783999999999999,14.788,14.792,14.796,14.799999999999999,14.804,14.808,14.812,14.815999999999999,14.82,14.824,14.828,14.831999999999999,14.836,14.84,14.844,14.847999999999999,14.852,14.856,14.86,14.863999999999999,14.868,14.872,14.876,14.879999999999999,14.884,14.888,14.892,14.895999999999999,14.9,14.9,15.364,15.368,15.372,15.376000000000001,15.38,15.384,15.388,15.392000000000001,15.396,15.4,15.404,15.408000000000001,15.412,15.416,15.42,15.424000000000001,15.428,15.432,15.436,15.440000000000001,15.444,15.448,15.452,15.456000000000001,15.46,15.464,15.468,15.472000000000001,15.476,15.48,15.484,15.488000000000001,15.492,15.496,15.5,15.504000000000001,15.508000000000001,15.512,15.516,15.520000000000001,15.524000000000001,15.528,15.532,15.536000000000001,15.540000000000001,15.544,15.548,15.552000000000001,15.556000000000001,15.56,15.564,15.568000000000001,15.572000000000001,15.576,15.58,15.584000000000001,15.588000000000001,15.592,15.596,15.600000000000001,15.604000000000001,15.608,15.612,15.616000000000001,15.620000000000001,15.624,15.628,15.632000000000001,15.636000000000001,15.64,15.644,15.648000000000001,15.652000000000001,15.656,15.66,15.664000000000001,15.668000000000001,15.672,15.676,15.680000000000001,15.684000000000001,15.688,15.692,15.696000000000002,15.700000000000001,15.704,15.708,15.712000000000002,15.716000000000001,15.72,15.724,15.728000000000002,15.732000000000001,15.736,15.74,15.744000000000002,15.748000000000001,15.752,15.756,15.760000000000002,15.760000000000002,16.223,16.227,16.230999999999998,16.235,16.238999999999997,16.243,16.247,16.250999999999998,16.255,16.259,16.262999999999998,16.267,16.270999999999997,16.275,16.279,16.282999999999998,16.287,16.291,16.294999999999998,16.299,16.302999999999997,16.307,16.311,16.314999999999998,16.319,16.323,16.326999999999998,16.331,16.334999999999997,16.339,16.343,16.346999999999998,16.351,16.355,16.358999999999998,16.363,16.366999999999997,16.371,16.375,16.378999999999998,16.383,16.387,16.391,16.395,16.398999999999997,16.403,16.407,16.410999999999998,16.415,16.419,16.423,16.427,16.430999999999997,16.435,16.439,16.442999999999998,16.447,16.451,16.455,16.459,16.462999999999997,16.467,16.471,16.474999999999998,16.479,16.483,16.487,16.491,16.494999999999997,16.499,16.503,16.506999999999998,16.511,16.515,16.519,16.523,16.526999999999997,16.531,16.535,16.538999999999998,16.543,16.547,16.551,16.555,16.558999999999997,16.563,16.567,16.570999999999998,16.575,16.579,16.583,16.587,16.590999999999998,16.595,16.599,16.602999999999998,16.607,16.611,16.615,16.619,16.619,17.084,17.088,17.092,17.096,17.099999999999998,17.104,17.108,17.112,17.116,17.12,17.124,17.128,17.131999999999998,17.136,17.14,17.144,17.148,17.152,17.156,17.16,17.163999999999998,17.168,17.172,17.176,17.18,17.184,17.188,17.192,17.195999999999998,17.2,17.204,17.208,17.212,17.216,17.22,17.224,17.227999999999998,17.232,17.236,17.24,17.244,17.248,17.252,17.256,17.259999999999998,17.264,17.268,17.272,17.276,17.28,17.284,17.288,17.291999999999998,17.296,17.3,17.304,17.308,17.312,17.316,17.32,17.323999999999998,17.328,17.332,17.336,17.34,17.344,17.348,17.352,17.355999999999998,17.36,17.364,17.368,17.372,17.376,17.38,17.384,17.387999999999998,17.392,17.396,17.4,17.404,17.408,17.412,17.416,17.419999999999998,17.424,17.428,17.432,17.436,17.44,17.444,17.448,17.451999999999998,17.456,17.46,17.464,17.468,17.472,17.476,17.48,17.48,17.943,17.947000000000003,17.951,17.955000000000002,17.959,17.963,17.967000000000002,17.971,17.975,17.979000000000003,17.983,17.987000000000002,17.991,17.995,17.999000000000002,18.003,18.007,18.011000000000003,18.015,18.019000000000002,18.023,18.027,18.031000000000002,18.035,18.039,18.043000000000003,18.047,18.051000000000002,18.055,18.059,18.063000000000002,18.067,18.071,18.075000000000003,18.079,18.083000000000002,18.087,18.091,18.095000000000002,18.099,18.103,18.107000000000003,18.111,18.115000000000002,18.119,18.123,18.127000000000002,18.131,18.135,18.139000000000003,18.143,18.147000000000002,18.151,18.155,18.159000000000002,18.163,18.167,18.171000000000003,18.175,18.179000000000002,18.183,18.187,18.191000000000003,18.195,18.199,18.203000000000003,18.207,18.211000000000002,18.215,18.219,18.223000000000003,18.227,18.231,18.235000000000003,18.239,18.243000000000002,18.247,18.251,18.255000000000003,18.259,18.263,18.267000000000003,18.271,18.275000000000002,18.279,18.283,18.287000000000003,18.291,18.295,18.299000000000003,18.303,18.307000000000002,18.311,18.315,18.319000000000003,18.323,18.327,18.331000000000003,18.335,18.339000000000002,18.339000000000002,18.803,18.807000000000002,18.811,18.815,18.819,18.823,18.827,18.831,18.835,18.839000000000002,18.843,18.847,18.851,18.855,18.859,18.863,18.867,18.871000000000002,18.875,18.879,18.883,18.887,18.891000000000002,18.895,18.899,18.903000000000002,18.907,18.911,18.915,18.919,18.923000000000002,18.927,18.931,18.935000000000002,18.939,18.943,18.947,18.951,18.955000000000002,18.959,18.963,18.967000000000002,18.971,18.975,18.979,18.983,18.987000000000002,18.991,18.995,18.999000000000002,19.003,19.007,19.011,19.015,19.019000000000002,19.023,19.027,19.031000000000002,19.035,19.039,19.043,19.047,19.051000000000002,19.055,19.059,19.063000000000002,19.067,19.071,19.075,19.079,19.083000000000002,19.087,19.091,19.095000000000002,19.099,19.103,19.107,19.111,19.115000000000002,19.119,19.123,19.127000000000002,19.131,19.135,19.139,19.143,19.147000000000002,19.151,19.155,19.159000000000002,19.163,19.167,19.171,19.175,19.179000000000002,19.183,19.187,19.191000000000003,19.195,19.199,19.199,19.663,19.667,19.671,19.675,19.679,19.683,19.687,19.691,19.695,19.699,19.703,19.707,19.711,19.715,19.719,19.723,19.727,19.731,19.735,19.739,19.743,19.747,19.751,19.755,19.759,19.763,19.767,19.771,19.775,19.779,19.783,19.787,19.791,19.795,19.799,19.803,19.807,19.811,19.815,19.819,19.823,19.827,19.831,19.835,19.839,19.843,19.847,19.851,19.855,19.859,19.863,19.867,19.871,19.875,19.879,19.883,19.887,19.891000000000002,19.895,19.899,19.903,19.907,19.911,19.915,19.919,19.923000000000002,19.927,19.931,19.935,19.939,19.943,19.947,19.951,19.955000000000002,19.959,19.963,19.967,19.971,19.975,19.979,19.983,19.987000000000002,19.991,19.995,19.999,20.003,20.007,20.011,20.015,20.019000000000002,20.023,20.027,20.031,20.035,20.039,20.043,20.047,20.051000000000002,20.055,20.059,20.059,20.523,20.527,20.531,20.535,20.538999999999998,20.543,20.547,20.551,20.555,20.559,20.563,20.567,20.570999999999998,20.575,20.579,20.583,20.587,20.591,20.595,20.599,20.602999999999998,20.607,20.611,20.615,20.619,20.623,20.627,20.631,20.634999999999998,20.639,20.643,20.647,20.651,20.655,20.659,20.663,20.666999999999998,20.671,20.675,20.679,20.683,20.687,20.691,20.695,20.698999999999998,20.703,20.707,20.711,20.715,20.719,20.723,20.727,20.730999999999998,20.735,20.739,20.743,20.747,20.751,20.755,20.759,20.762999999999998,20.767,20.771,20.775,20.779,20.783,20.787,20.791,20.794999999999998,20.799,20.803,20.807,20.811,20.815,20.819,20.823,20.826999999999998,20.831,20.835,20.839,20.843,20.847,20.851,20.855,20.858999999999998,20.863,20.867,20.871,20.875,20.879,20.883,20.887,20.891,20.895,20.899,20.903,20.907,20.911,20.915,20.919,20.919,21.383,21.387,21.391,21.395,21.398999999999997,21.403,21.407,21.410999999999998,21.415,21.419,21.423,21.427,21.430999999999997,21.435,21.439,21.442999999999998,21.447,21.451,21.455,21.459,21.462999999999997,21.467,21.471,21.474999999999998,21.479,21.483,21.487,21.491,21.494999999999997,21.499,21.503,21.506999999999998,21.511,21.515,21.519,21.523,21.526999999999997,21.531,21.535,21.538999999999998,21.543,21.547,21.551,21.555,21.558999999999997,21.563,21.567,21.570999999999998,21.575,21.579,21.583,21.587,21.590999999999998,21.595,21.599,21.602999999999998,21.607,21.611,21.615,21.619,21.622999999999998,21.627,21.631,21.634999999999998,21.639,21.643,21.647,21.651,21.654999999999998,21.659,21.663,21.666999999999998,21.671,21.675,21.679,21.683,21.686999999999998,21.691,21.695,21.698999999999998,21.703,21.707,21.711,21.715,21.718999999999998,21.723,21.727,21.730999999999998,21.735,21.739,21.743,21.747,21.750999999999998,21.755,21.759,21.762999999999998,21.767,21.771,21.775,21.779,21.779,22.243000000000002,22.247000000000003,22.251,22.255000000000003,22.259,22.263,22.267000000000003,22.271,22.275000000000002,22.279000000000003,22.283,22.287000000000003,22.291,22.295,22.299000000000003,22.303,22.307000000000002,22.311000000000003,22.315,22.319000000000003,22.323,22.327,22.331000000000003,22.335,22.339000000000002,22.343000000000004,22.347,22.351000000000003,22.355,22.359,22.363000000000003,22.367,22.371000000000002,22.375000000000004,22.379,22.383000000000003,22.387,22.391000000000002,22.395000000000003,22.399,22.403000000000002,22.407000000000004,22.411,22.415000000000003,22.419,22.423000000000002,22.427000000000003,22.431,22.435000000000002,22.439000000000004,22.443,22.447000000000003,22.451,22.455000000000002,22.459000000000003,22.463,22.467000000000002,22.471000000000004,22.475,22.479000000000003,22.483,22.487000000000002,22.491000000000003,22.495,22.499000000000002,22.503000000000004,22.507,22.511000000000003,22.515,22.519000000000002,22.523000000000003,22.527,22.531000000000002,22.535000000000004,22.539,22.543000000000003,22.547,22.551000000000002,22.555000000000003,22.559,22.563000000000002,22.567000000000004,22.571,22.575000000000003,22.579,22.583000000000002,22.587000000000003,22.591,22.595000000000002,22.599000000000004,22.603,22.607000000000003,22.611,22.615000000000002,22.619000000000003,22.623,22.627000000000002,22.631000000000004,22.635,22.639000000000003,22.639000000000003,23.103,23.107000000000003,23.111,23.115000000000002,23.119,23.123,23.127000000000002,23.131,23.135,23.139000000000003,23.143,23.147000000000002,23.151,23.155,23.159000000000002,23.163,23.167,23.171000000000003,23.175,23.179000000000002,23.183,23.187,23.191000000000003,23.195,23.199,23.203000000000003,23.207,23.211000000000002,23.215,23.219,23.223000000000003,23.227,23.231,23.235000000000003,23.239,23.243000000000002,23.247,23.251,23.255000000000003,23.259,23.263,23.267000000000003,23.271,23.275000000000002,23.279,23.283,23.287000000000003,23.291,23.295,23.299000000000003,23.303,23.307000000000002,23.311,23.315,23.319000000000003,23.323,23.327,23.331000000000003,23.335,23.339000000000002,23.343,23.347,23.351000000000003,23.355,23.359,23.363000000000003,23.367,23.371000000000002,23.375,23.379,23.383000000000003,23.387,23.391000000000002,23.395000000000003,23.399,23.403000000000002,23.407,23.411,23.415000000000003,23.419,23.423000000000002,23.427000000000003,23.431,23.435000000000002,23.439,23.443,23.447000000000003,23.451,23.455000000000002,23.459000000000003,23.463,23.467000000000002,23.471,23.475,23.479000000000003,23.483,23.487000000000002,23.491000000000003,23.495,23.499000000000002,23.499000000000002,23.963,23.967000000000002,23.971,23.975,23.979,23.983,23.987000000000002,23.991,23.995,23.999000000000002,24.003,24.007,24.011,24.015,24.019000000000002,24.023,24.027,24.031000000000002,24.035,24.039,24.043,24.047,24.051000000000002,24.055,24.059,24.063000000000002,24.067,24.071,24.075,24.079,24.083000000000002,24.087,24.091,24.095000000000002,24.099,24.103,24.107,24.111,24.115000000000002,24.119,24.123,24.127000000000002,24.131,24.135,24.139,24.143,24.147000000000002,24.151,24.155,24.159000000000002,24.163,24.167,24.171,24.175,24.179000000000002,24.183,24.187,24.191000000000003,24.195,24.199,24.203,24.207,24.211000000000002,24.215,24.219,24.223000000000003,24.227,24.231,24.235,24.239,24.243000000000002,24.247,24.251,24.255000000000003,24.259,24.263,24.267,24.271,24.275000000000002,24.279,24.283,24.287000000000003,24.291,24.295,24.299,24.303,24.307000000000002,24.311,24.315,24.319000000000003,24.323,24.327,24.331,24.335,24.339000000000002,24.343,24.347,24.351000000000003,24.355,24.359,24.359,24.823,24.827,24.831,24.835,24.839,24.843,24.847,24.851,24.855,24.859,24.863,24.867,24.871,24.875,24.879,24.883,24.887,24.891000000000002,24.895,24.899,24.903,24.907,24.911,24.915,24.919,24.923000000000002,24.927,24.931,24.935,24.939,24.943,24.947,24.951,24.955000000000002,24.959,24.963,24.967,24.971,24.975,24.979,24.983,24.987000000000002,24.991,24.995,24.999,25.003,25.007,25.011,25.015,25.019000000000002,25.023,25.027,25.031,25.035,25.039,25.043,25.047,25.051000000000002,25.055,25.059,25.063,25.067,25.071,25.075,25.079,25.083000000000002,25.087,25.091,25.095,25.099,25.103,25.107,25.111,25.115000000000002,25.119,25.123,25.127,25.131,25.135,25.139,25.143,25.147000000000002,25.151,25.155,25.159,25.163,25.167,25.171,25.175,25.179000000000002,25.183,25.187,25.191,25.195,25.199,25.203,25.207,25.211000000000002,25.215,25.219,25.219,25.683,25.687,25.691,25.695,25.698999999999998,25.703,25.707,25.711,25.715,25.719,25.723,25.727,25.730999999999998,25.735,25.739,25.743,25.747,25.751,25.755,25.759,25.762999999999998,25.767,25.771,25.775,25.779,25.783,25.787,25.791,25.794999999999998,25.799,25.803,25.807,25.811,25.815,25.819,25.823,25.826999999999998,25.831,25.835,25.839,25.843,25.847,25.851,25.855,25.858999999999998,25.863,25.867,25.871,25.875,25.879,25.883,25.887,25.891,25.895,25.899,25.903,25.907,25.911,25.915,25.919,25.923,25.927,25.931,25.935,25.939,25.943,25.947,25.951,25.955,25.959,25.963,25.967,25.971,25.975,25.979,25.983,25.987,25.991,25.995,25.999,26.003,26.007,26.011,26.015,26.019,26.023,26.027,26.031,26.035,26.039,26.043,26.047,26.051,26.055,26.059,26.063,26.067,26.071,26.075,26.079,26.079,26.543,26.547,26.551,26.555,26.558999999999997,26.563,26.567,26.570999999999998,26.575,26.579,26.583,26.587,26.590999999999998,26.595,26.599,26.602999999999998,26.607,26.611,26.615,26.619,26.622999999999998,26.627,26.631,26.634999999999998,26.639,26.643,26.647,26.651,26.654999999999998,26.659,26.663,26.666999999999998,26.671,26.675,26.679,26.683,26.686999999999998,26.691,26.695,26.698999999999998,26.703,26.707,26.711,26.715,26.718999999999998,26.723,26.727,26.730999999999998,26.735,26.739,26.743,26.747,26.750999999999998,26.755,26.759,26.762999999999998,26.767,26.771,26.775,26.779,26.782999999999998,26.787,26.791,26.794999999999998,26.799,26.803,26.807,26.811,26.814999999999998,26.819,26.823,26.826999999999998,26.831,26.835,26.839,26.843,26.846999999999998,26.851,26.855,26.858999999999998,26.863,26.867,26.871,26.875,26.878999999999998,26.883,26.887,26.891,26.895,26.899,26.903,26.907,26.910999999999998,26.915,26.919,26.923,26.927,26.931,26.935,26.939,26.939,27.403000000000002,27.407000000000004,27.411,27.415000000000003,27.419,27.423000000000002,27.427000000000003,27.431,27.435000000000002,27.439000000000004,27.443,27.447000000000003,27.451,27.455000000000002,27.459000000000003,27.463,27.467000000000002,27.471000000000004,27.475,27.479000000000003,27.483,27.487000000000002,27.491000000000003,27.495,27.499000000000002,27.503000000000004,27.507,27.511000000000003,27.515,27.519000000000002,27.523000000000003,27.527,27.531000000000002,27.535000000000004,27.539,27.543000000000003,27.547,27.551000000000002,27.555000000000003,27.559,27.563000000000002,27.567000000000004,27.571,27.575000000000003,27.579,27.583000000000002,27.587000000000003,27.591,27.595000000000002,27.599000000000004,27.603,27.607000000000003,27.611,27.615000000000002,27.619000000000003,27.623,27.627000000000002,27.631000000000004,27.635,27.639000000000003,27.643,27.647000000000002,27.651000000000003,27.655,27.659000000000002,27.663000000000004,27.667,27.671000000000003,27.675,27.679000000000002,27.683000000000003,27.687,27.691000000000003,27.695000000000004,27.699,27.703000000000003,27.707,27.711000000000002,27.715000000000003,27.719,27.723000000000003,27.727000000000004,27.731,27.735000000000003,27.739,27.743000000000002,27.747000000000003,27.751,27.755000000000003,27.759000000000004,27.763,27.767000000000003,27.771,27.775000000000002,27.779000000000003,27.783,27.787000000000003,27.791000000000004,27.795,27.799000000000003,27.799000000000003,28.263,28.267000000000003,28.271,28.275000000000002,28.279,28.283,28.287000000000003,28.291,28.295,28.299000000000003,28.303,28.307000000000002,28.311,28.315,28.319000000000003,28.323,28.327,28.331000000000003,28.335,28.339000000000002,28.343,28.347,28.351000000000003,28.355,28.359,28.363000000000003,28.367,28.371000000000002,28.375,28.379,28.383000000000003,28.387,28.391000000000002,28.395000000000003,28.399,28.403000000000002,28.407,28.411,28.415000000000003,28.419,28.423000000000002,28.427000000000003,28.431,28.435000000000002,28.439,28.443,28.447000000000003,28.451,28.455000000000002,28.459000000000003,28.463,28.467000000000002,28.471,28.475,28.479000000000003,28.483,28.487000000000002,28.491000000000003,28.495,28.499000000000002,28.503,28.507,28.511000000000003,28.515,28.519000000000002,28.523000000000003,28.527,28.531000000000002,28.535,28.539,28.543000000000003,28.547,28.551000000000002,28.555000000000003,28.559,28.563000000000002,28.567,28.571,28.575000000000003,28.579,28.583000000000002,28.587000000000003,28.591,28.595000000000002,28.599,28.603,28.607000000000003,28.611,28.615000000000002,28.619000000000003,28.623,28.627000000000002,28.631,28.635,28.639000000000003,28.643,28.647000000000002,28.651000000000003,28.655,28.659000000000002,28.659000000000002,29.123,29.127000000000002,29.131,29.135,29.139,29.143,29.147000000000002,29.151,29.155,29.159000000000002,29.163,29.167,29.171,29.175,29.179000000000002,29.183,29.187,29.191000000000003,29.195,29.199,29.203,29.207,29.211000000000002,29.215,29.219,29.223000000000003,29.227,29.231,29.235,29.239,29.243000000000002,29.247,29.251,29.255000000000003,29.259,29.263,29.267,29.271,29.275000000000002,29.279,29.283,29.287000000000003,29.291,29.295,29.299,29.303,29.307000000000002,29.311,29.315,29.319000000000003,29.323,29.327,29.331,29.335,29.339000000000002,29.343,29.347,29.351000000000003,29.355,29.359,29.363,29.367,29.371000000000002,29.375,29.379,29.383000000000003,29.387,29.391000000000002,29.395,29.399,29.403000000000002,29.407,29.411,29.415000000000003,29.419,29.423000000000002,29.427,29.431,29.435000000000002,29.439,29.443,29.447000000000003,29.451,29.455000000000002,29.459,29.463,29.467000000000002,29.471,29.475,29.479000000000003,29.483,29.487000000000002,29.491,29.495,29.499000000000002,29.503,29.507,29.511000000000003,29.515,29.519000000000002,29.519000000000002,29.983,29.987000000000002,29.991,29.995,29.999,30.003,30.007,30.011,30.015,30.019000000000002,30.023,30.027,30.031,30.035,30.039,30.043,30.047,30.051000000000002,30.055,30.059,30.063,30.067,30.071,30.075,30.079,30.083000000000002,30.087,30.091,30.095,30.099,30.103,30.107,30.111,30.115000000000002,30.119,30.123,30.127,30.131,30.135,30.139,30.143,30.147000000000002,30.151,30.155,30.159,30.163,30.167,30.171,30.175,30.179000000000002,30.183,30.187,30.191,30.195,30.199,30.203,30.207,30.211000000000002,30.215,30.219,30.223,30.227,30.231,30.235,30.239,30.243000000000002,30.247,30.251,30.255,30.259,30.263,30.267,30.271,30.275000000000002,30.279,30.283,30.287,30.291,30.295,30.299,30.303,30.307000000000002,30.311,30.315,30.319,30.323,30.327,30.331,30.335,30.339000000000002,30.343,30.347,30.351,30.355,30.359,30.363,30.367,30.371000000000002,30.375,30.379,30.379,30.843,30.847,30.851,30.855,30.858999999999998,30.863,30.867,30.871,30.875,30.879,30.883,30.887,30.891,30.895,30.899,30.903,30.907,30.911,30.915,30.919,30.923,30.927,30.931,30.935,30.939,30.943,30.947,30.951,30.955,30.959,30.963,30.967,30.971,30.975,30.979,30.983,30.987,30.991,30.995,30.999,31.003,31.007,31.011,31.015,31.019,31.023,31.027,31.031,31.035,31.039,31.043,31.047,31.051,31.055,31.059,31.063,31.067,31.071,31.075,31.079,31.083,31.087,31.091,31.095,31.099,31.103,31.107,31.111,31.115,31.119,31.123,31.127,31.131,31.135,31.139,31.143,31.147,31.151,31.155,31.159,31.163,31.167,31.171,31.175,31.179,31.183,31.187,31.191,31.195,31.199,31.203,31.207,31.211,31.215,31.219,31.223,31.227,31.231,31.235,31.239,31.239,31.703,31.707,31.711,31.715,31.718999999999998,31.723,31.727,31.730999999999998,31.735,31.739,31.743,31.747,31.750999999999998,31.755,31.759,31.762999999999998,31.767,31.771,31.775,31.779,31.782999999999998,31.787,31.791,31.794999999999998,31.799,31.803,31.807,31.811,31.814999999999998,31.819,31.823,31.826999999999998,31.831,31.835,31.839,31.843,31.846999999999998,31.851,31.855,31.858999999999998,31.863,31.867,31.871,31.875,31.878999999999998,31.883,31.887,31.891,31.895,31.899,31.903,31.907,31.910999999999998,31.915,31.919,31.923,31.927,31.931,31.935,31.939,31.942999999999998,31.947,31.951,31.955,31.959,31.963,31.967,31.971,31.974999999999998,31.979,31.983,31.987,31.991,31.995,31.999,32.003,32.007,32.011,32.015,32.019,32.022999999999996,32.027,32.031,32.035,32.039,32.043,32.047,32.051,32.055,32.059,32.063,32.067,32.071,32.075,32.079,32.083,32.086999999999996,32.091,32.095,32.099,32.099,32.563,32.567,32.571000000000005,32.575,32.579,32.583000000000006,32.587,32.591,32.595,32.599000000000004,32.603,32.607,32.611000000000004,32.615,32.619,32.623000000000005,32.627,32.631,32.635000000000005,32.639,32.643,32.647000000000006,32.651,32.655,32.659,32.663000000000004,32.667,32.671,32.675000000000004,32.679,32.683,32.687000000000005,32.691,32.695,32.699000000000005,32.703,32.707,32.711000000000006,32.715,32.719,32.723,32.727000000000004,32.731,32.735,32.739000000000004,32.743,32.747,32.751000000000005,32.755,32.759,32.763000000000005,32.767,32.771,32.775000000000006,32.779,32.783,32.787,32.791000000000004,32.795,32.799,32.803000000000004,32.807,32.811,32.815000000000005,32.819,32.823,32.827000000000005,32.831,32.835,32.839000000000006,32.843,32.847,32.851,32.855000000000004,32.859,32.863,32.867000000000004,32.871,32.875,32.879000000000005,32.883,32.887,32.891000000000005,32.895,32.899,32.903000000000006,32.907000000000004,32.911,32.915,32.919000000000004,32.923,32.927,32.931000000000004,32.935,32.939,32.943000000000005,32.947,32.951,32.955000000000005,32.959,32.959,33.423,33.427,33.431000000000004,33.435,33.439,33.443000000000005,33.447,33.451,33.455,33.459,33.463,33.467,33.471000000000004,33.475,33.479,33.483000000000004,33.487,33.491,33.495000000000005,33.499,33.503,33.507000000000005,33.511,33.515,33.519,33.523,33.527,33.531,33.535000000000004,33.539,33.543,33.547000000000004,33.551,33.555,33.559000000000005,33.563,33.567,33.571000000000005,33.575,33.579,33.583,33.587,33.591,33.595,33.599000000000004,33.603,33.607,33.611000000000004,33.615,33.619,33.623000000000005,33.627,33.631,33.635000000000005,33.639,33.643,33.647,33.651,33.655,33.659,33.663000000000004,33.667,33.671,33.675000000000004,33.679,33.683,33.687000000000005,33.691,33.695,33.699000000000005,33.703,33.707,33.711,33.715,33.719,33.723,33.727000000000004,33.731,33.735,33.739000000000004,33.743,33.747,33.751000000000005,33.755,33.759,33.763000000000005,33.767,33.771,33.775,33.779,33.783,33.787,33.791000000000004,33.795,33.799,33.803000000000004,33.807,33.811,33.815000000000005,33.819,33.819,34.283,34.287,34.291000000000004,34.295,34.299,34.303000000000004,34.307,34.311,34.315,34.319,34.323,34.327,34.331,34.335,34.339,34.343,34.347,34.351,34.355000000000004,34.359,34.363,34.367000000000004,34.371,34.375,34.379,34.383,34.387,34.391,34.395,34.399,34.403,34.407000000000004,34.411,34.415,34.419000000000004,34.423,34.427,34.431000000000004,34.435,34.439,34.443,34.447,34.451,34.455,34.459,34.463,34.467,34.471000000000004,34.475,34.479,34.483000000000004,34.487,34.491,34.495000000000005,34.499,34.503,34.507,34.511,34.515,34.519,34.523,34.527,34.531,34.535000000000004,34.539,34.543,34.547000000000004,34.551,34.555,34.559000000000005,34.563,34.567,34.571,34.575,34.579,34.583,34.587,34.591,34.595,34.599000000000004,34.603,34.607,34.611000000000004,34.615,34.619,34.623000000000005,34.627,34.631,34.635,34.639,34.643,34.647,34.651,34.655,34.659,34.663000000000004,34.667,34.671,34.675000000000004,34.679,34.679,35.143,35.147,35.151,35.155,35.159,35.163000000000004,35.167,35.171,35.175,35.179,35.183,35.187,35.191,35.195,35.199,35.203,35.207,35.211,35.215,35.219,35.223,35.227000000000004,35.231,35.235,35.239,35.243,35.247,35.251,35.255,35.259,35.263,35.267,35.271,35.275,35.279,35.283,35.287,35.291000000000004,35.295,35.299,35.303,35.307,35.311,35.315,35.319,35.323,35.327,35.331,35.335,35.339,35.343,35.347,35.351,35.355000000000004,35.359,35.363,35.367,35.371,35.375,35.379,35.383,35.387,35.391,35.395,35.399,35.403,35.407000000000004,35.411,35.415,35.419000000000004,35.423,35.427,35.431,35.435,35.439,35.443,35.447,35.451,35.455,35.459,35.463,35.467,35.471000000000004,35.475,35.479,35.483000000000004,35.487,35.491,35.495,35.499,35.503,35.507,35.511,35.515,35.519,35.523,35.527,35.531,35.535000000000004,35.539,35.539,36.003,36.007,36.011,36.015,36.019,36.023,36.027,36.031,36.035,36.039,36.043,36.047,36.051,36.055,36.059,36.063,36.067,36.071,36.075,36.079,36.083,36.087,36.091,36.095,36.099,36.103,36.107,36.111,36.115,36.119,36.123,36.127,36.131,36.135,36.139,36.143,36.147,36.151,36.155,36.159,36.163,36.167,36.171,36.175,36.179,36.183,36.187,36.191,36.195,36.199,36.203,36.207,36.211,36.215,36.219,36.223,36.227,36.231,36.235,36.239,36.243,36.247,36.251,36.255,36.259,36.263,36.267,36.271,36.275,36.279,36.283,36.287,36.291,36.295,36.299,36.303,36.307,36.311,36.315,36.319,36.323,36.327,36.331,36.335,36.339,36.343,36.347,36.351,36.355,36.359,36.363,36.367,36.371,36.375,36.379,36.383,36.387,36.391,36.395,36.399,36.399,36.863,36.867,36.871,36.875,36.879,36.883,36.887,36.891,36.894999999999996,36.899,36.903,36.907,36.911,36.915,36.919,36.923,36.927,36.931,36.935,36.939,36.943,36.947,36.951,36.955,36.958999999999996,36.963,36.967,36.971,36.975,36.979,36.983,36.987,36.991,36.995,36.999,37.003,37.007,37.011,37.015,37.019,37.022999999999996,37.027,37.031,37.035,37.039,37.043,37.047,37.051,37.055,37.059,37.063,37.067,37.071,37.075,37.079,37.083,37.086999999999996,37.091,37.095,37.099,37.103,37.107,37.111,37.115,37.119,37.123,37.127,37.131,37.135,37.139,37.143,37.147,37.150999999999996,37.155,37.159,37.163,37.167,37.171,37.175,37.179,37.183,37.187,37.191,37.195,37.199,37.203,37.207,37.211,37.214999999999996,37.219,37.223,37.227,37.231,37.235,37.239,37.243,37.247,37.251,37.255,37.259,37.259,37.723,37.727,37.731,37.735,37.739,37.743,37.747,37.751,37.754999999999995,37.759,37.763,37.766999999999996,37.771,37.775,37.778999999999996,37.783,37.787,37.791,37.795,37.799,37.803,37.807,37.811,37.815,37.818999999999996,37.823,37.827,37.830999999999996,37.835,37.839,37.842999999999996,37.847,37.851,37.855,37.859,37.863,37.867,37.871,37.875,37.879,37.882999999999996,37.887,37.891,37.894999999999996,37.899,37.903,37.907,37.911,37.915,37.919,37.923,37.927,37.931,37.935,37.939,37.943,37.946999999999996,37.951,37.955,37.958999999999996,37.963,37.967,37.971,37.975,37.979,37.983,37.987,37.991,37.995,37.999,38.003,38.007,38.010999999999996,38.015,38.019,38.022999999999996,38.027,38.031,38.035,38.039,38.043,38.047,38.051,38.055,38.059,38.063,38.067,38.071,38.074999999999996,38.079,38.083,38.086999999999996,38.091,38.095,38.099,38.103,38.107,38.111,38.115,38.119,38.119,38.583,38.586999999999996,38.591,38.595,38.599,38.603,38.607,38.611,38.614999999999995,38.619,38.623,38.626999999999995,38.631,38.635,38.638999999999996,38.643,38.647,38.650999999999996,38.655,38.659,38.663,38.667,38.671,38.675,38.678999999999995,38.683,38.687,38.690999999999995,38.695,38.699,38.702999999999996,38.707,38.711,38.714999999999996,38.719,38.723,38.727,38.731,38.735,38.739,38.742999999999995,38.747,38.751,38.754999999999995,38.759,38.763,38.766999999999996,38.771,38.775,38.778999999999996,38.783,38.787,38.791,38.795,38.799,38.803,38.806999999999995,38.811,38.815,38.818999999999996,38.823,38.827,38.830999999999996,38.835,38.839,38.842999999999996,38.847,38.851,38.855,38.859,38.863,38.867,38.870999999999995,38.875,38.879,38.882999999999996,38.887,38.891,38.894999999999996,38.899,38.903,38.907,38.911,38.915,38.919,38.923,38.927,38.931,38.934999999999995,38.939,38.943,38.946999999999996,38.951,38.955,38.958999999999996,38.963,38.967,38.971,38.975,38.979,38.979,39.443,39.446999999999996,39.451,39.455,39.458999999999996,39.463,39.467,39.471,39.474999999999994,39.479,39.483,39.486999999999995,39.491,39.495,39.498999999999995,39.503,39.507,39.510999999999996,39.515,39.519,39.522999999999996,39.527,39.531,39.535,39.538999999999994,39.543,39.547,39.550999999999995,39.555,39.559,39.562999999999995,39.567,39.571,39.574999999999996,39.579,39.583,39.586999999999996,39.591,39.595,39.599,39.602999999999994,39.607,39.611,39.614999999999995,39.619,39.623,39.626999999999995,39.631,39.635,39.638999999999996,39.643,39.647,39.650999999999996,39.655,39.659,39.663,39.666999999999994,39.671,39.675,39.678999999999995,39.683,39.687,39.690999999999995,39.695,39.699,39.702999999999996,39.707,39.711,39.714999999999996,39.719,39.723,39.727,39.730999999999995,39.735,39.739,39.742999999999995,39.747,39.751,39.754999999999995,39.759,39.763,39.766999999999996,39.771,39.775,39.778999999999996,39.783,39.787,39.791,39.794999999999995,39.799,39.803,39.806999999999995,39.811,39.815,39.818999999999996,39.823,39.827,39.830999999999996,39.835,39.839,39.839,40.303000000000004,40.307,40.31100000000001,40.315000000000005,40.319,40.32300000000001,40.327000000000005,40.331,40.335,40.339000000000006,40.343,40.347,40.351000000000006,40.355000000000004,40.359,40.36300000000001,40.367000000000004,40.371,40.37500000000001,40.379000000000005,40.383,40.38700000000001,40.391000000000005,40.395,40.399,40.403000000000006,40.407000000000004,40.411,40.415000000000006,40.419000000000004,40.423,40.42700000000001,40.431000000000004,40.435,40.43900000000001,40.443000000000005,40.447,40.45100000000001,40.455000000000005,40.459,40.463,40.467000000000006,40.471000000000004,40.475,40.479000000000006,40.483000000000004,40.487,40.49100000000001,40.495000000000005,40.499,40.50300000000001,40.507000000000005,40.511,40.51500000000001,40.519000000000005,40.523,40.527,40.531000000000006,40.535000000000004,40.539,40.543000000000006,40.547000000000004,40.551,40.55500000000001,40.559000000000005,40.563,40.56700000000001,40.571000000000005,40.575,40.57900000000001,40.583000000000006,40.587,40.591,40.595000000000006,40.599000000000004,40.603,40.607000000000006,40.611000000000004,40.615,40.61900000000001,40.623000000000005,40.627,40.63100000000001,40.635000000000005,40.639,40.64300000000001,40.647000000000006,40.651,40.655,40.659000000000006,40.663000000000004,40.667,40.67100000000001,40.675000000000004,40.679,40.68300000000001,40.687000000000005,40.691,40.69500000000001,40.699000000000005,40.699000000000005,41.164,41.168,41.172000000000004,41.176,41.18,41.184000000000005,41.188,41.192,41.196,41.2,41.204,41.208,41.212,41.216,41.22,41.224000000000004,41.228,41.232,41.236000000000004,41.24,41.244,41.248000000000005,41.252,41.256,41.26,41.264,41.268,41.272,41.276,41.28,41.284,41.288000000000004,41.292,41.296,41.300000000000004,41.304,41.308,41.312000000000005,41.316,41.32,41.324,41.328,41.332,41.336,41.34,41.344,41.348,41.352000000000004,41.356,41.36,41.364000000000004,41.368,41.372,41.376000000000005,41.38,41.384,41.388,41.392,41.396,41.4,41.404,41.408,41.412,41.416000000000004,41.42,41.424,41.428000000000004,41.432,41.436,41.440000000000005,41.444,41.448,41.452,41.456,41.46,41.464,41.468,41.472,41.476,41.480000000000004,41.484,41.488,41.492000000000004,41.496,41.5,41.504000000000005,41.508,41.512,41.516,41.52,41.524,41.528,41.532000000000004,41.536,41.54,41.544000000000004,41.548,41.552,41.556000000000004,41.56,41.56,42.024,42.028,42.032000000000004,42.036,42.04,42.044000000000004,42.048,42.052,42.056,42.06,42.064,42.068,42.072,42.076,42.08,42.084,42.088,42.092,42.096000000000004,42.1,42.104,42.108000000000004,42.112,42.116,42.12,42.124,42.128,42.132,42.136,42.14,42.144,42.148,42.152,42.156,42.160000000000004,42.164,42.168,42.172000000000004,42.176,42.18,42.184,42.188,42.192,42.196,42.2,42.204,42.208,42.212,42.216,42.22,42.224000000000004,42.228,42.232,42.236000000000004,42.24,42.244,42.248,42.252,42.256,42.26,42.264,42.268,42.272,42.276,42.28,42.284,42.288000000000004,42.292,42.296,42.300000000000004,42.304,42.308,42.312,42.316,42.32,42.324,42.328,42.332,42.336,42.34,42.344,42.348,42.352000000000004,42.356,42.36,42.364000000000004,42.368,42.372,42.376,42.38,42.384,42.388,42.392,42.396,42.4,42.404,42.408,42.412,42.416000000000004,42.42,42.42,42.884,42.888,42.892,42.896,42.9,42.904,42.908,42.912,42.916,42.92,42.924,42.928,42.932,42.936,42.94,42.944,42.948,42.952,42.956,42.96,42.964,42.968,42.972,42.976,42.98,42.984,42.988,42.992,42.996,43.0,43.004,43.008,43.012,43.016,43.02,43.024,43.028,43.032000000000004,43.036,43.04,43.044,43.048,43.052,43.056,43.06,43.064,43.068,43.072,43.076,43.08,43.084,43.088,43.092,43.096000000000004,43.1,43.104,43.108,43.112,43.116,43.12,43.124,43.128,43.132,43.136,43.14,43.144,43.148,43.152,43.156,43.160000000000004,43.164,43.168,43.172,43.176,43.18,43.184,43.188,43.192,43.196,43.2,43.204,43.208,43.212,43.216,43.22,43.224000000000004,43.228,43.232,43.236,43.24,43.244,43.248,43.252,43.256,43.26,43.264,43.268,43.272,43.276,43.28,43.28,43.744,43.748,43.752,43.756,43.76,43.764,43.768,43.772,43.775999999999996,43.78,43.784,43.788,43.792,43.796,43.8,43.804,43.808,43.812,43.816,43.82,43.824,43.828,43.832,43.836,43.839999999999996,43.844,43.848,43.852,43.856,43.86,43.864,43.868,43.872,43.876,43.88,43.884,43.888,43.892,43.896,43.9,43.903999999999996,43.908,43.912,43.916,43.92,43.924,43.928,43.932,43.936,43.94,43.944,43.948,43.952,43.956,43.96,43.964,43.967999999999996,43.972,43.976,43.98,43.984,43.988,43.992,43.996,44.0,44.004,44.008,44.012,44.016,44.02,44.024,44.028,44.032,44.036,44.04,44.044,44.048,44.052,44.056,44.06,44.064,44.068,44.072,44.076,44.08,44.084,44.088,44.092,44.096,44.1,44.104,44.108,44.112,44.116,44.12,44.124,44.128,44.132,44.136,44.14,44.14,44.604,44.608,44.612,44.616,44.62,44.624,44.628,44.632,44.635999999999996,44.64,44.644,44.647999999999996,44.652,44.656,44.66,44.664,44.668,44.672,44.676,44.68,44.684,44.688,44.692,44.696,44.699999999999996,44.704,44.708,44.711999999999996,44.716,44.72,44.724,44.728,44.732,44.736,44.74,44.744,44.748,44.752,44.756,44.76,44.763999999999996,44.768,44.772,44.775999999999996,44.78,44.784,44.788,44.792,44.796,44.8,44.804,44.808,44.812,44.816,44.82,44.824,44.827999999999996,44.832,44.836,44.839999999999996,44.844,44.848,44.852,44.856,44.86,44.864,44.868,44.872,44.876,44.88,44.884,44.888,44.891999999999996,44.896,44.9,44.903999999999996,44.908,44.912,44.916,44.92,44.924,44.928,44.932,44.936,44.94,44.944,44.948,44.952,44.955999999999996,44.96,44.964,44.967999999999996,44.972,44.976,44.98,44.984,44.988,44.992,44.996,45.0,45.0,45.464,45.467999999999996,45.472,45.476,45.48,45.484,45.488,45.492,45.495999999999995,45.5,45.504,45.507999999999996,45.512,45.516,45.519999999999996,45.524,45.528,45.532,45.536,45.54,45.544,45.548,45.552,45.556,45.559999999999995,45.564,45.568,45.571999999999996,45.576,45.58,45.583999999999996,45.588,45.592,45.596,45.6,45.604,45.608,45.612,45.616,45.62,45.623999999999995,45.628,45.632,45.635999999999996,45.64,45.644,45.647999999999996,45.652,45.656,45.66,45.664,45.668,45.672,45.676,45.68,45.684,45.687999999999995,45.692,45.696,45.699999999999996,45.704,45.708,45.711999999999996,45.716,45.72,45.724,45.728,45.732,45.736,45.74,45.744,45.748,45.751999999999995,45.756,45.76,45.763999999999996,45.768,45.772,45.775999999999996,45.78,45.784,45.788,45.792,45.796,45.8,45.804,45.808,45.812,45.815999999999995,45.82,45.824,45.827999999999996,45.832,45.836,45.839999999999996,45.844,45.848,45.852,45.856,45.86,45.86,46.324,46.327999999999996,46.332,46.336,46.339999999999996,46.344,46.348,46.352,46.355999999999995,46.36,46.364,46.367999999999995,46.372,46.376,46.379999999999995,46.384,46.388,46.391999999999996,46.396,46.4,46.403999999999996,46.408,46.412,46.416,46.419999999999995,46.424,46.428,46.431999999999995,46.436,46.44,46.443999999999996,46.448,46.452,46.455999999999996,46.46,46.464,46.467999999999996,46.472,46.476,46.48,46.483999999999995,46.488,46.492,46.495999999999995,46.5,46.504,46.507999999999996,46.512,46.516,46.519999999999996,46.524,46.528,46.532,46.536,46.54,46.544,46.547999999999995,46.552,46.556,46.559999999999995,46.564,46.568,46.571999999999996,46.576,46.58,46.583999999999996,46.588,46.592,46.596,46.6,46.604,46.608,46.611999999999995,46.616,46.62,46.623999999999995,46.628,46.632,46.635999999999996,46.64,46.644,46.647999999999996,46.652,46.656,46.66,46.664,46.668,46.672,46.675999999999995,46.68,46.684,46.687999999999995,46.692,46.696,46.699999999999996,46.704,46.708,46.711999999999996,46.716,46.72,46.72,47.184,47.187999999999995,47.192,47.196,47.199999999999996,47.204,47.208,47.211999999999996,47.215999999999994,47.22,47.224,47.227999999999994,47.232,47.236,47.239999999999995,47.244,47.248,47.251999999999995,47.256,47.26,47.263999999999996,47.268,47.272,47.275999999999996,47.279999999999994,47.284,47.288,47.291999999999994,47.296,47.3,47.303999999999995,47.308,47.312,47.315999999999995,47.32,47.324,47.327999999999996,47.332,47.336,47.339999999999996,47.343999999999994,47.348,47.352,47.355999999999995,47.36,47.364,47.367999999999995,47.372,47.376,47.379999999999995,47.384,47.388,47.391999999999996,47.396,47.4,47.403999999999996,47.407999999999994,47.412,47.416,47.419999999999995,47.424,47.428,47.431999999999995,47.436,47.44,47.443999999999996,47.448,47.452,47.455999999999996,47.46,47.464,47.467999999999996,47.471999999999994,47.476,47.48,47.483999999999995,47.488,47.492,47.495999999999995,47.5,47.504,47.507999999999996,47.512,47.516,47.519999999999996,47.524,47.528,47.532,47.535999999999994,47.54,47.544,47.547999999999995,47.552,47.556,47.559999999999995,47.564,47.568,47.571999999999996,47.576,47.58,47.58,48.044000000000004,48.048,48.05200000000001,48.056000000000004,48.06,48.06400000000001,48.068000000000005,48.072,48.076,48.080000000000005,48.084,48.088,48.092000000000006,48.096000000000004,48.1,48.104000000000006,48.108000000000004,48.112,48.11600000000001,48.120000000000005,48.124,48.12800000000001,48.132000000000005,48.136,48.14,48.144000000000005,48.148,48.152,48.156000000000006,48.160000000000004,48.164,48.168000000000006,48.172000000000004,48.176,48.18000000000001,48.184000000000005,48.188,48.19200000000001,48.196000000000005,48.2,48.204,48.208000000000006,48.212,48.216,48.220000000000006,48.224000000000004,48.228,48.232000000000006,48.236000000000004,48.24,48.24400000000001,48.248000000000005,48.252,48.25600000000001,48.260000000000005,48.264,48.268,48.272000000000006,48.276,48.28,48.284000000000006,48.288000000000004,48.292,48.29600000000001,48.300000000000004,48.304,48.30800000000001,48.312000000000005,48.316,48.32000000000001,48.324000000000005,48.328,48.332,48.336000000000006,48.34,48.344,48.348000000000006,48.352000000000004,48.356,48.36000000000001,48.364000000000004,48.368,48.37200000000001,48.376000000000005,48.38,48.38400000000001,48.388000000000005,48.392,48.396,48.400000000000006,48.404,48.408,48.412000000000006,48.416000000000004,48.42,48.42400000000001,48.428000000000004,48.432,48.43600000000001,48.440000000000005,48.440000000000005,48.903,48.907,48.911,48.915,48.919,48.923,48.927,48.931,48.934999999999995,48.939,48.943,48.946999999999996,48.951,48.955,48.958999999999996,48.963,48.967,48.971,48.975,48.979,48.983,48.987,48.991,48.995,48.998999999999995,49.003,49.007,49.010999999999996,49.015,49.019,49.022999999999996,49.027,49.031,49.035,49.039,49.043,49.047,49.051,49.055,49.059,49.062999999999995,49.067,49.071,49.074999999999996,49.079,49.083,49.086999999999996,49.091,49.095,49.099,49.103,49.107,49.111,49.115,49.119,49.123,49.126999999999995,49.131,49.135,49.138999999999996,49.143,49.147,49.150999999999996,49.155,49.159,49.163,49.167,49.171,49.175,49.179,49.183,49.187,49.190999999999995,49.195,49.199,49.202999999999996,49.207,49.211,49.214999999999996,49.219,49.223,49.227,49.231,49.235,49.239,49.243,49.247,49.251,49.254999999999995,49.259,49.263,49.266999999999996,49.271,49.275,49.278999999999996,49.283,49.287,49.291,49.295,49.299,49.299,49.763,49.766999999999996,49.771,49.775,49.778999999999996,49.783,49.787,49.791,49.794999999999995,49.799,49.803,49.806999999999995,49.811,49.815,49.818999999999996,49.823,49.827,49.830999999999996,49.835,49.839,49.842999999999996,49.847,49.851,49.855,49.858999999999995,49.863,49.867,49.870999999999995,49.875,49.879,49.882999999999996,49.887,49.891,49.894999999999996,49.899,49.903,49.907,49.911,49.915,49.919,49.922999999999995,49.927,49.931,49.934999999999995,49.939,49.943,49.946999999999996,49.951,49.955,49.958999999999996,49.963,49.967,49.971,49.975,49.979,49.983,49.986999999999995,49.991,49.995,49.998999999999995,50.003,50.007,50.010999999999996,50.015,50.019,50.022999999999996,50.027,50.031,50.035,50.039,50.043,50.047,50.050999999999995,50.055,50.059,50.062999999999995,50.067,50.071,50.074999999999996,50.079,50.083,50.086999999999996,50.091,50.095,50.099,50.103,50.107,50.111,50.114999999999995,50.119,50.123,50.126999999999995,50.131,50.135,50.138999999999996,50.143,50.147,50.150999999999996,50.155,50.159,50.159,50.623,50.626999999999995,50.631,50.635,50.638999999999996,50.643,50.647,50.650999999999996,50.654999999999994,50.659,50.663,50.666999999999994,50.671,50.675,50.678999999999995,50.683,50.687,50.690999999999995,50.695,50.699,50.702999999999996,50.707,50.711,50.714999999999996,50.718999999999994,50.723,50.727,50.730999999999995,50.735,50.739,50.742999999999995,50.747,50.751,50.754999999999995,50.759,50.763,50.766999999999996,50.771,50.775,50.778999999999996,50.782999999999994,50.787,50.791,50.794999999999995,50.799,50.803,50.806999999999995,50.811,50.815,50.818999999999996,50.823,50.827,50.830999999999996,50.835,50.839,50.842999999999996,50.846999999999994,50.851,50.855,50.858999999999995,50.863,50.867,50.870999999999995,50.875,50.879,50.882999999999996,50.887,50.891,50.894999999999996,50.899,50.903,50.907,50.910999999999994,50.915,50.919,50.922999999999995,50.927,50.931,50.934999999999995,50.939,50.943,50.946999999999996,50.951,50.955,50.958999999999996,50.963,50.967,50.971,50.974999999999994,50.979,50.983,50.986999999999995,50.991,50.995,50.998999999999995,51.003,51.007,51.010999999999996,51.015,51.019,51.019,51.483000000000004,51.487,51.49100000000001,51.495000000000005,51.499,51.50300000000001,51.507000000000005,51.511,51.515,51.519000000000005,51.523,51.527,51.531000000000006,51.535000000000004,51.539,51.543000000000006,51.547000000000004,51.551,51.55500000000001,51.559000000000005,51.563,51.56700000000001,51.571000000000005,51.575,51.579,51.583000000000006,51.587,51.591,51.595000000000006,51.599000000000004,51.603,51.607000000000006,51.611000000000004,51.615,51.61900000000001,51.623000000000005,51.627,51.63100000000001,51.635000000000005,51.639,51.643,51.647000000000006,51.651,51.655,51.659000000000006,51.663000000000004,51.667,51.67100000000001,51.675000000000004,51.679,51.68300000000001,51.687000000000005,51.691,51.69500000000001,51.699000000000005,51.703,51.707,51.711000000000006,51.715,51.719,51.723000000000006,51.727000000000004,51.731,51.73500000000001,51.739000000000004,51.743,51.74700000000001,51.751000000000005,51.755,51.75900000000001,51.763000000000005,51.767,51.771,51.775000000000006,51.779,51.783,51.787000000000006,51.791000000000004,51.795,51.79900000000001,51.803000000000004,51.807,51.81100000000001,51.815000000000005,51.819,51.82300000000001,51.827000000000005,51.831,51.835,51.839000000000006,51.843,51.847,51.851000000000006,51.855000000000004,51.859,51.86300000000001,51.867000000000004,51.871,51.87500000000001,51.879000000000005,51.879000000000005,52.343,52.347,52.351000000000006,52.355000000000004,52.359,52.36300000000001,52.367000000000004,52.371,52.375,52.379000000000005,52.383,52.387,52.391000000000005,52.395,52.399,52.403000000000006,52.407000000000004,52.411,52.415000000000006,52.419000000000004,52.423,52.42700000000001,52.431000000000004,52.435,52.439,52.443000000000005,52.447,52.451,52.455000000000005,52.459,52.463,52.467000000000006,52.471000000000004,52.475,52.479000000000006,52.483000000000004,52.487,52.49100000000001,52.495000000000005,52.499,52.503,52.507000000000005,52.511,52.515,52.519000000000005,52.523,52.527,52.531000000000006,52.535000000000004,52.539,52.543000000000006,52.547000000000004,52.551,52.55500000000001,52.559000000000005,52.563,52.567,52.571000000000005,52.575,52.579,52.583000000000006,52.587,52.591,52.595000000000006,52.599000000000004,52.603,52.607000000000006,52.611000000000004,52.615,52.61900000000001,52.623000000000005,52.627,52.631,52.635000000000005,52.639,52.643,52.647000000000006,52.651,52.655,52.659000000000006,52.663000000000004,52.667,52.67100000000001,52.675000000000004,52.679,52.68300000000001,52.687000000000005,52.691,52.695,52.699000000000005,52.703,52.707,52.711000000000006,52.715,52.719,52.723000000000006,52.727000000000004,52.731,52.73500000000001,52.739000000000004,52.739000000000004,53.203,53.207,53.211000000000006,53.215,53.219,53.223000000000006,53.227000000000004,53.231,53.235,53.239000000000004,53.243,53.247,53.251000000000005,53.255,53.259,53.263000000000005,53.267,53.271,53.275000000000006,53.279,53.283,53.287000000000006,53.291000000000004,53.295,53.299,53.303000000000004,53.307,53.311,53.315000000000005,53.319,53.323,53.327000000000005,53.331,53.335,53.339000000000006,53.343,53.347,53.351000000000006,53.355000000000004,53.359,53.363,53.367000000000004,53.371,53.375,53.379000000000005,53.383,53.387,53.391000000000005,53.395,53.399,53.403000000000006,53.407000000000004,53.411,53.415000000000006,53.419000000000004,53.423,53.427,53.431000000000004,53.435,53.439,53.443000000000005,53.447,53.451,53.455000000000005,53.459,53.463,53.467000000000006,53.471000000000004,53.475,53.479000000000006,53.483000000000004,53.487,53.491,53.495000000000005,53.499,53.503,53.507000000000005,53.511,53.515,53.519000000000005,53.523,53.527,53.531000000000006,53.535000000000004,53.539,53.543000000000006,53.547000000000004,53.551,53.555,53.559000000000005,53.563,53.567,53.571000000000005,53.575,53.579,53.583000000000006,53.587,53.591,53.595000000000006,53.599000000000004,53.599000000000004,54.063,54.067,54.071000000000005,54.075,54.079,54.083000000000006,54.087,54.091,54.095,54.099000000000004,54.103,54.107,54.111000000000004,54.115,54.119,54.123000000000005,54.127,54.131,54.135000000000005,54.139,54.143,54.147000000000006,54.151,54.155,54.159,54.163000000000004,54.167,54.171,54.175000000000004,54.179,54.183,54.187000000000005,54.191,54.195,54.199000000000005,54.203,54.207,54.211000000000006,54.215,54.219,54.223,54.227000000000004,54.231,54.235,54.239000000000004,54.243,54.247,54.251000000000005,54.255,54.259,54.263000000000005,54.267,54.271,54.275000000000006,54.279,54.283,54.287,54.291000000000004,54.295,54.299,54.303000000000004,54.307,54.311,54.315000000000005,54.319,54.323,54.327000000000005,54.331,54.335,54.339000000000006,54.343,54.347,54.351,54.355000000000004,54.359,54.363,54.367000000000004,54.371,54.375,54.379000000000005,54.383,54.387,54.391000000000005,54.395,54.399,54.403000000000006,54.407000000000004,54.411,54.415,54.419000000000004,54.423,54.427,54.431000000000004,54.435,54.439,54.443000000000005,54.447,54.451,54.455000000000005,54.459,54.459,54.923,54.927,54.931000000000004,54.935,54.939,54.943000000000005,54.947,54.951,54.955,54.959,54.963,54.967,54.971000000000004,54.975,54.979,54.983000000000004,54.987,54.991,54.995000000000005,54.999,55.003,55.007000000000005,55.011,55.015,55.019,55.023,55.027,55.031,55.035000000000004,55.039,55.043,55.047000000000004,55.051,55.055,55.059000000000005,55.063,55.067,55.071000000000005,55.075,55.079,55.083,55.087,55.091,55.095,55.099000000000004,55.103,55.107,55.111000000000004,55.115,55.119,55.123000000000005,55.127,55.131,55.135000000000005,55.139,55.143,55.147,55.151,55.155,55.159,55.163000000000004,55.167,55.171,55.175000000000004,55.179,55.183,55.187000000000005,55.191,55.195,55.199000000000005,55.203,55.207,55.211,55.215,55.219,55.223,55.227000000000004,55.231,55.235,55.239000000000004,55.243,55.247,55.251000000000005,55.255,55.259,55.263000000000005,55.267,55.271,55.275,55.279,55.283,55.287,55.291000000000004,55.295,55.299,55.303000000000004,55.307,55.311,55.315000000000005,55.319,55.319,55.783,55.787,55.791000000000004,55.795,55.799,55.803000000000004,55.807,55.811,55.815,55.819,55.823,55.827,55.831,55.835,55.839,55.843,55.847,55.851,55.855000000000004,55.859,55.863,55.867000000000004,55.871,55.875,55.879,55.883,55.887,55.891,55.895,55.899,55.903,55.907000000000004,55.911,55.915,55.919000000000004,55.923,55.927,55.931000000000004,55.935,55.939,55.943,55.947,55.951,55.955,55.959,55.963,55.967,55.971000000000004,55.975,55.979,55.983000000000004,55.987,55.991,55.995000000000005,55.999,56.003,56.007,56.011,56.015,56.019,56.023,56.027,56.031,56.035000000000004,56.039,56.043,56.047000000000004,56.051,56.055,56.059000000000005,56.063,56.067,56.071,56.075,56.079,56.083,56.087,56.091,56.095,56.099000000000004,56.103,56.107,56.111000000000004,56.115,56.119,56.123000000000005,56.127,56.131,56.135,56.139,56.143,56.147,56.151,56.155,56.159,56.163000000000004,56.167,56.171,56.175000000000004,56.179,56.179,56.643,56.647,56.651,56.655,56.659,56.663000000000004,56.667,56.671,56.675,56.679,56.683,56.687,56.691,56.695,56.699,56.703,56.707,56.711,56.715,56.719,56.723,56.727000000000004,56.731,56.735,56.739,56.743,56.747,56.751,56.755,56.759,56.763,56.767,56.771,56.775,56.779,56.783,56.787,56.791000000000004,56.795,56.799,56.803,56.807,56.811,56.815,56.819,56.823,56.827,56.831,56.835,56.839,56.843,56.847,56.851,56.855000000000004,56.859,56.863,56.867,56.871,56.875,56.879,56.883,56.887,56.891,56.895,56.899,56.903,56.907000000000004,56.911,56.915,56.919000000000004,56.923,56.927,56.931,56.935,56.939,56.943,56.947,56.951,56.955,56.959,56.963,56.967,56.971000000000004,56.975,56.979,56.983000000000004,56.987,56.991,56.995,56.999,57.003,57.007,57.011,57.015,57.019,57.023,57.027,57.031,57.035000000000004,57.039,57.039,57.503,57.507,57.511,57.515,57.519,57.523,57.527,57.531,57.535,57.539,57.543,57.547,57.551,57.555,57.559,57.563,57.567,57.571,57.575,57.579,57.583,57.587,57.591,57.595,57.599,57.603,57.607,57.611,57.615,57.619,57.623,57.627,57.631,57.635,57.639,57.643,57.647,57.651,57.655,57.659,57.663,57.667,57.671,57.675,57.679,57.683,57.687,57.691,57.695,57.699,57.703,57.707,57.711,57.715,57.719,57.723,57.727,57.731,57.735,57.739,57.743,57.747,57.751,57.755,57.759,57.763,57.767,57.771,57.775,57.779,57.783,57.787,57.791,57.795,57.799,57.803,57.807,57.811,57.815,57.819,57.823,57.827,57.831,57.835,57.839,57.843,57.847,57.851,57.855,57.859,57.863,57.867,57.871,57.875,57.879,57.883,57.887,57.891,57.895,57.899,57.899,58.363,58.367,58.371,58.375,58.379,58.383,58.387,58.391,58.394999999999996,58.399,58.403,58.407,58.411,58.415,58.419,58.423,58.427,58.431,58.435,58.439,58.443,58.447,58.451,58.455,58.458999999999996,58.463,58.467,58.471,58.475,58.479,58.483,58.487,58.491,58.495,58.499,58.503,58.507,58.511,58.515,58.519,58.522999999999996,58.527,58.531,58.535,58.539,58.543,58.547,58.551,58.555,58.559,58.563,58.567,58.571,58.575,58.579,58.583,58.586999999999996,58.591,58.595,58.599,58.603,58.607,58.611,58.615,58.619,58.623,58.627,58.631,58.635,58.639,58.643,58.647,58.650999999999996,58.655,58.659,58.663,58.667,58.671,58.675,58.679,58.683,58.687,58.691,58.695,58.699,58.703,58.707,58.711,58.714999999999996,58.719,58.723,58.727,58.731,58.735,58.739,58.743,58.747,58.751,58.755,58.759,58.759,59.223,59.227,59.231,59.235,59.239,59.243,59.247,59.251,59.254999999999995,59.259,59.263,59.266999999999996,59.271,59.275,59.278999999999996,59.283,59.287,59.291,59.295,59.299,59.303,59.307,59.311,59.315,59.318999999999996,59.323,59.327,59.330999999999996,59.335,59.339,59.342999999999996,59.347,59.351,59.355,59.359,59.363,59.367,59.371,59.375,59.379,59.382999999999996,59.387,59.391,59.394999999999996,59.399,59.403,59.407,59.411,59.415,59.419,59.423,59.427,59.431,59.435,59.439,59.443,59.446999999999996,59.451,59.455,59.458999999999996,59.463,59.467,59.471,59.475,59.479,59.483,59.487,59.491,59.495,59.499,59.503,59.507,59.510999999999996,59.515,59.519,59.522999999999996,59.527,59.531,59.535,59.539,59.543,59.547,59.551,59.555,59.559,59.563,59.567,59.571,59.574999999999996,59.579,59.583,59.586999999999996,59.591,59.595,59.599,59.603,59.607,59.611,59.615,59.619,59.619,60.083,60.086999999999996,60.091,60.095,60.099,60.103,60.107,60.111,60.114999999999995,60.119,60.123,60.126999999999995,60.131,60.135,60.138999999999996,60.143,60.147,60.150999999999996,60.155,60.159,60.163,60.167,60.171,60.175,60.178999999999995,60.183,60.187,60.190999999999995,60.195,60.199,60.202999999999996,60.207,60.211,60.214999999999996,60.219,60.223,60.227,60.231,60.235,60.239,60.242999999999995,60.247,60.251,60.254999999999995,60.259,60.263,60.266999999999996,60.271,60.275,60.278999999999996,60.283,60.287,60.291,60.295,60.299,60.303,60.306999999999995,60.311,60.315,60.318999999999996,60.323,60.327,60.330999999999996,60.335,60.339,60.342999999999996,60.347,60.351,60.355,60.359,60.363,60.367,60.370999999999995,60.375,60.379,60.382999999999996,60.387,60.391,60.394999999999996,60.399,60.403,60.407,60.411,60.415,60.419,60.423,60.427,60.431,60.434999999999995,60.439,60.443,60.446999999999996,60.451,60.455,60.458999999999996,60.463,60.467,60.471,60.475,60.479,60.479,60.943,60.946999999999996,60.951,60.955,60.958999999999996,60.963,60.967,60.971,60.974999999999994,60.979,60.983,60.986999999999995,60.991,60.995,60.998999999999995,61.003,61.007,61.010999999999996,61.015,61.019,61.022999999999996,61.027,61.031,61.035,61.038999999999994,61.043,61.047,61.050999999999995,61.055,61.059,61.062999999999995,61.067,61.071,61.074999999999996,61.079,61.083,61.086999999999996,61.091,61.095,61.099,61.102999999999994,61.107,61.111,61.114999999999995,61.119,61.123,61.126999999999995,61.131,61.135,61.138999999999996,61.143,61.147,61.150999999999996,61.155,61.159,61.163,61.166999999999994,61.171,61.175,61.178999999999995,61.183,61.187,61.190999999999995,61.195,61.199,61.202999999999996,61.207,61.211,61.214999999999996,61.219,61.223,61.227,61.230999999999995,61.235,61.239,61.242999999999995,61.247,61.251,61.254999999999995,61.259,61.263,61.266999999999996,61.271,61.275,61.278999999999996,61.283,61.287,61.291,61.294999999999995,61.299,61.303,61.306999999999995,61.311,61.315,61.318999999999996,61.323,61.327,61.330999999999996,61.335,61.339,61.339,61.803000000000004,61.807,61.81100000000001,61.815000000000005,61.819,61.82300000000001,61.827000000000005,61.831,61.835,61.839000000000006,61.843,61.847,61.851000000000006,61.855000000000004,61.859,61.86300000000001,61.867000000000004,61.871,61.87500000000001,61.879000000000005,61.883,61.88700000000001,61.891000000000005,61.895,61.899,61.903000000000006,61.907000000000004,61.911,61.915000000000006,61.919000000000004,61.923,61.92700000000001,61.931000000000004,61.935,61.93900000000001,61.943000000000005,61.947,61.95100000000001,61.955000000000005,61.959,61.963,61.967000000000006,61.971000000000004,61.975,61.979000000000006,61.983000000000004,61.987,61.99100000000001,61.995000000000005,61.999,62.00300000000001,62.007000000000005,62.011,62.01500000000001,62.019000000000005,62.023,62.027,62.031000000000006,62.035000000000004,62.039,62.043000000000006,62.047000000000004,62.051,62.05500000000001,62.059000000000005,62.063,62.06700000000001,62.071000000000005,62.075,62.07900000000001,62.083000000000006,62.087,62.091,62.095000000000006,62.099000000000004,62.103,62.107000000000006,62.111000000000004,62.115,62.11900000000001,62.123000000000005,62.127,62.13100000000001,62.135000000000005,62.139,62.14300000000001,62.147000000000006,62.151,62.155,62.159000000000006,62.163000000000004,62.167,62.17100000000001,62.175000000000004,62.179,62.18300000000001,62.187000000000005,62.191,62.19500000000001,62.199000000000005,62.199000000000005,62.663000000000004,62.667,62.67100000000001,62.675000000000004,62.679,62.68300000000001,62.687000000000005,62.691,62.695,62.699000000000005,62.703,62.707,62.711000000000006,62.715,62.719,62.723000000000006,62.727000000000004,62.731,62.73500000000001,62.739000000000004,62.743,62.74700000000001,62.751000000000005,62.755,62.759,62.763000000000005,62.767,62.771,62.775000000000006,62.779,62.783,62.787000000000006,62.791000000000004,62.795,62.79900000000001,62.803000000000004,62.807,62.81100000000001,62.815000000000005,62.819,62.823,62.827000000000005,62.831,62.835,62.839000000000006,62.843,62.847,62.851000000000006,62.855000000000004,62.859,62.86300000000001,62.867000000000004,62.871,62.87500000000001,62.879000000000005,62.883,62.887,62.891000000000005,62.895,62.899,62.903000000000006,62.907000000000004,62.911,62.915000000000006,62.919000000000004,62.923,62.92700000000001,62.931000000000004,62.935,62.93900000000001,62.943000000000005,62.947,62.951,62.955000000000005,62.959,62.963,62.967000000000006,62.971000000000004,62.975,62.979000000000006,62.983000000000004,62.987,62.99100000000001,62.995000000000005,62.999,63.00300000000001,63.007000000000005,63.011,63.015,63.019000000000005,63.023,63.027,63.031000000000006,63.035000000000004,63.039,63.043000000000006,63.047000000000004,63.051,63.05500000000001,63.059000000000005,63.059000000000005,63.523,63.527,63.531000000000006,63.535000000000004,63.539,63.543000000000006,63.547000000000004,63.551,63.555,63.559000000000005,63.563,63.567,63.571000000000005,63.575,63.579,63.583000000000006,63.587,63.591,63.595000000000006,63.599000000000004,63.603,63.607000000000006,63.611000000000004,63.615,63.619,63.623000000000005,63.627,63.631,63.635000000000005,63.639,63.643,63.647000000000006,63.651,63.655,63.659000000000006,63.663000000000004,63.667,63.67100000000001,63.675000000000004,63.679,63.683,63.687000000000005,63.691,63.695,63.699000000000005,63.703,63.707,63.711000000000006,63.715,63.719,63.723000000000006,63.727000000000004,63.731,63.73500000000001,63.739000000000004,63.743,63.747,63.751000000000005,63.755,63.759,63.763000000000005,63.767,63.771,63.775000000000006,63.779,63.783,63.787000000000006,63.791000000000004,63.795,63.79900000000001,63.803000000000004,63.807,63.811,63.815000000000005,63.819,63.823,63.827000000000005,63.831,63.835,63.839000000000006,63.843,63.847,63.851000000000006,63.855000000000004,63.859,63.86300000000001,63.867000000000004,63.871,63.875,63.879000000000005,63.883,63.887,63.891000000000005,63.895,63.899,63.903000000000006,63.907000000000004,63.911,63.915000000000006,63.919000000000004,63.919000000000004,64.383,64.387,64.39099999999999,64.395,64.399,64.40299999999999,64.407,64.411,64.41499999999999,64.419,64.423,64.42699999999999,64.431,64.435,64.439,64.443,64.44699999999999,64.451,64.455,64.45899999999999,64.463,64.467,64.47099999999999,64.475,64.479,64.48299999999999,64.487,64.491,64.49499999999999,64.499,64.503,64.50699999999999,64.511,64.515,64.51899999999999,64.523,64.527,64.53099999999999,64.535,64.539,64.54299999999999,64.547,64.551,64.55499999999999,64.559,64.563,64.567,64.571,64.57499999999999,64.579,64.583,64.58699999999999,64.591,64.595,64.59899999999999,64.603,64.607,64.61099999999999,64.615,64.619,64.62299999999999,64.627,64.631,64.63499999999999,64.639,64.643,64.64699999999999,64.651,64.655,64.65899999999999,64.663,64.667,64.67099999999999,64.675,64.679,64.68299999999999,64.687,64.691,64.695,64.699,64.70299999999999,64.707,64.711,64.71499999999999,64.719,64.723,64.72699999999999,64.731,64.735,64.73899999999999,64.743,64.747,64.75099999999999,64.755,64.759,64.76299999999999,64.767,64.771,64.77499999999999,64.779,64.779,65.243,65.247,65.25099999999999,65.255,65.259,65.26299999999999,65.267,65.271,65.27499999999999,65.279,65.283,65.28699999999999,65.291,65.295,65.29899999999999,65.303,65.30699999999999,65.31099999999999,65.315,65.31899999999999,65.323,65.327,65.33099999999999,65.335,65.339,65.34299999999999,65.347,65.351,65.35499999999999,65.359,65.363,65.36699999999999,65.371,65.375,65.37899999999999,65.383,65.387,65.39099999999999,65.395,65.399,65.40299999999999,65.407,65.411,65.41499999999999,65.419,65.423,65.42699999999999,65.431,65.43499999999999,65.439,65.443,65.44699999999999,65.451,65.455,65.45899999999999,65.463,65.467,65.47099999999999,65.475,65.479,65.48299999999999,65.487,65.491,65.49499999999999,65.499,65.503,65.50699999999999,65.511,65.515,65.51899999999999,65.523,65.527,65.53099999999999,65.535,65.539,65.54299999999999,65.547,65.551,65.55499999999999,65.559,65.56299999999999,65.567,65.571,65.57499999999999,65.579,65.583,65.58699999999999,65.591,65.595,65.59899999999999,65.603,65.607,65.61099999999999,65.615,65.619,65.62299999999999,65.627,65.631,65.63499999999999,65.639,65.639,66.103,66.107,66.11099999999999,66.115,66.119,66.12299999999999,66.127,66.131,66.13499999999999,66.139,66.143,66.14699999999999,66.151,66.155,66.15899999999999,66.163,66.16699999999999,66.17099999999999,66.175,66.17899999999999,66.18299999999999,66.187,66.19099999999999,66.195,66.199,66.20299999999999,66.207,66.211,66.21499999999999,66.219,66.223,66.22699999999999,66.231,66.235,66.23899999999999,66.243,66.247,66.25099999999999,66.255,66.259,66.26299999999999,66.267,66.271,66.27499999999999,66.279,66.283,66.28699999999999,66.291,66.29499999999999,66.29899999999999,66.303,66.30699999999999,66.31099999999999,66.315,66.31899999999999,66.323,66.327,66.33099999999999,66.335,66.339,66.34299999999999,66.347,66.351,66.35499999999999,66.359,66.363,66.36699999999999,66.371,66.375,66.37899999999999,66.383,66.387,66.39099999999999,66.395,66.399,66.40299999999999,66.407,66.411,66.41499999999999,66.419,66.42299999999999,66.42699999999999,66.431,66.43499999999999,66.439,66.443,66.44699999999999,66.451,66.455,66.45899999999999,66.463,66.467,66.47099999999999,66.475,66.479,66.48299999999999,66.487,66.491,66.49499999999999,66.499,66.499,66.96300000000001,66.96700000000001,66.971,66.97500000000001,66.97900000000001,66.983,66.98700000000001,66.99100000000001,66.995,66.99900000000001,67.00300000000001,67.007,67.01100000000001,67.01500000000001,67.019,67.02300000000001,67.027,67.031,67.03500000000001,67.039,67.043,67.04700000000001,67.051,67.055,67.05900000000001,67.063,67.06700000000001,67.07100000000001,67.075,67.07900000000001,67.08300000000001,67.087,67.09100000000001,67.09500000000001,67.099,67.10300000000001,67.10700000000001,67.111,67.11500000000001,67.11900000000001,67.123,67.12700000000001,67.13100000000001,67.135,67.13900000000001,67.14300000000001,67.147,67.15100000000001,67.155,67.159,67.16300000000001,67.167,67.171,67.17500000000001,67.179,67.183,67.18700000000001,67.191,67.19500000000001,67.19900000000001,67.203,67.20700000000001,67.21100000000001,67.215,67.21900000000001,67.22300000000001,67.227,67.23100000000001,67.23500000000001,67.239,67.24300000000001,67.24700000000001,67.251,67.25500000000001,67.25900000000001,67.263,67.26700000000001,67.27100000000002,67.275,67.27900000000001,67.283,67.287,67.29100000000001,67.295,67.299,67.30300000000001,67.307,67.311,67.31500000000001,67.319,67.32300000000001,67.32700000000001,67.331,67.33500000000001,67.33900000000001,67.343,67.34700000000001,67.35100000000001,67.355,67.35900000000001,67.35900000000001,67.82300000000001,67.82700000000001,67.831,67.83500000000001,67.83900000000001,67.843,67.84700000000001,67.85100000000001,67.855,67.85900000000001,67.86300000000001,67.867,67.87100000000001,67.87500000000001,67.879,67.88300000000001,67.887,67.891,67.89500000000001,67.899,67.903,67.90700000000001,67.911,67.915,67.91900000000001,67.923,67.927,67.93100000000001,67.935,67.93900000000001,67.94300000000001,67.947,67.95100000000001,67.95500000000001,67.959,67.96300000000001,67.96700000000001,67.971,67.97500000000001,67.97900000000001,67.983,67.98700000000001,67.99100000000001,67.995,67.99900000000001,68.00300000000001,68.007,68.01100000000001,68.015,68.019,68.02300000000001,68.027,68.031,68.03500000000001,68.039,68.043,68.04700000000001,68.051,68.055,68.05900000000001,68.063,68.06700000000001,68.07100000000001,68.075,68.07900000000001,68.08300000000001,68.087,68.09100000000001,68.09500000000001,68.099,68.10300000000001,68.10700000000001,68.111,68.11500000000001,68.11900000000001,68.123,68.12700000000001,68.13100000000001,68.135,68.13900000000001,68.143,68.147,68.15100000000001,68.155,68.159,68.16300000000001,68.167,68.171,68.17500000000001,68.179,68.183,68.18700000000001,68.191,68.19500000000001,68.19900000000001,68.203,68.20700000000001,68.21100000000001,68.215,68.21900000000001,68.21900000000001,68.683,68.68700000000001,68.691,68.69500000000001,68.69900000000001,68.703,68.70700000000001,68.71100000000001,68.715,68.71900000000001,68.72300000000001,68.727,68.73100000000001,68.73500000000001,68.739,68.74300000000001,68.747,68.751,68.75500000000001,68.759,68.763,68.76700000000001,68.771,68.775,68.77900000000001,68.783,68.787,68.79100000000001,68.795,68.799,68.80300000000001,68.807,68.811,68.81500000000001,68.819,68.82300000000001,68.82700000000001,68.831,68.83500000000001,68.83900000000001,68.843,68.84700000000001,68.85100000000001,68.855,68.85900000000001,68.86300000000001,68.867,68.87100000000001,68.875,68.879,68.88300000000001,68.887,68.891,68.89500000000001,68.899,68.903,68.90700000000001,68.911,68.915,68.91900000000001,68.923,68.927,68.93100000000001,68.935,68.93900000000001,68.94300000000001,68.947,68.95100000000001,68.95500000000001,68.959,68.96300000000001,68.96700000000001,68.971,68.97500000000001,68.97900000000001,68.983,68.98700000000001,68.99100000000001,68.995,68.99900000000001,69.003,69.007,69.01100000000001,69.015,69.019,69.02300000000001,69.027,69.031,69.03500000000001,69.039,69.043,69.04700000000001,69.051,69.055,69.05900000000001,69.063,69.06700000000001,69.07100000000001,69.075,69.07900000000001,69.07900000000001,69.543,69.54700000000001,69.551,69.555,69.55900000000001,69.563,69.56700000000001,69.57100000000001,69.575,69.57900000000001,69.58300000000001,69.587,69.59100000000001,69.59500000000001,69.599,69.60300000000001,69.607,69.611,69.61500000000001,69.619,69.623,69.62700000000001,69.631,69.635,69.63900000000001,69.643,69.647,69.65100000000001,69.655,69.659,69.66300000000001,69.667,69.671,69.67500000000001,69.679,69.683,69.68700000000001,69.691,69.69500000000001,69.69900000000001,69.703,69.70700000000001,69.71100000000001,69.715,69.71900000000001,69.72300000000001,69.727,69.73100000000001,69.735,69.739,69.74300000000001,69.747,69.751,69.75500000000001,69.759,69.763,69.76700000000001,69.771,69.775,69.77900000000001,69.783,69.787,69.79100000000001,69.795,69.799,69.80300000000001,69.807,69.811,69.81500000000001,69.819,69.82300000000001,69.82700000000001,69.831,69.83500000000001,69.83900000000001,69.843,69.84700000000001,69.85100000000001,69.855,69.85900000000001,69.863,69.867,69.87100000000001,69.875,69.879,69.88300000000001,69.887,69.891,69.89500000000001,69.899,69.903,69.90700000000001,69.911,69.915,69.91900000000001,69.923,69.927,69.93100000000001,69.935,69.93900000000001,69.93900000000001,70.403,70.40700000000001,70.411,70.415,70.41900000000001,70.423,70.427,70.43100000000001,70.435,70.43900000000001,70.44300000000001,70.447,70.45100000000001,70.45500000000001,70.459,70.46300000000001,70.467,70.471,70.47500000000001,70.479,70.483,70.48700000000001,70.491,70.495,70.49900000000001,70.503,70.507,70.51100000000001,70.515,70.519,70.52300000000001,70.527,70.531,70.53500000000001,70.539,70.543,70.54700000000001,70.551,70.555,70.55900000000001,70.563,70.56700000000001,70.57100000000001,70.575,70.57900000000001,70.58300000000001,70.587,70.59100000000001,70.595,70.599,70.60300000000001,70.607,70.611,70.61500000000001,70.619,70.623,70.62700000000001,70.631,70.635,70.63900000000001,70.643,70.647,70.65100000000001,70.655,70.659,70.66300000000001,70.667,70.671,70.67500000000001,70.679,70.683,70.68700000000001,70.691,70.69500000000001,70.69900000000001,70.703,70.70700000000001,70.71100000000001,70.715,70.71900000000001,70.723,70.727,70.73100000000001,70.735,70.739,70.74300000000001,70.747,70.751,70.75500000000001,70.759,70.763,70.76700000000001,70.771,70.775,70.77900000000001,70.783,70.787,70.79100000000001,70.795,70.799,70.799,71.263,71.26700000000001,71.271,71.275,71.27900000000001,71.283,71.287,71.29100000000001,71.295,71.299,71.30300000000001,71.307,71.311,71.31500000000001,71.319,71.32300000000001,71.327,71.331,71.33500000000001,71.339,71.343,71.34700000000001,71.351,71.355,71.35900000000001,71.363,71.367,71.37100000000001,71.375,71.379,71.38300000000001,71.387,71.391,71.39500000000001,71.399,71.403,71.40700000000001,71.411,71.415,71.41900000000001,71.423,71.427,71.43100000000001,71.435,71.43900000000001,71.44300000000001,71.447,71.45100000000001,71.455,71.459,71.46300000000001,71.467,71.471,71.47500000000001,71.479,71.483,71.48700000000001,71.491,71.495,71.49900000000001,71.503,71.507,71.51100000000001,71.515,71.519,71.52300000000001,71.527,71.531,71.53500000000001,71.539,71.543,71.54700000000001,71.551,71.555,71.55900000000001,71.563,71.56700000000001,71.57100000000001,71.575,71.57900000000001,71.583,71.587,71.59100000000001,71.595,71.599,71.60300000000001,71.607,71.611,71.61500000000001,71.619,71.623,71.62700000000001,71.631,71.635,71.63900000000001,71.643,71.647,71.65100000000001,71.655,71.659,71.659,72.123,72.12700000000001,72.131,72.135,72.13900000000001,72.143,72.147,72.15100000000001,72.155,72.159,72.16300000000001,72.167,72.171,72.17500000000001,72.179,72.183,72.187,72.191,72.19500000000001,72.199,72.203,72.20700000000001,72.211,72.215,72.21900000000001,72.223,72.227,72.23100000000001,72.235,72.239,72.24300000000001,72.247,72.251,72.25500000000001,72.259,72.263,72.26700000000001,72.271,72.275,72.27900000000001,72.283,72.287,72.29100000000001,72.295,72.299,72.30300000000001,72.307,72.311,72.315,72.319,72.32300000000001,72.327,72.331,72.33500000000001,72.339,72.343,72.34700000000001,72.351,72.355,72.35900000000001,72.363,72.367,72.37100000000001,72.375,72.379,72.38300000000001,72.387,72.391,72.39500000000001,72.399,72.403,72.40700000000001,72.411,72.415,72.41900000000001,72.423,72.427,72.43100000000001,72.435,72.43900000000001,72.443,72.447,72.45100000000001,72.455,72.459,72.46300000000001,72.467,72.471,72.47500000000001,72.479,72.483,72.48700000000001,72.491,72.495,72.49900000000001,72.503,72.507,72.51100000000001,72.515,72.519,72.519,72.983,72.98700000000001,72.991,72.995,72.99900000000001,73.003,73.007,73.01100000000001,73.015,73.019,73.02300000000001,73.027,73.031,73.03500000000001,73.039,73.043,73.047,73.051,73.055,73.059,73.063,73.06700000000001,73.071,73.075,73.07900000000001,73.083,73.087,73.09100000000001,73.095,73.099,73.10300000000001,73.107,73.111,73.11500000000001,73.119,73.123,73.12700000000001,73.131,73.135,73.13900000000001,73.143,73.147,73.15100000000001,73.155,73.159,73.16300000000001,73.167,73.171,73.175,73.179,73.183,73.187,73.191,73.19500000000001,73.199,73.203,73.20700000000001,73.211,73.215,73.21900000000001,73.223,73.227,73.23100000000001,73.235,73.239,73.24300000000001,73.247,73.251,73.25500000000001,73.259,73.263,73.26700000000001,73.271,73.275,73.27900000000001,73.283,73.287,73.29100000000001,73.295,73.299,73.303,73.307,73.311,73.315,73.319,73.32300000000001,73.327,73.331,73.33500000000001,73.339,73.343,73.34700000000001,73.351,73.355,73.35900000000001,73.363,73.367,73.37100000000001,73.375,73.379,73.379,73.843,73.84700000000001,73.851,73.855,73.85900000000001,73.863,73.867,73.87100000000001,73.875,73.879,73.88300000000001,73.887,73.891,73.89500000000001,73.899,73.903,73.907,73.911,73.915,73.919,73.923,73.927,73.931,73.935,73.93900000000001,73.943,73.947,73.95100000000001,73.955,73.959,73.96300000000001,73.967,73.971,73.97500000000001,73.979,73.983,73.98700000000001,73.991,73.995,73.99900000000001,74.003,74.007,74.01100000000001,74.015,74.019,74.02300000000001,74.027,74.031,74.035,74.039,74.043,74.047,74.051,74.055,74.059,74.063,74.06700000000001,74.071,74.075,74.07900000000001,74.083,74.087,74.09100000000001,74.095,74.099,74.10300000000001,74.107,74.111,74.11500000000001,74.119,74.123,74.12700000000001,74.131,74.135,74.13900000000001,74.143,74.147,74.15100000000001,74.155,74.159,74.163,74.167,74.171,74.175,74.179,74.183,74.187,74.191,74.19500000000001,74.199,74.203,74.20700000000001,74.211,74.215,74.21900000000001,74.223,74.227,74.23100000000001,74.235,74.239,74.239,74.703,74.70700000000001,74.711,74.715,74.71900000000001,74.723,74.727,74.73100000000001,74.735,74.739,74.74300000000001,74.747,74.751,74.75500000000001,74.759,74.763,74.767,74.771,74.775,74.779,74.783,74.787,74.791,74.795,74.799,74.803,74.807,74.811,74.815,74.819,74.82300000000001,74.827,74.831,74.83500000000001,74.839,74.843,74.84700000000001,74.851,74.855,74.85900000000001,74.863,74.867,74.87100000000001,74.875,74.879,74.88300000000001,74.887,74.891,74.895,74.899,74.903,74.907,74.911,74.915,74.919,74.923,74.927,74.931,74.935,74.93900000000001,74.943,74.947,74.95100000000001,74.955,74.959,74.96300000000001,74.967,74.971,74.97500000000001,74.979,74.983,74.98700000000001,74.991,74.995,74.99900000000001,75.003,75.007,75.01100000000001,75.015,75.019,75.023,75.027,75.031,75.035,75.039,75.043,75.047,75.051,75.055,75.059,75.063,75.06700000000001,75.071,75.075,75.07900000000001,75.083,75.087,75.09100000000001,75.095,75.099,75.099,75.563,75.56700000000001,75.571,75.575,75.57900000000001,75.583,75.587,75.59100000000001,75.595,75.599,75.60300000000001,75.607,75.611,75.61500000000001,75.619,75.623,75.627,75.631,75.635,75.639,75.643,75.647,75.651,75.655,75.659,75.663,75.667,75.671,75.675,75.679,75.683,75.687,75.691,75.69500000000001,75.699,75.703,75.70700000000001,75.711,75.715,75.71900000000001,75.723,75.727,75.73100000000001,75.735,75.739,75.74300000000001,75.747,75.751,75.755,75.759,75.763,75.767,75.771,75.775,75.779,75.783,75.787,75.791,75.795,75.799,75.803,75.807,75.811,75.815,75.819,75.82300000000001,75.827,75.831,75.83500000000001,75.839,75.843,75.84700000000001,75.851,75.855,75.85900000000001,75.863,75.867,75.87100000000001,75.875,75.879,75.883,75.887,75.891,75.895,75.899,75.903,75.907,75.911,75.915,75.919,75.923,75.927,75.931,75.935,75.93900000000001,75.943,75.947,75.95100000000001,75.955,75.959,75.959,76.423,76.427,76.431,76.435,76.43900000000001,76.443,76.447,76.45100000000001,76.455,76.459,76.46300000000001,76.467,76.471,76.47500000000001,76.479,76.483,76.487,76.491,76.495,76.499,76.503,76.507,76.511,76.515,76.519,76.523,76.527,76.531,76.535,76.539,76.543,76.547,76.551,76.555,76.559,76.563,76.56700000000001,76.571,76.575,76.57900000000001,76.583,76.587,76.59100000000001,76.595,76.599,76.60300000000001,76.607,76.611,76.615,76.619,76.623,76.627,76.631,76.635,76.639,76.643,76.647,76.651,76.655,76.659,76.663,76.667,76.671,76.675,76.679,76.683,76.687,76.691,76.69500000000001,76.699,76.703,76.70700000000001,76.711,76.715,76.71900000000001,76.723,76.727,76.73100000000001,76.735,76.739,76.743,76.747,76.751,76.755,76.759,76.763,76.767,76.771,76.775,76.779,76.783,76.787,76.791,76.795,76.799,76.803,76.807,76.811,76.815,76.819,76.819,77.283,77.287,77.291,77.295,77.299,77.303,77.307,77.311,77.315,77.319,77.32300000000001,77.327,77.331,77.33500000000001,77.339,77.343,77.347,77.351,77.355,77.359,77.363,77.367,77.371,77.375,77.379,77.383,77.387,77.391,77.395,77.399,77.403,77.407,77.411,77.415,77.419,77.423,77.427,77.431,77.435,77.43900000000001,77.443,77.447,77.45100000000001,77.455,77.459,77.46300000000001,77.467,77.471,77.475,77.479,77.483,77.487,77.491,77.495,77.499,77.503,77.507,77.511,77.515,77.519,77.523,77.527,77.531,77.535,77.539,77.543,77.547,77.551,77.555,77.559,77.563,77.56700000000001,77.571,77.575,77.57900000000001,77.583,77.587,77.59100000000001,77.595,77.599,77.603,77.607,77.611,77.615,77.619,77.623,77.627,77.631,77.635,77.639,77.643,77.647,77.651,77.655,77.659,77.663,77.667,77.671,77.675,77.679,77.679,78.143,78.147,78.151,78.155,78.159,78.163,78.167,78.171,78.175,78.179,78.183,78.187,78.191,78.19500000000001,78.199,78.203,78.207,78.211,78.215,78.219,78.223,78.227,78.231,78.235,78.239,78.243,78.247,78.251,78.255,78.259,78.263,78.267,78.271,78.275,78.279,78.283,78.287,78.291,78.295,78.299,78.303,78.307,78.311,78.315,78.319,78.32300000000001,78.327,78.331,78.335,78.339,78.343,78.347,78.351,78.355,78.359,78.363,78.367,78.371,78.375,78.379,78.383,78.387,78.391,78.395,78.399,78.403,78.407,78.411,78.415,78.419,78.423,78.427,78.431,78.435,78.43900000000001,78.443,78.447,78.45100000000001,78.455,78.459,78.463,78.467,78.471,78.475,78.479,78.483,78.487,78.491,78.495,78.499,78.503,78.507,78.511,78.515,78.519,78.523,78.527,78.531,78.535,78.539,78.539,79.003,79.007,79.011,79.015,79.019,79.023,79.027,79.031,79.035,79.039,79.043,79.047,79.051,79.055,79.059,79.063,79.067,79.071,79.075,79.079,79.083,79.087,79.091,79.095,79.099,79.103,79.107,79.111,79.115,79.119,79.123,79.127,79.131,79.135,79.139,79.143,79.147,79.151,79.155,79.159,79.163,79.167,79.171,79.175,79.179,79.183,79.187,79.191,79.195,79.199,79.203,79.207,79.211,79.215,79.219,79.223,79.227,79.231,79.235,79.239,79.243,79.247,79.251,79.255,79.259,79.263,79.267,79.271,79.275,79.279,79.283,79.287,79.291,79.295,79.299,79.303,79.307,79.311,79.315,79.319,79.323,79.327,79.331,79.335,79.339,79.343,79.347,79.351,79.355,79.359,79.363,79.367,79.371,79.375,79.379,79.383,79.387,79.391,79.395,79.399,79.399,79.863,79.867,79.871,79.875,79.879,79.883,79.887,79.891,79.895,79.899,79.903,79.907,79.911,79.915,79.919,79.923,79.92699999999999,79.931,79.935,79.939,79.943,79.947,79.951,79.955,79.959,79.963,79.967,79.971,79.975,79.979,79.983,79.987,79.991,79.995,79.999,80.003,80.007,80.011,80.015,80.019,80.023,80.027,80.031,80.035,80.039,80.043,80.047,80.051,80.05499999999999,80.059,80.063,80.067,80.071,80.075,80.079,80.083,80.087,80.091,80.095,80.099,80.103,80.107,80.111,80.115,80.119,80.123,80.127,80.131,80.135,80.139,80.143,80.147,80.151,80.155,80.159,80.163,80.167,80.171,80.175,80.179,80.18299999999999,80.187,80.191,80.195,80.199,80.203,80.207,80.211,80.215,80.219,80.223,80.227,80.231,80.235,80.239,80.243,80.247,80.251,80.255,80.259,80.259,80.723,80.727,80.731,80.735,80.739,80.743,80.747,80.751,80.755,80.759,80.763,80.767,80.771,80.775,80.779,80.783,80.78699999999999,80.791,80.795,80.79899999999999,80.803,80.807,80.81099999999999,80.815,80.819,80.823,80.827,80.831,80.835,80.839,80.843,80.847,80.851,80.855,80.859,80.863,80.867,80.871,80.875,80.879,80.883,80.887,80.891,80.895,80.899,80.903,80.907,80.911,80.91499999999999,80.919,80.923,80.92699999999999,80.931,80.935,80.939,80.943,80.947,80.951,80.955,80.959,80.963,80.967,80.971,80.975,80.979,80.983,80.987,80.991,80.995,80.999,81.003,81.007,81.011,81.015,81.019,81.023,81.027,81.031,81.035,81.039,81.04299999999999,81.047,81.051,81.05499999999999,81.059,81.063,81.067,81.071,81.075,81.079,81.083,81.087,81.091,81.095,81.099,81.103,81.107,81.111,81.115,81.119,81.119,81.583,81.587,81.591,81.595,81.599,81.603,81.607,81.611,81.615,81.619,81.623,81.627,81.631,81.635,81.639,81.643,81.64699999999999,81.651,81.655,81.65899999999999,81.663,81.667,81.67099999999999,81.675,81.679,81.68299999999999,81.687,81.691,81.695,81.699,81.703,81.707,81.711,81.715,81.719,81.723,81.727,81.731,81.735,81.739,81.743,81.747,81.751,81.755,81.759,81.763,81.767,81.771,81.77499999999999,81.779,81.783,81.78699999999999,81.791,81.795,81.79899999999999,81.803,81.807,81.81099999999999,81.815,81.819,81.823,81.827,81.831,81.835,81.839,81.843,81.847,81.851,81.855,81.859,81.863,81.867,81.871,81.875,81.879,81.883,81.887,81.891,81.895,81.899,81.90299999999999,81.907,81.911,81.91499999999999,81.919,81.923,81.92699999999999,81.931,81.935,81.939,81.943,81.947,81.951,81.955,81.959,81.963,81.967,81.971,81.975,81.979,81.979,82.443,82.447,82.451,82.455,82.459,82.463,82.467,82.471,82.475,82.479,82.483,82.487,82.491,82.495,82.499,82.503,82.50699999999999,82.511,82.515,82.51899999999999,82.523,82.527,82.53099999999999,82.535,82.539,82.54299999999999,82.547,82.551,82.55499999999999,82.559,82.563,82.567,82.571,82.575,82.579,82.583,82.587,82.591,82.595,82.599,82.603,82.607,82.611,82.615,82.619,82.623,82.627,82.631,82.63499999999999,82.639,82.643,82.64699999999999,82.651,82.655,82.65899999999999,82.663,82.667,82.67099999999999,82.675,82.679,82.68299999999999,82.687,82.691,82.695,82.699,82.703,82.707,82.711,82.715,82.719,82.723,82.727,82.731,82.735,82.739,82.743,82.747,82.751,82.755,82.759,82.76299999999999,82.767,82.771,82.77499999999999,82.779,82.783,82.78699999999999,82.791,82.795,82.79899999999999,82.803,82.807,82.81099999999999,82.815,82.819,82.823,82.827,82.831,82.835,82.839,82.839,83.303,83.307,83.31099999999999,83.315,83.319,83.323,83.327,83.331,83.335,83.339,83.343,83.347,83.351,83.355,83.359,83.363,83.36699999999999,83.371,83.375,83.37899999999999,83.383,83.387,83.39099999999999,83.395,83.399,83.40299999999999,83.407,83.411,83.41499999999999,83.419,83.423,83.42699999999999,83.431,83.435,83.439,83.443,83.447,83.451,83.455,83.459,83.463,83.467,83.471,83.475,83.479,83.483,83.487,83.491,83.49499999999999,83.499,83.503,83.50699999999999,83.511,83.515,83.51899999999999,83.523,83.527,83.53099999999999,83.535,83.539,83.54299999999999,83.547,83.551,83.55499999999999,83.559,83.563,83.567,83.571,83.575,83.579,83.583,83.587,83.591,83.595,83.599,83.603,83.607,83.611,83.615,83.619,83.62299999999999,83.627,83.631,83.63499999999999,83.639,83.643,83.64699999999999,83.651,83.655,83.65899999999999,83.663,83.667,83.67099999999999,83.675,83.679,83.68299999999999,83.687,83.691,83.695,83.699,83.699,84.163,84.167,84.17099999999999,84.175,84.179,84.18299999999999,84.187,84.191,84.195,84.199,84.203,84.207,84.211,84.215,84.219,84.223,84.22699999999999,84.231,84.235,84.23899999999999,84.243,84.247,84.25099999999999,84.255,84.259,84.26299999999999,84.267,84.271,84.27499999999999,84.279,84.283,84.28699999999999,84.291,84.295,84.29899999999999,84.303,84.307,84.31099999999999,84.315,84.319,84.323,84.327,84.331,84.335,84.339,84.343,84.347,84.351,84.35499999999999,84.359,84.363,84.36699999999999,84.371,84.375,84.37899999999999,84.383,84.387,84.39099999999999,84.395,84.399,84.40299999999999,84.407,84.411,84.41499999999999,84.419,84.423,84.42699999999999,84.431,84.435,84.439,84.443,84.447,84.451,84.455,84.459,84.463,84.467,84.471,84.475,84.479,84.48299999999999,84.487,84.491,84.49499999999999,84.499,84.503,84.50699999999999,84.511,84.515,84.51899999999999,84.523,84.527,84.53099999999999,84.535,84.539,84.54299999999999,84.547,84.551,84.55499999999999,84.559,84.559,85.023,85.027,85.03099999999999,85.035,85.039,85.04299999999999,85.047,85.051,85.05499999999999,85.059,85.063,85.067,85.071,85.075,85.079,85.083,85.08699999999999,85.091,85.095,85.09899999999999,85.103,85.107,85.11099999999999,85.115,85.119,85.12299999999999,85.127,85.131,85.13499999999999,85.139,85.143,85.14699999999999,85.151,85.155,85.15899999999999,85.163,85.167,85.17099999999999,85.175,85.179,85.18299999999999,85.187,85.191,85.195,85.199,85.203,85.207,85.211,85.21499999999999,85.219,85.223,85.22699999999999,85.231,85.235,85.23899999999999,85.243,85.247,85.25099999999999,85.255,85.259,85.26299999999999,85.267,85.271,85.27499999999999,85.279,85.283,85.28699999999999,85.291,85.295,85.29899999999999,85.303,85.307,85.31099999999999,85.315,85.319,85.323,85.327,85.331,85.335,85.339,85.34299999999999,85.347,85.351,85.35499999999999,85.359,85.363,85.36699999999999,85.371,85.375,85.37899999999999,85.383,85.387,85.39099999999999,85.395,85.399,85.40299999999999,85.407,85.411,85.41499999999999,85.419,85.419,85.883,85.887,85.89099999999999,85.895,85.899,85.90299999999999,85.907,85.911,85.91499999999999,85.919,85.923,85.92699999999999,85.931,85.935,85.939,85.943,85.94699999999999,85.951,85.955,85.95899999999999,85.963,85.967,85.97099999999999,85.975,85.979,85.98299999999999,85.987,85.991,85.99499999999999,85.999,86.003,86.00699999999999,86.011,86.015,86.01899999999999,86.023,86.027,86.03099999999999,86.035,86.039,86.04299999999999,86.047,86.051,86.05499999999999,86.059,86.063,86.067,86.071,86.07499999999999,86.079,86.083,86.08699999999999,86.091,86.095,86.09899999999999,86.103,86.107,86.11099999999999,86.115,86.119,86.12299999999999,86.127,86.131,86.13499999999999,86.139,86.143,86.14699999999999,86.151,86.155,86.15899999999999,86.163,86.167,86.17099999999999,86.175,86.179,86.18299999999999,86.187,86.191,86.195,86.199,86.20299999999999,86.207,86.211,86.21499999999999,86.219,86.223,86.22699999999999,86.231,86.235,86.23899999999999,86.243,86.247,86.25099999999999,86.255,86.259,86.26299999999999,86.267,86.271,86.27499999999999,86.279,86.279,86.743,86.747,86.75099999999999,86.755,86.759,86.76299999999999,86.767,86.771,86.77499999999999,86.779,86.783,86.78699999999999,86.791,86.795,86.79899999999999,86.803,86.80699999999999,86.81099999999999,86.815,86.81899999999999,86.823,86.827,86.83099999999999,86.835,86.839,86.84299999999999,86.847,86.851,86.85499999999999,86.859,86.863,86.86699999999999,86.871,86.875,86.87899999999999,86.883,86.887,86.89099999999999,86.895,86.899,86.90299999999999,86.907,86.911,86.91499999999999,86.919,86.923,86.92699999999999,86.931,86.93499999999999,86.939,86.943,86.94699999999999,86.951,86.955,86.95899999999999,86.963,86.967,86.97099999999999,86.975,86.979,86.98299999999999,86.987,86.991,86.99499999999999,86.999,87.003,87.00699999999999,87.011,87.015,87.01899999999999,87.023,87.027,87.03099999999999,87.035,87.039,87.04299999999999,87.047,87.051,87.05499999999999,87.059,87.06299999999999,87.067,87.071,87.07499999999999,87.079,87.083,87.08699999999999,87.091,87.095,87.09899999999999,87.103,87.107,87.11099999999999,87.115,87.119,87.12299999999999,87.127,87.131,87.13499999999999,87.139,87.139,87.60300000000001,87.60700000000001,87.611,87.61500000000001,87.61900000000001,87.623,87.62700000000001,87.63100000000001,87.635,87.63900000000001,87.64300000000001,87.647,87.65100000000001,87.65500000000002,87.659,87.66300000000001,87.667,87.671,87.67500000000001,87.679,87.683,87.68700000000001,87.691,87.69500000000001,87.69900000000001,87.703,87.70700000000001,87.71100000000001,87.715,87.71900000000001,87.72300000000001,87.727,87.73100000000001,87.73500000000001,87.739,87.74300000000001,87.74700000000001,87.751,87.75500000000001,87.75900000000001,87.763,87.76700000000001,87.77100000000002,87.775,87.77900000000001,87.78300000000002,87.787,87.79100000000001,87.795,87.799,87.80300000000001,87.807,87.811,87.81500000000001,87.819,87.82300000000001,87.82700000000001,87.831,87.83500000000001,87.83900000000001,87.843,87.84700000000001,87.85100000000001,87.855,87.85900000000001,87.86300000000001,87.867,87.87100000000001,87.87500000000001,87.879,87.88300000000001,87.88700000000001,87.891,87.89500000000001,87.89900000000002,87.903,87.90700000000001,87.91100000000002,87.915,87.91900000000001,87.923,87.927,87.93100000000001,87.935,87.93900000000001,87.94300000000001,87.947,87.95100000000001,87.95500000000001,87.959,87.96300000000001,87.96700000000001,87.971,87.97500000000001,87.97900000000001,87.983,87.98700000000001,87.99100000000001,87.995,87.99900000000001,87.99900000000001,88.46300000000001,88.46700000000001,88.471,88.47500000000001,88.47900000000001,88.483,88.48700000000001,88.49100000000001,88.495,88.49900000000001,88.50300000000001,88.507,88.51100000000001,88.51500000000001,88.519,88.52300000000001,88.527,88.531,88.53500000000001,88.539,88.543,88.54700000000001,88.551,88.555,88.55900000000001,88.563,88.56700000000001,88.57100000000001,88.575,88.57900000000001,88.58300000000001,88.587,88.59100000000001,88.59500000000001,88.599,88.60300000000001,88.60700000000001,88.611,88.61500000000001,88.61900000000001,88.623,88.62700000000001,88.63100000000001,88.635,88.63900000000001,88.64300000000001,88.647,88.65100000000001,88.655,88.659,88.66300000000001,88.667,88.671,88.67500000000001,88.679,88.683,88.68700000000001,88.691,88.69500000000001,88.69900000000001,88.703,88.70700000000001,88.71100000000001,88.715,88.71900000000001,88.72300000000001,88.727,88.73100000000001,88.73500000000001,88.739,88.74300000000001,88.74700000000001,88.751,88.75500000000001,88.75900000000001,88.763,88.76700000000001,88.77100000000002,88.775,88.77900000000001,88.783,88.787,88.79100000000001,88.795,88.799,88.80300000000001,88.807,88.811,88.81500000000001,88.819,88.82300000000001,88.82700000000001,88.831,88.83500000000001,88.83900000000001,88.843,88.84700000000001,88.85100000000001,88.855,88.85900000000001,88.85900000000001,89.32300000000001,89.32700000000001,89.331,89.33500000000001,89.33900000000001,89.343,89.34700000000001,89.35100000000001,89.355,89.35900000000001,89.36300000000001,89.367,89.37100000000001,89.37500000000001,89.379,89.38300000000001,89.387,89.391,89.39500000000001,89.399,89.403,89.40700000000001,89.411,89.415,89.41900000000001,89.423,89.427,89.43100000000001,89.435,89.43900000000001,89.44300000000001,89.447,89.45100000000001,89.45500000000001,89.459,89.46300000000001,89.46700000000001,89.471,89.47500000000001,89.47900000000001,89.483,89.48700000000001,89.49100000000001,89.495,89.49900000000001,89.50300000000001,89.507,89.51100000000001,89.515,89.519,89.52300000000001,89.527,89.531,89.53500000000001,89.539,89.543,89.54700000000001,89.551,89.555,89.55900000000001,89.563,89.56700000000001,89.57100000000001,89.575,89.57900000000001,89.58300000000001,89.587,89.59100000000001,89.59500000000001,89.599,89.60300000000001,89.60700000000001,89.611,89.61500000000001,89.61900000000001,89.623,89.62700000000001,89.63100000000001,89.635,89.63900000000001,89.643,89.647,89.65100000000001,89.655,89.659,89.66300000000001,89.667,89.671,89.67500000000001,89.679,89.683,89.68700000000001,89.691,89.69500000000001,89.69900000000001,89.703,89.70700000000001,89.71100000000001,89.715,89.71900000000001,89.71900000000001,114.903,114.90700000000001,114.911,114.915,114.91900000000001,114.923,114.927,114.93100000000001,114.935,114.93900000000001,114.94300000000001,114.947,114.95100000000001,114.95500000000001,114.959,114.96300000000001,114.967,114.971,114.97500000000001,114.979,114.983,114.98700000000001,114.991,114.995,114.99900000000001,115.003,115.007,115.01100000000001,115.015,115.019,115.02300000000001,115.027,115.031,115.03500000000001,115.039,115.043,115.04700000000001,115.051,115.055,115.05900000000001,115.063,115.06700000000001,115.07100000000001,115.075,115.07900000000001,115.08300000000001,115.087,115.09100000000001,115.095,115.099,115.10300000000001,115.107,115.111,115.11500000000001,115.119,115.123,115.12700000000001,115.131,115.135,115.13900000000001,115.143,115.147,115.15100000000001,115.155,115.159,115.16300000000001,115.167,115.171,115.17500000000001,115.179,115.183,115.18700000000001,115.191,115.19500000000001,115.19900000000001,115.203,115.20700000000001,115.21100000000001,115.215,115.21900000000001,115.223,115.227,115.23100000000001,115.235,115.239,115.24300000000001,115.247,115.251,115.25500000000001,115.259,115.263,115.26700000000001,115.271,115.275,115.27900000000001,115.283,115.287,115.29100000000001,115.295,115.299,115.299,115.763,115.76700000000001,115.771,115.775,115.77900000000001,115.783,115.787,115.79100000000001,115.795,115.799,115.80300000000001,115.807,115.811,115.81500000000001,115.819,115.82300000000001,115.827,115.831,115.83500000000001,115.839,115.843,115.84700000000001,115.851,115.855,115.85900000000001,115.863,115.867,115.87100000000001,115.875,115.879,115.88300000000001,115.887,115.891,115.89500000000001,115.899,115.903,115.90700000000001,115.911,115.915,115.91900000000001,115.923,115.927,115.93100000000001,115.935,115.93900000000001,115.94300000000001,115.947,115.95100000000001,115.955,115.959,115.96300000000001,115.967,115.971,115.97500000000001,115.979,115.983,115.98700000000001,115.991,115.995,115.99900000000001,116.003,116.007,116.01100000000001,116.015,116.019,116.02300000000001,116.027,116.031,116.03500000000001,116.039,116.043,116.04700000000001,116.051,116.055,116.05900000000001,116.063,116.06700000000001,116.07100000000001,116.075,116.07900000000001,116.083,116.087,116.09100000000001,116.095,116.099,116.10300000000001,116.107,116.111,116.11500000000001,116.119,116.123,116.12700000000001,116.131,116.135,116.13900000000001,116.143,116.147,116.15100000000001,116.155,116.159,116.159,116.623,116.62700000000001,116.631,116.635,116.63900000000001,116.643,116.647,116.65100000000001,116.655,116.659,116.66300000000001,116.667,116.671,116.67500000000001,116.679,116.683,116.687,116.691,116.69500000000001,116.699,116.703,116.70700000000001,116.711,116.715,116.71900000000001,116.723,116.727,116.73100000000001,116.735,116.739,116.74300000000001,116.747,116.751,116.75500000000001,116.759,116.763,116.76700000000001,116.771,116.775,116.77900000000001,116.783,116.787,116.79100000000001,116.795,116.799,116.80300000000001,116.807,116.811,116.815,116.819,116.82300000000001,116.827,116.831,116.83500000000001,116.839,116.843,116.84700000000001,116.851,116.855,116.85900000000001,116.863,116.867,116.87100000000001,116.875,116.879,116.88300000000001,116.887,116.891,116.89500000000001,116.899,116.903,116.90700000000001,116.911,116.915,116.91900000000001,116.923,116.927,116.93100000000001,116.935,116.93900000000001,116.943,116.947,116.95100000000001,116.955,116.959,116.96300000000001,116.967,116.971,116.97500000000001,116.979,116.983,116.98700000000001,116.991,116.995,116.99900000000001,117.003,117.007,117.01100000000001,117.015,117.019,117.019,117.483,117.48700000000001,117.491,117.495,117.49900000000001,117.503,117.507,117.51100000000001,117.515,117.519,117.52300000000001,117.527,117.531,117.53500000000001,117.539,117.543,117.547,117.551,117.555,117.559,117.563,117.56700000000001,117.571,117.575,117.57900000000001,117.583,117.587,117.59100000000001,117.595,117.599,117.60300000000001,117.607,117.611,117.61500000000001,117.619,117.623,117.62700000000001,117.631,117.635,117.63900000000001,117.643,117.647,117.65100000000001,117.655,117.659,117.66300000000001,117.667,117.671,117.675,117.679,117.683,117.687,117.691,117.69500000000001,117.699,117.703,117.70700000000001,117.711,117.715,117.71900000000001,117.723,117.727,117.73100000000001,117.735,117.739,117.74300000000001,117.747,117.751,117.75500000000001,117.759,117.763,117.76700000000001,117.771,117.775,117.77900000000001,117.783,117.787,117.79100000000001,117.795,117.799,117.803,117.807,117.811,117.815,117.819,117.82300000000001,117.827,117.831,117.83500000000001,117.839,117.843,117.84700000000001,117.851,117.855,117.85900000000001,117.863,117.867,117.87100000000001,117.875,117.879,117.879,118.343,118.34700000000001,118.351,118.355,118.35900000000001,118.363,118.367,118.37100000000001,118.375,118.379,118.38300000000001,118.387,118.391,118.39500000000001,118.399,118.403,118.407,118.411,118.415,118.419,118.423,118.427,118.431,118.435,118.43900000000001,118.443,118.447,118.45100000000001,118.455,118.459,118.46300000000001,118.467,118.471,118.47500000000001,118.479,118.483,118.48700000000001,118.491,118.495,118.49900000000001,118.503,118.507,118.51100000000001,118.515,118.519,118.52300000000001,118.527,118.531,118.535,118.539,118.543,118.547,118.551,118.555,118.559,118.563,118.56700000000001,118.571,118.575,118.57900000000001,118.583,118.587,118.59100000000001,118.595,118.599,118.60300000000001,118.607,118.611,118.61500000000001,118.619,118.623,118.62700000000001,118.631,118.635,118.63900000000001,118.643,118.647,118.65100000000001,118.655,118.659,118.663,118.667,118.671,118.675,118.679,118.683,118.687,118.691,118.69500000000001,118.699,118.703,118.70700000000001,118.711,118.715,118.71900000000001,118.723,118.727,118.73100000000001,118.735,118.739,118.739,119.203,119.20700000000001,119.211,119.215,119.21900000000001,119.223,119.227,119.23100000000001,119.235,119.239,119.24300000000001,119.247,119.251,119.25500000000001,119.259,119.263,119.267,119.271,119.275,119.279,119.283,119.287,119.291,119.295,119.299,119.303,119.307,119.311,119.315,119.319,119.32300000000001,119.327,119.331,119.33500000000001,119.339,119.343,119.34700000000001,119.351,119.355,119.35900000000001,119.363,119.367,119.37100000000001,119.375,119.379,119.38300000000001,119.387,119.391,119.395,119.399,119.403,119.407,119.411,119.415,119.419,119.423,119.427,119.431,119.435,119.43900000000001,119.443,119.447,119.45100000000001,119.455,119.459,119.46300000000001,119.467,119.471,119.47500000000001,119.479,119.483,119.48700000000001,119.491,119.495,119.49900000000001,119.503,119.507,119.51100000000001,119.515,119.519,119.523,119.527,119.531,119.535,119.539,119.543,119.547,119.551,119.555,119.559,119.563,119.56700000000001,119.571,119.575,119.57900000000001,119.583,119.587,119.59100000000001,119.595,119.599,119.599,120.063,120.06700000000001,120.071,120.075,120.07900000000001,120.083,120.087,120.09100000000001,120.095,120.099,120.10300000000001,120.107,120.111,120.11500000000001,120.119,120.123,120.127,120.131,120.135,120.139,120.143,120.147,120.151,120.155,120.159,120.163,120.167,120.171,120.175,120.179,120.183,120.187,120.191,120.19500000000001,120.199,120.203,120.20700000000001,120.211,120.215,120.21900000000001,120.223,120.227,120.23100000000001,120.235,120.239,120.24300000000001,120.247,120.251,120.255,120.259,120.263,120.267,120.271,120.275,120.279,120.283,120.287,120.291,120.295,120.299,120.303,120.307,120.311,120.315,120.319,120.32300000000001,120.327,120.331,120.33500000000001,120.339,120.343,120.34700000000001,120.351,120.355,120.35900000000001,120.363,120.367,120.37100000000001,120.375,120.379,120.383,120.387,120.391,120.395,120.399,120.403,120.407,120.411,120.415,120.419,120.423,120.427,120.431,120.435,120.43900000000001,120.443,120.447,120.45100000000001,120.455,120.459,120.459,120.923,120.927,120.931,120.935,120.93900000000001,120.943,120.947,120.95100000000001,120.955,120.959,120.96300000000001,120.967,120.971,120.97500000000001,120.979,120.983,120.987,120.991,120.995,120.999,121.003,121.007,121.011,121.015,121.019,121.023,121.027,121.031,121.035,121.039,121.043,121.047,121.051,121.055,121.059,121.063,121.06700000000001,121.071,121.075,121.07900000000001,121.083,121.087,121.09100000000001,121.095,121.099,121.10300000000001,121.107,121.111,121.115,121.119,121.123,121.127,121.131,121.135,121.139,121.143,121.147,121.151,121.155,121.159,121.163,121.167,121.171,121.175,121.179,121.183,121.187,121.191,121.19500000000001,121.199,121.203,121.20700000000001,121.211,121.215,121.21900000000001,121.223,121.227,121.23100000000001,121.235,121.239,121.243,121.247,121.251,121.255,121.259,121.263,121.267,121.271,121.275,121.279,121.283,121.287,121.291,121.295,121.299,121.303,121.307,121.311,121.315,121.319,121.319,121.783,121.787,121.791,121.795,121.799,121.803,121.807,121.811,121.815,121.819,121.82300000000001,121.827,121.831,121.83500000000001,121.839,121.843,121.847,121.851,121.855,121.859,121.863,121.867,121.871,121.875,121.879,121.883,121.887,121.891,121.895,121.899,121.903,121.907,121.911,121.915,121.919,121.923,121.927,121.931,121.935,121.93900000000001,121.943,121.947,121.95100000000001,121.955,121.959,121.96300000000001,121.967,121.971,121.975,121.979,121.983,121.987,121.991,121.995,121.999,122.003,122.007,122.011,122.015,122.019,122.023,122.027,122.031,122.035,122.039,122.043,122.047,122.051,122.055,122.059,122.063,122.06700000000001,122.071,122.075,122.07900000000001,122.083,122.087,122.09100000000001,122.095,122.099,122.103,122.107,122.111,122.115,122.119,122.123,122.127,122.131,122.135,122.139,122.143,122.147,122.151,122.155,122.159,122.163,122.167,122.171,122.175,122.179,122.179,122.643,122.647,122.651,122.655,122.659,122.663,122.667,122.671,122.675,122.679,122.683,122.687,122.691,122.69500000000001,122.699,122.703,122.707,122.711,122.715,122.719,122.723,122.727,122.731,122.735,122.739,122.743,122.747,122.751,122.755,122.759,122.763,122.767,122.771,122.775,122.779,122.783,122.787,122.791,122.795,122.799,122.803,122.807,122.811,122.815,122.819,122.82300000000001,122.827,122.831,122.835,122.839,122.843,122.847,122.851,122.855,122.859,122.863,122.867,122.871,122.875,122.879,122.883,122.887,122.891,122.895,122.899,122.903,122.907,122.911,122.915,122.919,122.923,122.927,122.931,122.935,122.93900000000001,122.943,122.947,122.95100000000001,122.955,122.959,122.963,122.967,122.971,122.975,122.979,122.983,122.987,122.991,122.995,122.999,123.003,123.007,123.011,123.015,123.019,123.023,123.027,123.031,123.035,123.039,123.039,123.503,123.507,123.511,123.515,123.519,123.523,123.527,123.531,123.535,123.539,123.543,123.547,123.551,123.555,123.559,123.563,123.567,123.571,123.575,123.579,123.583,123.587,123.591,123.595,123.599,123.603,123.607,123.611,123.615,123.619,123.623,123.627,123.631,123.635,123.639,123.643,123.647,123.651,123.655,123.659,123.663,123.667,123.671,123.675,123.679,123.683,123.687,123.691,123.695,123.699,123.703,123.707,123.711,123.715,123.719,123.723,123.727,123.731,123.735,123.739,123.743,123.747,123.751,123.755,123.759,123.763,123.767,123.771,123.775,123.779,123.783,123.787,123.791,123.795,123.799,123.803,123.807,123.811,123.815,123.819,123.823,123.827,123.831,123.835,123.839,123.843,123.847,123.851,123.855,123.859,123.863,123.867,123.871,123.875,123.879,123.883,123.887,123.891,123.895,123.899,123.899,124.363,124.367,124.371,124.375,124.379,124.383,124.387,124.391,124.395,124.399,124.403,124.407,124.411,124.415,124.419,124.423,124.42699999999999,124.431,124.435,124.439,124.443,124.447,124.451,124.455,124.459,124.463,124.467,124.471,124.475,124.479,124.483,124.487,124.491,124.495,124.499,124.503,124.507,124.511,124.515,124.519,124.523,124.527,124.531,124.535,124.539,124.543,124.547,124.551,124.55499999999999,124.559,124.563,124.567,124.571,124.575,124.579,124.583,124.587,124.591,124.595,124.599,124.603,124.607,124.611,124.615,124.619,124.623,124.627,124.631,124.635,124.639,124.643,124.647,124.651,124.655,124.659,124.663,124.667,124.671,124.675,124.679,124.68299999999999,124.687,124.691,124.695,124.699,124.703,124.707,124.711,124.715,124.719,124.723,124.727,124.731,124.735,124.739,124.743,124.747,124.751,124.755,124.759,124.759,125.224,125.22800000000001,125.232,125.236,125.24000000000001,125.244,125.248,125.25200000000001,125.256,125.26,125.26400000000001,125.268,125.272,125.27600000000001,125.28,125.284,125.288,125.292,125.296,125.3,125.304,125.308,125.312,125.316,125.32000000000001,125.324,125.328,125.33200000000001,125.336,125.34,125.34400000000001,125.348,125.352,125.35600000000001,125.36,125.364,125.36800000000001,125.372,125.376,125.38000000000001,125.384,125.388,125.39200000000001,125.396,125.4,125.40400000000001,125.408,125.412,125.416,125.42,125.424,125.428,125.432,125.436,125.44,125.444,125.44800000000001,125.452,125.456,125.46000000000001,125.464,125.468,125.47200000000001,125.476,125.48,125.48400000000001,125.488,125.492,125.49600000000001,125.5,125.504,125.50800000000001,125.512,125.516,125.52000000000001,125.524,125.528,125.53200000000001,125.536,125.54,125.544,125.548,125.552,125.556,125.56,125.56400000000001,125.568,125.572,125.57600000000001,125.58,125.584,125.58800000000001,125.592,125.596,125.60000000000001,125.604,125.608,125.61200000000001,125.616,125.62,125.62,126.084,126.08800000000001,126.092,126.096,126.10000000000001,126.104,126.108,126.11200000000001,126.116,126.12,126.12400000000001,126.128,126.132,126.13600000000001,126.14,126.144,126.148,126.152,126.156,126.16,126.164,126.168,126.172,126.176,126.18,126.184,126.188,126.19200000000001,126.196,126.2,126.20400000000001,126.208,126.212,126.21600000000001,126.22,126.224,126.22800000000001,126.232,126.236,126.24000000000001,126.244,126.248,126.25200000000001,126.256,126.26,126.26400000000001,126.268,126.272,126.276,126.28,126.284,126.288,126.292,126.296,126.3,126.304,126.308,126.312,126.316,126.32000000000001,126.324,126.328,126.33200000000001,126.336,126.34,126.34400000000001,126.348,126.352,126.35600000000001,126.36,126.364,126.36800000000001,126.372,126.376,126.38000000000001,126.384,126.388,126.39200000000001,126.396,126.4,126.404,126.408,126.412,126.416,126.42,126.424,126.428,126.432,126.436,126.44,126.444,126.44800000000001,126.452,126.456,126.46000000000001,126.464,126.468,126.47200000000001,126.476,126.48,126.48,126.944,126.94800000000001,126.952,126.956,126.96000000000001,126.964,126.968,126.97200000000001,126.976,126.98,126.98400000000001,126.988,126.992,126.99600000000001,127.0,127.004,127.008,127.012,127.016,127.02,127.024,127.028,127.032,127.036,127.04,127.044,127.048,127.052,127.056,127.06,127.06400000000001,127.068,127.072,127.07600000000001,127.08,127.084,127.08800000000001,127.092,127.096,127.10000000000001,127.104,127.108,127.11200000000001,127.116,127.12,127.12400000000001,127.128,127.132,127.136,127.14,127.144,127.148,127.152,127.156,127.16,127.164,127.168,127.172,127.176,127.18,127.184,127.188,127.19200000000001,127.196,127.2,127.20400000000001,127.208,127.212,127.21600000000001,127.22,127.224,127.22800000000001,127.232,127.236,127.24000000000001,127.244,127.248,127.25200000000001,127.256,127.26,127.264,127.268,127.272,127.276,127.28,127.284,127.288,127.292,127.296,127.3,127.304,127.308,127.312,127.316,127.32000000000001,127.324,127.328,127.33200000000001,127.336,127.34,127.34,127.804,127.808,127.812,127.816,127.82000000000001,127.824,127.828,127.83200000000001,127.836,127.84,127.84400000000001,127.848,127.852,127.85600000000001,127.86,127.864,127.868,127.872,127.876,127.88,127.884,127.888,127.892,127.896,127.9,127.904,127.908,127.912,127.916,127.92,127.924,127.928,127.932,127.936,127.94,127.944,127.94800000000001,127.952,127.956,127.96000000000001,127.964,127.968,127.97200000000001,127.976,127.98,127.98400000000001,127.988,127.992,127.996,128.0,128.004,128.008,128.012,128.016,128.02,128.024,128.028,128.032,128.036,128.04,128.044,128.048,128.052,128.056,128.06,128.064,128.068,128.072,128.076,128.08,128.084,128.088,128.092,128.096,128.1,128.104,128.108,128.112,128.116,128.12,128.124,128.12800000000001,128.132,128.136,128.14000000000001,128.144,128.148,128.15200000000002,128.156,128.16,128.16400000000002,128.168,128.172,128.17600000000002,128.18,128.184,128.188,128.192,128.196,128.2,128.2,128.66400000000002,128.668,128.67200000000003,128.67600000000002,128.68,128.68400000000003,128.68800000000002,128.692,128.69600000000003,128.70000000000002,128.704,128.70800000000003,128.71200000000002,128.716,128.72000000000003,128.72400000000002,128.728,128.73200000000003,128.73600000000002,128.74,128.74400000000003,128.74800000000002,128.752,128.75600000000003,128.76000000000002,128.764,128.76800000000003,128.77200000000002,128.776,128.78000000000003,128.78400000000002,128.788,128.792,128.79600000000002,128.8,128.804,128.80800000000002,128.812,128.816,128.82000000000002,128.824,128.828,128.83200000000002,128.836,128.84,128.84400000000002,128.848,128.852,128.85600000000002,128.86,128.864,128.86800000000002,128.872,128.876,128.88000000000002,128.88400000000001,128.888,128.89200000000002,128.89600000000002,128.9,128.90400000000002,128.90800000000002,128.912,128.91600000000003,128.92000000000002,128.924,128.92800000000003,128.93200000000002,128.936,128.94000000000003,128.94400000000002,128.948,128.95200000000003,128.95600000000002,128.96,128.96400000000003,128.96800000000002,128.972,128.97600000000003,128.98000000000002,128.984,128.98800000000003,128.99200000000002,128.996,129.00000000000003,129.00400000000002,129.008,129.01200000000003,129.01600000000002,129.02,129.02400000000003,129.02800000000002,129.032,129.03600000000003,129.04000000000002,129.044,129.048,129.05200000000002,129.056,129.06,129.06,129.524,129.528,129.532,129.536,129.54,129.544,129.548,129.552,129.556,129.56,129.564,129.568,129.572,129.576,129.58,129.584,129.588,129.592,129.596,129.6,129.604,129.608,129.612,129.616,129.62,129.624,129.62800000000001,129.632,129.636,129.64000000000001,129.644,129.648,129.652,129.656,129.66,129.664,129.668,129.672,129.676,129.68,129.684,129.688,129.692,129.696,129.7,129.704,129.708,129.712,129.716,129.72,129.724,129.728,129.732,129.736,129.74,129.744,129.748,129.752,129.756,129.76,129.764,129.768,129.772,129.776,129.78,129.784,129.788,129.792,129.796,129.8,129.804,129.808,129.812,129.816,129.82,129.824,129.828,129.832,129.836,129.84,129.844,129.848,129.852,129.856,129.86,129.864,129.868,129.872,129.876,129.88,129.88400000000001,129.888,129.892,129.89600000000002,129.9,129.904,129.908,129.912,129.916,129.92,129.92,130.38400000000001,130.388,130.39200000000002,130.39600000000002,130.4,130.40400000000002,130.40800000000002,130.412,130.41600000000003,130.42000000000002,130.424,130.42800000000003,130.43200000000002,130.436,130.44000000000003,130.44400000000002,130.448,130.45200000000003,130.45600000000002,130.46,130.46400000000003,130.46800000000002,130.472,130.47600000000003,130.48000000000002,130.484,130.48800000000003,130.49200000000002,130.496,130.50000000000003,130.50400000000002,130.508,130.512,130.51600000000002,130.52,130.524,130.52800000000002,130.532,130.536,130.54000000000002,130.544,130.548,130.55200000000002,130.556,130.56,130.56400000000002,130.568,130.572,130.57600000000002,130.58,130.584,130.58800000000002,130.592,130.596,130.60000000000002,130.604,130.608,130.61200000000002,130.616,130.62,130.62400000000002,130.62800000000001,130.632,130.63600000000002,130.64000000000001,130.644,130.64800000000002,130.65200000000002,130.656,130.66000000000003,130.66400000000002,130.668,130.67200000000003,130.67600000000002,130.68,130.68400000000003,130.68800000000002,130.692,130.69600000000003,130.70000000000002,130.704,130.70800000000003,130.71200000000002,130.716,130.72000000000003,130.72400000000002,130.728,130.73200000000003,130.73600000000002,130.74,130.74400000000003,130.74800000000002,130.752,130.75600000000003,130.76000000000002,130.764,130.768,130.77200000000002,130.776,130.78,130.78,131.244,131.248,131.252,131.256,131.26,131.264,131.268,131.272,131.276,131.28,131.284,131.288,131.292,131.296,131.3,131.304,131.308,131.312,131.316,131.32,131.324,131.328,131.332,131.336,131.34,131.344,131.348,131.352,131.356,131.36,131.364,131.368,131.37199999999999,131.376,131.38,131.384,131.388,131.392,131.396,131.4,131.404,131.408,131.412,131.416,131.42,131.424,131.428,131.432,131.436,131.44,131.444,131.448,131.452,131.456,131.46,131.464,131.468,131.472,131.476,131.48,131.484,131.488,131.492,131.496,131.5,131.504,131.508,131.512,131.516,131.52,131.524,131.528,131.532,131.536,131.54,131.544,131.548,131.552,131.556,131.56,131.564,131.568,131.572,131.576,131.58,131.584,131.588,131.592,131.596,131.6,131.604,131.608,131.612,131.616,131.62,131.624,131.628,131.632,131.636,131.64,131.64,132.104,132.108,132.11200000000002,132.116,132.12,132.12400000000002,132.12800000000001,132.132,132.13600000000002,132.14000000000001,132.144,132.14800000000002,132.15200000000002,132.156,132.16000000000003,132.16400000000002,132.168,132.17200000000003,132.17600000000002,132.18,132.18400000000003,132.18800000000002,132.192,132.19600000000003,132.20000000000002,132.204,132.20800000000003,132.21200000000002,132.216,132.22000000000003,132.22400000000002,132.228,132.232,132.23600000000002,132.24,132.244,132.24800000000002,132.252,132.256,132.26000000000002,132.264,132.268,132.27200000000002,132.276,132.28,132.28400000000002,132.288,132.292,132.29600000000002,132.3,132.304,132.30800000000002,132.312,132.316,132.32000000000002,132.324,132.328,132.33200000000002,132.336,132.34,132.34400000000002,132.348,132.352,132.35600000000002,132.36,132.364,132.36800000000002,132.372,132.376,132.38000000000002,132.38400000000001,132.388,132.39200000000002,132.39600000000002,132.4,132.40400000000002,132.40800000000002,132.412,132.41600000000003,132.42000000000002,132.424,132.42800000000003,132.43200000000002,132.436,132.44000000000003,132.44400000000002,132.448,132.45200000000003,132.45600000000002,132.46,132.46400000000003,132.46800000000002,132.472,132.47600000000003,132.48000000000002,132.484,132.488,132.49200000000002,132.496,132.5,132.5,132.964,132.968,132.972,132.976,132.98,132.984,132.988,132.992,132.996,133.0,133.004,133.008,133.012,133.016,133.02,133.024,133.028,133.032,133.036,133.04,133.044,133.048,133.052,133.056,133.06,133.064,133.068,133.072,133.076,133.08,133.084,133.088,133.09199999999998,133.096,133.1,133.10399999999998,133.108,133.112,133.11599999999999,133.12,133.124,133.128,133.132,133.136,133.14,133.144,133.148,133.152,133.156,133.16,133.164,133.168,133.172,133.176,133.18,133.184,133.188,133.192,133.196,133.2,133.204,133.208,133.212,133.216,133.22,133.224,133.228,133.232,133.236,133.24,133.244,133.248,133.252,133.256,133.26,133.264,133.268,133.272,133.276,133.28,133.284,133.288,133.292,133.296,133.3,133.304,133.308,133.312,133.316,133.32,133.324,133.328,133.332,133.336,133.34,133.344,133.34799999999998,133.352,133.356,133.35999999999999,133.35999999999999,133.824,133.828,133.83200000000002,133.836,133.84,133.84400000000002,133.848,133.852,133.85600000000002,133.86,133.864,133.86800000000002,133.872,133.876,133.88000000000002,133.88400000000001,133.888,133.89200000000002,133.89600000000002,133.9,133.90400000000002,133.90800000000002,133.912,133.91600000000003,133.92000000000002,133.924,133.92800000000003,133.93200000000002,133.936,133.94000000000003,133.94400000000002,133.948,133.952,133.95600000000002,133.96,133.964,133.96800000000002,133.972,133.976,133.98000000000002,133.984,133.988,133.99200000000002,133.996,134.0,134.00400000000002,134.008,134.012,134.01600000000002,134.02,134.024,134.02800000000002,134.032,134.036,134.04000000000002,134.044,134.048,134.05200000000002,134.056,134.06,134.06400000000002,134.068,134.072,134.07600000000002,134.08,134.084,134.08800000000002,134.092,134.096,134.10000000000002,134.104,134.108,134.11200000000002,134.116,134.12,134.12400000000002,134.12800000000001,134.132,134.13600000000002,134.14000000000001,134.144,134.14800000000002,134.15200000000002,134.156,134.16000000000003,134.16400000000002,134.168,134.17200000000003,134.17600000000002,134.18,134.18400000000003,134.18800000000002,134.192,134.19600000000003,134.20000000000002,134.204,134.208,134.21200000000002,134.216,134.22,134.22,134.684,134.688,134.692,134.696,134.7,134.704,134.708,134.712,134.716,134.72,134.724,134.728,134.732,134.736,134.74,134.744,134.748,134.752,134.756,134.76,134.764,134.768,134.772,134.776,134.78,134.784,134.788,134.792,134.796,134.8,134.804,134.808,134.81199999999998,134.816,134.82,134.82399999999998,134.828,134.832,134.83599999999998,134.84,134.844,134.84799999999998,134.852,134.856,134.85999999999999,134.864,134.868,134.87199999999999,134.876,134.88,134.884,134.888,134.892,134.896,134.9,134.904,134.908,134.912,134.916,134.92,134.924,134.928,134.932,134.936,134.94,134.944,134.948,134.952,134.956,134.96,134.964,134.968,134.972,134.976,134.98,134.984,134.988,134.992,134.996,135.0,135.004,135.008,135.012,135.016,135.02,135.024,135.028,135.032,135.036,135.04,135.044,135.048,135.052,135.056,135.06,135.064,135.06799999999998,135.072,135.076,135.07999999999998,135.07999999999998,135.544,135.548,135.55200000000002,135.556,135.56,135.56400000000002,135.568,135.572,135.57600000000002,135.58,135.584,135.58800000000002,135.592,135.596,135.60000000000002,135.604,135.608,135.61200000000002,135.616,135.62,135.62400000000002,135.62800000000001,135.632,135.63600000000002,135.64000000000001,135.644,135.64800000000002,135.65200000000002,135.656,135.66000000000003,135.66400000000002,135.668,135.672,135.67600000000002,135.68,135.684,135.68800000000002,135.692,135.696,135.70000000000002,135.704,135.708,135.71200000000002,135.716,135.72,135.72400000000002,135.728,135.732,135.73600000000002,135.74,135.744,135.74800000000002,135.752,135.756,135.76000000000002,135.764,135.768,135.77200000000002,135.776,135.78,135.78400000000002,135.788,135.792,135.79600000000002,135.8,135.804,135.80800000000002,135.812,135.816,135.82000000000002,135.824,135.828,135.83200000000002,135.836,135.84,135.84400000000002,135.848,135.852,135.85600000000002,135.86,135.864,135.86800000000002,135.872,135.876,135.88000000000002,135.88400000000001,135.888,135.89200000000002,135.89600000000002,135.9,135.90400000000002,135.90800000000002,135.912,135.91600000000003,135.92000000000002,135.924,135.928,135.93200000000002,135.936,135.94,135.94,136.404,136.408,136.412,136.416,136.42,136.424,136.428,136.432,136.436,136.44,136.444,136.448,136.452,136.456,136.46,136.464,136.468,136.472,136.476,136.48,136.484,136.488,136.492,136.496,136.5,136.504,136.508,136.512,136.516,136.52,136.524,136.528,136.53199999999998,136.536,136.54,136.54399999999998,136.548,136.552,136.55599999999998,136.56,136.564,136.56799999999998,136.572,136.576,136.57999999999998,136.584,136.588,136.59199999999998,136.596,136.6,136.60399999999998,136.608,136.612,136.61599999999999,136.62,136.624,136.628,136.632,136.636,136.64,136.644,136.648,136.652,136.656,136.66,136.664,136.668,136.672,136.676,136.68,136.684,136.688,136.692,136.696,136.7,136.704,136.708,136.712,136.716,136.72,136.724,136.728,136.732,136.736,136.74,136.744,136.748,136.752,136.756,136.76,136.764,136.768,136.772,136.776,136.78,136.784,136.78799999999998,136.792,136.796,136.79999999999998,136.79999999999998,137.264,137.268,137.27200000000002,137.276,137.28,137.28400000000002,137.288,137.292,137.29600000000002,137.3,137.304,137.30800000000002,137.312,137.316,137.32000000000002,137.324,137.328,137.33200000000002,137.336,137.34,137.34400000000002,137.348,137.352,137.35600000000002,137.36,137.364,137.36800000000002,137.372,137.376,137.38000000000002,137.38400000000001,137.388,137.392,137.39600000000002,137.4,137.404,137.40800000000002,137.412,137.416,137.42000000000002,137.424,137.428,137.43200000000002,137.436,137.44,137.44400000000002,137.448,137.452,137.45600000000002,137.46,137.464,137.46800000000002,137.472,137.476,137.48000000000002,137.484,137.488,137.49200000000002,137.496,137.5,137.50400000000002,137.508,137.512,137.51600000000002,137.52,137.524,137.52800000000002,137.532,137.536,137.54000000000002,137.544,137.548,137.55200000000002,137.556,137.56,137.56400000000002,137.568,137.572,137.57600000000002,137.58,137.584,137.58800000000002,137.592,137.596,137.60000000000002,137.604,137.608,137.61200000000002,137.616,137.62,137.62400000000002,137.62800000000001,137.632,137.63600000000002,137.64000000000001,137.644,137.648,137.65200000000002,137.656,137.66,137.66,138.124,138.128,138.132,138.136,138.14,138.144,138.148,138.152,138.156,138.16,138.164,138.168,138.172,138.176,138.18,138.184,138.188,138.192,138.196,138.2,138.204,138.208,138.212,138.216,138.22,138.224,138.228,138.232,138.236,138.24,138.244,138.248,138.25199999999998,138.256,138.26,138.26399999999998,138.268,138.272,138.27599999999998,138.28,138.284,138.28799999999998,138.292,138.296,138.29999999999998,138.304,138.308,138.31199999999998,138.316,138.32,138.32399999999998,138.328,138.332,138.33599999999998,138.34,138.344,138.34799999999998,138.352,138.356,138.35999999999999,138.364,138.368,138.37199999999999,138.376,138.38,138.384,138.388,138.392,138.396,138.4,138.404,138.408,138.412,138.416,138.42,138.424,138.428,138.432,138.436,138.44,138.444,138.448,138.452,138.456,138.46,138.464,138.468,138.472,138.476,138.48,138.484,138.488,138.492,138.496,138.5,138.504,138.50799999999998,138.512,138.516,138.51999999999998,138.51999999999998,138.984,138.988,138.99200000000002,138.996,139.0,139.00400000000002,139.008,139.012,139.01600000000002,139.02,139.024,139.02800000000002,139.032,139.036,139.04000000000002,139.044,139.048,139.05200000000002,139.056,139.06,139.06400000000002,139.068,139.072,139.07600000000002,139.08,139.084,139.08800000000002,139.092,139.096,139.10000000000002,139.104,139.108,139.112,139.116,139.12,139.124,139.12800000000001,139.132,139.136,139.14000000000001,139.144,139.148,139.15200000000002,139.156,139.16,139.16400000000002,139.168,139.172,139.17600000000002,139.18,139.184,139.18800000000002,139.192,139.196,139.20000000000002,139.204,139.208,139.21200000000002,139.216,139.22,139.22400000000002,139.228,139.232,139.23600000000002,139.24,139.244,139.24800000000002,139.252,139.256,139.26000000000002,139.264,139.268,139.27200000000002,139.276,139.28,139.28400000000002,139.288,139.292,139.29600000000002,139.3,139.304,139.30800000000002,139.312,139.316,139.32000000000002,139.324,139.328,139.33200000000002,139.336,139.34,139.34400000000002,139.348,139.352,139.35600000000002,139.36,139.364,139.368,139.372,139.376,139.38,139.38,139.844,139.84799999999998,139.852,139.856,139.85999999999999,139.864,139.868,139.87199999999999,139.876,139.88,139.884,139.888,139.892,139.896,139.9,139.904,139.908,139.912,139.916,139.92,139.924,139.928,139.932,139.936,139.94,139.944,139.948,139.952,139.956,139.96,139.964,139.968,139.97199999999998,139.976,139.98,139.98399999999998,139.988,139.992,139.99599999999998,140.0,140.004,140.00799999999998,140.012,140.016,140.01999999999998,140.024,140.028,140.03199999999998,140.036,140.04,140.04399999999998,140.048,140.052,140.05599999999998,140.06,140.064,140.06799999999998,140.072,140.076,140.07999999999998,140.084,140.088,140.09199999999998,140.096,140.1,140.10399999999998,140.108,140.112,140.11599999999999,140.12,140.124,140.128,140.132,140.136,140.14,140.144,140.148,140.152,140.156,140.16,140.164,140.168,140.172,140.176,140.18,140.184,140.188,140.192,140.196,140.2,140.204,140.208,140.212,140.216,140.22,140.224,140.22799999999998,140.232,140.236,140.23999999999998,140.23999999999998,140.704,140.708,140.71200000000002,140.716,140.72,140.72400000000002,140.728,140.732,140.73600000000002,140.74,140.744,140.74800000000002,140.752,140.756,140.76000000000002,140.764,140.768,140.77200000000002,140.776,140.78,140.78400000000002,140.788,140.792,140.79600000000002,140.8,140.804,140.80800000000002,140.812,140.816,140.82000000000002,140.824,140.828,140.832,140.836,140.84,140.844,140.848,140.852,140.856,140.86,140.864,140.868,140.872,140.876,140.88,140.88400000000001,140.888,140.892,140.89600000000002,140.9,140.904,140.90800000000002,140.912,140.916,140.92000000000002,140.924,140.928,140.93200000000002,140.936,140.94,140.94400000000002,140.948,140.952,140.95600000000002,140.96,140.964,140.96800000000002,140.972,140.976,140.98000000000002,140.984,140.988,140.99200000000002,140.996,141.0,141.00400000000002,141.008,141.012,141.01600000000002,141.02,141.024,141.02800000000002,141.032,141.036,141.04000000000002,141.044,141.048,141.05200000000002,141.056,141.06,141.06400000000002,141.068,141.072,141.07600000000002,141.08,141.084,141.088,141.092,141.096,141.1,141.1,141.564,141.56799999999998,141.572,141.576,141.57999999999998,141.584,141.588,141.59199999999998,141.596,141.6,141.60399999999998,141.608,141.612,141.61599999999999,141.62,141.624,141.628,141.632,141.636,141.64,141.644,141.648,141.652,141.656,141.66,141.664,141.668,141.672,141.676,141.68,141.684,141.688,141.69199999999998,141.696,141.7,141.70399999999998,141.708,141.712,141.71599999999998,141.72,141.724,141.72799999999998,141.732,141.736,141.73999999999998,141.744,141.748,141.75199999999998,141.756,141.76,141.76399999999998,141.768,141.772,141.77599999999998,141.78,141.784,141.78799999999998,141.792,141.796,141.79999999999998,141.804,141.808,141.81199999999998,141.816,141.82,141.82399999999998,141.828,141.832,141.83599999999998,141.84,141.844,141.84799999999998,141.852,141.856,141.85999999999999,141.864,141.868,141.87199999999999,141.876,141.88,141.884,141.888,141.892,141.896,141.9,141.904,141.908,141.912,141.916,141.92,141.924,141.928,141.932,141.936,141.94,141.944,141.94799999999998,141.952,141.956,141.95999999999998,141.95999999999998,142.424,142.428,142.43200000000002,142.436,142.44,142.44400000000002,142.448,142.452,142.45600000000002,142.46,142.464,142.46800000000002,142.472,142.476,142.48000000000002,142.484,142.488,142.49200000000002,142.496,142.5,142.50400000000002,142.508,142.512,142.51600000000002,142.52,142.524,142.52800000000002,142.532,142.536,142.54000000000002,142.544,142.548,142.552,142.556,142.56,142.564,142.568,142.572,142.576,142.58,142.584,142.588,142.592,142.596,142.6,142.604,142.608,142.612,142.616,142.62,142.624,142.62800000000001,142.632,142.636,142.64000000000001,142.644,142.648,142.65200000000002,142.656,142.66,142.66400000000002,142.668,142.672,142.67600000000002,142.68,142.684,142.68800000000002,142.692,142.696,142.70000000000002,142.704,142.708,142.71200000000002,142.716,142.72,142.72400000000002,142.728,142.732,142.73600000000002,142.74,142.744,142.74800000000002,142.752,142.756,142.76000000000002,142.764,142.768,142.77200000000002,142.776,142.78,142.78400000000002,142.788,142.792,142.79600000000002,142.8,142.804,142.808,142.812,142.816,142.82,142.82,143.284,143.28799999999998,143.292,143.296,143.29999999999998,143.304,143.308,143.31199999999998,143.316,143.32,143.32399999999998,143.328,143.332,143.33599999999998,143.34,143.344,143.34799999999998,143.352,143.356,143.35999999999999,143.364,143.368,143.37199999999999,143.376,143.38,143.384,143.388,143.392,143.396,143.4,143.404,143.408,143.41199999999998,143.416,143.42,143.42399999999998,143.428,143.432,143.43599999999998,143.44,143.444,143.44799999999998,143.452,143.456,143.45999999999998,143.464,143.468,143.47199999999998,143.476,143.48,143.48399999999998,143.488,143.492,143.49599999999998,143.5,143.504,143.50799999999998,143.512,143.516,143.51999999999998,143.524,143.528,143.53199999999998,143.536,143.54,143.54399999999998,143.548,143.552,143.55599999999998,143.56,143.564,143.56799999999998,143.572,143.576,143.57999999999998,143.584,143.588,143.59199999999998,143.596,143.6,143.60399999999998,143.608,143.612,143.61599999999999,143.62,143.624,143.628,143.632,143.636,143.64,143.644,143.648,143.652,143.656,143.66,143.664,143.66799999999998,143.672,143.676,143.67999999999998,143.67999999999998,144.144,144.148,144.15200000000002,144.156,144.16,144.16400000000002,144.168,144.172,144.17600000000002,144.18,144.184,144.18800000000002,144.192,144.196,144.20000000000002,144.204,144.208,144.21200000000002,144.216,144.22,144.22400000000002,144.228,144.232,144.23600000000002,144.24,144.244,144.24800000000002,144.252,144.256,144.26000000000002,144.264,144.268,144.272,144.276,144.28,144.284,144.288,144.292,144.296,144.3,144.304,144.308,144.312,144.316,144.32,144.324,144.328,144.332,144.336,144.34,144.344,144.348,144.352,144.356,144.36,144.364,144.368,144.372,144.376,144.38,144.38400000000001,144.388,144.392,144.39600000000002,144.4,144.404,144.40800000000002,144.412,144.416,144.42000000000002,144.424,144.428,144.43200000000002,144.436,144.44,144.44400000000002,144.448,144.452,144.45600000000002,144.46,144.464,144.46800000000002,144.472,144.476,144.48000000000002,144.484,144.488,144.49200000000002,144.496,144.5,144.50400000000002,144.508,144.512,144.51600000000002,144.52,144.524,144.528,144.532,144.536,144.54,144.54,145.004,145.00799999999998,145.012,145.016,145.01999999999998,145.024,145.028,145.03199999999998,145.036,145.04,145.04399999999998,145.048,145.052,145.05599999999998,145.06,145.064,145.06799999999998,145.072,145.076,145.07999999999998,145.084,145.088,145.09199999999998,145.096,145.1,145.10399999999998,145.108,145.112,145.11599999999999,145.12,145.124,145.128,145.13199999999998,145.136,145.14,145.14399999999998,145.148,145.152,145.15599999999998,145.16,145.164,145.16799999999998,145.172,145.176,145.17999999999998,145.184,145.188,145.19199999999998,145.196,145.2,145.20399999999998,145.208,145.212,145.21599999999998,145.22,145.224,145.22799999999998,145.232,145.236,145.23999999999998,145.244,145.248,145.25199999999998,145.256,145.26,145.26399999999998,145.268,145.272,145.27599999999998,145.28,145.284,145.28799999999998,145.292,145.296,145.29999999999998,145.304,145.308,145.31199999999998,145.316,145.32,145.32399999999998,145.328,145.332,145.33599999999998,145.34,145.344,145.34799999999998,145.352,145.356,145.35999999999999,145.364,145.368,145.37199999999999,145.376,145.38,145.384,145.38799999999998,145.392,145.396,145.39999999999998,145.39999999999998,145.864,145.868,145.872,145.876,145.88,145.88400000000001,145.888,145.892,145.89600000000002,145.9,145.904,145.90800000000002,145.912,145.916,145.92000000000002,145.924,145.928,145.93200000000002,145.936,145.94,145.94400000000002,145.948,145.952,145.95600000000002,145.96,145.964,145.96800000000002,145.972,145.976,145.98000000000002,145.984,145.988,145.992,145.996,146.0,146.004,146.008,146.012,146.016,146.02,146.024,146.028,146.032,146.036,146.04,146.044,146.048,146.052,146.056,146.06,146.064,146.068,146.072,146.076,146.08,146.084,146.088,146.092,146.096,146.1,146.104,146.108,146.112,146.116,146.12,146.124,146.12800000000001,146.132,146.136,146.14000000000001,146.144,146.148,146.15200000000002,146.156,146.16,146.16400000000002,146.168,146.172,146.17600000000002,146.18,146.184,146.18800000000002,146.192,146.196,146.20000000000002,146.204,146.208,146.21200000000002,146.216,146.22,146.22400000000002,146.228,146.232,146.23600000000002,146.24,146.244,146.248,146.252,146.256,146.26,146.26,146.724,146.72799999999998,146.732,146.736,146.73999999999998,146.744,146.748,146.75199999999998,146.756,146.76,146.76399999999998,146.768,146.772,146.77599999999998,146.78,146.784,146.78799999999998,146.792,146.796,146.79999999999998,146.804,146.808,146.81199999999998,146.816,146.82,146.82399999999998,146.828,146.832,146.83599999999998,146.84,146.844,146.84799999999998,146.85199999999998,146.856,146.85999999999999,146.86399999999998,146.868,146.87199999999999,146.87599999999998,146.88,146.884,146.88799999999998,146.892,146.896,146.89999999999998,146.904,146.908,146.91199999999998,146.916,146.92,146.92399999999998,146.928,146.932,146.93599999999998,146.94,146.944,146.94799999999998,146.952,146.956,146.95999999999998,146.964,146.968,146.97199999999998,146.976,146.98,146.98399999999998,146.988,146.992,146.99599999999998,147.0,147.004,147.00799999999998,147.012,147.016,147.01999999999998,147.024,147.028,147.03199999999998,147.036,147.04,147.04399999999998,147.048,147.052,147.05599999999998,147.06,147.064,147.06799999999998,147.072,147.076,147.07999999999998,147.084,147.088,147.09199999999998,147.096,147.1,147.10399999999998,147.10799999999998,147.112,147.11599999999999,147.11999999999998,147.11999999999998,147.584,147.588,147.592,147.596,147.6,147.604,147.608,147.612,147.616,147.62,147.624,147.62800000000001,147.632,147.636,147.64000000000001,147.644,147.648,147.65200000000002,147.656,147.66,147.66400000000002,147.668,147.672,147.67600000000002,147.68,147.684,147.68800000000002,147.692,147.696,147.70000000000002,147.704,147.708,147.712,147.716,147.72,147.724,147.728,147.732,147.736,147.74,147.744,147.748,147.752,147.756,147.76,147.764,147.768,147.772,147.776,147.78,147.784,147.788,147.792,147.796,147.8,147.804,147.808,147.812,147.816,147.82,147.824,147.828,147.832,147.836,147.84,147.844,147.848,147.852,147.856,147.86,147.864,147.868,147.872,147.876,147.88,147.88400000000001,147.888,147.892,147.89600000000002,147.9,147.904,147.90800000000002,147.912,147.916,147.92000000000002,147.924,147.928,147.93200000000002,147.936,147.94,147.94400000000002,147.948,147.952,147.95600000000002,147.96,147.964,147.968,147.972,147.976,147.98,147.98,148.44400000000002,148.448,148.45200000000003,148.45600000000002,148.46,148.46400000000003,148.46800000000002,148.472,148.47600000000003,148.48000000000002,148.484,148.48800000000003,148.49200000000002,148.496,148.50000000000003,148.50400000000002,148.508,148.51200000000003,148.51600000000002,148.52,148.52400000000003,148.52800000000002,148.532,148.53600000000003,148.54000000000002,148.544,148.54800000000003,148.55200000000002,148.556,148.56000000000003,148.56400000000002,148.568,148.572,148.57600000000002,148.58,148.584,148.58800000000002,148.592,148.596,148.60000000000002,148.604,148.608,148.61200000000002,148.616,148.62,148.62400000000002,148.62800000000001,148.632,148.63600000000002,148.64000000000001,148.644,148.64800000000002,148.65200000000002,148.656,148.66000000000003,148.66400000000002,148.668,148.67200000000003,148.67600000000002,148.68,148.68400000000003,148.68800000000002,148.692,148.69600000000003,148.70000000000002,148.704,148.70800000000003,148.71200000000002,148.716,148.72000000000003,148.72400000000002,148.728,148.73200000000003,148.73600000000002,148.74,148.74400000000003,148.74800000000002,148.752,148.75600000000003,148.76000000000002,148.764,148.76800000000003,148.77200000000002,148.776,148.78000000000003,148.78400000000002,148.788,148.79200000000003,148.79600000000002,148.8,148.80400000000003,148.80800000000002,148.812,148.81600000000003,148.82000000000002,148.824,148.828,148.83200000000002,148.836,148.84,148.84,149.304,149.308,149.312,149.316,149.32,149.324,149.328,149.332,149.336,149.34,149.344,149.348,149.352,149.356,149.36,149.364,149.368,149.372,149.376,149.38,149.38400000000001,149.388,149.392,149.39600000000002,149.4,149.404,149.40800000000002,149.412,149.416,149.42000000000002,149.424,149.428,149.432,149.436,149.44,149.444,149.448,149.452,149.456,149.46,149.464,149.468,149.472,149.476,149.48,149.484,149.488,149.492,149.496,149.5,149.504,149.508,149.512,149.516,149.52,149.524,149.528,149.532,149.536,149.54,149.544,149.548,149.552,149.556,149.56,149.564,149.568,149.572,149.576,149.58,149.584,149.588,149.592,149.596,149.6,149.604,149.608,149.612,149.616,149.62,149.624,149.62800000000001,149.632,149.636,149.64000000000001,149.644,149.648,149.65200000000002,149.656,149.66,149.66400000000002,149.668,149.672,149.67600000000002,149.68,149.684,149.688,149.692,149.696,149.7,149.7,150.16400000000002,150.168,150.17200000000003,150.17600000000002,150.18,150.18400000000003,150.18800000000002,150.192,150.19600000000003,150.20000000000002,150.204,150.20800000000003,150.21200000000002,150.216,150.22000000000003,150.22400000000002,150.228,150.23200000000003,150.23600000000002,150.24,150.24400000000003,150.24800000000002,150.252,150.25600000000003,150.26000000000002,150.264,150.26800000000003,150.27200000000002,150.276,150.28000000000003,150.28400000000002,150.288,150.292,150.29600000000002,150.3,150.304,150.30800000000002,150.312,150.316,150.32000000000002,150.324,150.328,150.33200000000002,150.336,150.34,150.34400000000002,150.348,150.352,150.35600000000002,150.36,150.364,150.36800000000002,150.372,150.376,150.38000000000002,150.38400000000001,150.388,150.39200000000002,150.39600000000002,150.4,150.40400000000002,150.40800000000002,150.412,150.41600000000003,150.42000000000002,150.424,150.42800000000003,150.43200000000002,150.436,150.44000000000003,150.44400000000002,150.448,150.45200000000003,150.45600000000002,150.46,150.46400000000003,150.46800000000002,150.472,150.47600000000003,150.48000000000002,150.484,150.48800000000003,150.49200000000002,150.496,150.50000000000003,150.50400000000002,150.508,150.51200000000003,150.51600000000002,150.52,150.52400000000003,150.52800000000002,150.532,150.53600000000003,150.54000000000002,150.544,150.548,150.55200000000002,150.556,150.56,150.56,151.024,151.028,151.032,151.036,151.04,151.044,151.048,151.052,151.056,151.06,151.064,151.068,151.072,151.076,151.08,151.084,151.088,151.092,151.096,151.1,151.104,151.108,151.112,151.116,151.12,151.124,151.12800000000001,151.132,151.136,151.14000000000001,151.144,151.148,151.152,151.156,151.16,151.164,151.168,151.172,151.176,151.18,151.184,151.188,151.192,151.196,151.2,151.204,151.208,151.212,151.216,151.22,151.224,151.228,151.232,151.236,151.24,151.244,151.248,151.252,151.256,151.26,151.264,151.268,151.272,151.276,151.28,151.284,151.288,151.292,151.296,151.3,151.304,151.308,151.312,151.316,151.32,151.324,151.328,151.332,151.336,151.34,151.344,151.348,151.352,151.356,151.36,151.364,151.368,151.372,151.376,151.38,151.38400000000001,151.388,151.392,151.39600000000002,151.4,151.404,151.408,151.412,151.416,151.42,151.42,151.88400000000001,151.888,151.89200000000002,151.89600000000002,151.9,151.90400000000002,151.90800000000002,151.912,151.91600000000003,151.92000000000002,151.924,151.92800000000003,151.93200000000002,151.936,151.94000000000003,151.94400000000002,151.948,151.95200000000003,151.95600000000002,151.96,151.96400000000003,151.96800000000002,151.972,151.97600000000003,151.98000000000002,151.984,151.98800000000003,151.99200000000002,151.996,152.00000000000003,152.00400000000002,152.008,152.012,152.01600000000002,152.02,152.024,152.02800000000002,152.032,152.036,152.04000000000002,152.044,152.048,152.05200000000002,152.056,152.06,152.06400000000002,152.068,152.072,152.07600000000002,152.08,152.084,152.08800000000002,152.092,152.096,152.10000000000002,152.104,152.108,152.11200000000002,152.116,152.12,152.12400000000002,152.12800000000001,152.132,152.13600000000002,152.14000000000001,152.144,152.14800000000002,152.15200000000002,152.156,152.16000000000003,152.16400000000002,152.168,152.17200000000003,152.17600000000002,152.18,152.18400000000003,152.18800000000002,152.192,152.19600000000003,152.20000000000002,152.204,152.20800000000003,152.21200000000002,152.216,152.22000000000003,152.22400000000002,152.228,152.23200000000003,152.23600000000002,152.24,152.24400000000003,152.24800000000002,152.252,152.25600000000003,152.26000000000002,152.264,152.268,152.27200000000002,152.276,152.28,152.28,152.744,152.748,152.752,152.756,152.76,152.764,152.768,152.772,152.776,152.78,152.784,152.788,152.792,152.796,152.8,152.804,152.808,152.812,152.816,152.82,152.824,152.828,152.832,152.836,152.84,152.844,152.848,152.852,152.856,152.86,152.864,152.868,152.87199999999999,152.876,152.88,152.884,152.888,152.892,152.896,152.9,152.904,152.908,152.912,152.916,152.92,152.924,152.928,152.932,152.936,152.94,152.944,152.948,152.952,152.956,152.96,152.964,152.968,152.972,152.976,152.98,152.984,152.988,152.992,152.996,153.0,153.004,153.008,153.012,153.016,153.02,153.024,153.028,153.032,153.036,153.04,153.044,153.048,153.052,153.056,153.06,153.064,153.068,153.072,153.076,153.08,153.084,153.088,153.092,153.096,153.1,153.104,153.108,153.112,153.116,153.12,153.124,153.128,153.132,153.136,153.14,153.14,153.604,153.608,153.61200000000002,153.616,153.62,153.62400000000002,153.62800000000001,153.632,153.63600000000002,153.64000000000001,153.644,153.64800000000002,153.65200000000002,153.656,153.66000000000003,153.66400000000002,153.668,153.67200000000003,153.67600000000002,153.68,153.68400000000003,153.68800000000002,153.692,153.69600000000003,153.70000000000002,153.704,153.70800000000003,153.71200000000002,153.716,153.72000000000003,153.72400000000002,153.728,153.732,153.73600000000002,153.74,153.744,153.74800000000002,153.752,153.756,153.76000000000002,153.764,153.768,153.77200000000002,153.776,153.78,153.78400000000002,153.788,153.792,153.79600000000002,153.8,153.804,153.80800000000002,153.812,153.816,153.82000000000002,153.824,153.828,153.83200000000002,153.836,153.84,153.84400000000002,153.848,153.852,153.85600000000002,153.86,153.864,153.86800000000002,153.872,153.876,153.88000000000002,153.88400000000001,153.888,153.89200000000002,153.89600000000002,153.9,153.90400000000002,153.90800000000002,153.912,153.91600000000003,153.92000000000002,153.924,153.92800000000003,153.93200000000002,153.936,153.94000000000003,153.94400000000002,153.948,153.95200000000003,153.95600000000002,153.96,153.96400000000003,153.96800000000002,153.972,153.97600000000003,153.98000000000002,153.984,153.988,153.99200000000002,153.996,154.0,154.0,154.464,154.468,154.472,154.476,154.48,154.484,154.488,154.492,154.496,154.5,154.504,154.508,154.512,154.516,154.52,154.524,154.528,154.532,154.536,154.54,154.544,154.548,154.552,154.556,154.56,154.564,154.568,154.572,154.576,154.58,154.584,154.588,154.59199999999998,154.596,154.6,154.60399999999998,154.608,154.612,154.61599999999999,154.62,154.624,154.628,154.632,154.636,154.64,154.644,154.648,154.652,154.656,154.66,154.664,154.668,154.672,154.676,154.68,154.684,154.688,154.692,154.696,154.7,154.704,154.708,154.712,154.716,154.72,154.724,154.728,154.732,154.736,154.74,154.744,154.748,154.752,154.756,154.76,154.764,154.768,154.772,154.776,154.78,154.784,154.788,154.792,154.796,154.8,154.804,154.808,154.812,154.816,154.82,154.824,154.828,154.832,154.836,154.84,154.844,154.84799999999998,154.852,154.856,154.85999999999999,154.85999999999999,155.324,155.328,155.33200000000002,155.336,155.34,155.34400000000002,155.348,155.352,155.35600000000002,155.36,155.364,155.36800000000002,155.372,155.376,155.38000000000002,155.38400000000001,155.388,155.39200000000002,155.39600000000002,155.4,155.40400000000002,155.40800000000002,155.412,155.41600000000003,155.42000000000002,155.424,155.42800000000003,155.43200000000002,155.436,155.44000000000003,155.44400000000002,155.448,155.452,155.45600000000002,155.46,155.464,155.46800000000002,155.472,155.476,155.48000000000002,155.484,155.488,155.49200000000002,155.496,155.5,155.50400000000002,155.508,155.512,155.51600000000002,155.52,155.524,155.52800000000002,155.532,155.536,155.54000000000002,155.544,155.548,155.55200000000002,155.556,155.56,155.56400000000002,155.568,155.572,155.57600000000002,155.58,155.584,155.58800000000002,155.592,155.596,155.60000000000002,155.604,155.608,155.61200000000002,155.616,155.62,155.62400000000002,155.62800000000001,155.632,155.63600000000002,155.64000000000001,155.644,155.64800000000002,155.65200000000002,155.656,155.66000000000003,155.66400000000002,155.668,155.67200000000003,155.67600000000002,155.68,155.68400000000003,155.68800000000002,155.692,155.69600000000003,155.70000000000002,155.704,155.708,155.71200000000002,155.716,155.72,155.72,156.184,156.188,156.192,156.196,156.2,156.204,156.208,156.212,156.216,156.22,156.224,156.228,156.232,156.236,156.24,156.244,156.248,156.252,156.256,156.26,156.264,156.268,156.272,156.276,156.28,156.284,156.288,156.292,156.296,156.3,156.304,156.308,156.31199999999998,156.316,156.32,156.32399999999998,156.328,156.332,156.33599999999998,156.34,156.344,156.34799999999998,156.352,156.356,156.35999999999999,156.364,156.368,156.37199999999999,156.376,156.38,156.384,156.388,156.392,156.396,156.4,156.404,156.408,156.412,156.416,156.42,156.424,156.428,156.432,156.436,156.44,156.444,156.448,156.452,156.456,156.46,156.464,156.468,156.472,156.476,156.48,156.484,156.488,156.492,156.496,156.5,156.504,156.508,156.512,156.516,156.52,156.524,156.528,156.532,156.536,156.54,156.544,156.548,156.552,156.556,156.56,156.564,156.56799999999998,156.572,156.576,156.57999999999998,156.57999999999998,157.044,157.048,157.05200000000002,157.056,157.06,157.06400000000002,157.068,157.072,157.07600000000002,157.08,157.084,157.08800000000002,157.092,157.096,157.10000000000002,157.104,157.108,157.11200000000002,157.116,157.12,157.12400000000002,157.12800000000001,157.132,157.13600000000002,157.14000000000001,157.144,157.14800000000002,157.15200000000002,157.156,157.16000000000003,157.16400000000002,157.168,157.172,157.17600000000002,157.18,157.184,157.18800000000002,157.192,157.196,157.20000000000002,157.204,157.208,157.21200000000002,157.216,157.22,157.22400000000002,157.228,157.232,157.23600000000002,157.24,157.244,157.24800000000002,157.252,157.256,157.26000000000002,157.264,157.268,157.27200000000002,157.276,157.28,157.28400000000002,157.288,157.292,157.29600000000002,157.3,157.304,157.30800000000002,157.312,157.316,157.32000000000002,157.324,157.328,157.33200000000002,157.336,157.34,157.34400000000002,157.348,157.352,157.35600000000002,157.36,157.364,157.36800000000002,157.372,157.376,157.38000000000002,157.38400000000001,157.388,157.39200000000002,157.39600000000002,157.4,157.40400000000002,157.40800000000002,157.412,157.41600000000003,157.42000000000002,157.424,157.428,157.43200000000002,157.436,157.44,157.44,157.904,157.908,157.912,157.916,157.92,157.924,157.928,157.932,157.936,157.94,157.944,157.948,157.952,157.956,157.96,157.964,157.968,157.972,157.976,157.98,157.984,157.988,157.992,157.996,158.0,158.004,158.008,158.012,158.016,158.02,158.024,158.028,158.03199999999998,158.036,158.04,158.04399999999998,158.048,158.052,158.05599999999998,158.06,158.064,158.06799999999998,158.072,158.076,158.07999999999998,158.084,158.088,158.09199999999998,158.096,158.1,158.10399999999998,158.108,158.112,158.11599999999999,158.12,158.124,158.128,158.132,158.136,158.14,158.144,158.148,158.152,158.156,158.16,158.164,158.168,158.172,158.176,158.18,158.184,158.188,158.192,158.196,158.2,158.204,158.208,158.212,158.216,158.22,158.224,158.228,158.232,158.236,158.24,158.244,158.248,158.252,158.256,158.26,158.264,158.268,158.272,158.276,158.28,158.284,158.28799999999998,158.292,158.296,158.29999999999998,158.29999999999998,158.764,158.768,158.77200000000002,158.776,158.78,158.78400000000002,158.788,158.792,158.79600000000002,158.8,158.804,158.80800000000002,158.812,158.816,158.82000000000002,158.824,158.828,158.83200000000002,158.836,158.84,158.84400000000002,158.848,158.852,158.85600000000002,158.86,158.864,158.86800000000002,158.872,158.876,158.88000000000002,158.88400000000001,158.888,158.892,158.89600000000002,158.9,158.904,158.90800000000002,158.912,158.916,158.92000000000002,158.924,158.928,158.93200000000002,158.936,158.94,158.94400000000002,158.948,158.952,158.95600000000002,158.96,158.964,158.96800000000002,158.972,158.976,158.98000000000002,158.984,158.988,158.99200000000002,158.996,159.0,159.00400000000002,159.008,159.012,159.01600000000002,159.02,159.024,159.02800000000002,159.032,159.036,159.04000000000002,159.044,159.048,159.05200000000002,159.056,159.06,159.06400000000002,159.068,159.072,159.07600000000002,159.08,159.084,159.08800000000002,159.092,159.096,159.10000000000002,159.104,159.108,159.11200000000002,159.116,159.12,159.12400000000002,159.12800000000001,159.132,159.13600000000002,159.14000000000001,159.144,159.148,159.15200000000002,159.156,159.16,159.16,159.624,159.628,159.632,159.636,159.64,159.644,159.648,159.652,159.656,159.66,159.664,159.668,159.672,159.676,159.68,159.684,159.688,159.692,159.696,159.7,159.704,159.708,159.712,159.716,159.72,159.724,159.728,159.732,159.736,159.74,159.744,159.748,159.75199999999998,159.756,159.76,159.76399999999998,159.768,159.772,159.77599999999998,159.78,159.784,159.78799999999998,159.792,159.796,159.79999999999998,159.804,159.808,159.81199999999998,159.816,159.82,159.82399999999998,159.828,159.832,159.83599999999998,159.84,159.844,159.84799999999998,159.852,159.856,159.85999999999999,159.864,159.868,159.87199999999999,159.876,159.88,159.884,159.888,159.892,159.896,159.9,159.904,159.908,159.912,159.916,159.92,159.924,159.928,159.932,159.936,159.94,159.944,159.948,159.952,159.956,159.96,159.964,159.968,159.972,159.976,159.98,159.984,159.988,159.992,159.996,160.0,160.004,160.00799999999998,160.012,160.016,160.01999999999998,160.01999999999998,160.484,160.488,160.49200000000002,160.496,160.5,160.50400000000002,160.508,160.512,160.51600000000002,160.52,160.524,160.52800000000002,160.532,160.536,160.54000000000002,160.544,160.548,160.55200000000002,160.556,160.56,160.56400000000002,160.568,160.572,160.57600000000002,160.58,160.584,160.58800000000002,160.592,160.596,160.60000000000002,160.604,160.608,160.612,160.616,160.62,160.624,160.62800000000001,160.632,160.636,160.64000000000001,160.644,160.648,160.65200000000002,160.656,160.66,160.66400000000002,160.668,160.672,160.67600000000002,160.68,160.684,160.68800000000002,160.692,160.696,160.70000000000002,160.704,160.708,160.71200000000002,160.716,160.72,160.72400000000002,160.728,160.732,160.73600000000002,160.74,160.744,160.74800000000002,160.752,160.756,160.76000000000002,160.764,160.768,160.77200000000002,160.776,160.78,160.78400000000002,160.788,160.792,160.79600000000002,160.8,160.804,160.80800000000002,160.812,160.816,160.82000000000002,160.824,160.828,160.83200000000002,160.836,160.84,160.84400000000002,160.848,160.852,160.85600000000002,160.86,160.864,160.868,160.872,160.876,160.88,160.88,161.344,161.34799999999998,161.352,161.356,161.35999999999999,161.364,161.368,161.37199999999999,161.376,161.38,161.384,161.388,161.392,161.396,161.4,161.404,161.408,161.412,161.416,161.42,161.424,161.428,161.432,161.436,161.44,161.444,161.448,161.452,161.456,161.46,161.464,161.468,161.47199999999998,161.476,161.48,161.48399999999998,161.488,161.492,161.49599999999998,161.5,161.504,161.50799999999998,161.512,161.516,161.51999999999998,161.524,161.528,161.53199999999998,161.536,161.54,161.54399999999998,161.548,161.552,161.55599999999998,161.56,161.564,161.56799999999998,161.572,161.576,161.57999999999998,161.584,161.588,161.59199999999998,161.596,161.6,161.60399999999998,161.608,161.612,161.61599999999999,161.62,161.624,161.628,161.632,161.636,161.64,161.644,161.648,161.652,161.656,161.66,161.664,161.668,161.672,161.676,161.68,161.684,161.688,161.692,161.696,161.7,161.704,161.708,161.712,161.716,161.72,161.724,161.72799999999998,161.732,161.736,161.73999999999998,161.73999999999998,162.204,162.208,162.21200000000002,162.216,162.22,162.22400000000002,162.228,162.232,162.23600000000002,162.24,162.244,162.24800000000002,162.252,162.256,162.26000000000002,162.264,162.268,162.27200000000002,162.276,162.28,162.28400000000002,162.288,162.292,162.29600000000002,162.3,162.304,162.30800000000002,162.312,162.316,162.32000000000002,162.324,162.328,162.332,162.336,162.34,162.344,162.348,162.352,162.356,162.36,162.364,162.368,162.372,162.376,162.38,162.38400000000001,162.388,162.392,162.39600000000002,162.4,162.404,162.40800000000002,162.412,162.416,162.42000000000002,162.424,162.428,162.43200000000002,162.436,162.44,162.44400000000002,162.448,162.452,162.45600000000002,162.46,162.464,162.46800000000002,162.472,162.476,162.48000000000002,162.484,162.488,162.49200000000002,162.496,162.5,162.50400000000002,162.508,162.512,162.51600000000002,162.52,162.524,162.52800000000002,162.532,162.536,162.54000000000002,162.544,162.548,162.55200000000002,162.556,162.56,162.56400000000002,162.568,162.572,162.57600000000002,162.58,162.584,162.588,162.592,162.596,162.6,162.6,163.064,163.06799999999998,163.072,163.076,163.07999999999998,163.084,163.088,163.09199999999998,163.096,163.1,163.10399999999998,163.108,163.112,163.11599999999999,163.12,163.124,163.128,163.132,163.136,163.14,163.144,163.148,163.152,163.156,163.16,163.164,163.168,163.172,163.176,163.18,163.184,163.188,163.19199999999998,163.196,163.2,163.20399999999998,163.208,163.212,163.21599999999998,163.22,163.224,163.22799999999998,163.232,163.236,163.23999999999998,163.244,163.248,163.25199999999998,163.256,163.26,163.26399999999998,163.268,163.272,163.27599999999998,163.28,163.284,163.28799999999998,163.292,163.296,163.29999999999998,163.304,163.308,163.31199999999998,163.316,163.32,163.32399999999998,163.328,163.332,163.33599999999998,163.34,163.344,163.34799999999998,163.352,163.356,163.35999999999999,163.364,163.368,163.37199999999999,163.376,163.38,163.384,163.388,163.392,163.396,163.4,163.404,163.408,163.412,163.416,163.42,163.424,163.428,163.432,163.436,163.44,163.444,163.44799999999998,163.452,163.456,163.45999999999998,163.45999999999998,163.924,163.928,163.93200000000002,163.936,163.94,163.94400000000002,163.948,163.952,163.95600000000002,163.96,163.964,163.96800000000002,163.972,163.976,163.98000000000002,163.984,163.988,163.99200000000002,163.996,164.0,164.00400000000002,164.008,164.012,164.01600000000002,164.02,164.024,164.02800000000002,164.032,164.036,164.04000000000002,164.044,164.048,164.052,164.056,164.06,164.064,164.068,164.072,164.076,164.08,164.084,164.088,164.092,164.096,164.1,164.104,164.108,164.112,164.116,164.12,164.124,164.12800000000001,164.132,164.136,164.14000000000001,164.144,164.148,164.15200000000002,164.156,164.16,164.16400000000002,164.168,164.172,164.17600000000002,164.18,164.184,164.18800000000002,164.192,164.196,164.20000000000002,164.204,164.208,164.21200000000002,164.216,164.22,164.22400000000002,164.228,164.232,164.23600000000002,164.24,164.244,164.24800000000002,164.252,164.256,164.26000000000002,164.264,164.268,164.27200000000002,164.276,164.28,164.28400000000002,164.288,164.292,164.29600000000002,164.3,164.304,164.308,164.312,164.316,164.32,164.32,164.784,164.78799999999998,164.792,164.796,164.79999999999998,164.804,164.808,164.81199999999998,164.816,164.82,164.82399999999998,164.828,164.832,164.83599999999998,164.84,164.844,164.84799999999998,164.852,164.856,164.85999999999999,164.864,164.868,164.87199999999999,164.876,164.88,164.884,164.888,164.892,164.896,164.9,164.904,164.908,164.91199999999998,164.916,164.92,164.92399999999998,164.928,164.932,164.93599999999998,164.94,164.944,164.94799999999998,164.952,164.956,164.95999999999998,164.964,164.968,164.97199999999998,164.976,164.98,164.98399999999998,164.988,164.992,164.99599999999998,165.0,165.004,165.00799999999998,165.012,165.016,165.01999999999998,165.024,165.028,165.03199999999998,165.036,165.04,165.04399999999998,165.048,165.052,165.05599999999998,165.06,165.064,165.06799999999998,165.072,165.076,165.07999999999998,165.084,165.088,165.09199999999998,165.096,165.1,165.10399999999998,165.108,165.112,165.11599999999999,165.12,165.124,165.128,165.132,165.136,165.14,165.144,165.148,165.152,165.156,165.16,165.164,165.16799999999998,165.172,165.176,165.17999999999998,165.17999999999998,165.644,165.648,165.65200000000002,165.656,165.66,165.66400000000002,165.668,165.672,165.67600000000002,165.68,165.684,165.68800000000002,165.692,165.696,165.70000000000002,165.704,165.708,165.71200000000002,165.716,165.72,165.72400000000002,165.728,165.732,165.73600000000002,165.74,165.744,165.74800000000002,165.752,165.756,165.76000000000002,165.764,165.768,165.772,165.776,165.78,165.784,165.788,165.792,165.796,165.8,165.804,165.808,165.812,165.816,165.82,165.824,165.828,165.832,165.836,165.84,165.844,165.848,165.852,165.856,165.86,165.864,165.868,165.872,165.876,165.88,165.88400000000001,165.888,165.892,165.89600000000002,165.9,165.904,165.90800000000002,165.912,165.916,165.92000000000002,165.924,165.928,165.93200000000002,165.936,165.94,165.94400000000002,165.948,165.952,165.95600000000002,165.96,165.964,165.96800000000002,165.972,165.976,165.98000000000002,165.984,165.988,165.99200000000002,165.996,166.0,166.00400000000002,166.008,166.012,166.01600000000002,166.02,166.024,166.028,166.032,166.036,166.04,166.04,166.50300000000001,166.507,166.51100000000002,166.51500000000001,166.519,166.52300000000002,166.52700000000002,166.531,166.53500000000003,166.53900000000002,166.543,166.54700000000003,166.55100000000002,166.555,166.55900000000003,166.56300000000002,166.567,166.57100000000003,166.57500000000002,166.579,166.58300000000003,166.58700000000002,166.591,166.59500000000003,166.59900000000002,166.603,166.60700000000003,166.61100000000002,166.615,166.61900000000003,166.62300000000002,166.627,166.631,166.63500000000002,166.639,166.643,166.64700000000002,166.651,166.655,166.65900000000002,166.663,166.667,166.67100000000002,166.675,166.679,166.68300000000002,166.687,166.691,166.69500000000002,166.699,166.703,166.70700000000002,166.711,166.715,166.71900000000002,166.723,166.727,166.73100000000002,166.735,166.739,166.74300000000002,166.747,166.751,166.75500000000002,166.75900000000001,166.763,166.76700000000002,166.77100000000002,166.775,166.77900000000002,166.78300000000002,166.787,166.79100000000003,166.79500000000002,166.799,166.80300000000003,166.80700000000002,166.811,166.81500000000003,166.81900000000002,166.823,166.82700000000003,166.83100000000002,166.835,166.83900000000003,166.84300000000002,166.847,166.85100000000003,166.85500000000002,166.859,166.86300000000003,166.86700000000002,166.871,166.87500000000003,166.87900000000002,166.883,166.887,166.89100000000002,166.895,166.899,166.899,167.363,167.367,167.371,167.375,167.379,167.383,167.387,167.391,167.395,167.399,167.403,167.407,167.411,167.415,167.419,167.423,167.427,167.431,167.435,167.439,167.443,167.447,167.451,167.455,167.459,167.463,167.467,167.471,167.475,167.479,167.483,167.487,167.49099999999999,167.495,167.499,167.503,167.507,167.511,167.515,167.519,167.523,167.527,167.531,167.535,167.539,167.543,167.547,167.551,167.555,167.559,167.563,167.567,167.571,167.575,167.579,167.583,167.587,167.591,167.595,167.599,167.603,167.607,167.611,167.615,167.619,167.623,167.627,167.631,167.635,167.639,167.643,167.647,167.651,167.655,167.659,167.663,167.667,167.671,167.675,167.679,167.683,167.687,167.691,167.695,167.699,167.703,167.707,167.711,167.715,167.719,167.723,167.727,167.731,167.735,167.739,167.743,167.74699999999999,167.751,167.755,167.759,167.759,168.223,168.227,168.23100000000002,168.235,168.239,168.24300000000002,168.247,168.251,168.25500000000002,168.25900000000001,168.263,168.26700000000002,168.27100000000002,168.275,168.27900000000002,168.28300000000002,168.287,168.29100000000003,168.29500000000002,168.299,168.30300000000003,168.30700000000002,168.311,168.31500000000003,168.31900000000002,168.323,168.32700000000003,168.33100000000002,168.335,168.33900000000003,168.34300000000002,168.347,168.351,168.35500000000002,168.359,168.363,168.36700000000002,168.371,168.375,168.37900000000002,168.383,168.387,168.39100000000002,168.395,168.399,168.40300000000002,168.407,168.411,168.41500000000002,168.419,168.423,168.42700000000002,168.431,168.435,168.43900000000002,168.443,168.447,168.45100000000002,168.455,168.459,168.46300000000002,168.467,168.471,168.47500000000002,168.479,168.483,168.48700000000002,168.491,168.495,168.49900000000002,168.50300000000001,168.507,168.51100000000002,168.51500000000001,168.519,168.52300000000002,168.52700000000002,168.531,168.53500000000003,168.53900000000002,168.543,168.54700000000003,168.55100000000002,168.555,168.55900000000003,168.56300000000002,168.567,168.57100000000003,168.57500000000002,168.579,168.58300000000003,168.58700000000002,168.591,168.59500000000003,168.59900000000002,168.603,168.607,168.61100000000002,168.615,168.619,168.619,169.083,169.087,169.091,169.095,169.099,169.103,169.107,169.111,169.115,169.119,169.123,169.127,169.131,169.135,169.139,169.143,169.147,169.151,169.155,169.159,169.163,169.167,169.171,169.175,169.179,169.183,169.187,169.191,169.195,169.199,169.203,169.207,169.21099999999998,169.215,169.219,169.22299999999998,169.227,169.231,169.23499999999999,169.239,169.243,169.24699999999999,169.251,169.255,169.259,169.263,169.267,169.271,169.275,169.279,169.283,169.287,169.291,169.295,169.299,169.303,169.307,169.311,169.315,169.319,169.323,169.327,169.331,169.335,169.339,169.343,169.347,169.351,169.355,169.359,169.363,169.367,169.371,169.375,169.379,169.383,169.387,169.391,169.395,169.399,169.403,169.407,169.411,169.415,169.419,169.423,169.427,169.431,169.435,169.439,169.443,169.447,169.451,169.455,169.459,169.463,169.46699999999998,169.471,169.475,169.47899999999998,169.47899999999998,169.943,169.947,169.95100000000002,169.955,169.959,169.96300000000002,169.967,169.971,169.97500000000002,169.979,169.983,169.98700000000002,169.991,169.995,169.99900000000002,170.00300000000001,170.007,170.01100000000002,170.01500000000001,170.019,170.02300000000002,170.02700000000002,170.031,170.03500000000003,170.03900000000002,170.043,170.04700000000003,170.05100000000002,170.055,170.05900000000003,170.06300000000002,170.067,170.071,170.07500000000002,170.079,170.083,170.08700000000002,170.091,170.095,170.09900000000002,170.103,170.107,170.11100000000002,170.115,170.119,170.12300000000002,170.127,170.131,170.13500000000002,170.139,170.143,170.14700000000002,170.151,170.155,170.15900000000002,170.163,170.167,170.17100000000002,170.175,170.179,170.18300000000002,170.187,170.191,170.19500000000002,170.199,170.203,170.20700000000002,170.211,170.215,170.21900000000002,170.223,170.227,170.23100000000002,170.235,170.239,170.24300000000002,170.247,170.251,170.25500000000002,170.25900000000001,170.263,170.26700000000002,170.27100000000002,170.275,170.27900000000002,170.28300000000002,170.287,170.29100000000003,170.29500000000002,170.299,170.30300000000003,170.30700000000002,170.311,170.31500000000003,170.31900000000002,170.323,170.327,170.33100000000002,170.335,170.339,170.339,170.803,170.807,170.811,170.815,170.819,170.823,170.827,170.831,170.835,170.839,170.843,170.847,170.851,170.855,170.859,170.863,170.867,170.871,170.875,170.879,170.883,170.887,170.891,170.895,170.899,170.903,170.907,170.911,170.915,170.919,170.923,170.927,170.93099999999998,170.935,170.939,170.94299999999998,170.947,170.951,170.95499999999998,170.959,170.963,170.96699999999998,170.971,170.975,170.97899999999998,170.983,170.987,170.99099999999999,170.995,170.999,171.003,171.007,171.011,171.015,171.019,171.023,171.027,171.031,171.035,171.039,171.043,171.047,171.051,171.055,171.059,171.063,171.067,171.071,171.075,171.079,171.083,171.087,171.091,171.095,171.099,171.103,171.107,171.111,171.115,171.119,171.123,171.127,171.131,171.135,171.139,171.143,171.147,171.151,171.155,171.159,171.163,171.167,171.171,171.175,171.179,171.183,171.18699999999998,171.191,171.195,171.19899999999998,171.19899999999998,171.663,171.667,171.67100000000002,171.675,171.679,171.68300000000002,171.687,171.691,171.69500000000002,171.699,171.703,171.70700000000002,171.711,171.715,171.71900000000002,171.723,171.727,171.73100000000002,171.735,171.739,171.74300000000002,171.747,171.751,171.75500000000002,171.75900000000001,171.763,171.76700000000002,171.77100000000002,171.775,171.77900000000002,171.78300000000002,171.787,171.791,171.79500000000002,171.799,171.803,171.80700000000002,171.811,171.815,171.81900000000002,171.823,171.827,171.83100000000002,171.835,171.839,171.84300000000002,171.847,171.851,171.85500000000002,171.859,171.863,171.86700000000002,171.871,171.875,171.87900000000002,171.883,171.887,171.89100000000002,171.895,171.899,171.90300000000002,171.907,171.911,171.91500000000002,171.919,171.923,171.92700000000002,171.931,171.935,171.93900000000002,171.943,171.947,171.95100000000002,171.955,171.959,171.96300000000002,171.967,171.971,171.97500000000002,171.979,171.983,171.98700000000002,171.991,171.995,171.99900000000002,172.00300000000001,172.007,172.01100000000002,172.01500000000001,172.019,172.02300000000002,172.02700000000002,172.031,172.03500000000003,172.03900000000002,172.043,172.047,172.05100000000002,172.055,172.059,172.059,172.523,172.527,172.531,172.535,172.539,172.543,172.547,172.551,172.555,172.559,172.563,172.567,172.571,172.575,172.579,172.583,172.587,172.591,172.595,172.599,172.603,172.607,172.611,172.615,172.619,172.623,172.627,172.631,172.635,172.639,172.643,172.647,172.65099999999998,172.655,172.659,172.66299999999998,172.667,172.671,172.67499999999998,172.679,172.683,172.68699999999998,172.691,172.695,172.69899999999998,172.703,172.707,172.71099999999998,172.715,172.719,172.72299999999998,172.727,172.731,172.73499999999999,172.739,172.743,172.74699999999999,172.751,172.755,172.759,172.763,172.767,172.771,172.775,172.779,172.783,172.787,172.791,172.795,172.799,172.803,172.807,172.811,172.815,172.819,172.823,172.827,172.831,172.835,172.839,172.843,172.847,172.851,172.855,172.859,172.863,172.867,172.871,172.875,172.879,172.883,172.887,172.891,172.895,172.899,172.903,172.90699999999998,172.911,172.915,172.91899999999998,172.91899999999998,173.383,173.387,173.39100000000002,173.395,173.399,173.40300000000002,173.407,173.411,173.41500000000002,173.419,173.423,173.42700000000002,173.431,173.435,173.43900000000002,173.443,173.447,173.45100000000002,173.455,173.459,173.46300000000002,173.467,173.471,173.47500000000002,173.479,173.483,173.48700000000002,173.491,173.495,173.49900000000002,173.50300000000001,173.507,173.511,173.51500000000001,173.519,173.523,173.52700000000002,173.531,173.535,173.53900000000002,173.543,173.547,173.55100000000002,173.555,173.559,173.56300000000002,173.567,173.571,173.57500000000002,173.579,173.583,173.58700000000002,173.591,173.595,173.59900000000002,173.603,173.607,173.61100000000002,173.615,173.619,173.62300000000002,173.627,173.631,173.63500000000002,173.639,173.643,173.64700000000002,173.651,173.655,173.65900000000002,173.663,173.667,173.67100000000002,173.675,173.679,173.68300000000002,173.687,173.691,173.69500000000002,173.699,173.703,173.70700000000002,173.711,173.715,173.71900000000002,173.723,173.727,173.73100000000002,173.735,173.739,173.74300000000002,173.747,173.751,173.75500000000002,173.75900000000001,173.763,173.767,173.77100000000002,173.775,173.779,173.779,174.243,174.24699999999999,174.251,174.255,174.259,174.263,174.267,174.271,174.275,174.279,174.283,174.287,174.291,174.295,174.299,174.303,174.307,174.311,174.315,174.319,174.323,174.327,174.331,174.335,174.339,174.343,174.347,174.351,174.355,174.359,174.363,174.367,174.37099999999998,174.375,174.379,174.38299999999998,174.387,174.391,174.39499999999998,174.399,174.403,174.40699999999998,174.411,174.415,174.41899999999998,174.423,174.427,174.43099999999998,174.435,174.439,174.44299999999998,174.447,174.451,174.45499999999998,174.459,174.463,174.46699999999998,174.471,174.475,174.47899999999998,174.483,174.487,174.49099999999999,174.495,174.499,174.503,174.507,174.511,174.515,174.519,174.523,174.527,174.531,174.535,174.539,174.543,174.547,174.551,174.555,174.559,174.563,174.567,174.571,174.575,174.579,174.583,174.587,174.591,174.595,174.599,174.603,174.607,174.611,174.615,174.619,174.623,174.62699999999998,174.631,174.635,174.63899999999998,174.63899999999998,175.103,175.107,175.11100000000002,175.115,175.119,175.12300000000002,175.127,175.131,175.13500000000002,175.139,175.143,175.14700000000002,175.151,175.155,175.15900000000002,175.163,175.167,175.17100000000002,175.175,175.179,175.18300000000002,175.187,175.191,175.19500000000002,175.199,175.203,175.20700000000002,175.211,175.215,175.21900000000002,175.223,175.227,175.231,175.235,175.239,175.243,175.247,175.251,175.255,175.25900000000001,175.263,175.267,175.27100000000002,175.275,175.279,175.28300000000002,175.287,175.291,175.29500000000002,175.299,175.303,175.30700000000002,175.311,175.315,175.31900000000002,175.323,175.327,175.33100000000002,175.335,175.339,175.34300000000002,175.347,175.351,175.35500000000002,175.359,175.363,175.36700000000002,175.371,175.375,175.37900000000002,175.383,175.387,175.39100000000002,175.395,175.399,175.40300000000002,175.407,175.411,175.41500000000002,175.419,175.423,175.42700000000002,175.431,175.435,175.43900000000002,175.443,175.447,175.45100000000002,175.455,175.459,175.46300000000002,175.467,175.471,175.47500000000002,175.479,175.483,175.487,175.491,175.495,175.499,175.499,175.963,175.96699999999998,175.971,175.975,175.97899999999998,175.983,175.987,175.99099999999999,175.995,175.999,176.003,176.007,176.011,176.015,176.019,176.023,176.027,176.031,176.035,176.039,176.043,176.047,176.051,176.055,176.059,176.063,176.067,176.071,176.075,176.079,176.083,176.087,176.09099999999998,176.095,176.099,176.10299999999998,176.107,176.111,176.11499999999998,176.119,176.123,176.12699999999998,176.131,176.135,176.13899999999998,176.143,176.147,176.15099999999998,176.155,176.159,176.16299999999998,176.167,176.171,176.17499999999998,176.179,176.183,176.18699999999998,176.191,176.195,176.19899999999998,176.203,176.207,176.21099999999998,176.215,176.219,176.22299999999998,176.227,176.231,176.23499999999999,176.239,176.243,176.24699999999999,176.251,176.255,176.259,176.263,176.267,176.271,176.275,176.279,176.283,176.287,176.291,176.295,176.299,176.303,176.307,176.311,176.315,176.319,176.323,176.327,176.331,176.335,176.339,176.343,176.34699999999998,176.351,176.355,176.35899999999998,176.35899999999998,176.823,176.827,176.83100000000002,176.835,176.839,176.84300000000002,176.847,176.851,176.85500000000002,176.859,176.863,176.86700000000002,176.871,176.875,176.87900000000002,176.883,176.887,176.89100000000002,176.895,176.899,176.90300000000002,176.907,176.911,176.91500000000002,176.919,176.923,176.92700000000002,176.931,176.935,176.93900000000002,176.943,176.947,176.951,176.955,176.959,176.963,176.967,176.971,176.975,176.979,176.983,176.987,176.991,176.995,176.999,177.00300000000001,177.007,177.011,177.01500000000001,177.019,177.023,177.02700000000002,177.031,177.035,177.03900000000002,177.043,177.047,177.05100000000002,177.055,177.059,177.06300000000002,177.067,177.071,177.07500000000002,177.079,177.083,177.08700000000002,177.091,177.095,177.09900000000002,177.103,177.107,177.11100000000002,177.115,177.119,177.12300000000002,177.127,177.131,177.13500000000002,177.139,177.143,177.14700000000002,177.151,177.155,177.15900000000002,177.163,177.167,177.17100000000002,177.175,177.179,177.18300000000002,177.187,177.191,177.19500000000002,177.199,177.203,177.207,177.211,177.215,177.219,177.219,177.683,177.68699999999998,177.691,177.695,177.69899999999998,177.703,177.707,177.71099999999998,177.715,177.719,177.72299999999998,177.727,177.731,177.73499999999999,177.739,177.743,177.74699999999999,177.751,177.755,177.759,177.763,177.767,177.771,177.775,177.779,177.783,177.787,177.791,177.795,177.799,177.803,177.807,177.81099999999998,177.815,177.819,177.82299999999998,177.827,177.831,177.83499999999998,177.839,177.843,177.84699999999998,177.851,177.855,177.85899999999998,177.863,177.867,177.87099999999998,177.875,177.879,177.88299999999998,177.887,177.891,177.89499999999998,177.899,177.903,177.90699999999998,177.911,177.915,177.91899999999998,177.923,177.927,177.93099999999998,177.935,177.939,177.94299999999998,177.947,177.951,177.95499999999998,177.959,177.963,177.96699999999998,177.971,177.975,177.97899999999998,177.983,177.987,177.99099999999999,177.995,177.999,178.003,178.007,178.011,178.015,178.019,178.023,178.027,178.031,178.035,178.039,178.043,178.047,178.051,178.055,178.059,178.063,178.06699999999998,178.071,178.075,178.07899999999998,178.07899999999998,178.543,178.547,178.55100000000002,178.555,178.559,178.56300000000002,178.567,178.571,178.57500000000002,178.579,178.583,178.58700000000002,178.591,178.595,178.59900000000002,178.603,178.607,178.61100000000002,178.615,178.619,178.62300000000002,178.627,178.631,178.63500000000002,178.639,178.643,178.64700000000002,178.651,178.655,178.65900000000002,178.663,178.667,178.671,178.675,178.679,178.683,178.687,178.691,178.695,178.699,178.703,178.707,178.711,178.715,178.719,178.723,178.727,178.731,178.735,178.739,178.743,178.747,178.751,178.755,178.75900000000001,178.763,178.767,178.77100000000002,178.775,178.779,178.78300000000002,178.787,178.791,178.79500000000002,178.799,178.803,178.80700000000002,178.811,178.815,178.81900000000002,178.823,178.827,178.83100000000002,178.835,178.839,178.84300000000002,178.847,178.851,178.85500000000002,178.859,178.863,178.86700000000002,178.871,178.875,178.87900000000002,178.883,178.887,178.89100000000002,178.895,178.899,178.90300000000002,178.907,178.911,178.91500000000002,178.919,178.923,178.927,178.931,178.935,178.939,178.939,179.403,179.40699999999998,179.411,179.415,179.41899999999998,179.423,179.427,179.43099999999998,179.435,179.439,179.44299999999998,179.447,179.451,179.45499999999998,179.459,179.463,179.46699999999998,179.471,179.475,179.47899999999998,179.483,179.487,179.49099999999999,179.495,179.499,179.503,179.507,179.511,179.515,179.519,179.523,179.527,179.53099999999998,179.535,179.539,179.54299999999998,179.547,179.551,179.55499999999998,179.559,179.563,179.56699999999998,179.571,179.575,179.57899999999998,179.583,179.587,179.59099999999998,179.595,179.599,179.60299999999998,179.607,179.611,179.61499999999998,179.619,179.623,179.62699999999998,179.631,179.635,179.63899999999998,179.643,179.647,179.65099999999998,179.655,179.659,179.66299999999998,179.667,179.671,179.67499999999998,179.679,179.683,179.68699999999998,179.691,179.695,179.69899999999998,179.703,179.707,179.71099999999998,179.715,179.719,179.72299999999998,179.727,179.731,179.73499999999999,179.739,179.743,179.74699999999999,179.751,179.755,179.759,179.763,179.767,179.771,179.775,179.779,179.783,179.78699999999998,179.791,179.795,179.79899999999998,179.79899999999998,180.263,180.267,180.27100000000002,180.275,180.279,180.28300000000002,180.287,180.291,180.29500000000002,180.299,180.303,180.30700000000002,180.311,180.315,180.31900000000002,180.323,180.327,180.33100000000002,180.335,180.339,180.34300000000002,180.347,180.351,180.35500000000002,180.359,180.363,180.36700000000002,180.371,180.375,180.37900000000002,180.383,180.387,180.391,180.395,180.399,180.403,180.407,180.411,180.415,180.419,180.423,180.427,180.431,180.435,180.439,180.443,180.447,180.451,180.455,180.459,180.463,180.467,180.471,180.475,180.479,180.483,180.487,180.491,180.495,180.499,180.50300000000001,180.507,180.511,180.51500000000001,180.519,180.523,180.52700000000002,180.531,180.535,180.53900000000002,180.543,180.547,180.55100000000002,180.555,180.559,180.56300000000002,180.567,180.571,180.57500000000002,180.579,180.583,180.58700000000002,180.591,180.595,180.59900000000002,180.603,180.607,180.61100000000002,180.615,180.619,180.62300000000002,180.627,180.631,180.63500000000002,180.639,180.643,180.647,180.651,180.655,180.659,180.659,181.123,181.12699999999998,181.131,181.135,181.13899999999998,181.143,181.147,181.15099999999998,181.155,181.159,181.16299999999998,181.167,181.171,181.17499999999998,181.179,181.183,181.18699999999998,181.191,181.195,181.19899999999998,181.203,181.207,181.21099999999998,181.215,181.219,181.22299999999998,181.227,181.231,181.23499999999999,181.239,181.243,181.24699999999999,181.25099999999998,181.255,181.259,181.26299999999998,181.267,181.271,181.27499999999998,181.279,181.283,181.28699999999998,181.291,181.295,181.29899999999998,181.303,181.307,181.31099999999998,181.315,181.319,181.32299999999998,181.327,181.331,181.33499999999998,181.339,181.343,181.34699999999998,181.351,181.355,181.35899999999998,181.363,181.367,181.37099999999998,181.375,181.379,181.38299999999998,181.387,181.391,181.39499999999998,181.399,181.403,181.40699999999998,181.411,181.415,181.41899999999998,181.423,181.427,181.43099999999998,181.435,181.439,181.44299999999998,181.447,181.451,181.45499999999998,181.459,181.463,181.46699999999998,181.471,181.475,181.47899999999998,181.483,181.487,181.49099999999999,181.495,181.499,181.503,181.50699999999998,181.511,181.515,181.51899999999998,181.51899999999998,181.983,181.987,181.991,181.995,181.999,182.00300000000001,182.007,182.011,182.01500000000001,182.019,182.023,182.02700000000002,182.031,182.035,182.03900000000002,182.043,182.047,182.05100000000002,182.055,182.059,182.06300000000002,182.067,182.071,182.07500000000002,182.079,182.083,182.08700000000002,182.091,182.095,182.09900000000002,182.103,182.107,182.111,182.115,182.119,182.123,182.127,182.131,182.135,182.139,182.143,182.147,182.151,182.155,182.159,182.163,182.167,182.171,182.175,182.179,182.183,182.187,182.191,182.195,182.199,182.203,182.207,182.211,182.215,182.219,182.223,182.227,182.231,182.235,182.239,182.243,182.247,182.251,182.255,182.25900000000001,182.263,182.267,182.27100000000002,182.275,182.279,182.28300000000002,182.287,182.291,182.29500000000002,182.299,182.303,182.30700000000002,182.311,182.315,182.31900000000002,182.323,182.327,182.33100000000002,182.335,182.339,182.34300000000002,182.347,182.351,182.35500000000002,182.359,182.363,182.367,182.371,182.375,182.379,182.379,182.84300000000002,182.847,182.85100000000003,182.85500000000002,182.859,182.86300000000003,182.86700000000002,182.871,182.87500000000003,182.87900000000002,182.883,182.88700000000003,182.89100000000002,182.895,182.89900000000003,182.90300000000002,182.907,182.91100000000003,182.91500000000002,182.919,182.92300000000003,182.92700000000002,182.931,182.93500000000003,182.93900000000002,182.943,182.94700000000003,182.95100000000002,182.955,182.95900000000003,182.96300000000002,182.967,182.971,182.97500000000002,182.979,182.983,182.98700000000002,182.991,182.995,182.99900000000002,183.00300000000001,183.007,183.01100000000002,183.01500000000001,183.019,183.02300000000002,183.02700000000002,183.031,183.03500000000003,183.03900000000002,183.043,183.04700000000003,183.05100000000002,183.055,183.05900000000003,183.06300000000002,183.067,183.07100000000003,183.07500000000002,183.079,183.08300000000003,183.08700000000002,183.091,183.09500000000003,183.09900000000002,183.103,183.10700000000003,183.11100000000002,183.115,183.11900000000003,183.12300000000002,183.127,183.13100000000003,183.13500000000002,183.139,183.14300000000003,183.14700000000002,183.151,183.15500000000003,183.15900000000002,183.163,183.16700000000003,183.17100000000002,183.175,183.17900000000003,183.18300000000002,183.187,183.19100000000003,183.19500000000002,183.199,183.20300000000003,183.20700000000002,183.211,183.21500000000003,183.21900000000002,183.223,183.227,183.23100000000002,183.235,183.239,183.239,183.703,183.707,183.711,183.715,183.719,183.723,183.727,183.731,183.735,183.739,183.743,183.747,183.751,183.755,183.75900000000001,183.763,183.767,183.77100000000002,183.775,183.779,183.78300000000002,183.787,183.791,183.79500000000002,183.799,183.803,183.80700000000002,183.811,183.815,183.81900000000002,183.823,183.827,183.831,183.835,183.839,183.843,183.847,183.851,183.855,183.859,183.863,183.867,183.871,183.875,183.879,183.883,183.887,183.891,183.895,183.899,183.903,183.907,183.911,183.915,183.919,183.923,183.927,183.931,183.935,183.939,183.943,183.947,183.951,183.955,183.959,183.963,183.967,183.971,183.975,183.979,183.983,183.987,183.991,183.995,183.999,184.00300000000001,184.007,184.011,184.01500000000001,184.019,184.023,184.02700000000002,184.031,184.035,184.03900000000002,184.043,184.047,184.05100000000002,184.055,184.059,184.06300000000002,184.067,184.071,184.07500000000002,184.079,184.083,184.087,184.091,184.095,184.099,184.099,184.56300000000002,184.567,184.57100000000003,184.57500000000002,184.579,184.58300000000003,184.58700000000002,184.591,184.59500000000003,184.59900000000002,184.603,184.60700000000003,184.61100000000002,184.615,184.61900000000003,184.62300000000002,184.627,184.63100000000003,184.63500000000002,184.639,184.64300000000003,184.64700000000002,184.651,184.65500000000003,184.65900000000002,184.663,184.66700000000003,184.67100000000002,184.675,184.67900000000003,184.68300000000002,184.687,184.691,184.69500000000002,184.699,184.703,184.70700000000002,184.711,184.715,184.71900000000002,184.723,184.727,184.73100000000002,184.735,184.739,184.74300000000002,184.747,184.751,184.75500000000002,184.75900000000001,184.763,184.76700000000002,184.77100000000002,184.775,184.77900000000002,184.78300000000002,184.787,184.79100000000003,184.79500000000002,184.799,184.80300000000003,184.80700000000002,184.811,184.81500000000003,184.81900000000002,184.823,184.82700000000003,184.83100000000002,184.835,184.83900000000003,184.84300000000002,184.847,184.85100000000003,184.85500000000002,184.859,184.86300000000003,184.86700000000002,184.871,184.87500000000003,184.87900000000002,184.883,184.88700000000003,184.89100000000002,184.895,184.89900000000003,184.90300000000002,184.907,184.91100000000003,184.91500000000002,184.919,184.92300000000003,184.92700000000002,184.931,184.93500000000003,184.93900000000002,184.943,184.947,184.95100000000002,184.955,184.959,184.959,185.423,185.427,185.431,185.435,185.439,185.443,185.447,185.451,185.455,185.459,185.463,185.467,185.471,185.475,185.479,185.483,185.487,185.491,185.495,185.499,185.50300000000001,185.507,185.511,185.51500000000001,185.519,185.523,185.52700000000002,185.531,185.535,185.53900000000002,185.543,185.547,185.551,185.555,185.559,185.563,185.567,185.571,185.575,185.579,185.583,185.587,185.591,185.595,185.599,185.603,185.607,185.611,185.615,185.619,185.623,185.627,185.631,185.635,185.639,185.643,185.647,185.651,185.655,185.659,185.663,185.667,185.671,185.675,185.679,185.683,185.687,185.691,185.695,185.699,185.703,185.707,185.711,185.715,185.719,185.723,185.727,185.731,185.735,185.739,185.743,185.747,185.751,185.755,185.75900000000001,185.763,185.767,185.77100000000002,185.775,185.779,185.78300000000002,185.787,185.791,185.79500000000002,185.799,185.803,185.807,185.811,185.815,185.819,185.819,186.28300000000002,186.287,186.29100000000003,186.29500000000002,186.299,186.30300000000003,186.30700000000002,186.311,186.31500000000003,186.31900000000002,186.323,186.32700000000003,186.33100000000002,186.335,186.33900000000003,186.34300000000002,186.347,186.35100000000003,186.35500000000002,186.359,186.36300000000003,186.36700000000002,186.371,186.37500000000003,186.37900000000002,186.383,186.38700000000003,186.39100000000002,186.395,186.39900000000003,186.40300000000002,186.407,186.411,186.41500000000002,186.419,186.423,186.42700000000002,186.431,186.435,186.43900000000002,186.443,186.447,186.45100000000002,186.455,186.459,186.46300000000002,186.467,186.471,186.47500000000002,186.479,186.483,186.48700000000002,186.491,186.495,186.49900000000002,186.50300000000001,186.507,186.51100000000002,186.51500000000001,186.519,186.52300000000002,186.52700000000002,186.531,186.53500000000003,186.53900000000002,186.543,186.54700000000003,186.55100000000002,186.555,186.55900000000003,186.56300000000002,186.567,186.57100000000003,186.57500000000002,186.579,186.58300000000003,186.58700000000002,186.591,186.59500000000003,186.59900000000002,186.603,186.60700000000003,186.61100000000002,186.615,186.61900000000003,186.62300000000002,186.627,186.63100000000003,186.63500000000002,186.639,186.64300000000003,186.64700000000002,186.651,186.65500000000003,186.65900000000002,186.663,186.667,186.67100000000002,186.675,186.679,186.679,187.143,187.147,187.151,187.155,187.159,187.163,187.167,187.171,187.175,187.179,187.183,187.187,187.191,187.195,187.199,187.203,187.207,187.211,187.215,187.219,187.223,187.227,187.231,187.235,187.239,187.243,187.247,187.251,187.255,187.25900000000001,187.263,187.267,187.271,187.275,187.279,187.283,187.287,187.291,187.295,187.299,187.303,187.307,187.311,187.315,187.319,187.323,187.327,187.331,187.335,187.339,187.343,187.347,187.351,187.355,187.359,187.363,187.367,187.371,187.375,187.379,187.383,187.387,187.391,187.395,187.399,187.403,187.407,187.411,187.415,187.419,187.423,187.427,187.431,187.435,187.439,187.443,187.447,187.451,187.455,187.459,187.463,187.467,187.471,187.475,187.479,187.483,187.487,187.491,187.495,187.499,187.50300000000001,187.507,187.511,187.51500000000001,187.519,187.523,187.527,187.531,187.535,187.539,187.539,188.00300000000001,188.007,188.01100000000002,188.01500000000001,188.019,188.02300000000002,188.02700000000002,188.031,188.03500000000003,188.03900000000002,188.043,188.04700000000003,188.05100000000002,188.055,188.05900000000003,188.06300000000002,188.067,188.07100000000003,188.07500000000002,188.079,188.08300000000003,188.08700000000002,188.091,188.09500000000003,188.09900000000002,188.103,188.10700000000003,188.11100000000002,188.115,188.11900000000003,188.12300000000002,188.127,188.131,188.13500000000002,188.139,188.143,188.14700000000002,188.151,188.155,188.15900000000002,188.163,188.167,188.17100000000002,188.175,188.179,188.18300000000002,188.187,188.191,188.19500000000002,188.199,188.203,188.20700000000002,188.211,188.215,188.21900000000002,188.223,188.227,188.23100000000002,188.235,188.239,188.24300000000002,188.247,188.251,188.25500000000002,188.25900000000001,188.263,188.26700000000002,188.27100000000002,188.275,188.27900000000002,188.28300000000002,188.287,188.29100000000003,188.29500000000002,188.299,188.30300000000003,188.30700000000002,188.311,188.31500000000003,188.31900000000002,188.323,188.32700000000003,188.33100000000002,188.335,188.33900000000003,188.34300000000002,188.347,188.35100000000003,188.35500000000002,188.359,188.36300000000003,188.36700000000002,188.371,188.37500000000003,188.37900000000002,188.383,188.387,188.39100000000002,188.395,188.399,188.399,188.863,188.867,188.871,188.875,188.879,188.883,188.887,188.891,188.895,188.899,188.903,188.907,188.911,188.915,188.919,188.923,188.927,188.931,188.935,188.939,188.943,188.947,188.951,188.955,188.959,188.963,188.967,188.971,188.975,188.979,188.983,188.987,188.99099999999999,188.995,188.999,189.003,189.007,189.011,189.015,189.019,189.023,189.027,189.031,189.035,189.039,189.043,189.047,189.051,189.055,189.059,189.063,189.067,189.071,189.075,189.079,189.083,189.087,189.091,189.095,189.099,189.103,189.107,189.111,189.115,189.119,189.123,189.127,189.131,189.135,189.139,189.143,189.147,189.151,189.155,189.159,189.163,189.167,189.171,189.175,189.179,189.183,189.187,189.191,189.195,189.199,189.203,189.207,189.211,189.215,189.219,189.223,189.227,189.231,189.235,189.239,189.243,189.24699999999999,189.251,189.255,189.259,189.259,189.723,189.727,189.73100000000002,189.735,189.739,189.74300000000002,189.747,189.751,189.75500000000002,189.75900000000001,189.763,189.76700000000002,189.77100000000002,189.775,189.77900000000002,189.78300000000002,189.787,189.79100000000003,189.79500000000002,189.799,189.80300000000003,189.80700000000002,189.811,189.81500000000003,189.81900000000002,189.823,189.82700000000003,189.83100000000002,189.835,189.83900000000003,189.84300000000002,189.847,189.851,189.85500000000002,189.859,189.863,189.86700000000002,189.871,189.875,189.87900000000002,189.883,189.887,189.89100000000002,189.895,189.899,189.90300000000002,189.907,189.911,189.91500000000002,189.919,189.923,189.92700000000002,189.931,189.935,189.93900000000002,189.943,189.947,189.95100000000002,189.955,189.959,189.96300000000002,189.967,189.971,189.97500000000002,189.979,189.983,189.98700000000002,189.991,189.995,189.99900000000002,190.00300000000001,190.007,190.01100000000002,190.01500000000001,190.019,190.02300000000002,190.02700000000002,190.031,190.03500000000003,190.03900000000002,190.043,190.04700000000003,190.05100000000002,190.055,190.05900000000003,190.06300000000002,190.067,190.07100000000003,190.07500000000002,190.079,190.08300000000003,190.08700000000002,190.091,190.09500000000003,190.09900000000002,190.103,190.107,190.11100000000002,190.115,190.119,190.119,190.583,190.587,190.591,190.595,190.599,190.603,190.607,190.611,190.615,190.619,190.623,190.627,190.631,190.635,190.639,190.643,190.647,190.651,190.655,190.659,190.663,190.667,190.671,190.675,190.679,190.683,190.687,190.691,190.695,190.699,190.703,190.707,190.71099999999998,190.715,190.719,190.72299999999998,190.727,190.731,190.73499999999999,190.739,190.743,190.74699999999999,190.751,190.755,190.759,190.763,190.767,190.771,190.775,190.779,190.783,190.787,190.791,190.795,190.799,190.803,190.807,190.811,190.815,190.819,190.823,190.827,190.831,190.835,190.839,190.843,190.847,190.851,190.855,190.859,190.863,190.867,190.871,190.875,190.879,190.883,190.887,190.891,190.895,190.899,190.903,190.907,190.911,190.915,190.919,190.923,190.927,190.931,190.935,190.939,190.943,190.947,190.951,190.955,190.959,190.963,190.96699999999998,190.971,190.975,190.97899999999998,190.97899999999998,191.443,191.447,191.45100000000002,191.455,191.459,191.46300000000002,191.467,191.471,191.47500000000002,191.479,191.483,191.48700000000002,191.491,191.495,191.49900000000002,191.50300000000001,191.507,191.51100000000002,191.51500000000001,191.519,191.52300000000002,191.52700000000002,191.531,191.53500000000003,191.53900000000002,191.543,191.54700000000003,191.55100000000002,191.555,191.55900000000003,191.56300000000002,191.567,191.571,191.57500000000002,191.579,191.583,191.58700000000002,191.591,191.595,191.59900000000002,191.603,191.607,191.61100000000002,191.615,191.619,191.62300000000002,191.627,191.631,191.63500000000002,191.639,191.643,191.64700000000002,191.651,191.655,191.65900000000002,191.663,191.667,191.67100000000002,191.675,191.679,191.68300000000002,191.687,191.691,191.69500000000002,191.699,191.703,191.70700000000002,191.711,191.715,191.71900000000002,191.723,191.727,191.73100000000002,191.735,191.739,191.74300000000002,191.747,191.751,191.75500000000002,191.75900000000001,191.763,191.76700000000002,191.77100000000002,191.775,191.77900000000002,191.78300000000002,191.787,191.79100000000003,191.79500000000002,191.799,191.80300000000003,191.80700000000002,191.811,191.81500000000003,191.81900000000002,191.823,191.827,191.83100000000002,191.835,191.839,191.839,192.303,192.307,192.311,192.315,192.319,192.323,192.327,192.331,192.335,192.339,192.343,192.347,192.351,192.355,192.359,192.363,192.367,192.371,192.375,192.379,192.383,192.387,192.391,192.395,192.399,192.403,192.407,192.411,192.415,192.419,192.423,192.427,192.43099999999998,192.435,192.439,192.44299999999998,192.447,192.451,192.45499999999998,192.459,192.463,192.46699999999998,192.471,192.475,192.47899999999998,192.483,192.487,192.49099999999999,192.495,192.499,192.503,192.507,192.511,192.515,192.519,192.523,192.527,192.531,192.535,192.539,192.543,192.547,192.551,192.555,192.559,192.563,192.567,192.571,192.575,192.579,192.583,192.587,192.591,192.595,192.599,192.603,192.607,192.611,192.615,192.619,192.623,192.627,192.631,192.635,192.639,192.643,192.647,192.651,192.655,192.659,192.663,192.667,192.671,192.675,192.679,192.683,192.68699999999998,192.691,192.695,192.69899999999998,192.69899999999998,193.163,193.167,193.17100000000002,193.175,193.179,193.18300000000002,193.187,193.191,193.19500000000002,193.199,193.203,193.20700000000002,193.211,193.215,193.21900000000002,193.223,193.227,193.23100000000002,193.235,193.239,193.24300000000002,193.247,193.251,193.25500000000002,193.25900000000001,193.263,193.26700000000002,193.27100000000002,193.275,193.27900000000002,193.28300000000002,193.287,193.291,193.29500000000002,193.299,193.303,193.30700000000002,193.311,193.315,193.31900000000002,193.323,193.327,193.33100000000002,193.335,193.339,193.34300000000002,193.347,193.351,193.35500000000002,193.359,193.363,193.36700000000002,193.371,193.375,193.37900000000002,193.383,193.387,193.39100000000002,193.395,193.399,193.40300000000002,193.407,193.411,193.41500000000002,193.419,193.423,193.42700000000002,193.431,193.435,193.43900000000002,193.443,193.447,193.45100000000002,193.455,193.459,193.46300000000002,193.467,193.471,193.47500000000002,193.479,193.483,193.48700000000002,193.491,193.495,193.49900000000002,193.50300000000001,193.507,193.51100000000002,193.51500000000001,193.519,193.52300000000002,193.52700000000002,193.531,193.53500000000003,193.53900000000002,193.543,193.547,193.55100000000002,193.555,193.559,193.559,194.023,194.027,194.031,194.035,194.039,194.043,194.047,194.051,194.055,194.059,194.063,194.067,194.071,194.075,194.079,194.083,194.087,194.091,194.095,194.099,194.103,194.107,194.111,194.115,194.119,194.123,194.127,194.131,194.135,194.139,194.143,194.147,194.15099999999998,194.155,194.159,194.16299999999998,194.167,194.171,194.17499999999998,194.179,194.183,194.18699999999998,194.191,194.195,194.19899999999998,194.203,194.207,194.21099999999998,194.215,194.219,194.22299999999998,194.227,194.231,194.23499999999999,194.239,194.243,194.24699999999999,194.251,194.255,194.259,194.263,194.267,194.271,194.275,194.279,194.283,194.287,194.291,194.295,194.299,194.303,194.307,194.311,194.315,194.319,194.323,194.327,194.331,194.335,194.339,194.343,194.347,194.351,194.355,194.359,194.363,194.367,194.371,194.375,194.379,194.383,194.387,194.391,194.395,194.399,194.403,194.40699999999998,194.411,194.415,194.41899999999998,194.41899999999998,194.883,194.887,194.89100000000002,194.895,194.899,194.90300000000002,194.907,194.911,194.91500000000002,194.919,194.923,194.92700000000002,194.931,194.935,194.93900000000002,194.943,194.947,194.95100000000002,194.955,194.959,194.96300000000002,194.967,194.971,194.97500000000002,194.979,194.983,194.98700000000002,194.991,194.995,194.99900000000002,195.00300000000001,195.007,195.011,195.01500000000001,195.019,195.023,195.02700000000002,195.031,195.035,195.03900000000002,195.043,195.047,195.05100000000002,195.055,195.059,195.06300000000002,195.067,195.071,195.07500000000002,195.079,195.083,195.08700000000002,195.091,195.095,195.09900000000002,195.103,195.107,195.11100000000002,195.115,195.119,195.12300000000002,195.127,195.131,195.13500000000002,195.139,195.143,195.14700000000002,195.151,195.155,195.15900000000002,195.163,195.167,195.17100000000002,195.175,195.179,195.18300000000002,195.187,195.191,195.19500000000002,195.199,195.203,195.20700000000002,195.211,195.215,195.21900000000002,195.223,195.227,195.23100000000002,195.235,195.239,195.24300000000002,195.247,195.251,195.25500000000002,195.25900000000001,195.263,195.267,195.27100000000002,195.275,195.279,195.279,195.743,195.74699999999999,195.751,195.755,195.759,195.763,195.767,195.771,195.775,195.779,195.783,195.787,195.791,195.795,195.799,195.803,195.807,195.811,195.815,195.819,195.823,195.827,195.831,195.835,195.839,195.843,195.847,195.851,195.855,195.859,195.863,195.867,195.87099999999998,195.875,195.879,195.88299999999998,195.887,195.891,195.89499999999998,195.899,195.903,195.90699999999998,195.911,195.915,195.91899999999998,195.923,195.927,195.93099999999998,195.935,195.939,195.94299999999998,195.947,195.951,195.95499999999998,195.959,195.963,195.96699999999998,195.971,195.975,195.97899999999998,195.983,195.987,195.99099999999999,195.995,195.999,196.003,196.007,196.011,196.015,196.019,196.023,196.027,196.031,196.035,196.039,196.043,196.047,196.051,196.055,196.059,196.063,196.067,196.071,196.075,196.079,196.083,196.087,196.091,196.095,196.099,196.103,196.107,196.111,196.115,196.119,196.123,196.12699999999998,196.131,196.135,196.13899999999998,196.13899999999998,196.603,196.607,196.61100000000002,196.615,196.619,196.62300000000002,196.627,196.631,196.63500000000002,196.639,196.643,196.64700000000002,196.651,196.655,196.65900000000002,196.663,196.667,196.67100000000002,196.675,196.679,196.68300000000002,196.687,196.691,196.69500000000002,196.699,196.703,196.70700000000002,196.711,196.715,196.71900000000002,196.723,196.727,196.731,196.735,196.739,196.743,196.747,196.751,196.755,196.75900000000001,196.763,196.767,196.77100000000002,196.775,196.779,196.78300000000002,196.787,196.791,196.79500000000002,196.799,196.803,196.80700000000002,196.811,196.815,196.81900000000002,196.823,196.827,196.83100000000002,196.835,196.839,196.84300000000002,196.847,196.851,196.85500000000002,196.859,196.863,196.86700000000002,196.871,196.875,196.87900000000002,196.883,196.887,196.89100000000002,196.895,196.899,196.90300000000002,196.907,196.911,196.91500000000002,196.919,196.923,196.92700000000002,196.931,196.935,196.93900000000002,196.943,196.947,196.95100000000002,196.955,196.959,196.96300000000002,196.967,196.971,196.97500000000002,196.979,196.983,196.987,196.991,196.995,196.999,196.999,197.463,197.46699999999998,197.471,197.475,197.47899999999998,197.483,197.487,197.49099999999999,197.495,197.499,197.503,197.507,197.511,197.515,197.519,197.523,197.527,197.531,197.535,197.539,197.543,197.547,197.551,197.555,197.559,197.563,197.567,197.571,197.575,197.579,197.583,197.587,197.59099999999998,197.595,197.599,197.60299999999998,197.607,197.611,197.61499999999998,197.619,197.623,197.62699999999998,197.631,197.635,197.63899999999998,197.643,197.647,197.65099999999998,197.655,197.659,197.66299999999998,197.667,197.671,197.67499999999998,197.679,197.683,197.68699999999998,197.691,197.695,197.69899999999998,197.703,197.707,197.71099999999998,197.715,197.719,197.72299999999998,197.727,197.731,197.73499999999999,197.739,197.743,197.74699999999999,197.751,197.755,197.759,197.763,197.767,197.771,197.775,197.779,197.783,197.787,197.791,197.795,197.799,197.803,197.807,197.811,197.815,197.819,197.823,197.827,197.831,197.835,197.839,197.843,197.84699999999998,197.851,197.855,197.85899999999998,197.85899999999998,198.323,198.327,198.33100000000002,198.335,198.339,198.34300000000002,198.347,198.351,198.35500000000002,198.359,198.363,198.36700000000002,198.371,198.375,198.37900000000002,198.383,198.387,198.39100000000002,198.395,198.399,198.40300000000002,198.407,198.411,198.41500000000002,198.419,198.423,198.42700000000002,198.431,198.435,198.43900000000002,198.443,198.447,198.451,198.455,198.459,198.463,198.467,198.471,198.475,198.479,198.483,198.487,198.491,198.495,198.499,198.50300000000001,198.507,198.511,198.51500000000001,198.519,198.523,198.52700000000002,198.531,198.535,198.53900000000002,198.543,198.547,198.55100000000002,198.555,198.559,198.56300000000002,198.567,198.571,198.57500000000002,198.579,198.583,198.58700000000002,198.591,198.595,198.59900000000002,198.603,198.607,198.61100000000002,198.615,198.619,198.62300000000002,198.627,198.631,198.63500000000002,198.639,198.643,198.64700000000002,198.651,198.655,198.65900000000002,198.663,198.667,198.67100000000002,198.675,198.679,198.68300000000002,198.687,198.691,198.69500000000002,198.699,198.703,198.707,198.711,198.715,198.719,198.719,199.183,199.18699999999998,199.191,199.195,199.19899999999998,199.203,199.207,199.21099999999998,199.215,199.219,199.22299999999998,199.227,199.231,199.23499999999999,199.239,199.243,199.24699999999999,199.251,199.255,199.259,199.263,199.267,199.271,199.275,199.279,199.283,199.287,199.291,199.295,199.299,199.303,199.307,199.31099999999998,199.315,199.319,199.32299999999998,199.327,199.331,199.33499999999998,199.339,199.343,199.34699999999998,199.351,199.355,199.35899999999998,199.363,199.367,199.37099999999998,199.375,199.379,199.38299999999998,199.387,199.391,199.39499999999998,199.399,199.403,199.40699999999998,199.411,199.415,199.41899999999998,199.423,199.427,199.43099999999998,199.435,199.439,199.44299999999998,199.447,199.451,199.45499999999998,199.459,199.463,199.46699999999998,199.471,199.475,199.47899999999998,199.483,199.487,199.49099999999999,199.495,199.499,199.503,199.507,199.511,199.515,199.519,199.523,199.527,199.531,199.535,199.539,199.543,199.547,199.551,199.555,199.559,199.563,199.56699999999998,199.571,199.575,199.57899999999998,199.57899999999998,200.043,200.047,200.05100000000002,200.055,200.059,200.06300000000002,200.067,200.071,200.07500000000002,200.079,200.083,200.08700000000002,200.091,200.095,200.09900000000002,200.103,200.107,200.11100000000002,200.115,200.119,200.12300000000002,200.127,200.131,200.13500000000002,200.139,200.143,200.14700000000002,200.151,200.155,200.15900000000002,200.163,200.167,200.171,200.175,200.179,200.183,200.187,200.191,200.195,200.199,200.203,200.207,200.211,200.215,200.219,200.223,200.227,200.231,200.235,200.239,200.243,200.247,200.251,200.255,200.25900000000001,200.263,200.267,200.27100000000002,200.275,200.279,200.28300000000002,200.287,200.291,200.29500000000002,200.299,200.303,200.30700000000002,200.311,200.315,200.31900000000002,200.323,200.327,200.33100000000002,200.335,200.339,200.34300000000002,200.347,200.351,200.35500000000002,200.359,200.363,200.36700000000002,200.371,200.375,200.37900000000002,200.383,200.387,200.39100000000002,200.395,200.399,200.40300000000002,200.407,200.411,200.41500000000002,200.419,200.423,200.427,200.431,200.435,200.439,200.439,225.62300000000002,225.627,225.63100000000003,225.63500000000002,225.639,225.64300000000003,225.64700000000002,225.651,225.65500000000003,225.65900000000002,225.663,225.66700000000003,225.67100000000002,225.675,225.67900000000003,225.68300000000002,225.687,225.69100000000003,225.69500000000002,225.699,225.70300000000003,225.70700000000002,225.711,225.71500000000003,225.71900000000002,225.723,225.72700000000003,225.73100000000002,225.735,225.73900000000003,225.74300000000002,225.747,225.751,225.75500000000002,225.75900000000001,225.763,225.76700000000002,225.77100000000002,225.775,225.77900000000002,225.78300000000002,225.787,225.79100000000003,225.79500000000002,225.799,225.80300000000003,225.80700000000002,225.811,225.81500000000003,225.81900000000002,225.823,225.82700000000003,225.83100000000002,225.835,225.83900000000003,225.84300000000002,225.847,225.85100000000003,225.85500000000002,225.859,225.86300000000003,225.86700000000002,225.871,225.87500000000003,225.87900000000002,225.883,225.88700000000003,225.89100000000002,225.895,225.89900000000003,225.90300000000002,225.907,225.91100000000003,225.91500000000002,225.919,225.92300000000003,225.92700000000002,225.931,225.93500000000003,225.93900000000002,225.943,225.94700000000003,225.95100000000002,225.955,225.95900000000003,225.96300000000002,225.967,225.97100000000003,225.97500000000002,225.979,225.98300000000003,225.98700000000002,225.991,225.99500000000003,225.99900000000002,226.00300000000001,226.007,226.01100000000002,226.01500000000001,226.019,226.019,226.484,226.488,226.49200000000002,226.496,226.5,226.50400000000002,226.508,226.512,226.51600000000002,226.52,226.524,226.52800000000002,226.532,226.536,226.54000000000002,226.544,226.548,226.55200000000002,226.556,226.56,226.56400000000002,226.568,226.572,226.57600000000002,226.58,226.584,226.58800000000002,226.592,226.596,226.60000000000002,226.604,226.608,226.612,226.616,226.62,226.624,226.62800000000001,226.632,226.636,226.64000000000001,226.644,226.648,226.65200000000002,226.656,226.66,226.66400000000002,226.668,226.672,226.67600000000002,226.68,226.684,226.68800000000002,226.692,226.696,226.70000000000002,226.704,226.708,226.71200000000002,226.716,226.72,226.72400000000002,226.728,226.732,226.73600000000002,226.74,226.744,226.74800000000002,226.752,226.756,226.76000000000002,226.764,226.768,226.77200000000002,226.776,226.78,226.78400000000002,226.788,226.792,226.79600000000002,226.8,226.804,226.80800000000002,226.812,226.816,226.82000000000002,226.824,226.828,226.83200000000002,226.836,226.84,226.84400000000002,226.848,226.852,226.85600000000002,226.86,226.864,226.868,226.872,226.876,226.88,226.88,227.34300000000002,227.347,227.35100000000003,227.35500000000002,227.359,227.36300000000003,227.36700000000002,227.371,227.37500000000003,227.37900000000002,227.383,227.38700000000003,227.39100000000002,227.395,227.39900000000003,227.40300000000002,227.407,227.41100000000003,227.41500000000002,227.419,227.42300000000003,227.42700000000002,227.431,227.43500000000003,227.43900000000002,227.443,227.44700000000003,227.45100000000002,227.455,227.45900000000003,227.46300000000002,227.467,227.471,227.47500000000002,227.479,227.483,227.48700000000002,227.491,227.495,227.49900000000002,227.50300000000001,227.507,227.51100000000002,227.51500000000001,227.519,227.52300000000002,227.52700000000002,227.531,227.53500000000003,227.53900000000002,227.543,227.54700000000003,227.55100000000002,227.555,227.55900000000003,227.56300000000002,227.567,227.57100000000003,227.57500000000002,227.579,227.58300000000003,227.58700000000002,227.591,227.59500000000003,227.59900000000002,227.603,227.60700000000003,227.61100000000002,227.615,227.61900000000003,227.62300000000002,227.627,227.63100000000003,227.63500000000002,227.639,227.64300000000003,227.64700000000002,227.651,227.65500000000003,227.65900000000002,227.663,227.66700000000003,227.67100000000002,227.675,227.67900000000003,227.68300000000002,227.687,227.69100000000003,227.69500000000002,227.699,227.70300000000003,227.70700000000002,227.711,227.71500000000003,227.71900000000002,227.723,227.727,227.73100000000002,227.735,227.739,227.739,228.204,228.208,228.21200000000002,228.216,228.22,228.22400000000002,228.228,228.232,228.23600000000002,228.24,228.244,228.24800000000002,228.252,228.256,228.26000000000002,228.264,228.268,228.27200000000002,228.276,228.28,228.28400000000002,228.288,228.292,228.29600000000002,228.3,228.304,228.30800000000002,228.312,228.316,228.32000000000002,228.324,228.328,228.332,228.336,228.34,228.344,228.348,228.352,228.356,228.36,228.364,228.368,228.372,228.376,228.38,228.38400000000001,228.388,228.392,228.39600000000002,228.4,228.404,228.40800000000002,228.412,228.416,228.42000000000002,228.424,228.428,228.43200000000002,228.436,228.44,228.44400000000002,228.448,228.452,228.45600000000002,228.46,228.464,228.46800000000002,228.472,228.476,228.48000000000002,228.484,228.488,228.49200000000002,228.496,228.5,228.50400000000002,228.508,228.512,228.51600000000002,228.52,228.524,228.52800000000002,228.532,228.536,228.54000000000002,228.544,228.548,228.55200000000002,228.556,228.56,228.56400000000002,228.568,228.572,228.57600000000002,228.58,228.584,228.588,228.592,228.596,228.6,228.6,229.06300000000002,229.067,229.07100000000003,229.07500000000002,229.079,229.08300000000003,229.08700000000002,229.091,229.09500000000003,229.09900000000002,229.103,229.10700000000003,229.11100000000002,229.115,229.11900000000003,229.12300000000002,229.127,229.13100000000003,229.13500000000002,229.139,229.14300000000003,229.14700000000002,229.151,229.15500000000003,229.15900000000002,229.163,229.16700000000003,229.17100000000002,229.175,229.17900000000003,229.18300000000002,229.187,229.191,229.19500000000002,229.199,229.203,229.20700000000002,229.211,229.215,229.21900000000002,229.223,229.227,229.23100000000002,229.235,229.239,229.24300000000002,229.247,229.251,229.25500000000002,229.25900000000001,229.263,229.26700000000002,229.27100000000002,229.275,229.27900000000002,229.28300000000002,229.287,229.29100000000003,229.29500000000002,229.299,229.30300000000003,229.30700000000002,229.311,229.31500000000003,229.31900000000002,229.323,229.32700000000003,229.33100000000002,229.335,229.33900000000003,229.34300000000002,229.347,229.35100000000003,229.35500000000002,229.359,229.36300000000003,229.36700000000002,229.371,229.37500000000003,229.37900000000002,229.383,229.38700000000003,229.39100000000002,229.395,229.39900000000003,229.40300000000002,229.407,229.41100000000003,229.41500000000002,229.419,229.42300000000003,229.42700000000002,229.431,229.43500000000003,229.43900000000002,229.443,229.447,229.45100000000002,229.455,229.459,229.459,229.924,229.928,229.93200000000002,229.936,229.94,229.94400000000002,229.948,229.952,229.95600000000002,229.96,229.964,229.96800000000002,229.972,229.976,229.98000000000002,229.984,229.988,229.99200000000002,229.996,230.0,230.00400000000002,230.008,230.012,230.01600000000002,230.02,230.024,230.02800000000002,230.032,230.036,230.04000000000002,230.044,230.048,230.052,230.056,230.06,230.064,230.068,230.072,230.076,230.08,230.084,230.088,230.092,230.096,230.1,230.104,230.108,230.112,230.116,230.12,230.124,230.12800000000001,230.132,230.136,230.14000000000001,230.144,230.148,230.15200000000002,230.156,230.16,230.16400000000002,230.168,230.172,230.17600000000002,230.18,230.184,230.18800000000002,230.192,230.196,230.20000000000002,230.204,230.208,230.21200000000002,230.216,230.22,230.22400000000002,230.228,230.232,230.23600000000002,230.24,230.244,230.24800000000002,230.252,230.256,230.26000000000002,230.264,230.268,230.27200000000002,230.276,230.28,230.28400000000002,230.288,230.292,230.29600000000002,230.3,230.304,230.308,230.312,230.316,230.32,230.32,230.78300000000002,230.787,230.79100000000003,230.79500000000002,230.799,230.80300000000003,230.80700000000002,230.811,230.81500000000003,230.81900000000002,230.823,230.82700000000003,230.83100000000002,230.835,230.83900000000003,230.84300000000002,230.847,230.85100000000003,230.85500000000002,230.859,230.86300000000003,230.86700000000002,230.871,230.87500000000003,230.87900000000002,230.883,230.88700000000003,230.89100000000002,230.895,230.89900000000003,230.90300000000002,230.907,230.911,230.91500000000002,230.919,230.923,230.92700000000002,230.931,230.935,230.93900000000002,230.943,230.947,230.95100000000002,230.955,230.959,230.96300000000002,230.967,230.971,230.97500000000002,230.979,230.983,230.98700000000002,230.991,230.995,230.99900000000002,231.00300000000001,231.007,231.01100000000002,231.01500000000001,231.019,231.02300000000002,231.02700000000002,231.031,231.03500000000003,231.03900000000002,231.043,231.04700000000003,231.05100000000002,231.055,231.05900000000003,231.06300000000002,231.067,231.07100000000003,231.07500000000002,231.079,231.08300000000003,231.08700000000002,231.091,231.09500000000003,231.09900000000002,231.103,231.10700000000003,231.11100000000002,231.115,231.11900000000003,231.12300000000002,231.127,231.13100000000003,231.13500000000002,231.139,231.14300000000003,231.14700000000002,231.151,231.15500000000003,231.15900000000002,231.163,231.167,231.17100000000002,231.175,231.179,231.179,231.644,231.648,231.65200000000002,231.656,231.66,231.66400000000002,231.668,231.672,231.67600000000002,231.68,231.684,231.68800000000002,231.692,231.696,231.70000000000002,231.704,231.708,231.71200000000002,231.716,231.72,231.72400000000002,231.728,231.732,231.73600000000002,231.74,231.744,231.74800000000002,231.752,231.756,231.76000000000002,231.764,231.768,231.772,231.776,231.78,231.784,231.788,231.792,231.796,231.8,231.804,231.808,231.812,231.816,231.82,231.824,231.828,231.832,231.836,231.84,231.844,231.848,231.852,231.856,231.86,231.864,231.868,231.872,231.876,231.88,231.88400000000001,231.888,231.892,231.89600000000002,231.9,231.904,231.90800000000002,231.912,231.916,231.92000000000002,231.924,231.928,231.93200000000002,231.936,231.94,231.94400000000002,231.948,231.952,231.95600000000002,231.96,231.964,231.96800000000002,231.972,231.976,231.98000000000002,231.984,231.988,231.99200000000002,231.996,232.0,232.00400000000002,232.008,232.012,232.01600000000002,232.02,232.024,232.028,232.032,232.036,232.04,232.04,232.50300000000001,232.507,232.51100000000002,232.51500000000001,232.519,232.52300000000002,232.52700000000002,232.531,232.53500000000003,232.53900000000002,232.543,232.54700000000003,232.55100000000002,232.555,232.55900000000003,232.56300000000002,232.567,232.57100000000003,232.57500000000002,232.579,232.58300000000003,232.58700000000002,232.591,232.59500000000003,232.59900000000002,232.603,232.60700000000003,232.61100000000002,232.615,232.61900000000003,232.62300000000002,232.627,232.631,232.63500000000002,232.639,232.643,232.64700000000002,232.651,232.655,232.65900000000002,232.663,232.667,232.67100000000002,232.675,232.679,232.68300000000002,232.687,232.691,232.69500000000002,232.699,232.703,232.70700000000002,232.711,232.715,232.71900000000002,232.723,232.727,232.73100000000002,232.735,232.739,232.74300000000002,232.747,232.751,232.75500000000002,232.75900000000001,232.763,232.76700000000002,232.77100000000002,232.775,232.77900000000002,232.78300000000002,232.787,232.79100000000003,232.79500000000002,232.799,232.80300000000003,232.80700000000002,232.811,232.81500000000003,232.81900000000002,232.823,232.82700000000003,232.83100000000002,232.835,232.83900000000003,232.84300000000002,232.847,232.85100000000003,232.85500000000002,232.859,232.86300000000003,232.86700000000002,232.871,232.87500000000003,232.87900000000002,232.883,232.887,232.89100000000002,232.895,232.899,232.899,233.364,233.368,233.372,233.376,233.38,233.38400000000001,233.388,233.392,233.39600000000002,233.4,233.404,233.40800000000002,233.412,233.416,233.42000000000002,233.424,233.428,233.43200000000002,233.436,233.44,233.44400000000002,233.448,233.452,233.45600000000002,233.46,233.464,233.46800000000002,233.472,233.476,233.48000000000002,233.484,233.488,233.492,233.496,233.5,233.504,233.508,233.512,233.516,233.52,233.524,233.528,233.532,233.536,233.54,233.544,233.548,233.552,233.556,233.56,233.564,233.568,233.572,233.576,233.58,233.584,233.588,233.592,233.596,233.6,233.604,233.608,233.612,233.616,233.62,233.624,233.62800000000001,233.632,233.636,233.64000000000001,233.644,233.648,233.65200000000002,233.656,233.66,233.66400000000002,233.668,233.672,233.67600000000002,233.68,233.684,233.68800000000002,233.692,233.696,233.70000000000002,233.704,233.708,233.71200000000002,233.716,233.72,233.72400000000002,233.728,233.732,233.73600000000002,233.74,233.744,233.748,233.752,233.756,233.76,233.76,234.223,234.227,234.23100000000002,234.235,234.239,234.24300000000002,234.247,234.251,234.25500000000002,234.25900000000001,234.263,234.26700000000002,234.27100000000002,234.275,234.27900000000002,234.28300000000002,234.287,234.29100000000003,234.29500000000002,234.299,234.30300000000003,234.30700000000002,234.311,234.31500000000003,234.31900000000002,234.323,234.32700000000003,234.33100000000002,234.335,234.33900000000003,234.34300000000002,234.347,234.351,234.35500000000002,234.359,234.363,234.36700000000002,234.371,234.375,234.37900000000002,234.383,234.387,234.39100000000002,234.395,234.399,234.40300000000002,234.407,234.411,234.41500000000002,234.419,234.423,234.42700000000002,234.431,234.435,234.43900000000002,234.443,234.447,234.45100000000002,234.455,234.459,234.46300000000002,234.467,234.471,234.47500000000002,234.479,234.483,234.48700000000002,234.491,234.495,234.49900000000002,234.50300000000001,234.507,234.51100000000002,234.51500000000001,234.519,234.52300000000002,234.52700000000002,234.531,234.53500000000003,234.53900000000002,234.543,234.54700000000003,234.55100000000002,234.555,234.55900000000003,234.56300000000002,234.567,234.57100000000003,234.57500000000002,234.579,234.58300000000003,234.58700000000002,234.591,234.59500000000003,234.59900000000002,234.603,234.607,234.61100000000002,234.615,234.619,234.619,235.084,235.088,235.092,235.096,235.1,235.104,235.108,235.112,235.116,235.12,235.124,235.12800000000001,235.132,235.136,235.14000000000001,235.144,235.148,235.15200000000002,235.156,235.16,235.16400000000002,235.168,235.172,235.17600000000002,235.18,235.184,235.18800000000002,235.192,235.196,235.20000000000002,235.204,235.208,235.212,235.216,235.22,235.224,235.228,235.232,235.236,235.24,235.244,235.248,235.252,235.256,235.26,235.264,235.268,235.272,235.276,235.28,235.284,235.288,235.292,235.296,235.3,235.304,235.308,235.312,235.316,235.32,235.324,235.328,235.332,235.336,235.34,235.344,235.348,235.352,235.356,235.36,235.364,235.368,235.372,235.376,235.38,235.38400000000001,235.388,235.392,235.39600000000002,235.4,235.404,235.40800000000002,235.412,235.416,235.42000000000002,235.424,235.428,235.43200000000002,235.436,235.44,235.44400000000002,235.448,235.452,235.45600000000002,235.46,235.464,235.468,235.472,235.476,235.48,235.48,235.943,235.947,235.95100000000002,235.955,235.959,235.96300000000002,235.967,235.971,235.97500000000002,235.979,235.983,235.98700000000002,235.991,235.995,235.99900000000002,236.00300000000001,236.007,236.01100000000002,236.01500000000001,236.019,236.02300000000002,236.02700000000002,236.031,236.03500000000003,236.03900000000002,236.043,236.04700000000003,236.05100000000002,236.055,236.05900000000003,236.06300000000002,236.067,236.071,236.07500000000002,236.079,236.083,236.08700000000002,236.091,236.095,236.09900000000002,236.103,236.107,236.11100000000002,236.115,236.119,236.12300000000002,236.127,236.131,236.13500000000002,236.139,236.143,236.14700000000002,236.151,236.155,236.15900000000002,236.163,236.167,236.17100000000002,236.175,236.179,236.18300000000002,236.187,236.191,236.19500000000002,236.199,236.203,236.20700000000002,236.211,236.215,236.21900000000002,236.223,236.227,236.23100000000002,236.235,236.239,236.24300000000002,236.247,236.251,236.25500000000002,236.25900000000001,236.263,236.26700000000002,236.27100000000002,236.275,236.27900000000002,236.28300000000002,236.287,236.29100000000003,236.29500000000002,236.299,236.30300000000003,236.30700000000002,236.311,236.31500000000003,236.31900000000002,236.323,236.327,236.33100000000002,236.335,236.339,236.339,236.804,236.808,236.812,236.816,236.82,236.824,236.828,236.832,236.836,236.84,236.844,236.848,236.852,236.856,236.86,236.864,236.868,236.872,236.876,236.88,236.88400000000001,236.888,236.892,236.89600000000002,236.9,236.904,236.90800000000002,236.912,236.916,236.92000000000002,236.924,236.928,236.932,236.936,236.94,236.944,236.948,236.952,236.956,236.96,236.964,236.968,236.972,236.976,236.98,236.984,236.988,236.992,236.996,237.0,237.004,237.008,237.012,237.016,237.02,237.024,237.028,237.032,237.036,237.04,237.044,237.048,237.052,237.056,237.06,237.064,237.068,237.072,237.076,237.08,237.084,237.088,237.092,237.096,237.1,237.104,237.108,237.112,237.116,237.12,237.124,237.12800000000001,237.132,237.136,237.14000000000001,237.144,237.148,237.15200000000002,237.156,237.16,237.16400000000002,237.168,237.172,237.17600000000002,237.18,237.184,237.188,237.192,237.196,237.2,237.2,237.663,237.667,237.67100000000002,237.675,237.679,237.68300000000002,237.687,237.691,237.69500000000002,237.699,237.703,237.70700000000002,237.711,237.715,237.71900000000002,237.723,237.727,237.73100000000002,237.735,237.739,237.74300000000002,237.747,237.751,237.75500000000002,237.75900000000001,237.763,237.76700000000002,237.77100000000002,237.775,237.77900000000002,237.78300000000002,237.787,237.791,237.79500000000002,237.799,237.803,237.80700000000002,237.811,237.815,237.81900000000002,237.823,237.827,237.83100000000002,237.835,237.839,237.84300000000002,237.847,237.851,237.85500000000002,237.859,237.863,237.86700000000002,237.871,237.875,237.87900000000002,237.883,237.887,237.89100000000002,237.895,237.899,237.90300000000002,237.907,237.911,237.91500000000002,237.919,237.923,237.92700000000002,237.931,237.935,237.93900000000002,237.943,237.947,237.95100000000002,237.955,237.959,237.96300000000002,237.967,237.971,237.97500000000002,237.979,237.983,237.98700000000002,237.991,237.995,237.99900000000002,238.00300000000001,238.007,238.01100000000002,238.01500000000001,238.019,238.02300000000002,238.02700000000002,238.031,238.03500000000003,238.03900000000002,238.043,238.047,238.05100000000002,238.055,238.059,238.059,238.524,238.528,238.532,238.536,238.54,238.544,238.548,238.552,238.556,238.56,238.564,238.568,238.572,238.576,238.58,238.584,238.588,238.592,238.596,238.6,238.604,238.608,238.612,238.616,238.62,238.624,238.62800000000001,238.632,238.636,238.64000000000001,238.644,238.648,238.652,238.656,238.66,238.664,238.668,238.672,238.676,238.68,238.684,238.688,238.692,238.696,238.7,238.704,238.708,238.712,238.716,238.72,238.724,238.728,238.732,238.736,238.74,238.744,238.748,238.752,238.756,238.76,238.764,238.768,238.772,238.776,238.78,238.784,238.788,238.792,238.796,238.8,238.804,238.808,238.812,238.816,238.82,238.824,238.828,238.832,238.836,238.84,238.844,238.848,238.852,238.856,238.86,238.864,238.868,238.872,238.876,238.88,238.88400000000001,238.888,238.892,238.89600000000002,238.9,238.904,238.908,238.912,238.916,238.92,238.92,239.383,239.387,239.39100000000002,239.395,239.399,239.40300000000002,239.407,239.411,239.41500000000002,239.419,239.423,239.42700000000002,239.431,239.435,239.43900000000002,239.443,239.447,239.45100000000002,239.455,239.459,239.46300000000002,239.467,239.471,239.47500000000002,239.479,239.483,239.48700000000002,239.491,239.495,239.49900000000002,239.50300000000001,239.507,239.511,239.51500000000001,239.519,239.523,239.52700000000002,239.531,239.535,239.53900000000002,239.543,239.547,239.55100000000002,239.555,239.559,239.56300000000002,239.567,239.571,239.57500000000002,239.579,239.583,239.58700000000002,239.591,239.595,239.59900000000002,239.603,239.607,239.61100000000002,239.615,239.619,239.62300000000002,239.627,239.631,239.63500000000002,239.639,239.643,239.64700000000002,239.651,239.655,239.65900000000002,239.663,239.667,239.67100000000002,239.675,239.679,239.68300000000002,239.687,239.691,239.69500000000002,239.699,239.703,239.70700000000002,239.711,239.715,239.71900000000002,239.723,239.727,239.73100000000002,239.735,239.739,239.74300000000002,239.747,239.751,239.75500000000002,239.75900000000001,239.763,239.767,239.77100000000002,239.775,239.779,239.779,240.243,240.24699999999999,240.251,240.255,240.259,240.263,240.267,240.271,240.275,240.279,240.283,240.287,240.291,240.295,240.299,240.303,240.307,240.311,240.315,240.319,240.323,240.327,240.331,240.335,240.339,240.343,240.347,240.351,240.355,240.359,240.363,240.367,240.37099999999998,240.375,240.379,240.38299999999998,240.387,240.391,240.39499999999998,240.399,240.403,240.40699999999998,240.411,240.415,240.41899999999998,240.423,240.427,240.43099999999998,240.435,240.439,240.44299999999998,240.447,240.451,240.45499999999998,240.459,240.463,240.46699999999998,240.471,240.475,240.47899999999998,240.483,240.487,240.49099999999999,240.495,240.499,240.503,240.507,240.511,240.515,240.519,240.523,240.527,240.531,240.535,240.539,240.543,240.547,240.551,240.555,240.559,240.563,240.567,240.571,240.575,240.579,240.583,240.587,240.591,240.595,240.599,240.603,240.607,240.611,240.615,240.619,240.623,240.62699999999998,240.631,240.635,240.63899999999998,240.63899999999998,241.103,241.107,241.11100000000002,241.115,241.119,241.12300000000002,241.127,241.131,241.13500000000002,241.139,241.143,241.14700000000002,241.151,241.155,241.15900000000002,241.163,241.167,241.17100000000002,241.175,241.179,241.18300000000002,241.187,241.191,241.19500000000002,241.199,241.203,241.20700000000002,241.211,241.215,241.21900000000002,241.223,241.227,241.231,241.235,241.239,241.243,241.247,241.251,241.255,241.25900000000001,241.263,241.267,241.27100000000002,241.275,241.279,241.28300000000002,241.287,241.291,241.29500000000002,241.299,241.303,241.30700000000002,241.311,241.315,241.31900000000002,241.323,241.327,241.33100000000002,241.335,241.339,241.34300000000002,241.347,241.351,241.35500000000002,241.359,241.363,241.36700000000002,241.371,241.375,241.37900000000002,241.383,241.387,241.39100000000002,241.395,241.399,241.40300000000002,241.407,241.411,241.41500000000002,241.419,241.423,241.42700000000002,241.431,241.435,241.43900000000002,241.443,241.447,241.45100000000002,241.455,241.459,241.46300000000002,241.467,241.471,241.47500000000002,241.479,241.483,241.487,241.491,241.495,241.499,241.499,241.963,241.96699999999998,241.971,241.975,241.97899999999998,241.983,241.987,241.99099999999999,241.995,241.999,242.003,242.007,242.011,242.015,242.019,242.023,242.027,242.031,242.035,242.039,242.043,242.047,242.051,242.055,242.059,242.063,242.067,242.071,242.075,242.079,242.083,242.087,242.09099999999998,242.095,242.099,242.10299999999998,242.107,242.111,242.11499999999998,242.119,242.123,242.12699999999998,242.131,242.135,242.13899999999998,242.143,242.147,242.15099999999998,242.155,242.159,242.16299999999998,242.167,242.171,242.17499999999998,242.179,242.183,242.18699999999998,242.191,242.195,242.19899999999998,242.203,242.207,242.21099999999998,242.215,242.219,242.22299999999998,242.227,242.231,242.23499999999999,242.239,242.243,242.24699999999999,242.251,242.255,242.259,242.263,242.267,242.271,242.275,242.279,242.283,242.287,242.291,242.295,242.299,242.303,242.307,242.311,242.315,242.319,242.323,242.327,242.331,242.335,242.339,242.343,242.34699999999998,242.351,242.355,242.35899999999998,242.35899999999998,242.823,242.827,242.83100000000002,242.835,242.839,242.84300000000002,242.847,242.851,242.85500000000002,242.859,242.863,242.86700000000002,242.871,242.875,242.87900000000002,242.883,242.887,242.89100000000002,242.895,242.899,242.90300000000002,242.907,242.911,242.91500000000002,242.919,242.923,242.92700000000002,242.931,242.935,242.93900000000002,242.943,242.947,242.951,242.955,242.959,242.963,242.967,242.971,242.975,242.979,242.983,242.987,242.991,242.995,242.999,243.00300000000001,243.007,243.011,243.01500000000001,243.019,243.023,243.02700000000002,243.031,243.035,243.03900000000002,243.043,243.047,243.05100000000002,243.055,243.059,243.06300000000002,243.067,243.071,243.07500000000002,243.079,243.083,243.08700000000002,243.091,243.095,243.09900000000002,243.103,243.107,243.11100000000002,243.115,243.119,243.12300000000002,243.127,243.131,243.13500000000002,243.139,243.143,243.14700000000002,243.151,243.155,243.15900000000002,243.163,243.167,243.17100000000002,243.175,243.179,243.18300000000002,243.187,243.191,243.19500000000002,243.199,243.203,243.207,243.211,243.215,243.219,243.219,243.683,243.68699999999998,243.691,243.695,243.69899999999998,243.703,243.707,243.71099999999998,243.715,243.719,243.72299999999998,243.727,243.731,243.73499999999999,243.739,243.743,243.74699999999999,243.751,243.755,243.759,243.763,243.767,243.771,243.775,243.779,243.783,243.787,243.791,243.795,243.799,243.803,243.807,243.81099999999998,243.815,243.819,243.82299999999998,243.827,243.831,243.83499999999998,243.839,243.843,243.84699999999998,243.851,243.855,243.85899999999998,243.863,243.867,243.87099999999998,243.875,243.879,243.88299999999998,243.887,243.891,243.89499999999998,243.899,243.903,243.90699999999998,243.911,243.915,243.91899999999998,243.923,243.927,243.93099999999998,243.935,243.939,243.94299999999998,243.947,243.951,243.95499999999998,243.959,243.963,243.96699999999998,243.971,243.975,243.97899999999998,243.983,243.987,243.99099999999999,243.995,243.999,244.003,244.007,244.011,244.015,244.019,244.023,244.027,244.031,244.035,244.039,244.043,244.047,244.051,244.055,244.059,244.063,244.06699999999998,244.071,244.075,244.07899999999998,244.07899999999998,244.543,244.547,244.55100000000002,244.555,244.559,244.56300000000002,244.567,244.571,244.57500000000002,244.579,244.583,244.58700000000002,244.591,244.595,244.59900000000002,244.603,244.607,244.61100000000002,244.615,244.619,244.62300000000002,244.627,244.631,244.63500000000002,244.639,244.643,244.64700000000002,244.651,244.655,244.65900000000002,244.663,244.667,244.671,244.675,244.679,244.683,244.687,244.691,244.695,244.699,244.703,244.707,244.711,244.715,244.719,244.723,244.727,244.731,244.735,244.739,244.743,244.747,244.751,244.755,244.75900000000001,244.763,244.767,244.77100000000002,244.775,244.779,244.78300000000002,244.787,244.791,244.79500000000002,244.799,244.803,244.80700000000002,244.811,244.815,244.81900000000002,244.823,244.827,244.83100000000002,244.835,244.839,244.84300000000002,244.847,244.851,244.85500000000002,244.859,244.863,244.86700000000002,244.871,244.875,244.87900000000002,244.883,244.887,244.89100000000002,244.895,244.899,244.90300000000002,244.907,244.911,244.91500000000002,244.919,244.923,244.927,244.931,244.935,244.939,244.939,245.403,245.40699999999998,245.411,245.415,245.41899999999998,245.423,245.427,245.43099999999998,245.435,245.439,245.44299999999998,245.447,245.451,245.45499999999998,245.459,245.463,245.46699999999998,245.471,245.475,245.47899999999998,245.483,245.487,245.49099999999999,245.495,245.499,245.503,245.507,245.511,245.515,245.519,245.523,245.527,245.53099999999998,245.535,245.539,245.54299999999998,245.547,245.551,245.55499999999998,245.559,245.563,245.56699999999998,245.571,245.575,245.57899999999998,245.583,245.587,245.59099999999998,245.595,245.599,245.60299999999998,245.607,245.611,245.61499999999998,245.619,245.623,245.62699999999998,245.631,245.635,245.63899999999998,245.643,245.647,245.65099999999998,245.655,245.659,245.66299999999998,245.667,245.671,245.67499999999998,245.679,245.683,245.68699999999998,245.691,245.695,245.69899999999998,245.703,245.707,245.71099999999998,245.715,245.719,245.72299999999998,245.727,245.731,245.73499999999999,245.739,245.743,245.74699999999999,245.751,245.755,245.759,245.763,245.767,245.771,245.775,245.779,245.783,245.78699999999998,245.791,245.795,245.79899999999998,245.79899999999998,246.263,246.267,246.27100000000002,246.275,246.279,246.28300000000002,246.287,246.291,246.29500000000002,246.299,246.303,246.30700000000002,246.311,246.315,246.31900000000002,246.323,246.327,246.33100000000002,246.335,246.339,246.34300000000002,246.347,246.351,246.35500000000002,246.359,246.363,246.36700000000002,246.371,246.375,246.37900000000002,246.383,246.387,246.391,246.395,246.399,246.403,246.407,246.411,246.415,246.419,246.423,246.427,246.431,246.435,246.439,246.443,246.447,246.451,246.455,246.459,246.463,246.467,246.471,246.475,246.479,246.483,246.487,246.491,246.495,246.499,246.50300000000001,246.507,246.511,246.51500000000001,246.519,246.523,246.52700000000002,246.531,246.535,246.53900000000002,246.543,246.547,246.55100000000002,246.555,246.559,246.56300000000002,246.567,246.571,246.57500000000002,246.579,246.583,246.58700000000002,246.591,246.595,246.59900000000002,246.603,246.607,246.61100000000002,246.615,246.619,246.62300000000002,246.627,246.631,246.63500000000002,246.639,246.643,246.647,246.651,246.655,246.659,246.659,247.12300000000002,247.127,247.13100000000003,247.13500000000002,247.139,247.14300000000003,247.14700000000002,247.151,247.15500000000003,247.15900000000002,247.163,247.16700000000003,247.17100000000002,247.175,247.17900000000003,247.18300000000002,247.187,247.19100000000003,247.19500000000002,247.199,247.20300000000003,247.20700000000002,247.211,247.21500000000003,247.21900000000002,247.223,247.22700000000003,247.23100000000002,247.235,247.23900000000003,247.24300000000002,247.247,247.251,247.25500000000002,247.25900000000001,247.263,247.26700000000002,247.27100000000002,247.275,247.27900000000002,247.28300000000002,247.287,247.29100000000003,247.29500000000002,247.299,247.30300000000003,247.30700000000002,247.311,247.31500000000003,247.31900000000002,247.323,247.32700000000003,247.33100000000002,247.335,247.33900000000003,247.34300000000002,247.347,247.35100000000003,247.35500000000002,247.359,247.36300000000003,247.36700000000002,247.371,247.37500000000003,247.37900000000002,247.383,247.38700000000003,247.39100000000002,247.395,247.39900000000003,247.40300000000002,247.407,247.41100000000003,247.41500000000002,247.419,247.42300000000003,247.42700000000002,247.431,247.43500000000003,247.43900000000002,247.443,247.44700000000003,247.45100000000002,247.455,247.45900000000003,247.46300000000002,247.467,247.47100000000003,247.47500000000002,247.479,247.48300000000003,247.48700000000002,247.491,247.49500000000003,247.49900000000002,247.50300000000001,247.507,247.51100000000002,247.51500000000001,247.519,247.519,247.983,247.987,247.991,247.995,247.999,248.00300000000001,248.007,248.011,248.01500000000001,248.019,248.023,248.02700000000002,248.031,248.035,248.03900000000002,248.043,248.047,248.05100000000002,248.055,248.059,248.06300000000002,248.067,248.071,248.07500000000002,248.079,248.083,248.08700000000002,248.091,248.095,248.09900000000002,248.103,248.107,248.111,248.115,248.119,248.123,248.127,248.131,248.135,248.139,248.143,248.147,248.151,248.155,248.159,248.163,248.167,248.171,248.175,248.179,248.183,248.187,248.191,248.195,248.199,248.203,248.207,248.211,248.215,248.219,248.223,248.227,248.231,248.235,248.239,248.243,248.247,248.251,248.255,248.25900000000001,248.263,248.267,248.27100000000002,248.275,248.279,248.28300000000002,248.287,248.291,248.29500000000002,248.299,248.303,248.30700000000002,248.311,248.315,248.31900000000002,248.323,248.327,248.33100000000002,248.335,248.339,248.34300000000002,248.347,248.351,248.35500000000002,248.359,248.363,248.367,248.371,248.375,248.379,248.379,248.84300000000002,248.847,248.85100000000003,248.85500000000002,248.859,248.86300000000003,248.86700000000002,248.871,248.87500000000003,248.87900000000002,248.883,248.88700000000003,248.89100000000002,248.895,248.89900000000003,248.90300000000002,248.907,248.91100000000003,248.91500000000002,248.919,248.92300000000003,248.92700000000002,248.931,248.93500000000003,248.93900000000002,248.943,248.94700000000003,248.95100000000002,248.955,248.95900000000003,248.96300000000002,248.967,248.971,248.97500000000002,248.979,248.983,248.98700000000002,248.991,248.995,248.99900000000002,249.00300000000001,249.007,249.01100000000002,249.01500000000001,249.019,249.02300000000002,249.02700000000002,249.031,249.03500000000003,249.03900000000002,249.043,249.04700000000003,249.05100000000002,249.055,249.05900000000003,249.06300000000002,249.067,249.07100000000003,249.07500000000002,249.079,249.08300000000003,249.08700000000002,249.091,249.09500000000003,249.09900000000002,249.103,249.10700000000003,249.11100000000002,249.115,249.11900000000003,249.12300000000002,249.127,249.13100000000003,249.13500000000002,249.139,249.14300000000003,249.14700000000002,249.151,249.15500000000003,249.15900000000002,249.163,249.16700000000003,249.17100000000002,249.175,249.17900000000003,249.18300000000002,249.187,249.19100000000003,249.19500000000002,249.199,249.20300000000003,249.20700000000002,249.211,249.21500000000003,249.21900000000002,249.223,249.227,249.23100000000002,249.235,249.239,249.239,249.703,249.707,249.711,249.715,249.719,249.723,249.727,249.731,249.735,249.739,249.743,249.747,249.751,249.755,249.75900000000001,249.763,249.767,249.77100000000002,249.775,249.779,249.78300000000002,249.787,249.791,249.79500000000002,249.799,249.803,249.80700000000002,249.811,249.815,249.81900000000002,249.823,249.827,249.831,249.835,249.839,249.843,249.847,249.851,249.855,249.859,249.863,249.867,249.871,249.875,249.879,249.883,249.887,249.891,249.895,249.899,249.903,249.907,249.911,249.915,249.919,249.923,249.927,249.931,249.935,249.939,249.943,249.947,249.951,249.955,249.959,249.963,249.967,249.971,249.975,249.979,249.983,249.987,249.991,249.995,249.999,250.00300000000001,250.007,250.011,250.01500000000001,250.019,250.023,250.02700000000002,250.031,250.035,250.03900000000002,250.043,250.047,250.05100000000002,250.055,250.059,250.06300000000002,250.067,250.071,250.07500000000002,250.079,250.083,250.087,250.091,250.095,250.099,250.099,250.56300000000002,250.567,250.57100000000003,250.57500000000002,250.579,250.58300000000003,250.58700000000002,250.591,250.59500000000003,250.59900000000002,250.603,250.60700000000003,250.61100000000002,250.615,250.61900000000003,250.62300000000002,250.627,250.63100000000003,250.63500000000002,250.639,250.64300000000003,250.64700000000002,250.651,250.65500000000003,250.65900000000002,250.663,250.66700000000003,250.67100000000002,250.675,250.67900000000003,250.68300000000002,250.687,250.691,250.69500000000002,250.699,250.703,250.70700000000002,250.711,250.715,250.71900000000002,250.723,250.727,250.73100000000002,250.735,250.739,250.74300000000002,250.747,250.751,250.75500000000002,250.75900000000001,250.763,250.76700000000002,250.77100000000002,250.775,250.77900000000002,250.78300000000002,250.787,250.79100000000003,250.79500000000002,250.799,250.80300000000003,250.80700000000002,250.811,250.81500000000003,250.81900000000002,250.823,250.82700000000003,250.83100000000002,250.835,250.83900000000003,250.84300000000002,250.847,250.85100000000003,250.85500000000002,250.859,250.86300000000003,250.86700000000002,250.871,250.87500000000003,250.87900000000002,250.883,250.88700000000003,250.89100000000002,250.895,250.89900000000003,250.90300000000002,250.907,250.91100000000003,250.91500000000002,250.919,250.92300000000003,250.92700000000002,250.931,250.93500000000003,250.93900000000002,250.943,250.947,250.95100000000002,250.955,250.959,250.959,251.423,251.427,251.431,251.435,251.439,251.443,251.447,251.451,251.455,251.459,251.463,251.467,251.471,251.475,251.479,251.483,251.487,251.491,251.495,251.499,251.50300000000001,251.507,251.511,251.51500000000001,251.519,251.523,251.52700000000002,251.531,251.535,251.53900000000002,251.543,251.547,251.551,251.555,251.559,251.563,251.567,251.571,251.575,251.579,251.583,251.587,251.591,251.595,251.599,251.603,251.607,251.611,251.615,251.619,251.623,251.627,251.631,251.635,251.639,251.643,251.647,251.651,251.655,251.659,251.663,251.667,251.671,251.675,251.679,251.683,251.687,251.691,251.695,251.699,251.703,251.707,251.711,251.715,251.719,251.723,251.727,251.731,251.735,251.739,251.743,251.747,251.751,251.755,251.75900000000001,251.763,251.767,251.77100000000002,251.775,251.779,251.78300000000002,251.787,251.791,251.79500000000002,251.799,251.803,251.807,251.811,251.815,251.819,251.819,252.28300000000002,252.287,252.29100000000003,252.29500000000002,252.299,252.30300000000003,252.30700000000002,252.311,252.31500000000003,252.31900000000002,252.323,252.32700000000003,252.33100000000002,252.335,252.33900000000003,252.34300000000002,252.347,252.35100000000003,252.35500000000002,252.359,252.36300000000003,252.36700000000002,252.371,252.37500000000003,252.37900000000002,252.383,252.38700000000003,252.39100000000002,252.395,252.39900000000003,252.40300000000002,252.407,252.411,252.41500000000002,252.419,252.423,252.42700000000002,252.431,252.435,252.43900000000002,252.443,252.447,252.45100000000002,252.455,252.459,252.46300000000002,252.467,252.471,252.47500000000002,252.479,252.483,252.48700000000002,252.491,252.495,252.49900000000002,252.50300000000001,252.507,252.51100000000002,252.51500000000001,252.519,252.52300000000002,252.52700000000002,252.531,252.53500000000003,252.53900000000002,252.543,252.54700000000003,252.55100000000002,252.555,252.55900000000003,252.56300000000002,252.567,252.57100000000003,252.57500000000002,252.579,252.58300000000003,252.58700000000002,252.591,252.59500000000003,252.59900000000002,252.603,252.60700000000003,252.61100000000002,252.615,252.61900000000003,252.62300000000002,252.627,252.63100000000003,252.63500000000002,252.639,252.64300000000003,252.64700000000002,252.651,252.65500000000003,252.65900000000002,252.663,252.667,252.67100000000002,252.675,252.679,252.679,253.143,253.147,253.151,253.155,253.159,253.163,253.167,253.171,253.175,253.179,253.183,253.187,253.191,253.195,253.199,253.203,253.207,253.211,253.215,253.219,253.223,253.227,253.231,253.235,253.239,253.243,253.247,253.251,253.255,253.25900000000001,253.263,253.267,253.271,253.275,253.279,253.283,253.287,253.291,253.295,253.299,253.303,253.307,253.311,253.315,253.319,253.323,253.327,253.331,253.335,253.339,253.343,253.347,253.351,253.355,253.359,253.363,253.367,253.371,253.375,253.379,253.383,253.387,253.391,253.395,253.399,253.403,253.407,253.411,253.415,253.419,253.423,253.427,253.431,253.435,253.439,253.443,253.447,253.451,253.455,253.459,253.463,253.467,253.471,253.475,253.479,253.483,253.487,253.491,253.495,253.499,253.50300000000001,253.507,253.511,253.51500000000001,253.519,253.523,253.527,253.531,253.535,253.539,253.539,254.00300000000001,254.007,254.01100000000002,254.01500000000001,254.019,254.02300000000002,254.02700000000002,254.031,254.03500000000003,254.03900000000002,254.043,254.04700000000003,254.05100000000002,254.055,254.05900000000003,254.06300000000002,254.067,254.07100000000003,254.07500000000002,254.079,254.08300000000003,254.08700000000002,254.091,254.09500000000003,254.09900000000002,254.103,254.10700000000003,254.11100000000002,254.115,254.11900000000003,254.12300000000002,254.127,254.131,254.13500000000002,254.139,254.143,254.14700000000002,254.151,254.155,254.15900000000002,254.163,254.167,254.17100000000002,254.175,254.179,254.18300000000002,254.187,254.191,254.19500000000002,254.199,254.203,254.20700000000002,254.211,254.215,254.21900000000002,254.223,254.227,254.23100000000002,254.235,254.239,254.24300000000002,254.247,254.251,254.25500000000002,254.25900000000001,254.263,254.26700000000002,254.27100000000002,254.275,254.27900000000002,254.28300000000002,254.287,254.29100000000003,254.29500000000002,254.299,254.30300000000003,254.30700000000002,254.311,254.31500000000003,254.31900000000002,254.323,254.32700000000003,254.33100000000002,254.335,254.33900000000003,254.34300000000002,254.347,254.35100000000003,254.35500000000002,254.359,254.36300000000003,254.36700000000002,254.371,254.37500000000003,254.37900000000002,254.383,254.387,254.39100000000002,254.395,254.399,254.399,254.863,254.867,254.871,254.875,254.879,254.883,254.887,254.891,254.895,254.899,254.903,254.907,254.911,254.915,254.919,254.923,254.927,254.931,254.935,254.939,254.943,254.947,254.951,254.955,254.959,254.963,254.967,254.971,254.975,254.979,254.983,254.987,254.99099999999999,254.995,254.999,255.003,255.007,255.011,255.015,255.019,255.023,255.027,255.031,255.035,255.039,255.043,255.047,255.051,255.055,255.059,255.063,255.067,255.071,255.075,255.079,255.083,255.087,255.091,255.095,255.099,255.103,255.107,255.111,255.115,255.119,255.123,255.127,255.131,255.135,255.139,255.143,255.147,255.151,255.155,255.159,255.163,255.167,255.171,255.175,255.179,255.183,255.187,255.191,255.195,255.199,255.203,255.207,255.211,255.215,255.219,255.223,255.227,255.231,255.235,255.239,255.243,255.24699999999999,255.251,255.255,255.259,255.259,255.723,255.727,255.73100000000002,255.735,255.739,255.74300000000002,255.747,255.751,255.75500000000002,255.75900000000001,255.763,255.76700000000002,255.77100000000002,255.775,255.77900000000002,255.78300000000002,255.787,255.79100000000003,255.79500000000002,255.799,255.80300000000003,255.80700000000002,255.811,255.81500000000003,255.81900000000002,255.823,255.82700000000003,255.83100000000002,255.835,255.83900000000003,255.84300000000002,255.847,255.851,255.85500000000002,255.859,255.863,255.86700000000002,255.871,255.875,255.87900000000002,255.883,255.887,255.89100000000002,255.895,255.899,255.90300000000002,255.907,255.911,255.91500000000002,255.919,255.923,255.92700000000002,255.931,255.935,255.93900000000002,255.943,255.947,255.95100000000002,255.955,255.959,255.96300000000002,255.967,255.971,255.97500000000002,255.979,255.983,255.98700000000002,255.991,255.995,255.99900000000002,256.003,256.007,256.011,256.015,256.019,256.023,256.027,256.031,256.035,256.039,256.043,256.047,256.051,256.055,256.059,256.063,256.067,256.071,256.075,256.079,256.083,256.087,256.091,256.095,256.099,256.103,256.107,256.111,256.115,256.119,256.119,256.583,256.58700000000005,256.591,256.595,256.59900000000005,256.603,256.607,256.61100000000005,256.615,256.619,256.62300000000005,256.627,256.63100000000003,256.63500000000005,256.639,256.64300000000003,256.64700000000005,256.651,256.65500000000003,256.65900000000005,256.663,256.66700000000003,256.67100000000005,256.675,256.67900000000003,256.68300000000005,256.687,256.69100000000003,256.69500000000005,256.699,256.70300000000003,256.70700000000005,256.711,256.71500000000003,256.71900000000005,256.723,256.72700000000003,256.73100000000005,256.735,256.73900000000003,256.74300000000005,256.747,256.75100000000003,256.75500000000005,256.759,256.76300000000003,256.76700000000005,256.771,256.77500000000003,256.77900000000005,256.783,256.78700000000003,256.79100000000005,256.795,256.79900000000004,256.80300000000005,256.807,256.81100000000004,256.81500000000005,256.819,256.82300000000004,256.82700000000006,256.831,256.83500000000004,256.839,256.843,256.84700000000004,256.851,256.855,256.85900000000004,256.863,256.867,256.87100000000004,256.875,256.879,256.88300000000004,256.887,256.891,256.89500000000004,256.899,256.903,256.90700000000004,256.911,256.915,256.91900000000004,256.923,256.927,256.93100000000004,256.935,256.939,256.94300000000004,256.947,256.951,256.95500000000004,256.959,256.963,256.96700000000004,256.971,256.975,256.97900000000004,256.97900000000004,257.443,257.447,257.45099999999996,257.455,257.459,257.46299999999997,257.467,257.471,257.47499999999997,257.479,257.483,257.48699999999997,257.491,257.495,257.49899999999997,257.503,257.507,257.51099999999997,257.515,257.519,257.52299999999997,257.527,257.531,257.53499999999997,257.539,257.543,257.54699999999997,257.551,257.555,257.55899999999997,257.563,257.567,257.57099999999997,257.575,257.579,257.58299999999997,257.587,257.591,257.59499999999997,257.599,257.603,257.60699999999997,257.611,257.615,257.61899999999997,257.623,257.627,257.631,257.635,257.639,257.643,257.647,257.651,257.655,257.659,257.663,257.667,257.671,257.675,257.679,257.683,257.687,257.691,257.695,257.69899999999996,257.703,257.707,257.71099999999996,257.715,257.719,257.72299999999996,257.727,257.731,257.73499999999996,257.739,257.743,257.74699999999996,257.751,257.755,257.75899999999996,257.763,257.767,257.77099999999996,257.775,257.779,257.78299999999996,257.787,257.791,257.79499999999996,257.799,257.803,257.80699999999996,257.811,257.815,257.81899999999996,257.823,257.827,257.83099999999996,257.835,257.839,257.839,258.303,258.307,258.311,258.315,258.319,258.323,258.327,258.331,258.335,258.339,258.343,258.347,258.351,258.355,258.359,258.363,258.367,258.371,258.375,258.379,258.383,258.387,258.391,258.395,258.399,258.403,258.407,258.411,258.415,258.419,258.423,258.427,258.431,258.435,258.439,258.443,258.447,258.451,258.455,258.459,258.463,258.467,258.471,258.475,258.479,258.483,258.487,258.491,258.495,258.499,258.503,258.507,258.511,258.515,258.519,258.523,258.527,258.531,258.535,258.539,258.543,258.547,258.551,258.555,258.55899999999997,258.563,258.567,258.57099999999997,258.575,258.579,258.58299999999997,258.587,258.591,258.59499999999997,258.599,258.603,258.60699999999997,258.611,258.615,258.61899999999997,258.623,258.627,258.631,258.635,258.639,258.643,258.647,258.651,258.655,258.659,258.663,258.667,258.671,258.675,258.679,258.683,258.687,258.691,258.695,258.699,258.699,259.163,259.16700000000003,259.171,259.175,259.17900000000003,259.183,259.187,259.19100000000003,259.195,259.199,259.20300000000003,259.207,259.211,259.21500000000003,259.219,259.223,259.22700000000003,259.231,259.235,259.23900000000003,259.243,259.247,259.25100000000003,259.255,259.259,259.26300000000003,259.267,259.271,259.27500000000003,259.279,259.283,259.28700000000003,259.291,259.295,259.29900000000004,259.303,259.307,259.31100000000004,259.315,259.319,259.32300000000004,259.327,259.331,259.33500000000004,259.339,259.343,259.34700000000004,259.351,259.355,259.35900000000004,259.363,259.367,259.37100000000004,259.375,259.379,259.38300000000004,259.387,259.391,259.39500000000004,259.399,259.403,259.40700000000004,259.411,259.415,259.419,259.423,259.427,259.431,259.435,259.439,259.443,259.447,259.451,259.455,259.459,259.463,259.467,259.471,259.475,259.479,259.483,259.487,259.491,259.495,259.499,259.503,259.507,259.511,259.515,259.519,259.523,259.527,259.531,259.535,259.539,259.543,259.547,259.551,259.555,259.559,259.559,260.023,260.02700000000004,260.031,260.035,260.03900000000004,260.043,260.047,260.05100000000004,260.055,260.059,260.06300000000005,260.067,260.071,260.07500000000005,260.079,260.083,260.08700000000005,260.091,260.095,260.09900000000005,260.103,260.107,260.11100000000005,260.115,260.119,260.12300000000005,260.127,260.13100000000003,260.13500000000005,260.139,260.14300000000003,260.14700000000005,260.151,260.15500000000003,260.15900000000005,260.163,260.16700000000003,260.17100000000005,260.175,260.17900000000003,260.18300000000005,260.187,260.19100000000003,260.19500000000005,260.199,260.20300000000003,260.20700000000005,260.211,260.21500000000003,260.21900000000005,260.223,260.22700000000003,260.23100000000005,260.235,260.23900000000003,260.24300000000005,260.247,260.25100000000003,260.25500000000005,260.259,260.26300000000003,260.26700000000005,260.271,260.27500000000003,260.279,260.283,260.28700000000003,260.291,260.295,260.29900000000004,260.303,260.307,260.31100000000004,260.315,260.319,260.32300000000004,260.327,260.331,260.33500000000004,260.339,260.343,260.34700000000004,260.351,260.355,260.35900000000004,260.363,260.367,260.37100000000004,260.375,260.379,260.38300000000004,260.387,260.391,260.39500000000004,260.399,260.403,260.40700000000004,260.411,260.415,260.41900000000004,260.41900000000004,260.883,260.887,260.89099999999996,260.895,260.899,260.90299999999996,260.907,260.911,260.91499999999996,260.919,260.923,260.92699999999996,260.931,260.935,260.93899999999996,260.943,260.947,260.95099999999996,260.955,260.959,260.96299999999997,260.967,260.971,260.97499999999997,260.979,260.983,260.98699999999997,260.991,260.995,260.99899999999997,261.003,261.007,261.01099999999997,261.015,261.019,261.02299999999997,261.027,261.031,261.03499999999997,261.039,261.043,261.04699999999997,261.051,261.055,261.05899999999997,261.063,261.067,261.07099999999997,261.075,261.079,261.08299999999997,261.087,261.091,261.09499999999997,261.099,261.103,261.10699999999997,261.111,261.115,261.11899999999997,261.123,261.127,261.131,261.135,261.13899999999995,261.143,261.147,261.15099999999995,261.155,261.159,261.16299999999995,261.167,261.171,261.17499999999995,261.179,261.183,261.18699999999995,261.191,261.195,261.19899999999996,261.203,261.207,261.21099999999996,261.215,261.219,261.22299999999996,261.227,261.231,261.23499999999996,261.239,261.243,261.24699999999996,261.251,261.255,261.25899999999996,261.263,261.267,261.27099999999996,261.275,261.279,261.279,261.743,261.747,261.751,261.755,261.759,261.763,261.767,261.771,261.775,261.779,261.783,261.787,261.791,261.795,261.799,261.803,261.807,261.811,261.815,261.819,261.823,261.827,261.831,261.835,261.839,261.843,261.847,261.851,261.855,261.859,261.863,261.867,261.871,261.875,261.879,261.883,261.887,261.891,261.895,261.899,261.903,261.907,261.911,261.915,261.919,261.923,261.927,261.931,261.935,261.939,261.943,261.947,261.951,261.955,261.959,261.963,261.967,261.971,261.975,261.979,261.983,261.987,261.991,261.995,261.99899999999997,262.003,262.007,262.01099999999997,262.015,262.019,262.02299999999997,262.027,262.031,262.03499999999997,262.039,262.043,262.04699999999997,262.051,262.055,262.05899999999997,262.063,262.067,262.07099999999997,262.075,262.079,262.08299999999997,262.087,262.091,262.09499999999997,262.099,262.103,262.10699999999997,262.111,262.115,262.11899999999997,262.123,262.127,262.131,262.135,262.139,262.139,262.603,262.607,262.611,262.615,262.619,262.623,262.627,262.63100000000003,262.635,262.639,262.64300000000003,262.647,262.651,262.65500000000003,262.659,262.663,262.66700000000003,262.671,262.675,262.67900000000003,262.683,262.687,262.69100000000003,262.695,262.699,262.70300000000003,262.707,262.711,262.71500000000003,262.719,262.723,262.72700000000003,262.731,262.735,262.73900000000003,262.743,262.747,262.75100000000003,262.755,262.759,262.76300000000003,262.767,262.771,262.77500000000003,262.779,262.783,262.78700000000003,262.791,262.795,262.79900000000004,262.803,262.807,262.81100000000004,262.815,262.819,262.82300000000004,262.827,262.831,262.83500000000004,262.839,262.843,262.84700000000004,262.851,262.855,262.859,262.863,262.867,262.871,262.875,262.879,262.883,262.887,262.891,262.895,262.899,262.903,262.907,262.911,262.915,262.919,262.923,262.927,262.931,262.935,262.939,262.943,262.947,262.951,262.955,262.959,262.963,262.967,262.971,262.975,262.979,262.983,262.987,262.991,262.995,262.999,262.999,263.464,263.468,263.472,263.476,263.48,263.484,263.488,263.492,263.496,263.5,263.504,263.508,263.512,263.516,263.52,263.524,263.528,263.532,263.536,263.54,263.544,263.548,263.552,263.556,263.56,263.564,263.568,263.572,263.576,263.58,263.584,263.588,263.592,263.596,263.6,263.604,263.608,263.612,263.616,263.62,263.624,263.628,263.632,263.636,263.64,263.644,263.648,263.652,263.656,263.66,263.664,263.668,263.672,263.676,263.68,263.684,263.688,263.692,263.696,263.7,263.704,263.708,263.712,263.716,263.71999999999997,263.724,263.728,263.73199999999997,263.736,263.74,263.74399999999997,263.748,263.752,263.756,263.76,263.764,263.768,263.772,263.776,263.78,263.784,263.788,263.792,263.796,263.8,263.804,263.808,263.812,263.816,263.82,263.824,263.828,263.832,263.836,263.84,263.844,263.848,263.852,263.856,263.86,263.86,264.323,264.327,264.33099999999996,264.335,264.339,264.34299999999996,264.347,264.351,264.35499999999996,264.359,264.363,264.36699999999996,264.371,264.375,264.37899999999996,264.383,264.387,264.39099999999996,264.395,264.399,264.40299999999996,264.407,264.411,264.41499999999996,264.419,264.423,264.42699999999996,264.431,264.435,264.43899999999996,264.443,264.447,264.45099999999996,264.455,264.459,264.46299999999997,264.467,264.471,264.47499999999997,264.479,264.483,264.48699999999997,264.491,264.495,264.49899999999997,264.503,264.507,264.51099999999997,264.515,264.519,264.52299999999997,264.527,264.531,264.53499999999997,264.539,264.543,264.54699999999997,264.551,264.555,264.55899999999997,264.563,264.567,264.57099999999997,264.575,264.57899999999995,264.58299999999997,264.587,264.59099999999995,264.59499999999997,264.599,264.60299999999995,264.60699999999997,264.611,264.61499999999995,264.61899999999997,264.623,264.62699999999995,264.631,264.635,264.63899999999995,264.643,264.647,264.65099999999995,264.655,264.659,264.66299999999995,264.667,264.671,264.67499999999995,264.679,264.683,264.68699999999995,264.691,264.695,264.69899999999996,264.703,264.707,264.71099999999996,264.715,264.719,264.719,265.184,265.18800000000005,265.192,265.196,265.20000000000005,265.204,265.208,265.21200000000005,265.216,265.22,265.22400000000005,265.228,265.232,265.23600000000005,265.24,265.244,265.24800000000005,265.252,265.25600000000003,265.26000000000005,265.264,265.26800000000003,265.27200000000005,265.276,265.28000000000003,265.28400000000005,265.288,265.29200000000003,265.29600000000005,265.3,265.30400000000003,265.30800000000005,265.312,265.31600000000003,265.32000000000005,265.324,265.32800000000003,265.33200000000005,265.336,265.34000000000003,265.34400000000005,265.348,265.35200000000003,265.35600000000005,265.36,265.36400000000003,265.36800000000005,265.372,265.37600000000003,265.38000000000005,265.384,265.38800000000003,265.39200000000005,265.396,265.40000000000003,265.40400000000005,265.408,265.41200000000003,265.41600000000005,265.42,265.42400000000004,265.42800000000005,265.432,265.43600000000004,265.44,265.444,265.44800000000004,265.452,265.456,265.46000000000004,265.464,265.468,265.47200000000004,265.476,265.48,265.48400000000004,265.488,265.492,265.49600000000004,265.5,265.504,265.50800000000004,265.512,265.516,265.52000000000004,265.524,265.528,265.53200000000004,265.536,265.54,265.54400000000004,265.548,265.552,265.55600000000004,265.56,265.564,265.56800000000004,265.572,265.576,265.58000000000004,265.58000000000004,266.043,266.047,266.051,266.055,266.059,266.063,266.067,266.071,266.075,266.079,266.083,266.087,266.091,266.095,266.099,266.103,266.107,266.111,266.115,266.119,266.123,266.127,266.13100000000003,266.135,266.139,266.14300000000003,266.147,266.151,266.15500000000003,266.159,266.163,266.16700000000003,266.171,266.175,266.17900000000003,266.183,266.187,266.19100000000003,266.195,266.199,266.20300000000003,266.207,266.211,266.21500000000003,266.219,266.223,266.22700000000003,266.231,266.235,266.23900000000003,266.243,266.247,266.25100000000003,266.255,266.259,266.26300000000003,266.267,266.271,266.27500000000003,266.279,266.283,266.28700000000003,266.291,266.295,266.299,266.303,266.307,266.311,266.315,266.319,266.323,266.327,266.331,266.335,266.339,266.343,266.347,266.351,266.355,266.359,266.363,266.367,266.371,266.375,266.379,266.383,266.387,266.391,266.395,266.399,266.403,266.407,266.411,266.415,266.419,266.423,266.427,266.431,266.435,266.439,266.439,266.904,266.908,266.912,266.916,266.92,266.924,266.928,266.932,266.936,266.94,266.944,266.948,266.952,266.956,266.96,266.964,266.968,266.972,266.976,266.98,266.984,266.988,266.992,266.996,267.0,267.004,267.008,267.012,267.016,267.02,267.024,267.028,267.032,267.036,267.04,267.044,267.048,267.052,267.056,267.06,267.064,267.068,267.072,267.076,267.08,267.084,267.088,267.092,267.096,267.1,267.104,267.108,267.112,267.116,267.12,267.124,267.128,267.132,267.136,267.14,267.144,267.148,267.152,267.156,267.15999999999997,267.164,267.168,267.17199999999997,267.176,267.18,267.18399999999997,267.188,267.192,267.19599999999997,267.2,267.204,267.20799999999997,267.212,267.216,267.21999999999997,267.224,267.228,267.23199999999997,267.236,267.24,267.24399999999997,267.248,267.252,267.256,267.26,267.264,267.268,267.272,267.276,267.28,267.284,267.288,267.292,267.296,267.3,267.3,267.76300000000003,267.76700000000005,267.771,267.77500000000003,267.77900000000005,267.783,267.78700000000003,267.79100000000005,267.795,267.79900000000004,267.80300000000005,267.807,267.81100000000004,267.81500000000005,267.819,267.82300000000004,267.82700000000006,267.831,267.83500000000004,267.83900000000006,267.843,267.84700000000004,267.85100000000006,267.855,267.85900000000004,267.86300000000006,267.867,267.87100000000004,267.87500000000006,267.879,267.88300000000004,267.88700000000006,267.891,267.89500000000004,267.89900000000006,267.903,267.90700000000004,267.91100000000006,267.915,267.91900000000004,267.92300000000006,267.927,267.93100000000004,267.93500000000006,267.939,267.94300000000004,267.94700000000006,267.951,267.95500000000004,267.95900000000006,267.963,267.96700000000004,267.97100000000006,267.975,267.97900000000004,267.98300000000006,267.987,267.99100000000004,267.99500000000006,267.999,268.00300000000004,268.00700000000006,268.011,268.01500000000004,268.019,268.023,268.02700000000004,268.031,268.035,268.03900000000004,268.043,268.047,268.05100000000004,268.055,268.059,268.06300000000005,268.067,268.071,268.07500000000005,268.079,268.083,268.08700000000005,268.091,268.095,268.09900000000005,268.103,268.107,268.11100000000005,268.115,268.119,268.12300000000005,268.127,268.13100000000003,268.13500000000005,268.139,268.14300000000003,268.14700000000005,268.151,268.15500000000003,268.15900000000005,268.15900000000005,268.624,268.62800000000004,268.632,268.636,268.64000000000004,268.644,268.648,268.65200000000004,268.656,268.66,268.66400000000004,268.668,268.672,268.67600000000004,268.68,268.684,268.68800000000005,268.692,268.696,268.70000000000005,268.704,268.708,268.71200000000005,268.716,268.72,268.72400000000005,268.728,268.732,268.73600000000005,268.74,268.744,268.74800000000005,268.752,268.75600000000003,268.76000000000005,268.764,268.76800000000003,268.77200000000005,268.776,268.78000000000003,268.78400000000005,268.788,268.79200000000003,268.79600000000005,268.8,268.80400000000003,268.80800000000005,268.812,268.81600000000003,268.82000000000005,268.824,268.82800000000003,268.83200000000005,268.836,268.84000000000003,268.84400000000005,268.848,268.85200000000003,268.85600000000005,268.86,268.86400000000003,268.86800000000005,268.872,268.87600000000003,268.88,268.884,268.88800000000003,268.892,268.896,268.90000000000003,268.904,268.908,268.91200000000003,268.916,268.92,268.92400000000004,268.928,268.932,268.93600000000004,268.94,268.944,268.94800000000004,268.952,268.956,268.96000000000004,268.964,268.968,268.97200000000004,268.976,268.98,268.98400000000004,268.988,268.992,268.99600000000004,269.0,269.004,269.00800000000004,269.012,269.016,269.02000000000004,269.02000000000004,269.483,269.487,269.491,269.495,269.499,269.503,269.507,269.511,269.515,269.519,269.523,269.527,269.531,269.535,269.539,269.543,269.547,269.551,269.555,269.559,269.563,269.567,269.571,269.575,269.579,269.583,269.587,269.591,269.595,269.599,269.603,269.607,269.611,269.615,269.619,269.623,269.627,269.63100000000003,269.635,269.639,269.64300000000003,269.647,269.651,269.65500000000003,269.659,269.663,269.66700000000003,269.671,269.675,269.67900000000003,269.683,269.687,269.69100000000003,269.695,269.699,269.70300000000003,269.707,269.711,269.71500000000003,269.719,269.723,269.72700000000003,269.731,269.735,269.739,269.743,269.747,269.751,269.755,269.759,269.763,269.767,269.771,269.775,269.779,269.783,269.787,269.791,269.795,269.799,269.803,269.807,269.811,269.815,269.819,269.823,269.827,269.831,269.835,269.839,269.843,269.847,269.851,269.855,269.859,269.863,269.867,269.871,269.875,269.879,269.879,270.344,270.348,270.352,270.356,270.36,270.364,270.368,270.372,270.376,270.38,270.384,270.388,270.392,270.396,270.4,270.404,270.408,270.412,270.416,270.42,270.424,270.428,270.432,270.436,270.44,270.444,270.448,270.452,270.456,270.46,270.464,270.468,270.472,270.476,270.48,270.484,270.488,270.492,270.496,270.5,270.504,270.508,270.512,270.516,270.52,270.524,270.528,270.532,270.536,270.54,270.544,270.548,270.552,270.556,270.56,270.564,270.568,270.572,270.576,270.58,270.584,270.588,270.592,270.596,270.59999999999997,270.604,270.608,270.61199999999997,270.616,270.62,270.62399999999997,270.628,270.632,270.63599999999997,270.64,270.644,270.64799999999997,270.652,270.656,270.65999999999997,270.664,270.668,270.67199999999997,270.676,270.68,270.68399999999997,270.688,270.692,270.69599999999997,270.7,270.704,270.70799999999997,270.712,270.716,270.71999999999997,270.724,270.728,270.73199999999997,270.736,270.74,270.74,271.20300000000003,271.20700000000005,271.211,271.21500000000003,271.21900000000005,271.223,271.22700000000003,271.23100000000005,271.235,271.23900000000003,271.24300000000005,271.247,271.25100000000003,271.25500000000005,271.259,271.26300000000003,271.26700000000005,271.271,271.27500000000003,271.27900000000005,271.283,271.28700000000003,271.29100000000005,271.295,271.29900000000004,271.30300000000005,271.307,271.31100000000004,271.31500000000005,271.319,271.32300000000004,271.32700000000006,271.331,271.33500000000004,271.33900000000006,271.343,271.34700000000004,271.35100000000006,271.355,271.35900000000004,271.36300000000006,271.367,271.37100000000004,271.37500000000006,271.379,271.38300000000004,271.38700000000006,271.391,271.39500000000004,271.39900000000006,271.403,271.40700000000004,271.41100000000006,271.415,271.41900000000004,271.42300000000006,271.427,271.43100000000004,271.43500000000006,271.439,271.44300000000004,271.44700000000006,271.451,271.45500000000004,271.459,271.463,271.46700000000004,271.471,271.475,271.47900000000004,271.483,271.487,271.49100000000004,271.495,271.499,271.50300000000004,271.507,271.511,271.51500000000004,271.519,271.523,271.52700000000004,271.531,271.535,271.53900000000004,271.543,271.547,271.55100000000004,271.555,271.559,271.56300000000005,271.567,271.571,271.57500000000005,271.579,271.583,271.58700000000005,271.591,271.595,271.59900000000005,271.59900000000005,272.064,272.06800000000004,272.072,272.076,272.08000000000004,272.084,272.088,272.09200000000004,272.096,272.1,272.10400000000004,272.108,272.112,272.11600000000004,272.12,272.124,272.12800000000004,272.132,272.136,272.14000000000004,272.144,272.148,272.15200000000004,272.156,272.16,272.16400000000004,272.168,272.172,272.17600000000004,272.18,272.184,272.18800000000005,272.192,272.196,272.20000000000005,272.204,272.208,272.21200000000005,272.216,272.22,272.22400000000005,272.228,272.232,272.23600000000005,272.24,272.244,272.24800000000005,272.252,272.25600000000003,272.26000000000005,272.264,272.26800000000003,272.27200000000005,272.276,272.28000000000003,272.28400000000005,272.288,272.29200000000003,272.29600000000005,272.3,272.30400000000003,272.30800000000005,272.312,272.31600000000003,272.32,272.324,272.32800000000003,272.332,272.336,272.34000000000003,272.344,272.348,272.35200000000003,272.356,272.36,272.36400000000003,272.368,272.372,272.37600000000003,272.38,272.384,272.38800000000003,272.392,272.396,272.40000000000003,272.404,272.408,272.41200000000003,272.416,272.42,272.42400000000004,272.428,272.432,272.43600000000004,272.44,272.444,272.44800000000004,272.452,272.456,272.46000000000004,272.46000000000004,272.923,272.927,272.931,272.935,272.939,272.943,272.947,272.951,272.955,272.959,272.963,272.967,272.971,272.975,272.979,272.983,272.987,272.991,272.995,272.999,273.003,273.007,273.011,273.015,273.019,273.023,273.027,273.031,273.035,273.039,273.043,273.047,273.051,273.055,273.059,273.063,273.067,273.071,273.075,273.079,273.083,273.087,273.091,273.095,273.099,273.103,273.107,273.111,273.115,273.119,273.123,273.127,273.13100000000003,273.135,273.139,273.14300000000003,273.147,273.151,273.15500000000003,273.159,273.163,273.16700000000003,273.171,273.175,273.179,273.183,273.187,273.191,273.195,273.199,273.203,273.207,273.211,273.215,273.219,273.223,273.227,273.231,273.235,273.239,273.243,273.247,273.251,273.255,273.259,273.263,273.267,273.271,273.275,273.279,273.283,273.287,273.291,273.295,273.299,273.303,273.307,273.311,273.315,273.319,273.319,273.784,273.788,273.792,273.796,273.8,273.804,273.808,273.812,273.816,273.82,273.824,273.828,273.832,273.836,273.84,273.844,273.848,273.852,273.856,273.86,273.864,273.868,273.872,273.876,273.88,273.884,273.888,273.892,273.896,273.9,273.904,273.908,273.912,273.916,273.92,273.924,273.928,273.932,273.936,273.94,273.944,273.948,273.952,273.956,273.96,273.964,273.968,273.972,273.976,273.98,273.984,273.988,273.992,273.996,274.0,274.004,274.008,274.012,274.016,274.02,274.024,274.028,274.032,274.036,274.03999999999996,274.044,274.048,274.05199999999996,274.056,274.06,274.06399999999996,274.068,274.072,274.07599999999996,274.08,274.084,274.08799999999997,274.092,274.096,274.09999999999997,274.104,274.108,274.11199999999997,274.116,274.12,274.12399999999997,274.128,274.132,274.13599999999997,274.14,274.144,274.14799999999997,274.152,274.156,274.15999999999997,274.164,274.168,274.17199999999997,274.176,274.18,274.18,274.64300000000003,274.64700000000005,274.651,274.65500000000003,274.65900000000005,274.663,274.66700000000003,274.67100000000005,274.675,274.67900000000003,274.68300000000005,274.687,274.69100000000003,274.69500000000005,274.699,274.70300000000003,274.70700000000005,274.711,274.71500000000003,274.71900000000005,274.723,274.72700000000003,274.73100000000005,274.735,274.73900000000003,274.74300000000005,274.747,274.75100000000003,274.75500000000005,274.759,274.76300000000003,274.76700000000005,274.771,274.77500000000003,274.77900000000005,274.783,274.78700000000003,274.79100000000005,274.795,274.79900000000004,274.80300000000005,274.807,274.81100000000004,274.81500000000005,274.819,274.82300000000004,274.82700000000006,274.831,274.83500000000004,274.83900000000006,274.843,274.84700000000004,274.85100000000006,274.855,274.85900000000004,274.86300000000006,274.867,274.87100000000004,274.87500000000006,274.879,274.88300000000004,274.88700000000006,274.891,274.89500000000004,274.899,274.903,274.90700000000004,274.911,274.915,274.91900000000004,274.923,274.927,274.93100000000004,274.935,274.939,274.94300000000004,274.947,274.951,274.95500000000004,274.959,274.963,274.96700000000004,274.971,274.975,274.97900000000004,274.983,274.987,274.99100000000004,274.995,274.999,275.00300000000004,275.007,275.011,275.01500000000004,275.019,275.023,275.02700000000004,275.031,275.035,275.03900000000004,275.03900000000004,275.504,275.50800000000004,275.512,275.516,275.52000000000004,275.524,275.528,275.53200000000004,275.536,275.54,275.54400000000004,275.548,275.552,275.55600000000004,275.56,275.564,275.56800000000004,275.572,275.576,275.58000000000004,275.584,275.588,275.59200000000004,275.596,275.6,275.60400000000004,275.608,275.612,275.61600000000004,275.62,275.624,275.62800000000004,275.632,275.636,275.64000000000004,275.644,275.648,275.65200000000004,275.656,275.66,275.66400000000004,275.668,275.672,275.67600000000004,275.68,275.684,275.68800000000005,275.692,275.696,275.70000000000005,275.704,275.708,275.71200000000005,275.716,275.72,275.72400000000005,275.728,275.732,275.73600000000005,275.74,275.744,275.74800000000005,275.752,275.75600000000003,275.76,275.764,275.76800000000003,275.772,275.776,275.78000000000003,275.784,275.788,275.79200000000003,275.796,275.8,275.80400000000003,275.808,275.812,275.81600000000003,275.82,275.824,275.82800000000003,275.832,275.836,275.84000000000003,275.844,275.848,275.85200000000003,275.856,275.86,275.86400000000003,275.868,275.872,275.87600000000003,275.88,275.884,275.88800000000003,275.892,275.896,275.90000000000003,275.90000000000003,276.363,276.367,276.371,276.375,276.379,276.383,276.387,276.391,276.395,276.399,276.403,276.407,276.411,276.415,276.419,276.423,276.427,276.431,276.435,276.439,276.443,276.447,276.451,276.455,276.459,276.463,276.467,276.471,276.475,276.479,276.483,276.487,276.491,276.495,276.499,276.503,276.507,276.511,276.515,276.519,276.523,276.527,276.531,276.535,276.539,276.543,276.547,276.551,276.555,276.559,276.563,276.567,276.571,276.575,276.579,276.583,276.587,276.591,276.595,276.599,276.603,276.607,276.611,276.615,276.61899999999997,276.623,276.627,276.631,276.635,276.639,276.643,276.647,276.651,276.655,276.659,276.663,276.667,276.671,276.675,276.679,276.683,276.687,276.691,276.695,276.699,276.703,276.707,276.711,276.715,276.719,276.723,276.727,276.731,276.735,276.739,276.743,276.747,276.751,276.755,276.759,276.759,277.223,277.22700000000003,277.231,277.235,277.23900000000003,277.243,277.247,277.25100000000003,277.255,277.259,277.26300000000003,277.267,277.271,277.27500000000003,277.279,277.283,277.28700000000003,277.291,277.295,277.29900000000004,277.303,277.307,277.31100000000004,277.315,277.319,277.32300000000004,277.327,277.331,277.33500000000004,277.339,277.343,277.34700000000004,277.351,277.355,277.35900000000004,277.363,277.367,277.37100000000004,277.375,277.379,277.38300000000004,277.387,277.391,277.39500000000004,277.399,277.403,277.40700000000004,277.411,277.415,277.41900000000004,277.423,277.427,277.43100000000004,277.435,277.439,277.44300000000004,277.447,277.451,277.45500000000004,277.459,277.463,277.46700000000004,277.471,277.475,277.479,277.483,277.487,277.491,277.495,277.499,277.503,277.507,277.511,277.515,277.519,277.523,277.527,277.531,277.535,277.539,277.543,277.547,277.551,277.555,277.559,277.563,277.567,277.571,277.575,277.579,277.583,277.587,277.591,277.595,277.599,277.603,277.607,277.611,277.615,277.619,277.619,278.083,278.08700000000005,278.091,278.095,278.09900000000005,278.103,278.107,278.11100000000005,278.115,278.119,278.12300000000005,278.127,278.13100000000003,278.13500000000005,278.139,278.14300000000003,278.14700000000005,278.151,278.15500000000003,278.15900000000005,278.163,278.16700000000003,278.17100000000005,278.175,278.17900000000003,278.18300000000005,278.187,278.19100000000003,278.19500000000005,278.199,278.20300000000003,278.20700000000005,278.211,278.21500000000003,278.21900000000005,278.223,278.22700000000003,278.23100000000005,278.235,278.23900000000003,278.24300000000005,278.247,278.25100000000003,278.25500000000005,278.259,278.26300000000003,278.26700000000005,278.271,278.27500000000003,278.27900000000005,278.283,278.28700000000003,278.29100000000005,278.295,278.29900000000004,278.30300000000005,278.307,278.31100000000004,278.31500000000005,278.319,278.32300000000004,278.32700000000006,278.331,278.33500000000004,278.339,278.343,278.34700000000004,278.351,278.355,278.35900000000004,278.363,278.367,278.37100000000004,278.375,278.379,278.38300000000004,278.387,278.391,278.39500000000004,278.399,278.403,278.40700000000004,278.411,278.415,278.41900000000004,278.423,278.427,278.43100000000004,278.435,278.439,278.44300000000004,278.447,278.451,278.45500000000004,278.459,278.463,278.46700000000004,278.471,278.475,278.47900000000004,278.47900000000004,278.943,278.947,278.95099999999996,278.955,278.959,278.96299999999997,278.967,278.971,278.97499999999997,278.979,278.983,278.98699999999997,278.991,278.995,278.99899999999997,279.003,279.007,279.01099999999997,279.015,279.019,279.02299999999997,279.027,279.031,279.03499999999997,279.039,279.043,279.04699999999997,279.051,279.055,279.05899999999997,279.063,279.067,279.07099999999997,279.075,279.079,279.08299999999997,279.087,279.091,279.09499999999997,279.099,279.103,279.10699999999997,279.111,279.115,279.11899999999997,279.123,279.127,279.131,279.135,279.139,279.143,279.147,279.151,279.155,279.159,279.163,279.167,279.171,279.175,279.179,279.183,279.187,279.191,279.195,279.19899999999996,279.203,279.207,279.21099999999996,279.215,279.219,279.22299999999996,279.227,279.231,279.23499999999996,279.239,279.243,279.24699999999996,279.251,279.255,279.25899999999996,279.263,279.267,279.27099999999996,279.275,279.279,279.28299999999996,279.287,279.291,279.29499999999996,279.299,279.303,279.30699999999996,279.311,279.315,279.31899999999996,279.323,279.327,279.33099999999996,279.335,279.339,279.339,279.80400000000003,279.80800000000005,279.812,279.81600000000003,279.82000000000005,279.824,279.82800000000003,279.83200000000005,279.836,279.84000000000003,279.84400000000005,279.848,279.85200000000003,279.85600000000005,279.86,279.86400000000003,279.86800000000005,279.872,279.87600000000003,279.88000000000005,279.884,279.88800000000003,279.89200000000005,279.896,279.90000000000003,279.90400000000005,279.908,279.91200000000003,279.91600000000005,279.92,279.92400000000004,279.92800000000005,279.932,279.93600000000004,279.94000000000005,279.944,279.94800000000004,279.95200000000006,279.956,279.96000000000004,279.96400000000006,279.968,279.97200000000004,279.97600000000006,279.98,279.98400000000004,279.98800000000006,279.992,279.99600000000004,280.00000000000006,280.004,280.00800000000004,280.01200000000006,280.016,280.02000000000004,280.02400000000006,280.028,280.03200000000004,280.03600000000006,280.04,280.04400000000004,280.04800000000006,280.052,280.05600000000004,280.06,280.064,280.06800000000004,280.072,280.076,280.08000000000004,280.084,280.088,280.09200000000004,280.096,280.1,280.10400000000004,280.108,280.112,280.11600000000004,280.12,280.124,280.12800000000004,280.132,280.136,280.14000000000004,280.144,280.148,280.15200000000004,280.156,280.16,280.16400000000004,280.168,280.172,280.17600000000004,280.18,280.184,280.18800000000005,280.192,280.196,280.20000000000005,280.20000000000005,280.663,280.66700000000003,280.671,280.675,280.67900000000003,280.683,280.687,280.69100000000003,280.695,280.699,280.70300000000003,280.707,280.711,280.71500000000003,280.719,280.723,280.72700000000003,280.731,280.735,280.73900000000003,280.743,280.747,280.75100000000003,280.755,280.759,280.76300000000003,280.767,280.771,280.77500000000003,280.779,280.783,280.78700000000003,280.791,280.795,280.79900000000004,280.803,280.807,280.81100000000004,280.815,280.819,280.82300000000004,280.827,280.831,280.83500000000004,280.839,280.843,280.84700000000004,280.851,280.855,280.85900000000004,280.863,280.867,280.87100000000004,280.875,280.879,280.88300000000004,280.887,280.891,280.89500000000004,280.899,280.903,280.90700000000004,280.911,280.915,280.919,280.923,280.927,280.931,280.935,280.939,280.943,280.947,280.951,280.955,280.959,280.963,280.967,280.971,280.975,280.979,280.983,280.987,280.991,280.995,280.999,281.003,281.007,281.011,281.015,281.019,281.023,281.027,281.031,281.035,281.039,281.043,281.047,281.051,281.055,281.059,281.059,281.524,281.528,281.532,281.536,281.54,281.544,281.548,281.552,281.556,281.56,281.564,281.568,281.572,281.576,281.58,281.584,281.588,281.592,281.596,281.6,281.604,281.608,281.612,281.616,281.62,281.624,281.628,281.632,281.636,281.64,281.644,281.648,281.652,281.656,281.66,281.664,281.668,281.672,281.676,281.68,281.684,281.688,281.692,281.696,281.7,281.704,281.708,281.712,281.716,281.72,281.724,281.728,281.732,281.736,281.74,281.744,281.748,281.752,281.75600000000003,281.76,281.764,281.76800000000003,281.772,281.776,281.78,281.784,281.788,281.792,281.796,281.8,281.804,281.808,281.812,281.816,281.82,281.824,281.828,281.832,281.836,281.84,281.844,281.848,281.852,281.856,281.86,281.864,281.868,281.872,281.876,281.88,281.884,281.888,281.892,281.896,281.9,281.904,281.908,281.912,281.916,281.92,281.92,282.383,282.387,282.39099999999996,282.395,282.399,282.40299999999996,282.407,282.411,282.41499999999996,282.419,282.423,282.42699999999996,282.431,282.435,282.43899999999996,282.443,282.447,282.45099999999996,282.455,282.459,282.46299999999997,282.467,282.471,282.47499999999997,282.479,282.483,282.48699999999997,282.491,282.495,282.49899999999997,282.503,282.507,282.51099999999997,282.515,282.519,282.52299999999997,282.527,282.531,282.53499999999997,282.539,282.543,282.54699999999997,282.551,282.555,282.55899999999997,282.563,282.567,282.57099999999997,282.575,282.579,282.58299999999997,282.587,282.591,282.59499999999997,282.599,282.603,282.60699999999997,282.611,282.615,282.61899999999997,282.623,282.627,282.631,282.635,282.63899999999995,282.643,282.647,282.65099999999995,282.655,282.659,282.66299999999995,282.667,282.671,282.67499999999995,282.679,282.683,282.68699999999995,282.691,282.695,282.69899999999996,282.703,282.707,282.71099999999996,282.715,282.719,282.72299999999996,282.727,282.731,282.73499999999996,282.739,282.743,282.74699999999996,282.751,282.755,282.75899999999996,282.763,282.767,282.77099999999996,282.775,282.779,282.779,283.244,283.24800000000005,283.252,283.25600000000003,283.26000000000005,283.264,283.26800000000003,283.27200000000005,283.276,283.28000000000003,283.28400000000005,283.288,283.29200000000003,283.29600000000005,283.3,283.30400000000003,283.30800000000005,283.312,283.31600000000003,283.32000000000005,283.324,283.32800000000003,283.33200000000005,283.336,283.34000000000003,283.34400000000005,283.348,283.35200000000003,283.35600000000005,283.36,283.36400000000003,283.36800000000005,283.372,283.37600000000003,283.38000000000005,283.384,283.38800000000003,283.39200000000005,283.396,283.40000000000003,283.40400000000005,283.408,283.41200000000003,283.41600000000005,283.42,283.42400000000004,283.42800000000005,283.432,283.43600000000004,283.44000000000005,283.444,283.44800000000004,283.45200000000006,283.456,283.46000000000004,283.46400000000006,283.468,283.47200000000004,283.47600000000006,283.48,283.48400000000004,283.48800000000006,283.492,283.49600000000004,283.5,283.504,283.50800000000004,283.512,283.516,283.52000000000004,283.524,283.528,283.53200000000004,283.536,283.54,283.54400000000004,283.548,283.552,283.55600000000004,283.56,283.564,283.56800000000004,283.572,283.576,283.58000000000004,283.584,283.588,283.59200000000004,283.596,283.6,283.60400000000004,283.608,283.612,283.61600000000004,283.62,283.624,283.62800000000004,283.632,283.636,283.64000000000004,283.64000000000004,284.103,284.107,284.111,284.115,284.119,284.123,284.127,284.13100000000003,284.135,284.139,284.14300000000003,284.147,284.151,284.15500000000003,284.159,284.163,284.16700000000003,284.171,284.175,284.17900000000003,284.183,284.187,284.19100000000003,284.195,284.199,284.20300000000003,284.207,284.211,284.21500000000003,284.219,284.223,284.22700000000003,284.231,284.235,284.23900000000003,284.243,284.247,284.25100000000003,284.255,284.259,284.26300000000003,284.267,284.271,284.27500000000003,284.279,284.283,284.28700000000003,284.291,284.295,284.29900000000004,284.303,284.307,284.31100000000004,284.315,284.319,284.32300000000004,284.327,284.331,284.33500000000004,284.339,284.343,284.34700000000004,284.351,284.355,284.359,284.363,284.367,284.371,284.375,284.379,284.383,284.387,284.391,284.395,284.399,284.403,284.407,284.411,284.415,284.419,284.423,284.427,284.431,284.435,284.439,284.443,284.447,284.451,284.455,284.459,284.463,284.467,284.471,284.475,284.479,284.483,284.487,284.491,284.495,284.499,284.499,284.964,284.968,284.972,284.976,284.98,284.984,284.988,284.992,284.996,285.0,285.004,285.008,285.012,285.016,285.02,285.024,285.028,285.032,285.036,285.04,285.044,285.048,285.052,285.056,285.06,285.064,285.068,285.072,285.076,285.08,285.084,285.088,285.092,285.096,285.1,285.104,285.108,285.112,285.116,285.12,285.124,285.128,285.132,285.136,285.14,285.144,285.148,285.152,285.156,285.16,285.164,285.168,285.172,285.176,285.18,285.184,285.188,285.192,285.196,285.2,285.204,285.208,285.212,285.216,285.21999999999997,285.224,285.228,285.23199999999997,285.236,285.24,285.24399999999997,285.248,285.252,285.256,285.26,285.264,285.268,285.272,285.276,285.28,285.284,285.288,285.292,285.296,285.3,285.304,285.308,285.312,285.316,285.32,285.324,285.328,285.332,285.336,285.34,285.344,285.348,285.352,285.356,285.36,285.36,285.823,285.827,285.83099999999996,285.835,285.839,285.84299999999996,285.847,285.851,285.85499999999996,285.859,285.863,285.86699999999996,285.871,285.875,285.87899999999996,285.883,285.887,285.89099999999996,285.895,285.899,285.90299999999996,285.907,285.911,285.91499999999996,285.919,285.923,285.92699999999996,285.931,285.935,285.93899999999996,285.943,285.947,285.95099999999996,285.955,285.959,285.96299999999997,285.967,285.971,285.97499999999997,285.979,285.983,285.98699999999997,285.991,285.995,285.99899999999997,286.003,286.007,286.01099999999997,286.015,286.019,286.02299999999997,286.027,286.031,286.03499999999997,286.039,286.043,286.04699999999997,286.051,286.055,286.05899999999997,286.063,286.067,286.07099999999997,286.075,286.07899999999995,286.08299999999997,286.087,286.09099999999995,286.09499999999997,286.099,286.10299999999995,286.10699999999997,286.111,286.11499999999995,286.11899999999997,286.123,286.12699999999995,286.131,286.135,286.13899999999995,286.143,286.147,286.15099999999995,286.155,286.159,286.16299999999995,286.167,286.171,286.17499999999995,286.179,286.183,286.18699999999995,286.191,286.195,286.19899999999996,286.203,286.207,286.21099999999996,286.215,286.219,286.219,286.684,286.68800000000005,286.692,286.696,286.70000000000005,286.704,286.708,286.71200000000005,286.716,286.72,286.72400000000005,286.728,286.732,286.73600000000005,286.74,286.744,286.74800000000005,286.752,286.75600000000003,286.76000000000005,286.764,286.76800000000003,286.77200000000005,286.776,286.78000000000003,286.78400000000005,286.788,286.79200000000003,286.79600000000005,286.8,286.80400000000003,286.80800000000005,286.812,286.81600000000003,286.82000000000005,286.824,286.82800000000003,286.83200000000005,286.836,286.84000000000003,286.84400000000005,286.848,286.85200000000003,286.85600000000005,286.86,286.86400000000003,286.86800000000005,286.872,286.87600000000003,286.88000000000005,286.884,286.88800000000003,286.89200000000005,286.896,286.90000000000003,286.90400000000005,286.908,286.91200000000003,286.91600000000005,286.92,286.92400000000004,286.92800000000005,286.932,286.93600000000004,286.94,286.944,286.94800000000004,286.952,286.956,286.96000000000004,286.964,286.968,286.97200000000004,286.976,286.98,286.98400000000004,286.988,286.992,286.99600000000004,287.0,287.004,287.00800000000004,287.012,287.016,287.02000000000004,287.024,287.028,287.03200000000004,287.036,287.04,287.04400000000004,287.048,287.052,287.05600000000004,287.06,287.064,287.06800000000004,287.072,287.076,287.08000000000004,287.08000000000004,287.543,287.547,287.551,287.555,287.559,287.563,287.567,287.571,287.575,287.579,287.583,287.587,287.591,287.595,287.599,287.603,287.607,287.611,287.615,287.619,287.623,287.627,287.63100000000003,287.635,287.639,287.64300000000003,287.647,287.651,287.65500000000003,287.659,287.663,287.66700000000003,287.671,287.675,287.67900000000003,287.683,287.687,287.69100000000003,287.695,287.699,287.70300000000003,287.707,287.711,287.71500000000003,287.719,287.723,287.72700000000003,287.731,287.735,287.73900000000003,287.743,287.747,287.75100000000003,287.755,287.759,287.76300000000003,287.767,287.771,287.77500000000003,287.779,287.783,287.78700000000003,287.791,287.795,287.799,287.803,287.807,287.811,287.815,287.819,287.823,287.827,287.831,287.835,287.839,287.843,287.847,287.851,287.855,287.859,287.863,287.867,287.871,287.875,287.879,287.883,287.887,287.891,287.895,287.899,287.903,287.907,287.911,287.915,287.919,287.923,287.927,287.931,287.935,287.939,287.939,288.404,288.408,288.412,288.416,288.42,288.424,288.428,288.432,288.436,288.44,288.444,288.448,288.452,288.456,288.46,288.464,288.468,288.472,288.476,288.48,288.484,288.488,288.492,288.496,288.5,288.504,288.508,288.512,288.516,288.52,288.524,288.528,288.532,288.536,288.54,288.544,288.548,288.552,288.556,288.56,288.564,288.568,288.572,288.576,288.58,288.584,288.588,288.592,288.596,288.6,288.604,288.608,288.612,288.616,288.62,288.624,288.628,288.632,288.636,288.64,288.644,288.648,288.652,288.656,288.65999999999997,288.664,288.668,288.67199999999997,288.676,288.68,288.68399999999997,288.688,288.692,288.69599999999997,288.7,288.704,288.70799999999997,288.712,288.716,288.71999999999997,288.724,288.728,288.73199999999997,288.736,288.74,288.74399999999997,288.748,288.752,288.756,288.76,288.764,288.768,288.772,288.776,288.78,288.784,288.788,288.792,288.796,288.8,288.8,289.26300000000003,289.26700000000005,289.271,289.27500000000003,289.27900000000005,289.283,289.28700000000003,289.29100000000005,289.295,289.29900000000004,289.30300000000005,289.307,289.31100000000004,289.31500000000005,289.319,289.32300000000004,289.32700000000006,289.331,289.33500000000004,289.33900000000006,289.343,289.34700000000004,289.35100000000006,289.355,289.35900000000004,289.36300000000006,289.367,289.37100000000004,289.37500000000006,289.379,289.38300000000004,289.38700000000006,289.391,289.39500000000004,289.39900000000006,289.403,289.40700000000004,289.41100000000006,289.415,289.41900000000004,289.42300000000006,289.427,289.43100000000004,289.43500000000006,289.439,289.44300000000004,289.44700000000006,289.451,289.45500000000004,289.45900000000006,289.463,289.46700000000004,289.47100000000006,289.475,289.47900000000004,289.48300000000006,289.487,289.49100000000004,289.49500000000006,289.499,289.50300000000004,289.50700000000006,289.511,289.51500000000004,289.519,289.523,289.52700000000004,289.531,289.535,289.53900000000004,289.543,289.547,289.55100000000004,289.555,289.559,289.56300000000005,289.567,289.571,289.57500000000005,289.579,289.583,289.58700000000005,289.591,289.595,289.59900000000005,289.603,289.607,289.61100000000005,289.615,289.619,289.62300000000005,289.627,289.63100000000003,289.63500000000005,289.639,289.64300000000003,289.64700000000005,289.651,289.65500000000003,289.65900000000005,289.65900000000005,290.124,290.12800000000004,290.132,290.136,290.14000000000004,290.144,290.148,290.15200000000004,290.156,290.16,290.16400000000004,290.168,290.172,290.17600000000004,290.18,290.184,290.18800000000005,290.192,290.196,290.20000000000005,290.204,290.208,290.21200000000005,290.216,290.22,290.22400000000005,290.228,290.232,290.23600000000005,290.24,290.244,290.24800000000005,290.252,290.25600000000003,290.26000000000005,290.264,290.26800000000003,290.27200000000005,290.276,290.28000000000003,290.28400000000005,290.288,290.29200000000003,290.29600000000005,290.3,290.30400000000003,290.30800000000005,290.312,290.31600000000003,290.32000000000005,290.324,290.32800000000003,290.33200000000005,290.336,290.34000000000003,290.34400000000005,290.348,290.35200000000003,290.35600000000005,290.36,290.36400000000003,290.36800000000005,290.372,290.37600000000003,290.38,290.384,290.38800000000003,290.392,290.396,290.40000000000003,290.404,290.408,290.41200000000003,290.416,290.42,290.42400000000004,290.428,290.432,290.43600000000004,290.44,290.444,290.44800000000004,290.452,290.456,290.46000000000004,290.464,290.468,290.47200000000004,290.476,290.48,290.48400000000004,290.488,290.492,290.49600000000004,290.5,290.504,290.50800000000004,290.512,290.516,290.52000000000004,290.52000000000004,290.983,290.987,290.991,290.995,290.999,291.003,291.007,291.011,291.015,291.019,291.023,291.027,291.031,291.035,291.039,291.043,291.047,291.051,291.055,291.059,291.063,291.067,291.071,291.075,291.079,291.083,291.087,291.091,291.095,291.099,291.103,291.107,291.111,291.115,291.119,291.123,291.127,291.13100000000003,291.135,291.139,291.14300000000003,291.147,291.151,291.15500000000003,291.159,291.163,291.16700000000003,291.171,291.175,291.17900000000003,291.183,291.187,291.19100000000003,291.195,291.199,291.20300000000003,291.207,291.211,291.21500000000003,291.219,291.223,291.22700000000003,291.231,291.235,291.239,291.243,291.247,291.251,291.255,291.259,291.263,291.267,291.271,291.275,291.279,291.283,291.287,291.291,291.295,291.299,291.303,291.307,291.311,291.315,291.319,291.323,291.327,291.331,291.335,291.339,291.343,291.347,291.351,291.355,291.359,291.363,291.367,291.371,291.375,291.379,291.379,291.844,291.848,291.852,291.856,291.86,291.864,291.868,291.872,291.876,291.88,291.884,291.888,291.892,291.896,291.9,291.904,291.908,291.912,291.916,291.92,291.924,291.928,291.932,291.936,291.94,291.944,291.948,291.952,291.956,291.96,291.964,291.968,291.972,291.976,291.98,291.984,291.988,291.992,291.996,292.0,292.004,292.008,292.012,292.016,292.02,292.024,292.028,292.032,292.036,292.04,292.044,292.048,292.052,292.056,292.06,292.064,292.068,292.072,292.076,292.08,292.084,292.088,292.092,292.096,292.09999999999997,292.104,292.108,292.11199999999997,292.116,292.12,292.12399999999997,292.128,292.132,292.13599999999997,292.14,292.144,292.14799999999997,292.152,292.156,292.15999999999997,292.164,292.168,292.17199999999997,292.176,292.18,292.18399999999997,292.188,292.192,292.19599999999997,292.2,292.204,292.20799999999997,292.212,292.216,292.21999999999997,292.224,292.228,292.23199999999997,292.236,292.24,292.24,292.70300000000003,292.70700000000005,292.711,292.71500000000003,292.71900000000005,292.723,292.72700000000003,292.73100000000005,292.735,292.73900000000003,292.74300000000005,292.747,292.75100000000003,292.75500000000005,292.759,292.76300000000003,292.76700000000005,292.771,292.77500000000003,292.77900000000005,292.783,292.78700000000003,292.79100000000005,292.795,292.79900000000004,292.80300000000005,292.807,292.81100000000004,292.81500000000005,292.819,292.82300000000004,292.82700000000006,292.831,292.83500000000004,292.83900000000006,292.843,292.84700000000004,292.85100000000006,292.855,292.85900000000004,292.86300000000006,292.867,292.87100000000004,292.87500000000006,292.879,292.88300000000004,292.88700000000006,292.891,292.89500000000004,292.89900000000006,292.903,292.90700000000004,292.91100000000006,292.915,292.91900000000004,292.92300000000006,292.927,292.93100000000004,292.93500000000006,292.939,292.94300000000004,292.94700000000006,292.951,292.95500000000004,292.959,292.963,292.96700000000004,292.971,292.975,292.97900000000004,292.983,292.987,292.99100000000004,292.995,292.999,293.00300000000004,293.007,293.011,293.01500000000004,293.019,293.023,293.02700000000004,293.031,293.035,293.03900000000004,293.043,293.047,293.05100000000004,293.055,293.059,293.06300000000005,293.067,293.071,293.07500000000005,293.079,293.083,293.08700000000005,293.091,293.095,293.09900000000005,293.09900000000005,293.564,293.56800000000004,293.572,293.576,293.58000000000004,293.584,293.588,293.59200000000004,293.596,293.6,293.60400000000004,293.608,293.612,293.61600000000004,293.62,293.624,293.62800000000004,293.632,293.636,293.64000000000004,293.644,293.648,293.65200000000004,293.656,293.66,293.66400000000004,293.668,293.672,293.67600000000004,293.68,293.684,293.68800000000005,293.692,293.696,293.70000000000005,293.704,293.708,293.71200000000005,293.716,293.72,293.72400000000005,293.728,293.732,293.73600000000005,293.74,293.744,293.74800000000005,293.752,293.75600000000003,293.76000000000005,293.764,293.76800000000003,293.77200000000005,293.776,293.78000000000003,293.78400000000005,293.788,293.79200000000003,293.79600000000005,293.8,293.80400000000003,293.80800000000005,293.812,293.81600000000003,293.82,293.824,293.82800000000003,293.832,293.836,293.84000000000003,293.844,293.848,293.85200000000003,293.856,293.86,293.86400000000003,293.868,293.872,293.87600000000003,293.88,293.884,293.88800000000003,293.892,293.896,293.90000000000003,293.904,293.908,293.91200000000003,293.916,293.92,293.92400000000004,293.928,293.932,293.93600000000004,293.94,293.944,293.94800000000004,293.952,293.956,293.96000000000004,293.96000000000004,294.423,294.427,294.431,294.435,294.439,294.443,294.447,294.451,294.455,294.459,294.463,294.467,294.471,294.475,294.479,294.483,294.487,294.491,294.495,294.499,294.503,294.507,294.511,294.515,294.519,294.523,294.527,294.531,294.535,294.539,294.543,294.547,294.551,294.555,294.559,294.563,294.567,294.571,294.575,294.579,294.583,294.587,294.591,294.595,294.599,294.603,294.607,294.611,294.615,294.619,294.623,294.627,294.63100000000003,294.635,294.639,294.64300000000003,294.647,294.651,294.65500000000003,294.659,294.663,294.66700000000003,294.671,294.675,294.679,294.683,294.687,294.691,294.695,294.699,294.703,294.707,294.711,294.715,294.719,294.723,294.727,294.731,294.735,294.739,294.743,294.747,294.751,294.755,294.759,294.763,294.767,294.771,294.775,294.779,294.783,294.787,294.791,294.795,294.799,294.803,294.807,294.811,294.815,294.819,294.819,295.284,295.288,295.292,295.296,295.3,295.304,295.308,295.312,295.316,295.32,295.324,295.328,295.332,295.336,295.34,295.344,295.348,295.352,295.356,295.36,295.364,295.368,295.372,295.376,295.38,295.384,295.388,295.392,295.396,295.4,295.404,295.408,295.412,295.416,295.42,295.424,295.428,295.432,295.436,295.44,295.444,295.448,295.452,295.456,295.46,295.464,295.468,295.472,295.476,295.48,295.484,295.488,295.492,295.496,295.5,295.504,295.508,295.512,295.516,295.52,295.524,295.528,295.532,295.536,295.53999999999996,295.544,295.548,295.55199999999996,295.556,295.56,295.56399999999996,295.568,295.572,295.57599999999996,295.58,295.584,295.58799999999997,295.592,295.596,295.59999999999997,295.604,295.608,295.61199999999997,295.616,295.62,295.62399999999997,295.628,295.632,295.63599999999997,295.64,295.644,295.64799999999997,295.652,295.656,295.65999999999997,295.664,295.668,295.67199999999997,295.676,295.68,295.68,296.14300000000003,296.14700000000005,296.151,296.15500000000003,296.15900000000005,296.163,296.16700000000003,296.17100000000005,296.175,296.17900000000003,296.18300000000005,296.187,296.19100000000003,296.19500000000005,296.199,296.20300000000003,296.20700000000005,296.211,296.21500000000003,296.21900000000005,296.223,296.22700000000003,296.23100000000005,296.235,296.23900000000003,296.24300000000005,296.247,296.25100000000003,296.25500000000005,296.259,296.26300000000003,296.26700000000005,296.271,296.27500000000003,296.27900000000005,296.283,296.28700000000003,296.29100000000005,296.295,296.29900000000004,296.30300000000005,296.307,296.31100000000004,296.31500000000005,296.319,296.32300000000004,296.32700000000006,296.331,296.33500000000004,296.33900000000006,296.343,296.34700000000004,296.35100000000006,296.355,296.35900000000004,296.36300000000006,296.367,296.37100000000004,296.37500000000006,296.379,296.38300000000004,296.38700000000006,296.391,296.39500000000004,296.399,296.403,296.40700000000004,296.411,296.415,296.41900000000004,296.423,296.427,296.43100000000004,296.435,296.439,296.44300000000004,296.447,296.451,296.45500000000004,296.459,296.463,296.46700000000004,296.471,296.475,296.47900000000004,296.483,296.487,296.49100000000004,296.495,296.499,296.50300000000004,296.507,296.511,296.51500000000004,296.519,296.523,296.52700000000004,296.531,296.535,296.53900000000004,296.53900000000004,297.004,297.00800000000004,297.012,297.016,297.02000000000004,297.024,297.028,297.03200000000004,297.036,297.04,297.04400000000004,297.048,297.052,297.05600000000004,297.06,297.064,297.06800000000004,297.072,297.076,297.08000000000004,297.084,297.088,297.09200000000004,297.096,297.1,297.10400000000004,297.108,297.112,297.11600000000004,297.12,297.124,297.12800000000004,297.132,297.136,297.14000000000004,297.144,297.148,297.15200000000004,297.156,297.16,297.16400000000004,297.168,297.172,297.17600000000004,297.18,297.184,297.18800000000005,297.192,297.196,297.20000000000005,297.204,297.208,297.21200000000005,297.216,297.22,297.22400000000005,297.228,297.232,297.23600000000005,297.24,297.244,297.24800000000005,297.252,297.25600000000003,297.26,297.264,297.26800000000003,297.272,297.276,297.28000000000003,297.284,297.288,297.29200000000003,297.296,297.3,297.30400000000003,297.308,297.312,297.31600000000003,297.32,297.324,297.32800000000003,297.332,297.336,297.34000000000003,297.344,297.348,297.35200000000003,297.356,297.36,297.36400000000003,297.368,297.372,297.37600000000003,297.38,297.384,297.38800000000003,297.392,297.396,297.40000000000003,297.40000000000003,297.863,297.867,297.871,297.875,297.879,297.883,297.887,297.891,297.895,297.899,297.903,297.907,297.911,297.915,297.919,297.923,297.927,297.931,297.935,297.939,297.943,297.947,297.951,297.955,297.959,297.963,297.967,297.971,297.975,297.979,297.983,297.987,297.991,297.995,297.999,298.003,298.007,298.011,298.015,298.019,298.023,298.027,298.031,298.035,298.039,298.043,298.047,298.051,298.055,298.059,298.063,298.067,298.071,298.075,298.079,298.083,298.087,298.091,298.095,298.099,298.103,298.107,298.111,298.115,298.11899999999997,298.123,298.127,298.131,298.135,298.139,298.143,298.147,298.151,298.155,298.159,298.163,298.167,298.171,298.175,298.179,298.183,298.187,298.191,298.195,298.199,298.203,298.207,298.211,298.215,298.219,298.223,298.227,298.231,298.235,298.239,298.243,298.247,298.251,298.255,298.259,298.259,298.724,298.728,298.73199999999997,298.736,298.74,298.74399999999997,298.748,298.752,298.756,298.76,298.764,298.768,298.772,298.776,298.78,298.784,298.788,298.792,298.796,298.8,298.804,298.808,298.812,298.816,298.82,298.824,298.828,298.832,298.836,298.84,298.844,298.848,298.852,298.856,298.86,298.864,298.868,298.872,298.876,298.88,298.884,298.888,298.892,298.896,298.9,298.904,298.908,298.912,298.916,298.92,298.924,298.928,298.932,298.936,298.94,298.944,298.948,298.952,298.956,298.96,298.964,298.968,298.972,298.976,298.97999999999996,298.984,298.988,298.99199999999996,298.996,299.0,299.00399999999996,299.008,299.012,299.01599999999996,299.02,299.024,299.02799999999996,299.032,299.036,299.03999999999996,299.044,299.048,299.05199999999996,299.056,299.06,299.06399999999996,299.068,299.072,299.07599999999996,299.08,299.084,299.08799999999997,299.092,299.096,299.09999999999997,299.104,299.108,299.11199999999997,299.116,299.12,299.12,299.583,299.58700000000005,299.591,299.595,299.59900000000005,299.603,299.607,299.61100000000005,299.615,299.619,299.62300000000005,299.627,299.63100000000003,299.63500000000005,299.639,299.64300000000003,299.64700000000005,299.651,299.65500000000003,299.65900000000005,299.663,299.66700000000003,299.67100000000005,299.675,299.67900000000003,299.68300000000005,299.687,299.69100000000003,299.69500000000005,299.699,299.70300000000003,299.70700000000005,299.711,299.71500000000003,299.71900000000005,299.723,299.72700000000003,299.73100000000005,299.735,299.73900000000003,299.74300000000005,299.747,299.75100000000003,299.75500000000005,299.759,299.76300000000003,299.76700000000005,299.771,299.77500000000003,299.77900000000005,299.783,299.78700000000003,299.79100000000005,299.795,299.79900000000004,299.80300000000005,299.807,299.81100000000004,299.81500000000005,299.819,299.82300000000004,299.82700000000006,299.831,299.83500000000004,299.839,299.843,299.84700000000004,299.851,299.855,299.85900000000004,299.863,299.867,299.87100000000004,299.875,299.879,299.88300000000004,299.887,299.891,299.89500000000004,299.899,299.903,299.90700000000004,299.911,299.915,299.91900000000004,299.923,299.927,299.93100000000004,299.935,299.939,299.94300000000004,299.947,299.951,299.95500000000004,299.959,299.963,299.96700000000004,299.971,299.975,299.97900000000004,299.97900000000004,300.444,300.44800000000004,300.452,300.456,300.46000000000004,300.464,300.468,300.47200000000004,300.476,300.48,300.48400000000004,300.488,300.492,300.49600000000004,300.5,300.504,300.50800000000004,300.512,300.516,300.52000000000004,300.524,300.528,300.53200000000004,300.536,300.54,300.54400000000004,300.548,300.552,300.55600000000004,300.56,300.564,300.56800000000004,300.572,300.576,300.58000000000004,300.584,300.588,300.59200000000004,300.596,300.6,300.60400000000004,300.608,300.612,300.61600000000004,300.62,300.624,300.62800000000004,300.632,300.636,300.64000000000004,300.644,300.648,300.65200000000004,300.656,300.66,300.66400000000004,300.668,300.672,300.67600000000004,300.68,300.684,300.68800000000005,300.692,300.696,300.7,300.704,300.708,300.712,300.716,300.72,300.724,300.728,300.732,300.736,300.74,300.744,300.748,300.752,300.75600000000003,300.76,300.764,300.76800000000003,300.772,300.776,300.78000000000003,300.784,300.788,300.79200000000003,300.796,300.8,300.80400000000003,300.808,300.812,300.81600000000003,300.82,300.824,300.82800000000003,300.832,300.836,300.84000000000003,300.84000000000003,301.303,301.307,301.311,301.315,301.319,301.323,301.327,301.331,301.335,301.339,301.343,301.347,301.351,301.355,301.359,301.363,301.367,301.371,301.375,301.379,301.383,301.387,301.391,301.395,301.399,301.403,301.407,301.411,301.415,301.419,301.423,301.427,301.431,301.435,301.439,301.443,301.447,301.451,301.455,301.459,301.463,301.467,301.471,301.475,301.479,301.483,301.487,301.491,301.495,301.499,301.503,301.507,301.511,301.515,301.519,301.523,301.527,301.531,301.535,301.539,301.543,301.547,301.551,301.555,301.55899999999997,301.563,301.567,301.57099999999997,301.575,301.579,301.58299999999997,301.587,301.591,301.59499999999997,301.599,301.603,301.60699999999997,301.611,301.615,301.61899999999997,301.623,301.627,301.631,301.635,301.639,301.643,301.647,301.651,301.655,301.659,301.663,301.667,301.671,301.675,301.679,301.683,301.687,301.691,301.695,301.699,301.699,302.164,302.168,302.17199999999997,302.176,302.18,302.18399999999997,302.188,302.192,302.19599999999997,302.2,302.204,302.20799999999997,302.212,302.216,302.21999999999997,302.224,302.228,302.23199999999997,302.236,302.24,302.24399999999997,302.248,302.252,302.256,302.26,302.264,302.268,302.272,302.276,302.28,302.284,302.288,302.292,302.296,302.3,302.304,302.308,302.312,302.316,302.32,302.324,302.328,302.332,302.336,302.34,302.344,302.348,302.352,302.356,302.36,302.364,302.368,302.372,302.376,302.38,302.384,302.388,302.392,302.396,302.4,302.404,302.408,302.412,302.416,302.41999999999996,302.424,302.428,302.43199999999996,302.436,302.44,302.44399999999996,302.448,302.452,302.45599999999996,302.46,302.464,302.46799999999996,302.472,302.476,302.47999999999996,302.484,302.488,302.49199999999996,302.496,302.5,302.50399999999996,302.508,302.512,302.51599999999996,302.52,302.524,302.52799999999996,302.532,302.536,302.53999999999996,302.544,302.548,302.55199999999996,302.556,302.56,302.56,303.023,303.02700000000004,303.031,303.035,303.03900000000004,303.043,303.047,303.05100000000004,303.055,303.059,303.06300000000005,303.067,303.071,303.07500000000005,303.079,303.083,303.08700000000005,303.091,303.095,303.09900000000005,303.103,303.107,303.11100000000005,303.115,303.119,303.12300000000005,303.127,303.13100000000003,303.13500000000005,303.139,303.14300000000003,303.14700000000005,303.151,303.15500000000003,303.15900000000005,303.163,303.16700000000003,303.17100000000005,303.175,303.17900000000003,303.18300000000005,303.187,303.19100000000003,303.19500000000005,303.199,303.20300000000003,303.20700000000005,303.211,303.21500000000003,303.21900000000005,303.223,303.22700000000003,303.23100000000005,303.235,303.23900000000003,303.24300000000005,303.247,303.25100000000003,303.25500000000005,303.259,303.26300000000003,303.26700000000005,303.271,303.27500000000003,303.279,303.283,303.28700000000003,303.291,303.295,303.29900000000004,303.303,303.307,303.31100000000004,303.315,303.319,303.32300000000004,303.327,303.331,303.33500000000004,303.339,303.343,303.34700000000004,303.351,303.355,303.35900000000004,303.363,303.367,303.37100000000004,303.375,303.379,303.38300000000004,303.387,303.391,303.39500000000004,303.399,303.403,303.40700000000004,303.411,303.415,303.41900000000004,303.41900000000004,303.884,303.88800000000003,303.892,303.896,303.90000000000003,303.904,303.908,303.91200000000003,303.916,303.92,303.92400000000004,303.928,303.932,303.93600000000004,303.94,303.944,303.94800000000004,303.952,303.956,303.96000000000004,303.964,303.968,303.97200000000004,303.976,303.98,303.98400000000004,303.988,303.992,303.99600000000004,304.0,304.004,304.00800000000004,304.012,304.016,304.02000000000004,304.024,304.028,304.03200000000004,304.036,304.04,304.04400000000004,304.048,304.052,304.05600000000004,304.06,304.064,304.06800000000004,304.072,304.076,304.08000000000004,304.084,304.088,304.09200000000004,304.096,304.1,304.10400000000004,304.108,304.112,304.11600000000004,304.12,304.124,304.12800000000004,304.132,304.136,304.14,304.144,304.148,304.152,304.156,304.16,304.164,304.168,304.172,304.176,304.18,304.184,304.188,304.192,304.196,304.2,304.204,304.208,304.212,304.216,304.22,304.224,304.228,304.232,304.236,304.24,304.244,304.248,304.252,304.25600000000003,304.26,304.264,304.26800000000003,304.272,304.276,304.28000000000003,304.28000000000003,304.743,304.747,304.751,304.755,304.759,304.763,304.767,304.771,304.775,304.779,304.783,304.787,304.791,304.795,304.799,304.803,304.807,304.811,304.815,304.819,304.823,304.827,304.831,304.835,304.839,304.843,304.847,304.851,304.855,304.859,304.863,304.867,304.871,304.875,304.879,304.883,304.887,304.891,304.895,304.899,304.903,304.907,304.911,304.915,304.919,304.923,304.927,304.931,304.935,304.939,304.943,304.947,304.951,304.955,304.959,304.963,304.967,304.971,304.975,304.979,304.983,304.987,304.991,304.995,304.99899999999997,305.003,305.007,305.01099999999997,305.015,305.019,305.02299999999997,305.027,305.031,305.03499999999997,305.039,305.043,305.04699999999997,305.051,305.055,305.05899999999997,305.063,305.067,305.07099999999997,305.075,305.079,305.08299999999997,305.087,305.091,305.09499999999997,305.099,305.103,305.10699999999997,305.111,305.115,305.11899999999997,305.123,305.127,305.131,305.135,305.139,305.139,305.604,305.608,305.61199999999997,305.616,305.62,305.62399999999997,305.628,305.632,305.63599999999997,305.64,305.644,305.64799999999997,305.652,305.656,305.65999999999997,305.664,305.668,305.67199999999997,305.676,305.68,305.68399999999997,305.688,305.692,305.69599999999997,305.7,305.704,305.70799999999997,305.712,305.716,305.71999999999997,305.724,305.728,305.73199999999997,305.736,305.74,305.74399999999997,305.748,305.752,305.756,305.76,305.764,305.768,305.772,305.776,305.78,305.784,305.788,305.792,305.796,305.8,305.804,305.808,305.812,305.816,305.82,305.824,305.828,305.832,305.836,305.84,305.844,305.848,305.852,305.856,305.85999999999996,305.864,305.868,305.87199999999996,305.876,305.88,305.88399999999996,305.888,305.892,305.89599999999996,305.9,305.904,305.90799999999996,305.912,305.916,305.91999999999996,305.924,305.928,305.93199999999996,305.936,305.94,305.94399999999996,305.948,305.952,305.95599999999996,305.96,305.964,305.96799999999996,305.972,305.976,305.97999999999996,305.984,305.988,305.99199999999996,305.996,306.0,306.0,306.463,306.46700000000004,306.471,306.475,306.47900000000004,306.483,306.487,306.49100000000004,306.495,306.499,306.50300000000004,306.507,306.511,306.51500000000004,306.519,306.523,306.52700000000004,306.531,306.535,306.53900000000004,306.543,306.547,306.55100000000004,306.555,306.559,306.56300000000005,306.567,306.571,306.57500000000005,306.579,306.583,306.58700000000005,306.591,306.595,306.59900000000005,306.603,306.607,306.61100000000005,306.615,306.619,306.62300000000005,306.627,306.63100000000003,306.63500000000005,306.639,306.64300000000003,306.64700000000005,306.651,306.65500000000003,306.65900000000005,306.663,306.66700000000003,306.67100000000005,306.675,306.67900000000003,306.68300000000005,306.687,306.69100000000003,306.69500000000005,306.699,306.70300000000003,306.70700000000005,306.711,306.71500000000003,306.719,306.723,306.72700000000003,306.731,306.735,306.73900000000003,306.743,306.747,306.75100000000003,306.755,306.759,306.76300000000003,306.767,306.771,306.77500000000003,306.779,306.783,306.78700000000003,306.791,306.795,306.79900000000004,306.803,306.807,306.81100000000004,306.815,306.819,306.82300000000004,306.827,306.831,306.83500000000004,306.839,306.843,306.84700000000004,306.851,306.855,306.85900000000004,306.85900000000004,307.324,307.32800000000003,307.332,307.336,307.34000000000003,307.344,307.348,307.35200000000003,307.356,307.36,307.36400000000003,307.368,307.372,307.37600000000003,307.38,307.384,307.38800000000003,307.392,307.396,307.40000000000003,307.404,307.408,307.41200000000003,307.416,307.42,307.42400000000004,307.428,307.432,307.43600000000004,307.44,307.444,307.44800000000004,307.452,307.456,307.46000000000004,307.464,307.468,307.47200000000004,307.476,307.48,307.48400000000004,307.488,307.492,307.49600000000004,307.5,307.504,307.50800000000004,307.512,307.516,307.52000000000004,307.524,307.528,307.53200000000004,307.536,307.54,307.54400000000004,307.548,307.552,307.55600000000004,307.56,307.564,307.56800000000004,307.572,307.576,307.58,307.584,307.588,307.592,307.596,307.6,307.604,307.608,307.612,307.616,307.62,307.624,307.628,307.632,307.636,307.64,307.644,307.648,307.652,307.656,307.66,307.664,307.668,307.672,307.676,307.68,307.684,307.688,307.692,307.696,307.7,307.704,307.708,307.712,307.716,307.72,307.72,308.183,308.187,308.191,308.195,308.199,308.203,308.207,308.211,308.215,308.219,308.223,308.227,308.231,308.235,308.239,308.243,308.247,308.251,308.255,308.259,308.263,308.267,308.271,308.275,308.279,308.283,308.287,308.291,308.295,308.299,308.303,308.307,308.311,308.315,308.319,308.323,308.327,308.331,308.335,308.339,308.343,308.347,308.351,308.355,308.359,308.363,308.367,308.371,308.375,308.379,308.383,308.387,308.391,308.395,308.399,308.403,308.407,308.411,308.415,308.419,308.423,308.427,308.431,308.435,308.43899999999996,308.443,308.447,308.45099999999996,308.455,308.459,308.46299999999997,308.467,308.471,308.47499999999997,308.479,308.483,308.48699999999997,308.491,308.495,308.49899999999997,308.503,308.507,308.51099999999997,308.515,308.519,308.52299999999997,308.527,308.531,308.53499999999997,308.539,308.543,308.54699999999997,308.551,308.555,308.55899999999997,308.563,308.567,308.57099999999997,308.575,308.579,308.579,309.044,309.048,309.05199999999996,309.056,309.06,309.06399999999996,309.068,309.072,309.07599999999996,309.08,309.084,309.08799999999997,309.092,309.096,309.09999999999997,309.104,309.108,309.11199999999997,309.116,309.12,309.12399999999997,309.128,309.132,309.13599999999997,309.14,309.144,309.14799999999997,309.152,309.156,309.15999999999997,309.164,309.168,309.17199999999997,309.176,309.18,309.18399999999997,309.188,309.192,309.19599999999997,309.2,309.204,309.20799999999997,309.212,309.216,309.21999999999997,309.224,309.228,309.23199999999997,309.236,309.24,309.24399999999997,309.248,309.252,309.256,309.26,309.264,309.268,309.272,309.276,309.28,309.284,309.288,309.292,309.296,309.29999999999995,309.304,309.308,309.31199999999995,309.316,309.32,309.32399999999996,309.328,309.332,309.33599999999996,309.34,309.344,309.34799999999996,309.352,309.356,309.35999999999996,309.364,309.368,309.37199999999996,309.376,309.38,309.38399999999996,309.388,309.392,309.39599999999996,309.4,309.404,309.40799999999996,309.412,309.416,309.41999999999996,309.424,309.428,309.43199999999996,309.436,309.44,309.44,309.903,309.90700000000004,309.911,309.915,309.91900000000004,309.923,309.927,309.93100000000004,309.935,309.939,309.94300000000004,309.947,309.951,309.95500000000004,309.959,309.963,309.96700000000004,309.971,309.975,309.97900000000004,309.983,309.987,309.99100000000004,309.995,309.999,310.00300000000004,310.007,310.011,310.01500000000004,310.019,310.023,310.02700000000004,310.031,310.035,310.03900000000004,310.043,310.047,310.05100000000004,310.055,310.059,310.06300000000005,310.067,310.071,310.07500000000005,310.079,310.083,310.08700000000005,310.091,310.095,310.09900000000005,310.103,310.107,310.11100000000005,310.115,310.119,310.12300000000005,310.127,310.13100000000003,310.13500000000005,310.139,310.14300000000003,310.14700000000005,310.151,310.15500000000003,310.159,310.163,310.16700000000003,310.171,310.175,310.17900000000003,310.183,310.187,310.19100000000003,310.195,310.199,310.20300000000003,310.207,310.211,310.21500000000003,310.219,310.223,310.22700000000003,310.231,310.235,310.23900000000003,310.243,310.247,310.25100000000003,310.255,310.259,310.26300000000003,310.267,310.271,310.27500000000003,310.279,310.283,310.28700000000003,310.291,310.295,310.29900000000004,310.29900000000004,310.764,310.76800000000003,310.772,310.776,310.78000000000003,310.784,310.788,310.79200000000003,310.796,310.8,310.80400000000003,310.808,310.812,310.81600000000003,310.82,310.824,310.82800000000003,310.832,310.836,310.84000000000003,310.844,310.848,310.85200000000003,310.856,310.86,310.86400000000003,310.868,310.872,310.87600000000003,310.88,310.884,310.88800000000003,310.892,310.896,310.90000000000003,310.904,310.908,310.91200000000003,310.916,310.92,310.92400000000004,310.928,310.932,310.93600000000004,310.94,310.944,310.94800000000004,310.952,310.956,310.96000000000004,310.964,310.968,310.97200000000004,310.976,310.98,310.98400000000004,310.988,310.992,310.99600000000004,311.0,311.004,311.00800000000004,311.012,311.016,311.02,311.024,311.028,311.032,311.036,311.04,311.044,311.048,311.052,311.056,311.06,311.064,311.068,311.072,311.076,311.08,311.084,311.088,311.092,311.096,311.1,311.104,311.108,311.112,311.116,311.12,311.124,311.128,311.132,311.136,311.14,311.144,311.148,311.152,311.156,311.16,311.16]},{"y":[-7.3975635,-17.90889,-0.3636606,1.4867988,-7.241382,-3.9237,3.021741,1.8327694,-24.21297,-29.412525,0.71384454,-0.22171614,-2.3676486,13.731902,-11.7239485,-29.404583,-6.937958,-5.016949,-3.5121891,16.189154,11.093139,-8.023729,-10.818655,-4.126166,-2.1680377,-0.990079,11.749571,20.580439,5.661887,-14.926,-15.52553,-8.049428,-14.184913,-10.123364,16.58151,22.904709,1.1491762,-10.448181,-4.492622,-6.908545,-21.02017,-16.294418,-10.738788,-28.451193,-17.499563,5.7556133,-8.944295,1.2401739,35.404915,22.377096,-2.0765638,1.6923822,16.780972,20.070683,-0.104334556,-1.7721393,14.814178,2.2075775,-5.454347,7.399133,9.676376,19.56273,32.240334,29.651922,27.026873,18.752525,5.2660346,-8.093807,-25.17223,-21.983704,0.53105253,16.286232,21.87357,9.351511,-5.4001584,0.5793083,-1.410004,-9.804218,6.0249114,11.368944,-13.7683325,-18.856382,6.227854,14.349441,0.15752906,-0.08402457,10.688896,3.077382,-9.033045,-6.2723675,-8.349091,-9.140081,8.522589,11.755191,-4.189228,-7.219217,-10.206985,-15.133002,0.33539104,8.474912,null,4.099779,-2.2328563,11.763662,15.921572,4.1605735,-3.5529778,1.5419283,14.311895,10.340802,-5.6607823,4.581687,22.81262,1.5369718,-25.051643,-3.8104634,23.72585,13.3291645,0.460451,4.781459,5.649647,-1.7975514,-9.857283,-4.799713,9.500782,7.1938,-11.393156,-24.251528,-14.74828,6.7420325,11.68763,18.564302,42.81515,34.69078,-8.913026,-27.303617,-21.50319,-34.980614,-46.149048,-20.011324,-5.649685,-24.493835,-14.143152,14.90862,17.54155,15.639422,6.7130733,-9.112531,-1.7541062,2.5759683,-7.884858,-5.655758,1.42214,10.298106,21.031559,18.395382,14.529193,20.04178,22.331821,10.270888,-11.869173,-22.375969,-21.65491,-27.736065,-30.557468,-15.619765,9.831775,29.031303,34.103607,30.206165,15.67018,-5.966355,-16.999546,-16.350248,-16.307587,-11.042235,14.315205,29.772211,-0.04687065,-28.313183,-20.991375,-6.23459,16.255415,24.896112,0.77533644,-2.380026,5.5824013,-6.7471685,2.4228096,16.416477,10.321868,13.316184,3.1495879,-17.10718,-1.2018801,20.605658,10.681796,-4.2681937,4.741904,14.810897,-4.508637,null,-1.4529656,-4.128528,-11.988754,-9.077487,0.116055116,7.332469,2.473756,-11.956878,-18.761473,-6.226228,10.985953,4.909363,-11.0746355,-9.443872,0.0004326054,0.3850419,-11.099836,-12.645999,4.8399653,1.5609851,-11.732822,5.711268,11.241472,-12.129158,-9.576636,15.560336,20.392197,8.591368,5.3338437,-0.76031375,-30.959162,-50.91563,-32.767727,-9.397105,5.610169,30.12705,58.213882,60.234596,28.83019,8.860606,11.294341,-9.0732975,-27.711983,-10.808275,-16.59193,-45.036655,-27.023388,-1.2088395,-20.36051,-23.345005,-0.23741096,-16.885489,-41.212666,-29.019552,-27.284994,-36.17087,-17.283108,-0.39103833,-2.3551843,11.31266,38.351315,44.91594,33.343525,21.807425,5.354973,-12.027911,-23.502697,-36.117153,-27.059416,7.578827,17.819925,2.0879169,0.27493256,8.024734,0.42271012,-14.11357,-2.8240335,15.326295,-1.2036803,-13.51389,-1.1238271,-9.449161,-20.454388,-8.32315,-3.65207,-3.4308872,1.7938637,-5.140823,-12.160873,-7.017084,-5.9337616,-8.17695,-2.0814042,-4.6503916,-18.533955,-13.2403555,-3.418501,-12.741207,-11.672815,-6.89065,null,-2.6960032,-4.3220253,3.2221675,-3.5391505,-5.306774,13.694889,8.190392,-19.73815,-6.932868,20.434814,1.2980367,-15.889749,3.7971222,9.771654,2.101018,4.8250194,4.801209,10.223893,13.706091,-1.6672033,-5.0393357,4.85638,-0.4029992,-5.617185,5.0685735,12.975985,-1.1406347,-20.111547,-15.975382,-1.6851177,9.314581,18.892384,20.258307,24.220436,14.769129,-27.375704,-37.41026,-8.048284,-19.847326,-40.1322,-6.0952,24.970306,20.219585,26.490822,44.220734,38.570484,25.831417,31.83908,33.258812,21.976898,29.228334,39.60549,22.738827,16.958792,34.506565,22.356314,-5.646185,-4.1807647,-7.4215264,-35.471622,-53.87453,-57.82759,-51.8997,-29.862822,-3.0532305,15.648094,20.778246,22.810898,27.172752,9.1,-16.496826,-8.577454,8.496557,2.7836826,-7.762104,-7.121468,-2.273927,-0.13805701,9.718779,24.573944,15.553322,-8.4410925,-13.810863,-5.808257,2.9740717,12.039287,9.082037,-4.6496425,-7.173647,-3.0947323,-6.3222446,1.7232794,9.743134,-10.577959,-13.637827,14.607204,11.903623,-12.708309,-16.97905,-2.9938908,null,21.591894,1.7821889,-0.97952175,18.236145,13.215056,1.2767891,-2.1146703,5.468841,21.683414,19.234482,5.139615,9.557346,14.170936,-7.568095,-21.821367,10.506201,44.585835,22.173685,-21.624424,-31.065613,-17.40101,-2.8965304,18.138203,27.67372,-0.10409703,-27.970407,-15.3296,5.016327,1.9011422,-1.628952,9.496377,10.416145,-9.461434,-14.769012,5.3845177,18.123457,23.024033,33.31456,35.13243,27.901115,21.500036,12.034006,-6.4834023,-23.894579,-19.47486,-12.959837,-32.938293,-46.11236,-37.342823,-38.685295,-38.24215,-25.301315,-33.022472,-45.847588,-29.203592,-16.71271,-23.05047,-12.18461,3.832418,13.030331,34.641376,32.68305,5.53769,7.391294,3.9156737,-21.76738,-11.061667,11.004818,10.423077,16.174713,16.465263,5.8091803,5.6650815,1.1085027,-5.788032,1.239188,5.5843854,0.761507,1.8338896,9.313174,6.003784,-0.797233,13.339348,17.68035,-11.403026,-17.228777,14.494649,29.137938,18.55863,3.94067,-1.9823726,10.762794,15.114919,1.7808349,9.467477,20.175848,2.1949332,-6.558305,0.7415032,1.9044764,null,-5.8461,-17.690594,-5.5103173,11.7843895,-10.579774,-32.180317,-12.941716,15.310107,9.924944,-20.974016,-19.750689,11.207887,6.9182014,-11.485334,4.711955,7.791462,-23.800896,-33.532486,-14.927978,-0.550356,3.3419366,-3.7082057,-9.676746,-3.9772537,3.5759132,8.042418,0.62625325,-6.365095,4.8904157,-7.2847123,-35.365143,-17.852608,6.377899,5.7561626,18.990683,18.081673,-12.345188,-17.53863,2.4027638,13.02799,12.803296,9.921598,9.981558,9.501751,5.129381,10.992565,29.432644,33.65973,24.750687,32.901524,35.65831,18.846355,26.357899,34.816895,8.828817,-1.1107508,10.009387,4.767528,-7.812393,-15.80863,-11.28393,-2.2671907,3.7626681,26.241838,25.871677,-15.000951,-23.166006,-14.677617,-36.714108,-28.448952,17.396551,31.982603,15.21257,0.03899757,-12.986143,-24.777119,-19.830185,4.545038,23.420675,16.212332,-6.673906,-18.532463,-14.1894,-5.7869563,3.4385073,0.22903655,-18.065166,-25.121407,-18.70744,-11.503,-10.188917,-17.581839,-10.63354,4.387632,-3.470153,-16.893515,-21.222206,-13.2225,4.4977274,-7.21128,null,-23.385765,0.26785848,42.566418,19.672647,-11.5576,-3.4837377,8.568408,11.098408,11.35753,18.334728,18.182695,-0.03046029,3.101069,20.841045,11.706271,-1.7288767,3.0380394,17.000223,23.398132,3.6681938,-15.457621,-1.9390584,17.783384,16.675089,11.594851,5.971027,-24.529673,-45.509373,-16.772406,14.819791,30.869282,40.204777,16.923325,-0.26077142,1.6444272,-30.631538,-52.201984,-28.20595,-7.988625,5.6121464,13.456672,4.723876,-1.5065143,-3.8842704,-3.4577,-3.830595,-12.281048,-13.514489,-14.095986,-18.556486,-13.433595,-10.161248,-2.7689002,11.373995,8.653543,5.1000485,8.888492,-4.536071,-19.497887,-11.549498,-2.1971152,-13.969441,-24.51589,-18.15301,-11.688917,2.120213,17.339619,9.454523,7.2078977,13.361952,-4.6422105,-19.518509,-10.362059,5.490584,12.209616,-3.9899764,-16.224941,-7.6654124,-9.833263,-7.394303,19.335594,27.03666,5.7620006,-7.03238,-3.6682868,4.2176943,8.994121,-0.07260742,-3.6175737,14.140609,4.293954,-24.07932,0.043663,26.35543,3.2424822,-4.7426605,5.6737204,-0.7816572,-0.53124046,7.5579467,null,-7.643212,-3.6713634,11.732988,-8.545186,-13.874092,14.270798,-0.24928422,-22.67774,-4.0730143,11.126112,2.8257957,-7.9248147,1.8517815,12.045563,-4.594771,-10.865973,0.58130074,-0.784306,-7.9528527,-7.593717,14.355416,33.066944,6.594611,-20.637707,-12.338979,5.5999103,21.442074,20.454084,6.374791,3.026275,-2.60391,-18.440914,-24.829348,-5.6676655,20.743113,19.39974,12.729325,23.885204,26.0271,16.024055,2.563728,-8.247411,-8.755656,-13.671886,-15.661108,-10.565661,-12.601815,-3.5940735,2.9256988,-7.058617,3.6623034,14.755417,-0.92781216,-7.4733653,-1.6298195,-3.5033183,-6.5097914,1.9060105,15.56465,17.020287,22.505466,42.453457,51.815956,45.30887,24.204987,-5.707985,-31.775713,-46.93133,-20.35218,18.908495,12.256868,12.497302,27.365314,-5.861025,-27.42294,8.12096,29.117231,7.8421626,-19.566147,-32.083958,-26.750492,4.9830585,35.959156,9.829545,-29.977684,-17.794586,-0.14405213,-0.97484916,4.518544,2.4770842,-3.0576386,2.5060806,7.9108806,6.460072,0.3868805,3.1414251,8.649118,-5.9869976,-20.581106,-10.924619,null,14.901691,0.7265872,-23.535416,-9.583271,10.700054,0.50941217,-19.891695,-15.85695,2.5456765,-0.41110405,-18.072142,-9.398566,13.730324,5.6587453,-10.327284,-9.052953,-22.295431,-31.379663,-1.6498742,28.288479,19.620743,-10.773081,-21.056448,-17.195549,-27.798315,-15.937731,9.456024,-14.144825,-36.86749,-16.379158,-4.5442953,1.8914901,15.880385,1.7998544,-20.226196,-15.473526,-18.212854,-40.220135,-34.09181,-6.0526824,5.141048,13.253889,19.540125,14.962196,16.800503,16.578661,16.225504,22.752684,16.172943,14.32617,21.070515,16.296211,19.527388,23.024818,21.26853,25.391375,8.843971,-1.8382922,11.436316,-0.44680816,-18.807112,-25.771118,-33.91651,-10.451501,15.061479,4.692759,4.0430536,15.679222,8.520131,-8.370138,-21.55029,-26.373865,-18.074532,0.6546021,3.733974,-9.23639,-11.254292,-21.299788,-26.181812,-2.579522,-6.9278393,-24.399063,-10.630401,-2.8195496,6.3970284,12.913418,-5.495581,-5.5960236,-9.605433,-25.057741,4.795795,25.712492,-1.1085743,-22.207907,-15.853577,10.0370455,8.651624,-15.984244,1.5921372,17.40276,null,5.2942586,2.9044557,7.6338987,5.375599,19.335833,19.099049,-5.5625443,2.0536397,8.771452,-1.2056811,8.046262,3.5282164,-5.2173448,0.41507712,-7.199462,-0.7844492,14.082046,13.018788,21.31745,13.538736,-10.266421,-4.352525,5.655193,2.2290933,1.8553019,-2.0950165,-3.8918576,8.221562,21.5024,12.521454,-6.3088694,-10.406174,-18.38905,-20.206778,-1.5300802,3.5341568,9.733947,18.048403,-3.3538332,-15.662545,-19.88867,-35.410187,-23.48977,-13.838564,-24.714003,-21.599854,-31.153023,-43.877636,-32.318283,-30.179695,-32.937096,-29.03773,-27.02754,-21.076477,-26.412693,-28.713682,-16.99384,-23.534723,-16.002296,16.11276,11.900759,-6.708856,-1.968129,-0.4168333,-4.010938,-8.001484,-10.877628,5.316732,18.154053,7.967544,-0.27519897,-8.422955,-16.170069,6.54614,31.977196,22.117702,7.26878,-1.1080322,-15.511203,-12.869981,4.0675774,8.850426,10.687257,11.3498125,-2.9284837,-9.406702,7.0083795,9.714831,-2.5640185,9.522818,19.009478,-0.72205466,-10.5907755,-3.169168,8.05471,17.84145,9.353094,0.9847056,0.35163373,-4.1761427,null,-2.2946167,-7.339683,4.3753686,8.859436,-7.6471543,-4.814223,-1.1912402,-4.1092453,-3.3020403,-11.222073,-2.6702077,11.026262,-3.6755638,-13.3330555,-4.7211394,7.824857,16.83114,3.9050348,-11.182298,-4.586471,14.542386,26.504168,-3.4638155,-33.43699,-5.342624,8.003451,-5.435181,21.390614,24.668463,-16.524862,-22.217607,-15.758934,-15.380814,9.904587,20.971516,10.156113,5.5034695,-0.91900486,4.9471974,15.079095,12.034312,23.837875,32.932384,22.229177,20.717407,20.112574,23.789442,34.477287,25.683565,25.326393,33.582973,21.27594,23.355936,26.019901,4.1370597,2.1699548,14.534756,24.838978,36.91345,20.697588,-2.7803686,-4.765708,-8.855672,-8.64142,-0.07609385,3.9088109,5.5602775,-2.7458823,-8.730034,-5.2049327,-10.020821,-8.76253,2.5678897,3.9404058,-5.371502,-11.722152,10.121925,33.031082,8.275925,-18.016548,-9.087477,-2.625503,-6.486435,-7.3121557,-2.1772804,6.7701015,2.1545792,-14.444364,-14.066148,10.114218,11.761809,-22.538488,-20.298943,10.82352,-3.6098647,-18.526983,4.5849705,7.879408,-15.523485,-25.110048,null,19.576992,12.172212,4.623143,3.4344106,-3.457686,4.089945,18.238089,10.56748,-0.6829353,-3.7160685,-4.042723,2.9561048,-0.81787854,-3.8943667,14.979114,6.4370923,-13.312853,15.41147,21.876709,-16.851418,-14.175952,5.99869,-3.0125446,-2.679857,7.583359,3.0653949,-10.126806,-15.353425,-1.662181,7.731992,-0.075417824,-1.2621508,4.7372494,7.400727,10.016964,13.083742,10.24362,-4.6720443,-9.308385,4.5680513,2.282677,-10.401582,-11.643417,-5.376534,15.1521225,17.713964,-10.337836,-6.002243,9.887433,-10.232721,-12.970808,4.462408,2.544537,5.7051806,10.792762,-0.15534417,-6.5347176,-6.087909,-3.3762517,-2.7373993,-9.549312,-9.256952,-14.57695,-30.264095,-19.997868,5.9621882,23.908789,29.404783,4.894267,-10.372853,3.8773942,-7.4152293,-14.087775,10.1152935,4.946265,-3.3481169,9.4722,3.3013637,7.821913,19.708334,5.986779,0.42643002,-9.234619,-16.709694,19.323935,30.995247,0.919235,1.1755172,13.305131,9.13681,4.1322064,1.2132874,1.9064735,-7.418543,-8.173498,13.954399,7.530674,-2.4425235,20.787104,15.790468,null,-16.340445,-12.038328,13.161741,6.42795,-10.809975,1.3693693,5.4294105,-7.213542,-6.9693866,4.49388,8.21752,-14.864624,-33.315945,-9.812962,10.630535,13.977541,24.792961,8.677327,-19.183783,-13.367505,-7.398866,-5.8533254,11.738767,15.590255,7.330044,6.4553757,4.3054895,8.691729,17.177244,9.255957,-4.0886,-3.6764796,7.360218,16.947693,16.693825,10.315853,8.141316,10.454732,11.568399,13.226959,12.526551,0.9119791,-10.098931,-5.735305,1.126912,-1.8478651,-3.4987605,-2.7856443,-10.097061,-10.153005,-2.076189,-13.379457,-21.178463,-4.1217685,-0.2806124,-5.2080393,1.2085525,-3.2549582,-1.9786733,12.410626,2.099077,-16.79172,-12.012922,1.5558379,3.8217747,0.54355204,7.6342597,3.007511,-18.411993,-4.2068295,30.57899,30.2227,10.780415,0.42531753,4.7983418,11.819902,7.9112244,11.540568,15.820555,14.68475,24.561577,8.112192,-19.690582,-0.2702175,12.072432,-9.949001,-11.0999775,7.239034,20.894163,12.671053,-6.0269938,1.8787938,1.2876902,-9.098065,21.471088,28.844177,-13.058613,-19.71461,-1.651469,-2.3258033,null,-10.414019,-7.8796372,-10.0285,2.4147131,-3.4716895,-16.742683,0.82036066,5.733146,-8.047778,-10.670162,-10.545272,-1.0833488,9.708764,6.131009,-2.9522045,-10.849975,-3.577596,-6.784738,-31.197247,-18.31872,1.3193393,-13.991088,-6.4027066,7.77361,-10.542845,-26.21833,-27.979063,-15.990436,-11.5043745,-29.181902,-13.84133,15.586347,-2.301125,-21.165346,-8.350206,-1.8894297,-13.857678,-15.978527,5.051064,12.098224,-1.0967447,-0.5686545,-4.520856,-19.669996,-13.753273,9.555406,27.06975,19.35392,3.3331091,12.030144,17.728947,7.6667747,7.2938676,4.72372,-2.297624,-5.2603436,-7.562428,-1.1010243,-6.3161173,-21.349566,-7.909187,2.0815282,-12.056791,-8.40499,1.4739075,-7.1893477,-16.04196,-16.849335,-10.266414,-2.3794265,1.5992476,4.579555,-9.755433,-28.080488,-14.332833,-1.7453107,-10.624914,2.356981,19.694798,3.5429888,-15.104234,-16.054504,-6.049613,3.118911,-11.397328,-19.675568,5.7482376,10.625845,-12.353896,-7.8860984,8.688774,1.529875,-5.906374,0.5478793,-1.5506401,-8.826263,-1.4716343,4.762745,-0.7149144,-2.314246,null,9.653471,-2.314129,-6.193669,13.750208,13.373698,-10.558599,-8.313669,6.129739,7.917322,1.1608979,-6.813454,4.414057,10.29093,-5.2150865,-0.07676615,4.9567437,-6.967094,5.065316,8.527113,-13.790508,-12.136282,0.89419675,9.668862,19.615795,3.8385758,-9.209048,12.355093,17.714037,-4.931907,-12.459918,-2.06842,1.4138824,-5.956738,-0.83949715,4.6971655,-18.713871,-23.81885,0.41804728,-11.726715,-33.265408,-22.443508,-15.616845,-11.332701,-4.458563,-6.3678393,-2.8308427,-16.179771,-33.98912,-15.008604,-9.899981,-27.785862,-18.617645,-6.7074633,-2.5653784,6.291935,0.51095617,-6.916996,-4.216946,-5.482021,-13.013352,-21.823807,-13.212906,7.065899,13.004939,8.306171,-4.850121,-13.968262,-10.571182,-16.30368,-10.743721,12.484928,16.315603,9.846003,-2.5101042,-14.874735,-1.9703604,3.6407437,-2.1181705,2.6495755,-7.9405775,-9.743053,8.53287,5.5924377,5.582415,12.840398,-1.7530923,-8.676582,0.31407368,4.56688,-0.80633545,-9.236879,6.1262903,25.88393,8.558402,-18.055704,-18.355457,1.81972,16.937412,15.181473,10.505733,null,-16.501554,-22.294592,-10.11558,2.4223535,8.491382,9.438524,-8.748669,-21.712662,5.819917,23.64724,1.5813535,-12.396518,-4.8048806,14.104994,22.77774,-6.6110783,-24.289875,6.4812994,28.692251,13.276937,-2.5763018,6.807945,14.168465,2.0259027,7.9198184,24.203947,14.02216,1.8057384,1.1233826,5.321931,16.14337,15.846397,14.420439,15.324219,-6.805144,-17.127642,3.542993,10.754451,4.0606685,9.448482,20.803722,15.394711,-4.25492,-3.5797458,2.7548149,-12.532043,-12.766818,5.8152227,15.911521,23.939238,19.113176,5.222801,5.769904,4.9392676,5.315872,16.132313,14.9715,15.631175,30.532255,35.52075,31.867004,20.01807,1.037094,5.2235765,18.466187,9.854377,3.9059503,8.401254,2.0113828,-5.969503,-4.3104286,2.285977,9.701262,10.867063,2.0351055,-10.915184,-10.659963,1.1622517,-4.680073,-12.625841,6.0122476,18.62427,11.177467,9.97185,13.4886,2.1418974,-25.056808,-19.727438,26.415644,20.877619,-21.953375,-2.2580235,23.904377,-1.7133566,-11.722611,3.598174,3.9939964,-3.43899,-3.9959626,0.72025365,null,9.820642,8.317955,2.3377674,-4.8370595,-10.300632,-7.421561,5.652782,-0.29914257,-14.724257,0.74669284,10.6795225,-4.7805743,-0.8674269,9.809474,-8.505625,-23.36642,-11.792967,-4.8855414,-8.985881,0.11787161,10.965779,5.5966253,2.4615204,9.148252,6.8919773,-8.631384,-10.191735,19.971252,39.68942,16.550215,-7.13708,-4.7610564,-1.2266368,-6.0472608,-4.8004193,8.890911,12.713649,-7.9855304,-22.610115,-18.371302,-18.341608,-21.519737,-13.830656,1.2542539,6.586463,-2.73883,-0.52229756,9.965875,-4.076845,-13.738029,8.654282,17.763617,7.265923,11.037551,5.9037704,-11.086311,1.198048,17.714424,-0.40042907,-22.335928,-16.63692,4.838356,12.770938,4.353737,4.0849423,0.0049515567,-16.75357,-14.627286,-3.3590539,-0.19620748,6.717594,-0.39859164,-12.362052,-1.2962017,6.6743593,10.556319,20.363546,4.650751,-17.65774,-14.5005665,-10.297122,-3.2204084,17.459421,11.9138775,-18.454443,-11.5051365,21.462046,13.029677,-11.473106,1.7040476,18.322407,10.657366,1.9584782,-0.2442509,1.2469401,5.111244,11.029739,18.729954,15.417963,9.616996,null,7.0826216,12.454106,0.37690142,-4.4847918,-6.338219,-2.0811157,9.712258,6.2875743,-9.958745,-7.525632,13.290399,15.72804,-9.8974905,-29.689512,-11.942184,24.912268,20.191698,-15.854648,-8.050416,19.07158,9.735567,0.43725297,0.93727416,-10.615271,-10.364288,3.2493336,19.422739,34.624245,17.594173,-14.794414,-11.626806,7.457168,7.9309363,1.8234134,3.323622,7.8063006,6.300977,1.0516977,-0.14784452,0.3184831,3.1093075,6.926696,-1.911363,-9.201731,3.384751,-0.5151611,-23.755453,-15.37466,-3.815158,-22.161324,-21.586351,-13.714524,-26.814985,-15.793616,0.16702332,-15.226229,-14.4902525,6.258287,9.689055,3.291062,-0.43337476,1.7802811,0.84294105,-8.87144,1.2684222,27.920696,32.00154,13.687927,-7.9495916,-19.358168,-7.2759676,11.78194,7.8182507,-9.533164,-10.972595,-3.7049725,-7.8374515,-13.818394,-13.172544,-9.366074,-1.0672648,4.3601313,6.8245773,14.057731,8.546537,-9.295788,-0.19002113,21.425186,0.07590925,-24.78703,6.5076623,22.767813,-14.774535,-13.504721,26.384495,19.758944,-6.669455,-0.6852747,10.927056,5.3668966,null,2.8881142,0.047116373,-23.93691,-8.326301,6.000088,-13.231621,-3.5572224,20.768633,5.8366857,-4.62775,10.424365,3.2575636,-20.264229,-11.145947,16.015518,5.644299,-16.874754,-2.4735813,7.800811,-0.46105748,11.638143,17.263298,-0.64673996,-9.703111,-11.347343,-6.423374,3.599922,-8.476895,-18.309336,7.3765306,22.22202,-2.525916,-16.707355,-2.7242935,-3.0604467,-17.391815,-4.3652825,27.586548,31.276184,6.8402915,-1.9927958,2.3291311,-6.573773,-1.0676337,22.3737,21.230268,13.354517,23.287617,24.899872,18.032223,13.207416,6.8110585,6.5794954,1.8680645,-9.736964,-3.8585773,2.9994452,-10.232636,-11.99627,7.293148,12.800871,4.1903315,8.683962,10.61527,-11.802779,-20.185165,11.484779,33.438656,18.80888,5.7707467,-1.4087536,-17.631565,-12.482867,8.603893,7.3171515,0.70965564,-2.8506558,-14.628647,-9.029772,5.966606,3.5685737,-4.166837,-18.02896,-21.411871,8.264664,18.30114,-10.103991,-13.927516,10.931432,11.98526,-12.266808,-23.37931,-16.634249,-7.3069477,13.611342,24.55182,-6.546931,-26.46124,-2.7135797,2.0884101,null,12.410843,-12.928169,12.330291,21.320974,-12.945836,-12.55401,8.207327,0.8258074,0.45751038,7.521304,-1.9570593,-4.267663,2.5874064,-1.5512067,-10.3571415,1.8921411,28.714806,15.894675,-23.996672,-24.585928,-4.6750813,0.5703488,1.2995688,-3.8242958,-3.2136438,1.4320254,-9.633701,-1.4757518,24.231195,8.061245,-20.318102,-7.765274,8.562553,7.5973735,20.061804,29.153502,7.50306,-7.692014,1.3972045,-0.27740434,-5.435066,11.304581,19.055874,-5.3426943,-22.130217,3.455942,29.84994,3.8283453,-34.58185,-30.497763,-14.850446,-14.205799,-8.620553,-3.6503165,-8.260842,-4.786024,5.1326656,-0.026709707,-19.41315,-23.133032,-4.3855734,-2.1364639,-14.868362,1.4115845,21.986456,6.9249525,-11.281432,-13.813864,-16.101831,-3.8828266,23.400148,22.860844,-11.647146,-20.752056,8.861513,17.962135,9.804338,16.020351,3.7037947,-13.862572,-2.1807978,-1.5560478,-15.5090475,-16.786766,-15.918134,-6.7887783,-2.789261,-16.06143,-9.541721,-0.9869108,-17.370506,-22.17439,-12.52992,-4.382268,0.36895826,-7.196606,-3.5654948,11.318918,-0.74755645,-17.660128,null,-15.952622,2.5540066,12.9872055,-6.0091877,-3.130228,14.972097,12.515352,-0.0064448426,4.2107663,5.7248144,-6.9106793,-3.2363915,-0.75423557,-11.4068,3.7886147,17.591526,-1.3929912,-11.752143,-9.538849,-14.715807,-13.095459,-10.72364,-17.730442,-14.547428,-6.86438,-18.63169,-19.693443,6.175014,-6.2720814,-45.95117,-18.989843,29.91121,12.120029,-15.476805,-8.716804,-11.286098,-15.94491,1.6545694,14.763577,12.687287,8.616759,6.221845,1.5323408,-14.8150015,-23.676323,-5.3963904,6.9407544,6.85492,14.946413,10.564192,3.747159,10.923022,2.8164167,-2.7837903,7.627129,1.9680668,-2.384777,0.16116539,-9.1731415,-2.24027,14.913521,12.863398,3.1510794,-13.658318,-24.200169,-0.033370975,27.145973,20.857494,9.835576,16.043192,12.104072,3.6988297,15.305522,10.18817,-13.944834,-9.818785,3.221616,8.021627,18.710413,13.931986,-2.8121128,-5.5200233,7.2869053,19.867672,3.0782769,-16.649849,-0.8692854,10.82003,1.0955155,-12.903207,-18.895565,10.276849,28.255335,-4.931865,-15.111734,8.475142,9.262093,-2.8662577,-12.058621,-12.871088,null,18.428253,10.122836,-12.786147,16.297426,24.733223,-9.378587,-5.606216,5.5179133,2.569884,10.738142,5.5816703,-3.8796222,-4.143274,-1.197879,7.111541,-7.586627,-23.72007,-1.4776307,12.267926,-3.0016677,-11.483483,-3.0220995,4.563178,-5.54774,-5.4181514,12.696713,-5.100636,-43.713646,-35.52764,1.19887,3.1160295,-19.252716,-16.48422,-6.4361825,-10.032226,-0.9853574,6.8322983,-2.387108,-12.580793,-16.272572,3.761529,19.085567,2.1532538,7.7534037,18.798405,-11.470383,-21.149801,-0.2019411,-3.758586,-15.853993,-10.071499,-3.1483645,-11.1109295,-14.482324,3.655825,11.928289,-1.4116297,-10.105734,-6.9400425,3.3951328,10.264479,8.781681,11.306455,17.562628,7.0495625,-25.24038,-29.257788,7.090613,9.224814,-13.060025,-10.521221,-16.440348,-10.825471,15.084654,-1.2196622,-14.158039,16.419056,24.124125,2.3288152,-10.323631,-5.4184175,0.24152054,-9.80108,-7.0982213,5.054321,-3.5521982,-5.466253,-1.5916022,-6.4109154,7.3340816,14.919518,-3.7551537,-5.593304,2.0740542,-11.450945,-14.244614,2.1291063,-4.151531,-13.622559,3.9303343,null,27.577076,-0.67505634,-0.29030395,10.659857,3.2669792,0.6974747,-7.4268928,-7.4959764,7.4871693,-9.598481,-18.390804,12.643076,21.814276,10.691325,-3.2095785,-5.3548617,23.640476,15.137108,-19.183195,-9.903411,-5.138086,-4.785247,3.960928,-11.025276,2.6272297,24.142757,4.8541474,8.205585,22.20947,16.332079,10.121121,-8.7320175,0.13301224,32.50188,21.750849,2.5182471,-0.59606075,-3.7452254,0.9754028,6.819779,23.91237,28.79015,9.337856,24.247046,30.259756,-6.0116568,-3.2738016,14.171404,0.16074039,0.9090031,15.977725,17.753983,10.436179,9.403356,11.177262,-0.94653356,2.9714108,22.66746,12.819899,-2.5218244,-0.55185485,3.7260425,9.807591,8.395058,9.640489,11.873959,-10.958749,-24.238201,-7.3464255,6.8119287,10.901724,6.7591777,0.6669653,-0.1663667,-6.4505477,-11.069718,-3.3555858,5.757909,1.2323136,-10.10026,-5.1803837,5.529709,7.081508,2.8220534,-7.664367,-0.07866135,11.258271,-9.304156,-13.852978,8.396892,15.531031,11.016663,-7.313129,-9.886511,13.397513,-0.14764224,-17.766407,-1.7800295,4.0883656,12.240804,null,-28.650913,11.081573,29.354212,0.49987435,-8.699901,10.439972,17.28481,2.0494366,2.5275455,9.04685,-2.159292,11.378119,29.562819,3.5551178,-14.30399,2.945513,10.39111,0.43611616,0.61963725,14.298852,22.353748,21.227657,13.27424,3.6682732,3.5718987,0.23805809,1.7083042,15.805792,5.0176673,-4.6592183,22.141804,32.983093,11.939165,-9.25058,-14.043369,-0.043642458,8.111467,7.87634,4.2588806,-10.434205,-11.308374,-3.3389866,-6.4090533,-8.454478,-13.32609,-15.90864,-20.280462,-19.934988,11.813725,13.827928,-13.185235,1.3919021,-0.059474234,-14.613439,-5.652666,-34.01424,-34.932648,11.916837,-2.042029,-25.200277,-6.9097476,7.2524896,1.5507176,-35.784496,-35.82972,16.552576,18.488987,-1.7863461,-4.0973907,-11.84331,-0.92903477,1.0304394,-8.68391,-4.606701,-14.593822,-3.3264964,10.562379,-12.44886,6.9378376,28.537994,-9.212281,-21.22623,1.2653972,19.306145,15.690517,-13.473933,-8.772842,6.449036,-5.6182275,5.746283,10.187231,0.44560558,14.450118,-2.6692808,-20.825333,10.108838,6.464174,-23.487267,-6.9050584,7.7271905,null,-24.215935,9.713437,22.93152,-1.3178885,-15.461604,1.998416,-9.040057,-28.917562,5.959187,13.275154,-14.021225,-0.63427854,-1.2842213,-12.811899,3.403151,-5.4931726,-17.29932,1.1211001,11.375402,-1.630987,-19.563013,-7.1568847,2.9172792,-20.49149,-9.554167,17.035898,9.613264,3.4518106,-7.120136,-12.281919,-6.056464,-20.485027,-13.927342,0.21581803,-10.435646,7.082595,21.964546,7.216331,-7.185953,-27.749481,-13.6834,13.814315,2.4561007,11.482238,18.229856,-0.82843626,6.1731453,-10.291565,-32.219753,-8.864119,-11.428591,-17.377966,8.016315,7.937686,0.3589259,1.9775089,-1.0279862,4.334531,8.020541,10.556668,1.8471309,-20.599768,-6.07077,25.041052,17.006752,-9.906609,-17.325138,-1.8139087,-4.526215,-27.752142,-27.40122,-23.303467,-18.65488,5.086902,2.3018832,-18.85162,-17.218016,-10.327531,-5.7114186,-7.5781255,-10.329198,4.596223,3.8330736,-16.776558,-10.10204,10.315587,5.440925,-7.156361,3.318183,11.177844,-8.810246,-14.008062,4.8460956,2.1981862,-7.7493606,2.9920483,5.7445083,-7.038618,-6.119685,8.4668045,null,12.314649,-30.458536,-14.239039,18.197893,-8.526062,-20.42039,0.03792093,-3.5064554,-16.53317,-8.85548,-5.5632367,-25.657738,-22.132729,11.207392,1.2771505,-20.752293,2.0264454,0.2795555,-22.722176,-11.847645,-12.266595,-19.2445,-1.7396027,2.880402,-9.868051,-24.667376,-18.731918,18.639372,28.132938,6.4757595,3.4503229,5.245056,-3.3743184,-14.009264,-10.641282,1.313365,-15.929198,-25.15496,5.294509,14.349807,-4.5629754,-20.258844,-26.30002,-14.604313,-6.261186,1.9265076,14.725078,3.9238524,4.614951,22.802107,16.32207,10.786089,5.280732,-10.946761,-5.8745313,1.0243676,0.02638118,8.390817,17.12206,26.324575,13.585025,-20.442823,-26.751852,-8.095327,12.464779,12.2376,-11.522536,-5.346499,13.571129,2.9023411,-2.4506354,-5.552748,-12.998916,-1.6227338,-4.146272,-23.492937,-15.251456,10.596282,10.351017,-16.85573,-22.207174,4.5160413,26.512125,17.562746,-20.449446,-13.79867,37.543015,11.657178,-37.39291,-0.52427846,27.410624,0.11893144,-9.773713,10.328258,16.116753,-15.059173,-7.928714,42.816788,20.274725,-16.972181,null,5.139208,1.9179128,-17.09453,12.649675,22.638744,-9.945684,-11.636384,7.5544434,20.921463,16.495424,-0.5895074,15.3503685,14.483971,-29.882286,-10.1828375,43.31521,19.202303,-21.646435,-4.6664977,26.799557,23.949133,3.2056808,7.243872,21.613367,9.29765,-7.3872237,-1.3349096,3.7640796,-15.04319,-25.555153,-3.2292547,5.196167,-12.836979,-11.321938,-2.4484835,-7.940178,-1.6098125,12.21066,13.22245,6.257979,-3.0136375,-2.0209112,5.885377,-0.07637721,2.9405,24.726454,21.196367,2.2802963,2.3969011,-2.580899,-11.5441675,-5.8247585,-3.1936383,3.5175643,14.085803,8.394307,6.035721,7.9096694,3.809789,4.993853,-1.7821707,1.908954,27.340122,15.5584545,-18.771912,-16.551466,3.4286668,15.323923,5.0167847,-21.645716,-21.707779,2.0879734,13.35903,-2.7702475,-18.948475,8.5897,30.696894,4.988505,-3.3101342,8.034545,7.073604,13.311684,3.2320042,-10.377605,7.534106,4.9151773,-9.254015,8.945855,13.613444,0.8053538,3.2117515,7.6014895,9.013636,0.9210773,-2.7570772,18.363207,13.548226,-8.99988,11.960482,14.880251,null,-14.456247,7.5252666,-5.4373193,-25.230848,8.006064,15.534632,-15.556529,6.362276,27.254663,-8.998584,-10.96355,17.475632,9.266659,7.863003,17.761435,0.17759998,-5.8808556,8.0731535,1.1405898,-16.134687,-12.652269,4.4761577,-1.2399704,-19.127434,5.50509,36.789764,6.5997095,-32.99554,-18.124855,12.321075,5.487279,-20.408718,-15.132917,4.615371,-3.5377817,-9.177097,-1.7573003,-12.595148,-11.115648,15.677205,28.61703,25.725176,12.309694,1.5660809,10.425269,6.0248027,-7.6946626,-3.2660644,-7.0585017,-11.388325,-7.820791,-16.893547,-6.698431,11.390073,3.15651,10.354158,24.435081,17.291512,14.343735,1.0907823,-17.716263,-12.788135,-1.8885903,11.437702,8.898608,-12.64519,-0.045204632,13.702401,-0.8240109,16.60262,39.44294,27.921782,23.056992,18.089104,-2.4540887,-5.510252,9.185064,3.0472274,-19.116892,-1.937269,27.74362,3.967625,-17.155354,1.9829544,12.043017,15.365127,11.088165,-6.264413,1.7042043,8.410664,-14.063212,-16.45586,2.6442425,-0.20430899,-13.512274,0.42804757,17.255733,-4.806662,-14.349572,14.324027,null,-36.28141,12.338305,36.606266,-26.793455,-14.760329,36.496155,15.889947,-4.6480227,8.106913,11.210991,1.167438,-2.0928187,10.091503,12.839228,1.7598237,0.88185585,12.013101,19.54245,-6.350754,-29.121216,16.909986,51.524113,4.247123,-30.01031,0.324059,15.253134,-22.119215,-27.687765,12.844312,1.0122775,-20.968662,11.706017,6.658053,-21.936506,-1.8624399,-0.14159277,-31.715769,-39.955734,-15.846487,14.851802,2.8629868,-33.94312,-43.116734,-33.43409,-6.6598167,13.461849,5.555354,16.95062,33.167763,23.103056,16.863594,3.8831232,-13.737403,-12.974704,-15.312402,-20.102142,-22.77292,-24.184263,-15.3364935,-20.656382,-19.051971,15.508703,18.292828,-12.10086,-14.352242,-2.3517976,-2.3831544,-12.541709,-15.563032,10.987792,33.610523,13.688032,-13.999141,-6.5071454,14.209261,7.086741,-5.4143267,3.5474846,-1.2476254,-15.092657,0.56172,13.877109,3.9990351,4.6926985,6.347934,-10.854185,-13.797382,-1.3460356,-11.15895,-13.443585,16.527273,10.180919,-23.579882,1.7131739,19.255756,-29.767195,-21.32023,33.778408,-1.7922714,-45.37044,null,28.03585,17.492836,-27.355644,-9.344572,8.98578,-2.4234207,11.390223,6.252371,-12.876308,14.424288,23.649874,-6.334459,-4.175111,9.199947,1.7588502,-1.4907604,0.107472904,4.503217,10.397093,10.010888,5.170629,-5.7000666,0.4688031,17.231384,-1.935513,-13.961066,18.394392,27.359446,-4.9516125,-23.839266,-4.385607,16.060854,-3.251107,-16.444445,4.2550097,13.860593,10.003241,-11.662968,-42.927765,-21.0579,24.518753,38.884407,44.745647,35.661568,11.825665,3.9653795,-0.8364729,-18.154516,-37.61514,-37.847164,-27.671124,-33.3014,-15.637252,27.09883,30.628899,17.60563,19.965391,9.390826,-8.607003,-17.817339,-21.945951,-22.17474,-2.7296104,34.135155,25.865248,-16.110327,-13.601433,1.3875344,-1.2667094,5.39015,-1.7619096,-9.933665,11.756861,29.790764,22.631733,-5.572969,-23.415577,-1.253323,20.909584,15.0271015,1.8694224,1.7570548,20.04496,23.763128,3.0213525,-3.767723,10.821312,22.78282,12.318254,3.9912052,14.670968,-3.9025393,-16.606003,19.388168,15.872095,-6.0491533,18.563364,6.3777213,-20.548698,8.309916,null,15.433403,-16.653051,-22.22058,5.1430883,4.487985,-22.186867,-17.53231,7.600482,-1.7139994,-26.56781,-23.359022,-3.637144,5.169099,2.6188037,8.177326,8.677097,-14.476691,-15.538621,17.434872,24.898891,0.63642776,-9.300671,9.624098,17.407766,-9.951206,-16.845577,11.405597,21.064716,16.344908,8.364355,-6.7847877,6.5880384,36.653454,40.31137,23.244522,-4.375946,-21.85672,-3.3239074,20.789476,13.274078,-6.412258,-15.937212,-34.243183,-49.433773,-25.32993,-5.3283834,-16.170618,5.5871353,50.699448,51.378216,28.715067,26.506838,24.261528,-1.4818858,-29.06205,-45.561996,-55.973984,-37.006783,1.6444685,14.52571,3.7425156,-20.057526,-35.129982,-8.675001,17.245516,12.50686,7.0268097,3.5242445,8.594708,15.469099,0.29789665,-2.0265815,8.504533,-5.219239,-10.875447,3.0366547,1.7403338,-11.646196,-12.241059,5.401614,11.086401,0.47924417,4.21897,-0.5521828,-10.521447,10.817314,8.772773,-18.661808,0.27011505,10.178741,-20.570343,-9.580725,10.976383,-13.5021715,-10.862438,15.3139,-3.3061085,-20.069595,0.5993053,10.025105,null,-6.2243037,-8.804943,17.575811,11.440966,-12.243717,-5.1381197,10.30669,2.3467643,-8.270646,2.2042053,13.275949,5.975963,-7.315293,-15.7424755,-9.719761,7.7351694,10.207398,-2.3534994,-7.395638,1.3898151,14.919893,12.969378,-2.3952556,-6.143089,-1.7278178,-2.06486,-1.1612731,7.6073866,18.814816,14.015238,2.6565592,7.8062377,0.25949675,-22.184984,-3.2190347,37.89131,37.634438,5.9681883,-22.650373,-34.70848,-25.713636,-8.905448,13.076626,44.156456,54.213062,32.36777,10.213563,-11.669441,-37.6833,-33.03885,-5.9596324,2.4159281,12.933137,45.840546,60.93244,41.986294,15.673315,-4.6964917,-12.023924,-4.260946,0.8710408,8.443601,30.115881,21.837269,-26.475088,-36.39945,0.854104,6.0425043,-25.140139,-38.38623,-24.637777,-9.299963,-10.539389,-17.466242,-14.284456,-6.2289267,7.4464803,14.524546,-6.651326,-22.660091,-10.884605,-7.241578,-5.4616375,12.095812,8.535958,-10.113515,-7.427058,-0.88236934,-1.2985587,0.009174141,3.4405224,18.17141,15.434071,-12.422756,1.8078908,25.745571,-8.372081,-18.38827,9.797778,-11.498199,null,-2.1647868,3.310047,10.321554,-6.771419,-28.435938,-9.77527,6.7166224,-14.556581,-18.99415,4.3826,8.0610075,-11.417505,-20.489407,-0.8394358,16.236362,2.6593995,-7.4118414,-4.1138053,-13.173285,-8.9957,17.235191,11.369191,-22.999535,-15.26076,28.912926,33.779655,-0.11435643,-10.284318,11.770779,31.514793,23.705193,-14.301172,-45.46269,-20.958256,39.22225,47.451817,-11.633653,-45.110275,-16.479479,18.260368,25.168213,7.1188617,-15.014956,-24.125925,-42.640244,-69.09115,-57.79513,-25.005816,-33.092827,-56.350685,-27.302053,12.49247,-3.174277,-34.65405,-42.758396,-35.11101,1.5385658,47.144062,50.615498,15.901866,-19.726028,-28.67888,-10.565856,6.677988,7.7332234,-0.5601266,-6.0147147,-6.9217753,-13.273534,-12.036125,4.1244884,1.257565,-19.53696,-10.248335,20.666082,15.685484,-11.820387,1.2119212,27.007792,5.0189786,-19.088005,-4.942812,-0.36499536,-3.195047,18.424519,14.896854,-14.21913,8.329454,39.75169,7.8409586,-17.671686,-1.1659056,7.412261,11.417709,6.556803,-13.249912,-2.6535475,20.092487,11.914575,-3.3267937,null,10.939814,14.510618,-34.735676,-9.662887,30.191988,-2.4155922,-19.693832,-10.16469,-11.389702,1.473951,-5.4739327,-24.824903,-1.7881622,12.96058,-7.3967433,-11.650839,-1.7269266,-0.5769153,2.669264,2.7564993,-15.429687,-17.533993,18.635887,32.761806,-2.319488,-34.26092,-31.306042,-2.6680486,9.070408,-19.096224,-32.54145,-2.8541934,24.547785,10.245125,-37.103676,-50.880985,0.082221955,42.73345,26.66188,-14.010061,-42.19287,-52.33159,-45.982605,-19.121752,12.81602,30.120758,41.640846,42.314392,25.22489,23.725765,44.148018,48.80009,37.56532,41.613655,42.38403,2.5076349,-44.69563,-58.486816,-46.861145,-0.045459,57.270134,42.28719,-31.828632,-65.2143,-26.34761,28.545406,35.401867,-2.631637,-22.377508,7.335578,39.43824,22.581224,-8.935961,-4.2729883,11.03809,10.078293,7.3907037,12.854708,24.786154,17.604847,-11.992374,-14.686378,-3.3126345,-16.446344,-4.2923284,27.113796,-0.55081755,-36.582314,-9.646291,14.211891,-4.106464,-14.925554,-0.0064065987,8.899468,-11.653886,-14.693444,20.517136,10.071559,-20.674911,8.36972,null,-11.880563,14.679259,22.872078,2.6323295,13.3670435,13.371653,-1.0185139,1.4771334,18.805033,26.407167,-7.400493,-11.078838,38.26939,13.592587,-29.207787,19.07586,25.311262,-24.827335,-4.819456,11.412783,-17.804325,-1.555993,23.048082,-2.143399,-28.911114,-20.695894,12.047025,22.918575,-12.127928,-29.87852,12.222376,45.80306,2.833189,-53.98855,-27.912565,36.56632,47.181316,8.270022,-40.963882,-54.81044,-0.3229625,62.976974,65.02944,29.69722,2.0490625,-23.826197,-62.55362,-85.20499,-67.00902,-45.69389,-60.11771,-89.44887,-93.81013,-62.69056,-11.572406,36.571274,59.662876,51.996544,18.63684,-31.760033,-54.816387,-11.765252,55.19175,66.2904,5.9967885,-32.986893,8.498945,37.828617,18.341368,20.589674,18.878094,1.3901403,26.708483,38.163216,-2.966175,-2.5798345,44.31797,36.59885,-7.6395493,7.4040484,24.424166,-16.176126,5.7223516,62.398926,10.725164,-28.389107,24.069006,24.276186,-17.85578,-7.8862543,27.691032,34.678783,-6.651138,-21.724049,19.536806,6.51456,-27.723045,11.714581,26.474762,-10.105976,null,2.9629767,1.3493645,4.3661337,16.119284,8.987306,-4.9001436,4.4104195,22.09815,0.5507138,-32.06323,13.742362,60.738487,-14.289422,-53.06179,45.127083,57.217537,-26.102514,0.71095437,37.274086,-12.267636,1.0287325,41.879715,-4.9892917,-30.078821,27.474525,45.13324,-15.166462,-24.992619,42.99399,44.727856,-16.878603,-18.753181,12.176221,34.547363,51.78866,7.990039,-60.60539,-45.841328,29.821758,66.81415,27.134207,-38.98029,-73.2949,-72.01283,-39.363617,10.051623,47.27515,76.36651,100.395744,101.53241,80.26231,59.162846,43.226955,-2.5090487,-71.917366,-98.6368,-74.0667,-36.90237,10.072892,54.157955,30.991825,-60.780357,-80.55364,23.389618,82.13857,15.26312,-47.011295,-13.316066,54.663574,49.010296,-14.168881,-26.087141,13.632253,26.162062,-9.953276,-30.90522,6.4072886,6.340926,-32.716633,12.632712,33.644474,-36.072285,-9.824051,48.206806,-12.61653,-39.728104,6.8482704,1.7301501,-13.242822,1.2470163,-0.6547329,-6.132329,-7.6444154,-18.897852,-19.737984,-7.5400515,-4.459977,-6.032412,6.1786013,10.793737,null,7.09436,-46.93777,2.6571653,26.951933,-20.980093,-9.026396,9.670226,-7.6783433,-4.8954782,-10.977202,-13.075542,7.4103084,-11.352023,-22.502253,21.566715,2.213301,-61.903885,-15.449355,41.537,-3.8535616,-10.756515,22.706383,-9.488255,-22.42092,16.182999,15.584515,-19.766804,-15.770699,33.804005,30.21723,-24.5594,5.9537396,79.48998,56.90152,-31.52778,-71.478035,-0.4108206,93.746185,68.49727,-29.390667,-62.722225,-9.884176,46.63714,42.593872,12.387431,-20.51492,-66.416725,-87.719765,-86.76685,-92.79148,-94.19889,-88.546715,-60.06115,-7.1382704,34.949913,55.66791,37.54519,-14.3860035,-49.67824,-46.49293,2.724355,57.90233,41.44542,-23.293047,-45.91659,3.1572006,44.43686,0.41836265,-42.56056,3.2665117,51.15291,13.1027155,-52.06182,-34.81956,24.55314,4.039719,-35.16624,-10.966091,-13.065354,-40.20263,2.3194246,25.228222,-46.193443,-49.339485,29.497612,-3.9040866,-57.604836,0.17060532,6.558956,-30.834631,-3.9753506,-4.048792,-6.9865384,19.343258,-6.960601,-16.550667,10.057512,-3.6827657,-14.950156,-5.2816257,null,1.7032467,14.308036,20.14378,-25.268545,-8.934002,23.355337,-19.581636,4.41075,26.430439,-12.375547,7.067886,-9.40175,-20.551947,39.27181,-9.418248,-41.264816,41.417393,19.060936,-31.99603,9.122475,14.989105,-9.348982,3.6397238,18.604355,-1.6238898,-19.617504,22.592949,47.837673,2.3053007,-6.2537746,37.79328,33.023087,-27.599045,-46.958473,27.122179,105.81535,73.12804,-36.981747,-58.873177,44.272987,102.44448,61.488163,10.133645,-42.17216,-72.76909,-46.154705,2.7735195,46.268185,59.373623,52.90114,48.170452,16.720446,-15.166796,-42.287357,-87.434044,-67.797585,25.263735,93.42418,86.21354,1.2018012,-62.97637,-16.17161,69.95208,77.90304,-12.961289,-45.96251,54.169613,73.891136,-28.304998,-43.501316,20.269863,33.36101,8.027849,7.1126094,26.140219,13.552661,-3.7513726,18.955696,12.967463,-31.43175,-12.536725,31.92798,-4.8857265,-33.04338,10.27682,9.282076,-12.60984,3.790888,-4.4349055,4.3989787,16.710075,-11.876767,15.206793,14.402168,-36.46912,18.041204,27.171947,-42.888187,-0.5402379,27.689865,null,0.9866186,10.228528,36.993843,-26.631832,-28.70419,48.32713,-4.5380716,-27.947086,32.103287,16.136042,4.48027,2.5400338,-6.6784215,20.645987,-8.935316,-19.060278,42.03576,7.4513555,-40.37271,11.053993,30.343588,-0.45208353,-9.464526,-9.339732,-6.253721,5.5700593,11.260203,0.19744916,-20.695778,-20.264118,10.061031,-6.6333265,-62.7556,-2.217201,97.558624,24.105421,-85.91683,-35.55618,74.48511,82.62918,-6.350547,-35.731384,21.444786,38.34081,46.114098,80.18962,70.88831,40.636456,2.8740406,-36.011074,-15.011289,41.209873,70.34144,51.725914,26.424248,32.28912,-5.9015813,-62.179176,-9.0298395,82.94606,80.4969,-7.4565144,-74.27352,-24.292572,64.963806,43.637596,-40.137543,-21.495905,61.382847,42.02935,-23.915705,-23.781303,-4.4992337,5.4069033,-8.066594,-13.450066,17.546797,-10.35873,-12.4634285,40.37801,-32.667683,-49.372795,54.51507,2.8716674,-51.856205,5.2103567,8.455579,21.384348,13.688778,-29.919785,11.938156,14.295936,-17.11367,19.024609,18.916317,7.1635714,8.131204,-3.2075212,13.862911,-9.068471,null,42.73251,-6.1246047,-9.831651,15.883284,5.4791546,-23.803513,-11.132275,42.221115,11.497756,-31.367105,4.312671,-3.6562998,-16.994856,-7.3244557,-20.313387,12.327549,-4.5225196,-44.18478,24.320175,8.469075,-54.142838,-1.3630233,1.5907655,-10.331625,30.37742,-2.6968627,-26.131287,-1.3306412,5.1426134,23.008589,0.876629,-29.126493,22.42996,39.62313,-29.597322,-44.24789,45.28199,81.007675,-15.9289875,-70.11864,-4.639412,70.23378,99.0075,51.856594,-37.59294,-72.208626,-50.32215,-16.533148,5.954646,21.673098,21.648172,-26.709131,-63.544056,-48.0605,-6.2160835,87.83673,151.23322,70.35081,-59.577328,-93.00567,6.557536,95.5967,14.617308,-77.49921,-9.4089775,53.76697,-2.5379012,-39.28602,0.8039,21.91486,8.172982,-2.6189718,-8.183218,0.2029083,-5.9038224,-12.54233,10.088697,-10.790369,-10.635303,47.21211,-0.69985104,-51.048897,3.6606052,-1.1802953,-18.465157,10.457359,6.5009327,5.540874,-13.775562,-11.6874075,32.12987,-23.391893,-35.58845,50.473118,3.111066,-48.45145,14.892373,25.822172,-5.0964394,-6.473387,null,-22.115324,17.929874,3.5522966,-33.83256,20.583376,16.00119,-41.61662,19.82079,35.79442,-35.831978,-18.38597,17.806425,0.85766476,-23.798466,-5.0136704,42.341408,-6.244906,-34.50424,44.767857,7.405387,-48.125313,25.095287,22.715155,-19.51374,-1.3937657,-10.411009,3.9391742,28.282152,-2.6792994,-15.7388525,-16.286861,-11.593518,18.800097,2.5989432,-18.174322,43.46905,66.18039,-41.41627,-103.04457,-2.6661663,72.52149,0.9261957,-74.26175,-33.813423,65.46192,100.20097,68.94437,66.531136,78.67583,66.96622,69.4898,86.167076,84.01681,68.88151,58.772648,10.359608,-56.30615,2.7229474,101.34641,34.949425,-74.5709,-53.542236,36.107716,57.15506,-10.848587,-26.927523,11.985833,4.520782,-6.5193343,-29.27736,-22.205147,49.101177,5.842903,-40.97555,35.92942,6.7138853,-20.068287,54.10655,-9.351027,-50.662975,45.258965,29.64615,-36.777767,-14.573929,16.729172,5.661492,-22.433788,7.030115,35.149147,-17.946676,-19.922052,21.913782,-12.363895,-31.61936,8.467507,14.296012,-6.885085,1.6777245,6.0158887,-11.954752,null,-25.687565,21.106512,-9.127025,-7.550706,19.773237,-13.529445,-6.6620045,11.229554,-32.561325,-18.092417,27.103271,-3.0173218,-27.75461,7.638548,20.67762,-41.134827,-37.646004,56.095863,-9.584089,-89.41518,41.419796,34.64446,-83.01062,11.267005,36.892315,-48.38962,4.0365443,-10.464664,-87.24156,-29.791399,13.124843,-8.139631,-16.549377,-2.0924509,35.959785,-2.4310014,-69.77453,-25.85995,19.53263,-16.659035,-68.22692,-67.403175,25.289267,78.97197,2.0362663,-54.319733,-36.003353,-42.36551,-71.49379,-60.87294,-25.570633,-24.92062,-42.37497,-8.064641,59.560593,61.84674,-19.01045,-77.382645,-42.969727,35.041935,47.520035,-34.01575,-55.961166,32.202023,57.31573,2.6475723,-22.869013,-7.968325,23.057676,9.080739,-9.091572,30.544304,16.368631,-9.00791,8.971656,-39.871944,-17.954704,69.17813,-1.5207682,-30.183924,48.818466,-2.345361,-35.6506,40.497723,34.03961,-14.585535,5.877779,37.793175,-3.0900846,-49.210083,9.065137,28.72715,-36.591908,-3.495949,30.795227,-21.884785,-3.021215,22.413061,-20.870054,-8.037728,null,-27.712528,16.900465,-27.786509,-40.507164,32.136166,6.822208,-26.917612,12.0105295,-4.566036,-29.453316,6.3836346,12.40677,-31.228643,-20.426989,35.832718,-6.923559,-48.07389,33.848858,13.278148,-58.538586,33.691513,37.941387,-60.306534,7.2130857,52.230907,-20.982962,-19.523066,7.866651,13.238848,30.303633,9.512001,-16.738682,-7.1750946,19.437723,14.004343,-42.719753,1.0624393,121.5828,68.38557,-50.24278,-14.010914,45.79819,20.251095,-15.432421,-16.521345,20.363388,61.73938,63.218243,35.84855,11.502168,16.619175,59.94686,78.74199,18.564428,-32.840965,-1.2455393,46.587234,52.819416,-13.924949,-91.365746,-23.75579,67.911995,8.573978,-25.141779,37.586323,41.83061,-9.997661,-35.51337,-6.3803062,9.278451,-18.55632,18.48754,27.702538,-30.615026,38.553215,47.39149,-86.101715,-13.914647,77.072624,-44.904163,-38.08711,60.169548,-1.0538198,-43.56023,5.5494432,13.989642,-15.9230585,-18.55398,1.1065745,-14.317102,-11.852486,21.171518,-19.81766,-33.171337,16.085894,-16.42781,-19.307621,28.539734,-17.855682,-21.880934,null,-12.918914,17.210203,-22.024061,4.0527997,31.481575,-23.630457,-9.41881,14.005381,-22.551104,-6.235658,17.504072,-1.1189076,6.998166,31.784649,4.3285913,-30.646042,25.57596,34.137413,-56.284306,0.7432245,71.498146,-30.705769,-11.336822,78.394875,-12.650278,-55.051777,23.287138,31.496347,3.6574512,5.831121,17.646833,6.51374,-12.928526,7.9568806,1.4812043,-9.621237,56.109634,52.475132,-12.772124,22.572224,23.363266,-73.13873,-68.435646,36.538265,81.324265,48.999893,12.524683,-10.135966,-35.098576,-46.448254,-43.104187,-33.190964,-2.5512202,30.34365,39.8839,-2.2588682,-76.79771,-52.0307,37.80746,22.230389,-11.944896,23.046328,11.926761,-23.503567,-17.74817,-13.526125,-4.741892,-5.739349,-32.437397,-35.429092,-16.287516,-5.1373343,-39.78849,-66.50178,14.87307,29.532091,-66.42579,-4.923723,61.126423,-45.97148,-31.877956,50.705605,-17.684677,-32.603497,29.055159,0.4662548,-26.689503,6.006546,18.36926,5.0112433,11.169868,11.883716,-14.357647,7.7414746,27.209618,-18.183254,10.912286,43.264263,-33.55647,-25.575163,null,-16.293894,33.929188,12.386369,-2.0889313,12.9429655,-2.9449513,2.9680288,15.810785,-3.1396222,-7.0517344,13.748489,16.573236,6.5661006,31.52738,24.736473,-27.083136,17.091747,42.649124,-37.842457,3.6737993,62.48203,-31.57726,-34.76173,34.932743,-11.329552,-27.227156,33.938717,35.59842,-14.120487,-27.17083,15.524646,18.205378,-42.846985,-49.580914,-10.3471575,-15.289129,-47.89686,-45.917088,12.247859,26.778313,-48.82755,-46.556423,37.063515,15.850917,-40.112106,3.4736774,68.52017,95.79646,76.37131,24.689592,39.175137,96.03126,73.83157,-5.436022,-41.517075,-0.012324322,19.633467,-40.693703,-38.503944,24.096205,16.33019,5.875125,6.748434,-28.76048,-36.824326,-50.978172,-59.91778,7.862471,36.75079,-16.048069,-47.400623,-13.181091,25.660923,-35.758625,-63.348717,30.942537,5.610449,-61.419453,15.065178,10.133142,-53.39543,2.852861,18.416151,-21.111706,9.005097,24.374685,-16.486238,-21.002493,18.749092,9.201548,-18.150194,13.025503,8.476435,-16.886055,13.253836,-4.4548154,-25.07699,18.780445,8.73656,-9.486126,null,6.812596,4.5660806,-17.516891,5.777383,2.3927052,-21.47978,2.4820874,3.9492192,-9.578827,11.403668,7.831637,-15.323776,-5.9096994,7.170503,-15.79672,-21.801172,13.872688,-4.0344753,-25.459383,23.886402,1.8341739,-39.330025,14.741215,-4.491259,-60.214134,-8.579592,12.48769,-20.858828,-5.8370924,18.60187,10.668012,-15.02645,-13.064028,9.210667,1.1116848,4.433245,13.117846,-0.5398544,17.79896,27.255863,28.439322,77.805664,65.665016,3.4397974,27.569489,61.493973,28.398457,-17.848637,-48.64702,-40.76398,-21.093384,-30.572775,-0.6932938,65.76753,59.370117,25.893837,58.87499,74.636284,25.937712,6.9970155,32.18593,34.287746,8.651493,6.395509,26.665121,3.8011918,-26.861368,7.0669003,30.102213,-3.2129486,-23.36225,-4.1038094,14.546014,-9.04478,-14.120298,25.735468,-5.9884467,-35.774094,33.215305,23.99559,-38.20546,4.957719,25.413694,-11.199335,3.8721204,4.507055,-29.289795,-12.621104,20.96607,7.2349,-5.4796658,20.476696,20.498592,-2.6129596,6.6715345,1.2755005,-18.09302,2.281113,17.677153,9.477975,null,17.96807,0.3301149,3.4859734,11.7199955,-9.230569,-14.074475,5.157571,-6.984018,-25.75973,4.591714,12.102758,-32.10153,-18.178026,23.096025,-5.893567,-22.98408,-2.29382,-23.531357,-29.464653,10.289096,8.553104,-16.050179,-11.147112,-12.076003,-20.645102,-10.78172,-1.5103828,-6.1277084,-9.405743,-3.555706,-10.36564,-32.587543,-11.842637,40.79923,24.687677,-22.594532,-15.630103,-42.776962,-93.23123,-23.139736,46.584476,-0.83882475,10.194549,44.955105,-77.19082,-151.59286,8.843292,191.47278,240.85822,244.44911,252.8609,203.20763,48.885883,-111.41832,-109.448074,20.047333,68.256744,17.707466,16.620266,34.51463,3.6952586,17.466436,48.465847,-3.3157308,-29.580633,25.927553,32.513607,-18.737837,-14.978633,29.000961,11.824379,-29.597002,-4.308989,14.686261,-8.961,12.588653,26.546135,-7.9592137,7.805371,26.51329,-14.677092,-12.087143,23.249554,-1.8503243,-21.739027,15.355176,24.923037,-4.2367992,5.586271,23.179996,1.9530971,1.5110523,12.398,-3.5942235,9.651103,25.795126,-3.9198205,-7.7844753,9.731512,-6.980953,null,18.31624,-18.023085,-14.536988,5.9463634,0.47754633,12.30114,11.434631,-17.339111,-2.416815,31.979961,2.9336145,-22.865894,15.229248,10.430924,-28.223764,0.50107455,14.671235,-12.831527,11.41563,32.485035,-3.2393627,-17.912813,2.2139027,-6.418592,-22.344595,8.277552,16.485468,-26.011393,-19.81545,12.969991,-4.3488736,-14.237001,24.484745,31.708822,-29.682547,-28.314766,26.34152,-37.46022,-68.51767,20.995012,11.7909355,26.100264,83.41358,-94.98015,-179.11545,75.24545,145.31657,-113.82675,-305.81512,-348.65945,-315.2037,-94.25491,153.44629,33.880344,-190.68689,-79.07709,28.175274,-34.779255,20.503769,28.511808,-67.84207,-26.88873,13.21092,-13.105933,29.937302,48.830128,2.8695116,-9.526004,12.619092,12.394268,-4.1573715,14.194959,27.011068,7.288808,2.9319844,-8.349851,-11.676276,8.84623,0.82014775,5.7341776,21.847784,4.8163447,-2.950313,-15.9977665,-8.925136,38.19664,20.618153,-10.673218,7.468856,-14.413124,-37.936924,-9.684377,13.241371,8.245774,-9.59223,-5.606426,-4.6381936,-25.478855,-2.404474,11.00612,null,6.751537,-6.235061,4.7231283,-14.038839,-5.926703,3.142741,-2.9880776,14.023571,5.099873,5.4066806,17.568775,-2.952785,-3.476914,-13.983488,-11.150181,21.420427,-15.862964,-14.412898,31.36512,-2.9247646,3.7712557,21.310509,-11.691993,16.249826,28.8236,23.278606,42.582237,-3.5834126,-19.420502,32.758476,44.355503,23.735695,21.823557,60.81053,38.822166,-8.192255,40.36236,16.341019,8.303871,92.50934,22.598581,17.851738,44.1972,-99.717804,37.01908,114.467186,-207.8776,-70.131,434.92697,593.47076,403.7234,-53.89539,-199.37662,104.322014,48.93776,-106.993385,32.10238,28.483963,15.734027,57.254948,-55.24379,-48.637436,20.01103,-13.96659,29.6277,71.158936,31.0745,12.635314,23.809313,29.822937,-2.410196,-1.7117672,40.51908,13.580161,-9.144636,17.611855,9.992887,-12.097428,-1.8893898,39.612743,42.094486,0.23162082,13.191196,18.96179,-14.073466,6.407391,15.176979,-12.857461,-1.2211143,14.223358,-3.947362,-20.650143,-0.8599753,17.157734,1.966124,5.7770166,3.2826333,-10.080355,14.790196,-0.50856286,null,-0.9797902,-21.981678,9.71407,5.427201,-1.3041425,5.536983,-15.65333,-5.711643,3.7778983,-9.778043,-1.009224,13.829905,18.01077,-4.4161854,-2.4837623,22.871271,-9.7154045,-5.992065,33.530045,13.165481,7.8758235,4.1239896,3.4657552,37.93906,27.779078,31.43741,35.003643,-3.4971876,23.312443,36.038498,13.823591,13.879799,-4.982211,16.861422,-6.6755195,-35.480648,38.507915,0.9721157,7.600895,62.5858,-57.074497,-16.759039,-34.683697,-111.77656,95.46088,-185.81265,-188.3719,574.9823,-293.37473,-1457.6614,-209.84186,577.57825,-225.577,-185.2922,94.931,-130.7561,-75.18749,-46.65403,-46.76589,56.452263,-29.36399,-30.477207,13.366663,-43.857944,-0.980135,12.0623045,-25.348867,-11.687454,5.1939106,22.365818,-6.0400386,5.506186,46.14435,-0.9904758,5.911895,16.241018,-18.269278,18.361647,-9.036823,-24.37342,35.02113,-24.530436,-33.023617,35.55617,-11.592979,-23.696066,14.8077135,2.2699106,-8.908108,-12.32071,6.806588,-0.02289108,-28.57084,7.884578,8.83685,-17.476477,13.038131,14.922611,2.6732373,-3.7952251,null,-6.259979,2.1655226,2.7836168,-36.84924,5.4550834,32.052467,-18.997925,-12.384088,3.7585864,-7.4293222,-12.505988,2.8885238,24.53996,-27.335087,-24.634514,24.30378,-38.1439,-6.353251,43.697567,-46.06072,-13.282894,22.776087,-25.342018,25.671482,11.265152,-21.3118,24.098665,-3.9425778,-19.377872,-10.097649,-5.0731664,1.6519443,-43.592945,-17.363504,-21.598621,-40.910877,64.53737,-4.0599566,-55.2307,9.452138,-100.109985,-69.17153,-126.539925,-163.53282,109.163155,-300.2656,-134.42894,570.1586,-2029.1487,-4614.628,-2021.9252,532.7049,-144.3805,-276.05542,62.351475,-206.54182,-65.71729,-34.594803,-154.03027,-20.23583,-50.97215,-23.396883,37.379814,-50.622627,-14.595991,-14.995867,-59.725956,-19.69022,-18.21377,6.9887586,5.10561,-22.00307,16.432163,7.994234,7.785918,1.8166234,-40.645233,8.817856,5.533561,-32.076405,23.734118,0.04171428,-31.104586,15.186102,-1.0434344,-24.01351,-6.6598306,5.406483,-5.4799714,-25.390089,-0.13226637,4.69882,-11.902201,10.407193,0.26930594,-2.4959652,4.111729,-27.726942,3.691739,23.80609,null,10.040531,-8.310038,23.099245,3.3373678,11.107781,22.646927,-9.127289,6.5797896,7.7824273,-3.456407,10.6072235,1.286036,-1.8719132,-8.236595,15.862758,25.348577,-41.991104,3.3024921,36.11185,-49.056335,4.2237306,21.456089,-45.617943,24.380608,29.86747,-15.478654,2.5928595,-16.546377,-9.765451,-11.3784485,-11.605232,-20.275215,-82.02099,1.5598466,12.019656,-69.834595,35.715263,-26.040173,-73.2727,0.5570707,-164.67458,-31.73171,18.130598,-235.32378,104.45377,-51.877514,-357.3678,482.12943,-69.75804,-1293.8746,-144.71382,526.92413,-320.8243,-63.859936,213.33902,-118.74686,26.084318,-4.0232205,-102.98639,27.827003,-52.446056,8.145315,72.64398,-53.791233,0.6547244,10.093409,-46.715492,13.535435,17.90727,-6.0950694,-17.558695,-2.431237,11.32596,-17.619932,38.162006,20.111206,-47.913166,40.693874,8.6029625,-53.703285,38.867004,0.16597645,-28.161394,45.4051,1.6983504,-25.327919,-5.7224526,-17.567068,-1.2085463,11.130963,16.204388,-2.713389,-10.62093,27.077915,-8.940126,-19.375998,38.965954,7.4815993,-6.886707,22.717903,null,-17.190937,-12.404691,35.270325,-11.8713255,-0.8441345,34.71318,-4.4477386,6.093622,16.643816,6.3381557,11.326379,7.5236473,32.07822,17.242844,15.882621,45.433723,-22.697224,0.48106492,43.30711,-49.180286,12.3762,57.606155,-45.172832,-1.239073,7.8928347,-55.529934,-4.2877584,8.641891,-12.605966,-2.3895686,17.077806,-13.520424,-81.28953,8.212057,18.77949,-66.23461,45.55199,-26.678957,-90.08203,60.154594,-110.06913,-55.159725,161.39188,-109.58107,46.769947,251.21762,-202.03885,-122.672745,249.55663,289.94925,283.9316,-129.96338,-194.63867,255.75674,-6.2513437,-149.6245,138.70853,-79.06322,-104.65997,63.85405,-70.6227,22.912483,49.109653,-77.20564,38.60346,9.458408,-69.19789,12.723907,-9.709085,-30.710484,3.6359022,15.777807,-6.920636,-32.698948,45.659195,19.129738,-57.83092,34.055588,2.1741195,-44.633717,53.794018,-2.6123645,-43.61613,19.531918,-11.390146,-7.7668777,9.108718,-10.977257,7.292837,2.7092662,2.4897277,-7.08277,-20.283169,19.285717,-0.12971917,-8.792833,27.37551,-16.32122,-15.959701,15.4943695,null,-12.371325,-29.17694,21.76583,-22.71397,-22.533518,15.37305,-7.8054495,-0.71820766,-11.178178,-16.947908,-7.492704,-24.020475,15.307054,-3.3722792,-29.39724,33.255253,-20.78992,-28.802332,31.664808,-46.475834,4.18729,56.094257,-71.18628,-29.787035,35.913345,-28.493845,-13.865521,24.419947,19.675201,-33.090065,-23.14505,35.269398,-51.479897,-12.054284,58.34185,-82.10899,11.9981,60.394802,-130.89946,-16.851927,0.8042334,-87.47533,135.4941,35.562584,-162.37175,92.17922,182.64447,4.7301054,-105.063126,-141.84921,-126.77853,-68.85791,123.43861,87.76954,-171.2842,29.396278,138.60635,-137.49777,-23.866064,43.019455,-129.34659,13.716099,38.817394,-62.553616,42.76578,8.900786,-57.262608,5.590407,-1.8783271,-38.372147,-41.485203,9.856739,9.444279,-51.880802,-1.2412196,-9.566467,-44.36143,30.59286,-17.37786,-35.1343,41.191196,-20.480217,-16.975187,22.400951,-41.022907,-10.104195,19.78628,-17.30127,-8.712902,0.22993176,10.147811,-11.948174,-25.088364,16.158155,-21.67989,-33.66114,13.593305,-24.385368,-17.939043,13.062806,null,-8.501454,-26.83623,32.65704,-4.337085,-17.555159,29.505005,0.5098781,-13.80086,4.6008306,10.334545,-8.268339,-27.194225,20.888952,-2.571681,-40.810184,40.217754,6.4433107,-38.079037,33.97774,-4.8444867,-10.329373,31.01079,-29.231895,-1.7128115,19.555391,-26.929134,16.197254,18.30408,-21.672071,-27.55966,-6.3799543,36.93074,-14.301817,20.466257,100.20541,-59.95005,-43.690857,102.62736,-32.37069,21.494558,169.04324,6.2208033,12.237351,138.08102,12.352449,-79.60277,-1.1453216,125.90918,205.94432,187.84734,176.95555,160.37814,34.76634,-80.57282,4.1521163,105.27155,17.837252,51.62814,125.353935,-38.887337,7.5859666,131.4834,-58.052498,-40.453148,95.611855,-20.679838,-14.382475,39.626144,-31.340813,-13.2994,15.088395,-3.2486882,-37.398594,-33.010044,32.76745,-30.219687,-48.71426,54.774296,-3.8443701,-21.123955,29.811693,-41.578293,-3.6719687,35.252224,-28.874153,12.676248,19.345217,-10.668541,21.307625,-0.6150114,-8.744826,-1.1101762,-8.014452,8.814412,-17.821619,3.4741242,24.495153,-43.50955,6.867645,48.387497,null,12.70432,-40.914997,28.170864,17.768908,-15.113607,14.680767,-2.746638,-10.853569,-5.9251666,8.782277,22.008415,-16.66612,9.061222,18.259226,-37.114136,1.3606396,-10.869567,-37.75148,36.67457,-11.944667,-48.70616,12.739349,-35.631077,-34.26556,11.298478,-30.227774,-12.436109,12.447142,-1.0446103,-24.098982,-57.71442,12.876717,9.420937,-70.043724,47.65571,38.032963,-115.934555,15.894985,98.885635,-28.011677,31.51071,111.124146,22.733952,19.001911,70.483635,13.0467,-49.68652,-51.594112,-41.18114,-12.291543,-3.5699618,-45.253,-52.404827,6.8935666,45.179543,-18.45386,-26.729067,126.68802,105.29602,-25.41364,93.434265,62.21938,-145.57465,-18.613878,73.059456,-56.733887,-0.5523643,58.03896,-9.735276,-18.340622,-3.878046,17.78714,-3.2360954,-18.370192,43.843166,10.511181,-15.024885,33.81627,-15.024458,-8.71212,30.23228,-22.26594,9.230459,24.755465,-24.160713,22.309984,33.108154,-6.009922,12.897148,21.401741,3.1510506,-7.0015717,21.80093,17.468876,-39.49065,10.4889965,36.973988,-39.60448,5.934929,46.179955,null,5.982833,-44.37382,23.63485,9.928399,-43.894905,5.435702,12.802069,-17.552582,-12.249104,-8.449036,-13.957926,-27.618505,-13.605901,-9.516642,-35.42246,-10.48685,2.7088096,2.5382257,21.065392,-29.332546,-27.210312,21.668938,-33.957935,-19.75899,35.051872,-28.693924,-42.269478,-7.4404387,-22.022533,-39.46454,-30.636944,57.947353,54.677006,-87.695755,-36.346527,39.559452,-85.40447,-41.53572,113.911865,53.12344,-22.291464,6.3928847,-5.184858,-44.599873,-62.422432,-55.499996,-25.157616,2.0764775,4.568207,-20.837173,-30.283,-11.633919,-35.010384,-82.53341,-65.99565,3.778452,42.990498,-5.325339,-41.052788,37.77011,37.839058,-68.148834,-7.654138,46.281757,-81.74521,-54.948246,63.46422,3.9873226,-37.11084,-15.284827,-24.61687,-11.292646,-20.546928,-13.528937,-1.0255624,-48.704666,-7.492387,24.04066,-44.609005,-5.461609,15.382469,-45.976414,-7.6497746,-1.527987,-32.690235,9.785107,4.6574984,-14.326194,4.6121907,0.2942306,-11.24364,-21.724813,8.848383,23.083868,-25.433912,1.2682562,15.504738,-29.252962,13.44284,11.519229,null,12.410545,-18.758638,10.747993,15.328725,-7.374889,15.365643,5.340296,-5.8388667,18.753578,20.324766,16.490767,14.648895,12.158932,-0.9854663,-13.182684,33.291836,35.534966,-11.6511545,30.540703,26.542587,-24.37465,38.16666,37.358864,-23.719114,33.753994,47.97801,-20.393791,-32.477657,-5.257429,34.65137,11.077806,-36.933903,47.029537,63.946587,-86.55365,-85.98725,38.700336,22.038162,-21.093971,26.332561,20.109316,-55.88723,-63.711956,-26.51537,-56.28875,-91.25474,-50.57543,-29.687592,-70.41129,-65.35387,-7.910894,-11.414439,-62.01582,-42.199493,3.371784,-35.493313,-80.707756,-43.07095,25.24103,44.296764,-23.3857,-64.85934,-8.609306,-25.771566,-84.39513,-13.5242,29.418823,-16.027557,-5.3791094,11.469636,8.222424,-2.920744,-34.388653,14.240209,36.194744,-51.935596,-22.502733,51.861256,-2.2549117,-19.441328,14.178134,5.9414544,7.847702,9.462743,7.3569245,10.956182,-0.20539865,2.5994015,5.465276,4.5384097,5.6793776,-9.785807,9.852608,20.665573,-10.042039,14.680812,16.993845,-18.416517,21.95596,14.60487,null,22.849625,2.2968485,5.1704807,-3.7844896,-11.752761,2.223247,1.9353989,5.1176524,8.902297,-2.1860065,5.0948696,9.380637,-1.4709371,4.9501934,15.794901,12.008927,-7.218398,-1.7185289,25.478912,-11.884401,-23.512457,49.193867,15.839147,-44.83158,26.49361,29.279287,-35.822678,-11.496804,-2.0518796,11.535491,48.420303,-30.84505,-66.97943,32.803272,22.58218,-63.335724,-20.10364,46.131237,-11.8430605,-77.7439,-21.149809,3.4352918,-105.35496,-112.13402,14.794147,22.78077,-45.587727,-26.318905,7.8571954,1.7083507,4.0452332,4.0357656,-17.251635,-27.067648,-29.044355,-53.302437,-51.25612,-4.7210245,-13.883013,-58.23335,-11.760367,22.417057,-77.667274,-103.04759,29.923267,47.639168,-45.080875,-14.797576,37.81268,6.9905343,-13.83196,-25.837593,-0.24103457,40.358597,-16.96404,-23.93654,53.48851,6.6896024,-38.424652,26.89766,22.288164,-7.5886016,24.898262,22.633467,-1.6056032,2.6629114,17.115961,19.187897,-4.216705,-1.5120711,23.93741,8.768402,-6.5006347,3.0015688,7.4728904,6.1766806,-8.634756,-6.4460673,14.312368,-2.052358,null,4.740966,9.320234,-16.836786,-19.665821,8.60171,-1.6677301,-30.609085,-8.813316,11.328253,-19.413904,-21.90398,5.7858863,-7.2054873,-22.447786,-8.268408,7.12255,4.327946,-17.712383,0.8021888,26.149584,-26.170702,-25.964561,44.546,8.711613,-39.977283,0.88696843,9.644882,0.8394101,0.7678334,-29.8454,14.545548,83.84385,8.9973545,-55.34016,20.724329,39.824055,-29.76084,-8.692846,47.298733,8.881371,-33.728313,-11.264691,-5.4380736,-32.40801,-20.312662,14.364358,8.859668,5.436412,38.278248,43.724194,6.141718,-32.967743,-21.43496,50.287113,48.31616,-34.85804,-21.859716,7.3772526,-64.87106,-52.66069,54.467205,37.066864,-36.18711,20.380182,73.858185,-19.932623,-52.179176,49.794,32.97584,-41.036133,14.960807,24.544218,-35.78623,-9.7926655,1.1848834,-14.266329,26.41616,1.5978059,-58.7423,-13.83975,23.992474,-18.269632,-27.292336,0.37025538,-11.490592,-36.176456,-19.440321,6.7668185,-12.180325,-34.762657,-4.884182,18.266243,-1.0450183,-1.8141257,6.7501006,-8.031355,-6.5549965,-0.56892633,-12.844259,-7.6842184,null,-2.188166,31.726162,-3.4980218,-15.074079,29.701378,-0.96398526,-33.214493,16.584343,24.66459,-14.091034,6.4876285,38.681477,5.1514616,-23.842648,10.844198,24.23455,-17.688429,-22.84098,7.31187,-1.3368707,-16.190626,-3.7937317,-5.251645,-1.9264104,24.630035,8.059745,-17.273375,30.220854,45.371998,-31.990322,-48.962376,18.236534,18.739077,-29.560137,7.0514364,70.37314,36.35274,-16.366373,-6.187963,-4.9677334,-20.528732,-13.147913,2.1435313,38.724438,59.58229,6.332867,-50.277576,-52.488857,-26.132872,-3.9852002,-22.184685,-33.615555,15.3368225,40.28536,12.40711,6.497277,1.0128118,-30.021732,-14.4676285,32.97469,21.037363,3.0701036,42.126163,20.291016,-61.691074,-25.280617,51.393826,-7.880973,-55.93706,17.807016,47.58281,5.4232926,-0.5305388,8.433398,22.18841,42.797203,7.698696,-23.974518,10.387964,17.951492,-10.84069,-6.2136273,12.17476,16.992285,1.7688417,-14.368942,1.0962253,-1.2040486,-26.19833,-1.0314242,19.911724,-19.013905,-22.974049,17.672285,3.1318517,-26.764866,3.069446,14.0956,-18.735857,-11.438458,null,-14.1332855,6.1934347,21.4627,-16.288504,-14.271595,31.271582,6.340807,-29.307617,7.8573275,14.394459,-30.119207,-21.432922,15.039064,8.640271,-15.127493,-21.077654,-5.672038,3.3219988,-19.179628,-21.212894,15.790683,9.283578,-35.79066,-35.086155,-6.055051,1.7480042,-10.963736,-25.36614,2.63211,38.10041,-14.252447,-71.19789,-13.879607,47.553265,20.626692,3.4183865,29.451164,25.331203,6.9584646,20.63253,24.242777,1.6840553,0.6560595,22.380787,47.535145,66.14291,44.60155,0.5749206,-13.445025,-11.242839,-12.0242815,-4.14913,14.78043,48.246304,65.23248,27.278,-17.553537,-8.8740835,32.09448,43.011597,5.7755165,-10.1237335,22.412834,26.341766,13.715783,41.98858,32.835808,-30.70864,-30.227116,23.815023,25.717592,-16.786228,-23.063663,21.292933,29.44047,-19.449066,-15.286826,28.489887,6.6837196,-19.10259,4.09285,-0.22855118,-14.676992,9.832368,11.052993,-11.030276,17.491476,38.95813,-12.568088,-22.948973,29.575878,0.65382224,-34.65766,37.544693,42.067192,-39.424927,-11.698036,37.46403,-7.406107,-12.369747,null,-13.719865,26.749252,5.092401,-46.88977,6.022001,40.43895,-25.454567,-19.769697,16.828583,-22.135479,-16.759668,20.374538,-5.5120625,-18.816275,4.157185,-3.3000138,-14.700927,19.568974,30.440184,-28.676264,-34.61343,26.646046,8.322838,-34.756454,-1.811715,13.737341,-5.126457,6.1223574,9.419766,-7.4516854,0.36348936,22.774324,29.56718,25.925957,19.715729,-3.7647026,-34.008495,-31.35522,-6.6935997,-0.20343947,2.9474401,24.513447,26.685165,-7.838367,-27.247995,-10.814385,5.063671,6.9924846,10.263109,19.874228,20.082766,1.0637003,-15.372247,-12.898762,1.9092752,19.096344,25.095686,16.952599,-2.8476055,-20.485079,-2.5191526,32.219265,45.33283,54.798897,47.478947,6.7870617,1.3776871,39.77199,36.970013,-4.9257936,-13.772332,13.5313835,33.474743,20.92776,-18.17048,-31.86022,3.5418565,22.443258,-0.39308295,-10.019349,3.8816786,9.098149,-8.6432,-27.942627,-6.398002,27.751015,8.840484,-23.836727,-1.3108854,21.580284,-12.786547,-17.344885,27.866098,8.4525795,-21.67452,21.086847,19.288279,-18.425512,9.943112,19.59723,null,28.995665,-44.05807,-16.152168,44.032032,-9.415926,-22.204222,33.967205,11.216425,-37.60272,-13.219977,12.940449,-9.12471,-8.212578,16.553015,4.8802447,-8.082221,-9.475187,-27.687145,-8.456949,25.357758,-11.975881,-33.386806,20.860413,24.708004,-24.964796,-14.970456,12.703509,9.056513,12.62483,-2.2975688,-17.791813,19.657532,32.989864,1.783968,7.0438657,20.407578,0.783682,-5.018023,14.652592,11.352451,-26.119444,-32.791473,12.039883,42.779804,45.274868,39.182865,11.938594,-15.374405,-17.200184,-16.185078,-22.52072,-4.962996,32.25283,29.311537,3.796114,18.337315,24.372078,-11.06792,-22.202354,-0.0948768,12.008722,3.8599267,-9.689166,-10.41762,-4.8276577,7.9097753,28.970076,6.4991484,-45.4843,-30.642504,15.202952,2.150091,-6.07263,12.792843,-17.120329,-20.664476,32.205093,5.94549,-34.465084,17.215288,30.641247,-21.959364,-26.629877,11.662482,24.297749,-4.626088,-6.768146,25.46539,16.049429,10.4745,13.704944,-23.669052,-3.7963817,30.58588,-12.798336,-4.9553766,30.013605,-3.9243379,-4.9250746,23.657316,null,-9.995144,-43.35581,8.633815,12.066592,-22.39854,19.488173,23.169622,-12.127071,5.113975,7.8631887,2.4326422,16.238295,-1.9066403,-19.172276,-4.535747,9.721749,0.128904,-20.322783,3.7666552,33.16742,-2.1580982,-14.987059,19.327013,6.9794536,-5.3057466,25.143293,12.867954,-11.123019,25.636791,38.595333,-9.257652,-29.048574,-4.6720395,12.47309,8.392713,3.9452925,0.55937535,-23.685865,-15.633839,53.72737,69.02709,17.68487,-1.7485763,-13.495361,-16.489107,35.3055,64.1712,52.897377,80.08294,102.023575,60.722645,35.143333,61.78868,49.63119,-3.8481317,-5.9513154,21.76821,29.145489,37.539997,26.653044,-15.070962,-31.582726,-5.155777,24.555372,31.953255,27.349964,4.483535,-22.993645,5.0013757,30.714333,-9.454084,-10.777777,14.825517,-20.804607,-18.17131,18.243233,-27.834265,-54.705322,3.419951,13.811142,-30.228622,-26.563042,-2.4591398,-10.617894,-15.227169,-11.221874,-20.68832,-10.971528,5.381611,-16.473623,-17.13011,24.367046,2.0306551,-45.43595,10.461107,45.09358,-28.379332,-17.886919,46.919086,-6.552113,null,24.444885,-2.084573,-34.771877,12.406434,19.819542,-32.145622,-23.227623,6.9877996,-1.7467306,-4.261776,-7.847036,-8.287931,15.838366,17.473003,1.860771,-1.2318515,1.9738806,17.347921,5.283479,-17.145363,17.19261,24.375874,-16.45047,-0.3711759,26.325256,18.242691,20.470673,3.3618724,-20.417595,-4.019211,9.831058,9.485657,15.984302,2.401696,-30.483873,-26.087711,28.09353,43.89072,-21.629583,-69.72948,-32.94995,35.672985,59.697163,20.668846,-16.335306,-17.080227,-42.402206,-82.381,-51.4298,0.8487779,-31.606062,-76.972565,-46.22111,-14.821011,-2.7645462,36.127277,39.094788,6.403229,3.6615975,-11.827891,-27.11727,13.625638,33.855907,-8.26159,-41.53245,-24.825533,8.556882,2.2697175,-21.757484,-16.064167,-9.718732,-6.1796284,1.666476,-11.907067,-8.942845,4.407601,-15.338525,-3.2813504,19.315866,-20.555874,-24.47908,24.575748,23.395796,-0.43441036,-13.258349,-15.271979,7.87483,-2.0732355,-18.37164,16.040083,12.057576,-8.328684,14.148363,-7.882858,-26.093626,5.5565243,-13.12341,-16.28126,24.368923,-6.5422654,null,27.776373,-2.3754032,-28.57756,16.08149,18.391531,1.1227834,3.1515622,-15.733925,6.4003367,28.106064,-9.697393,-11.579828,-0.6762601,-2.1299565,19.680328,-8.881652,-21.87565,30.292572,-1.402398,-41.189693,13.562535,18.956074,-17.262562,-3.495542,3.6201918,-17.293226,-28.602667,-1.7836151,27.852968,-14.989439,-57.553917,-17.309267,22.979715,14.608481,-13.49439,-38.253822,-22.481789,23.545877,50.69551,39.334892,-5.742556,-38.962936,-32.347336,-10.809293,30.16255,75.578766,70.6303,46.937553,57.073387,63.27571,46.38134,46.89086,63.190723,54.99794,7.7335725,-51.997196,-64.43539,-13.174902,28.530258,18.881157,-4.067051,-31.774883,-69.43061,-74.43219,-33.898422,1.448126,-9.796691,-43.298702,-39.175114,-0.3823858,10.445827,-17.239107,-23.282478,7.824457,3.3871832,-22.404125,17.166138,30.595335,-32.296886,-11.02908,47.566265,8.053165,-10.253611,10.762969,-11.281163,-1.310303,20.499113,2.4253392,10.159317,15.073979,-6.040707,-10.619094,-11.155109,4.016883,7.838272,-23.916359,-6.848628,21.267765,-10.526534,-14.78739,null,-26.334618,29.950142,24.007393,-29.508759,-6.804404,14.955049,2.7640128,-2.7636583,0.46865028,17.720661,4.771743,-17.813433,-0.24515343,-7.8823695,-9.580216,36.4061,12.298599,-34.848,18.044853,40.956432,-25.015385,-25.625517,27.622902,14.643615,-14.083932,0.14376342,-1.7886882,-25.94884,-17.70477,8.470777,6.3701644,-16.567883,-30.530588,-22.212358,15.976966,49.84796,19.295254,-40.686554,-33.64186,39.605286,82.34644,43.990204,-8.220305,-11.529004,-11.190169,-37.453342,-45.275566,-28.697842,-25.154243,-30.709219,-26.357029,-33.58061,-55.81121,-57.651257,-40.377853,-12.504101,27.106022,42.279495,31.215208,20.735847,-4.0204396,-33.339256,-26.168676,19.889788,44.014343,1.7711941,-30.085129,-3.4749656,20.160992,24.436846,5.3857303,-19.693134,6.427759,21.948704,-7.0674114,-6.1262326,2.1173816,-16.09175,-30.509008,-14.006682,26.607979,8.864737,-26.800665,13.304272,11.731505,-39.84321,-26.675499,-13.18722,-14.271872,0.11424113,-10.011956,-9.223506,-4.9363785,-8.877247,12.187719,-2.5121646,-20.157078,6.3740478,-3.6599703,-9.657215,null,-26.366968,19.683985,18.324953,-2.1946561,10.938596,7.003275,1.8591851,-0.44547847,-5.3281393,-13.575376,-22.372082,7.3979683,19.318298,-23.261784,-26.297739,8.707314,5.9966216,-22.203705,-16.999088,3.547642,-25.777313,-29.231844,24.56068,0.44892588,-51.620472,-20.963133,9.86641,-9.1729,-54.383778,-60.830826,12.672875,44.534866,2.7793634,-14.695163,-16.549496,-10.784817,9.443467,19.251148,23.925617,-9.817598,-63.58414,-56.226536,-14.381488,19.858126,32.923668,14.124369,11.832015,15.384834,-18.19568,-32.01467,-0.16981974,23.965708,20.271307,22.036451,47.56325,47.577892,-6.53287,-53.052906,-34.960968,20.292982,50.301907,53.199192,45.236713,6.1863837,-27.508638,-4.570935,36.999573,44.75625,12.603352,-19.601505,-9.804935,15.207777,9.12367,-9.82416,14.004843,44.845215,4.039519,-15.865465,46.045654,37.663307,-30.311241,-8.487307,27.671122,-0.24256293,-3.897555,19.681938,10.267975,0.13620932,4.486576,-6.517356,-4.923393,9.314754,-1.9645733,-7.9013124,-2.4479547,-2.1021636,3.8823059,-14.18952,-14.129764,23.375404,null,20.524216,-24.202995,-16.944986,25.145721,4.8220377,-28.035309,5.0442677,28.779255,-0.3952103,-14.130746,17.079378,26.27811,-5.1795154,3.9010444,8.881741,-36.64963,-3.0225189,53.5607,1.0041909,-24.57565,19.595312,11.579523,-20.322123,-11.108752,9.931682,-4.301575,-27.665552,2.4997542,36.00457,15.864986,-13.205565,-22.080786,-2.7229638,30.471554,28.300953,-12.745843,-52.647556,-41.31388,15.96221,42.77939,22.443254,-4.386512,-28.669662,-62.582867,-89.9123,-59.0026,6.7953568,27.140852,6.6285305,-5.2880745,18.266626,38.920017,1.1406968,-39.288795,-54.52404,-72.15,-43.025448,14.683794,48.032173,60.516056,23.629662,-16.402597,-15.514938,-11.387568,31.831959,66.38989,21.710323,-4.2436686,-0.21129379,4.24743,32.489994,20.28586,-5.9726596,7.435066,6.899708,13.586356,16.983377,-5.255638,15.210564,18.498964,-22.613186,-5.514843,9.813396,-35.386738,-35.452526,19.219807,22.04156,-23.31695,-17.481785,15.895657,-7.5525217,-33.191925,-7.314826,12.586524,-2.1931121,-3.937532,15.183407,-8.341966,-28.626034,17.285961,null,4.608378,-31.944738,-9.473711,-0.6742892,-18.687284,2.6368783,9.331786,-28.859455,-23.437983,14.634339,4.7681093,-26.081438,-14.47482,16.242077,1.070116,-24.176573,-5.330705,1.6872672,-5.1308684,5.015572,-4.173037,-4.0840254,1.0296534,-19.482018,10.154716,43.964703,0.7115216,-26.36782,3.9216108,47.110275,38.414932,-40.000633,-46.939392,19.108904,22.986933,16.343512,25.131517,-7.489014,-43.815502,-48.75477,-1.7945625,49.442875,32.442265,22.676565,30.470167,-10.638149,-36.039677,-28.898865,-46.167564,-73.55148,-73.21131,-33.95188,-7.117141,-14.613281,1.1921943,32.059124,39.54373,15.795711,-33.924664,-51.254658,-24.80261,1.6553113,31.95662,50.78978,28.508041,-15.035036,-33.133614,-5.187475,21.602,19.945501,1.9605355,-21.75065,-3.258482,21.520718,-16.445427,-31.572422,4.5537076,1.439572,-31.270136,-25.898426,11.65464,0.6461954,-36.834213,3.2081497,29.491846,-18.66533,-19.053944,0.13901538,-19.322798,-22.850843,-13.195803,7.3263597,12.251758,-10.490053,9.904753,10.36372,-32.58445,-0.8988311,27.823233,-13.418035,null,1.4415342,26.641983,-6.448679,-2.8171675,-1.7724773,-0.79532945,7.5663977,-19.717113,-15.381844,2.4481053,-16.986485,4.110892,26.768133,-8.664549,-18.745434,7.1327076,0.8679072,-30.228432,-15.084314,30.230463,13.753526,-13.243784,9.567148,5.662016,-15.042718,-3.8553004,7.922221,11.901389,-2.6396306,-26.011173,-11.582385,20.256239,27.337557,4.528237,-21.404095,-23.32885,-11.522618,16.537092,32.96461,-2.9986305,-33.42188,-36.00766,-37.81594,-15.845421,-1.8165691,-12.196735,2.706918,29.51011,49.408813,61.498222,53.996124,39.22631,18.584679,7.7309914,-2.6609292,-51.86913,-77.344376,-60.707535,-63.298206,-41.29921,5.0336056,2.7015498,-29.407202,-50.145905,-38.021446,-16.952662,-24.613071,-14.755777,-0.20722483,-31.657484,-43.807663,-10.138534,8.252211,-20.217796,-55.259857,-24.453148,18.276794,-2.7541728,-13.177364,6.567261,0.5783086,-13.650141,-21.109636,-18.29809,-9.217346,-10.434829,11.466905,35.376842,2.9135811,-28.119808,-9.378481,9.997233,-3.9850576,-24.834726,-4.1623034,20.834929,-12.992953,-25.400743,14.143423,-1.622828,null,1.4601601,-3.862964,-12.175529,2.9637797,12.116294,-22.573952,-41.014595,11.50219,32.456867,-18.267715,-18.048208,23.747032,14.050564,-2.0145037,3.9778857,0.68887675,6.5140486,16.908257,16.532833,17.569637,9.601839,1.854511,9.234162,9.983708,1.5571613,-1.6629623,11.068284,35.491665,36.832752,11.453094,-6.9048305,-7.3399925,-1.2428974,7.3590674,24.187004,19.127903,-23.397156,-38.46786,-12.127326,12.470126,39.299084,47.641785,26.098457,12.416562,-2.8787906,-20.857674,-29.818415,-51.46055,-59.930145,-40.91055,-31.802088,-40.04713,-52.52243,-39.20674,-5.0769224,7.5467877,25.776382,49.402164,34.25275,11.526158,-7.9993887,-25.394396,-3.6894553,24.609417,27.86415,20.91639,-6.2539415,-35.808792,-32.744717,1.8031157,30.45935,9.0239,-23.771221,-11.485493,15.6808815,11.700357,-22.758865,-24.237293,16.438442,3.807097,-24.83698,15.174403,26.58485,-22.705658,-24.121363,19.282715,22.662241,-12.418118,-14.590103,10.272881,6.355639,7.3943725,23.87715,12.122242,-2.1022844,-1.4812865,7.7190638,11.397214,-21.640644,-17.84315,null,5.750985,5.537219,-0.52776974,-1.5167943,16.150768,21.922787,1.6573615,-0.8465044,7.6757536,-7.2642655,-10.904449,-4.3155246,-15.146232,-3.4896195,12.019809,-10.679431,-16.000206,-0.14406127,-9.564668,-13.581026,3.9949093,12.930811,3.8992383,-5.964671,6.514791,16.081299,-6.7492886,-21.726585,-1.0111326,24.563597,18.976425,-6.333564,-5.577658,6.6496434,2.4152846,13.418119,28.77678,15.280248,-9.448114,-32.11125,-36.5678,-19.857906,-8.123793,8.951508,29.699102,34.42196,44.999958,53.750103,36.417446,16.757772,16.518013,32.44903,40.834373,34.93296,38.686733,29.631922,-7.974174,-29.600964,-27.964981,-16.866749,6.50797,25.99872,40.521694,46.981216,25.531206,0.9659907,0.7585208,12.778145,25.840773,26.987183,2.6086907,-26.942232,-19.436195,17.517843,21.11002,-9.801547,-14.402246,3.6377752,2.7233446,-6.2902646,3.3202813,16.601973,13.58571,15.211271,21.261545,1.7308121,-14.74399,-6.2683344,-1.2150425,14.775808,27.54953,-4.2176237,-9.635161,27.920258,10.850724,-17.804247,8.104357,8.139779,-9.55949,17.035408,null,-36.781845,-7.4844084,31.507608,-4.15036,-26.46572,-5.0141187,-3.21048,-10.921134,-1.1437374,7.441147,6.4085793,8.00575,11.205907,-3.728381,-23.006205,-15.187033,-2.8786414,-5.2056794,-8.411394,-16.130201,-15.039228,-1.6184461,-6.9935603,-14.847262,-5.404006,5.989322,16.474255,-1.55003,-39.179344,-21.616697,24.17027,21.60291,1.9721701,3.053198,-3.8669603,-24.266033,-15.706991,27.480906,47.888184,29.131947,11.643704,5.993568,4.4872847,0.67562836,-15.8239355,-27.638903,-16.54963,-0.08570829,-1.2703741,-9.376056,-0.29405138,0.034124654,-29.90379,-41.518024,-19.86971,-4.666946,-1.4292363,1.7544949,8.851098,18.379778,23.58736,21.66145,-5.7650685,-40.833233,-21.001873,25.23878,28.987904,14.006622,5.4637995,-13.394931,-21.110573,7.710094,32.898632,5.3277335,-31.682264,-12.298312,18.213318,4.271336,-7.6210938,12.561262,15.737619,-12.24104,-11.286758,23.353695,12.981054,-21.983965,4.1226134,29.642977,-4.6140366,-10.852084,13.670846,-2.7221043,-12.9813795,3.5716496,-6.5570345,-16.299063,-1.4890567,6.7223125,5.1796927,-13.820665,null,-18.265272,-13.554247,-0.9706744,-3.5719402,-14.968376,-12.689306,8.029348,20.127262,1.6588947,-13.427834,2.970801,14.598931,3.7431989,1.9742782,8.988017,2.9983053,-2.408222,5.7082963,14.269068,8.564313,-13.47115,-23.067753,-1.1081387,9.895973,-12.670609,-22.773605,-2.1118217,12.515885,6.717593,0.5272916,-1.3982536,0.42383358,18.20233,29.851028,13.857788,8.412434,23.077206,19.255623,2.2938087,-2.8089974,1.0652817,3.9252388,7.4958606,21.376564,30.493616,24.47204,28.26701,29.168293,0.62295246,-22.853024,-13.389353,11.61059,32.391716,36.77378,26.504505,23.490124,39.51938,40.832226,9.165044,-3.7045813,9.0091915,-0.98594093,-8.864101,15.859788,33.26607,15.758826,-6.535775,7.72605,20.061535,-5.432018,10.88015,58.394516,35.54576,1.9692726,17.406933,21.258087,15.036286,12.684285,-1.6675116,-1.9258592,7.455078,14.583246,26.30169,11.399015,-7.2637777,11.545866,10.161107,-20.194307,-11.368702,14.529754,11.929001,6.1033354,4.032841,-6.7045445,-5.0389423,9.754968,8.991858,-9.076037,-22.908821,-14.267263,null,8.138241,3.1339877,-24.713238,-8.19317,12.968634,7.359741,-2.5828004,-12.162507,-3.6603441,14.204772,3.037064,-12.127176,-7.4254646,-6.000681,2.0124974,12.189075,-6.888693,-20.31929,-6.0437965,3.426204,11.78659,7.996074,-12.487108,8.541024,35.312057,2.560883,-22.295837,-9.622757,2.2310321,21.526697,28.624168,8.04257,-9.055146,-16.314604,-6.84248,4.7323885,-7.5440946,-12.003878,-13.569778,-30.808348,-23.800547,-11.872359,-27.903036,-34.370872,-22.687973,-11.079222,-2.9402437,1.4081573,9.324972,13.647855,12.933606,7.957209,-15.836776,-28.54649,-18.001047,-24.295424,-30.168211,-20.183554,-27.174866,-38.895412,-33.014698,-18.44788,-11.025713,-21.232351,-24.372337,-13.465217,-11.885363,1.1343966,24.140137,16.628824,-3.220654,-8.6981325,-6.414374,8.425803,16.551008,-8.94498,-22.873762,13.620835,35.194935,2.2527883,-10.146868,11.905352,-0.34320492,-12.227283,16.242895,8.982418,-23.160414,3.9425166,22.400433,-21.146236,-22.250362,14.6153755,-9.365327,-32.022923,0.96350694,10.073137,-3.1246674,2.2954292,-3.6590626,-1.5023069,null,4.548761,18.086563,-18.292877,-13.903695,3.327338,-18.41727,-13.804922,11.192341,-4.0025845,-15.840005,-1.6526341,-8.515995,-11.2505,10.77038,2.4691515,-12.9572525,10.283272,9.947005,-22.317648,-14.009057,13.50336,3.903802,-17.171352,-11.803133,1.3349911,9.400935,33.484642,35.242332,-12.43674,-28.69453,-4.2895026,1.726418,10.813236,6.9808245,-31.83173,-31.873613,11.94967,34.151157,19.676151,-4.506667,0.7018414,15.708276,17.25375,35.924408,31.503904,-16.319424,-29.129461,-6.5299144,8.307187,10.154386,-9.456804,-23.233551,-16.446943,-5.9709597,14.166773,21.212055,16.173134,30.331545,29.003143,11.584422,10.664197,2.8195715,-4.680906,-4.419467,-17.189306,-13.863364,0.8564107,-6.746505,-9.459023,-4.905199,-13.846875,-11.515755,11.6638155,30.149784,18.528967,-16.386742,-24.79272,1.1383466,12.944964,4.35904,-3.9122999,-7.3247137,6.2355533,14.160178,-12.645374,-18.556551,18.419558,25.558079,-1.2814281,-12.699766,-12.977582,-12.355603,-13.545213,-11.495452,8.659182,16.312323,-2.7647543,-11.953352,-9.785152,-4.603955,null,-4.258781,-11.027541,12.420415,19.187777,0.060351297,-3.9539087,12.715022,18.099337,12.181477,-2.919938,-15.778414,-6.022608,-2.2391567,-8.762841,-1.1693013,3.0236528,8.716381,19.994265,9.7366495,0.70515484,12.143969,24.086843,27.364483,6.854423,-18.891575,-12.051545,2.4620497,12.1710825,28.721157,16.03022,-18.129957,-15.0353985,10.46654,20.883236,23.512907,13.516954,-3.6944404,-5.5559673,-12.59007,-24.431227,-11.806054,-0.25114316,-6.10166,-11.989283,-15.011052,-2.3560126,8.215038,-6.0857224,-6.1365366,8.760847,11.01516,10.768648,3.0334678,4.1775827,20.692677,8.97445,-5.2958436,6.350055,2.963595,-8.605186,-2.4037788,7.540884,-1.6334804,-18.968199,9.233938,40.7604,3.8772247,-20.964582,-3.8986125,-4.0538816,13.5906105,26.702461,-22.910517,-46.054867,3.4654999,37.70805,14.222768,-14.182875,1.2699591,22.160156,11.583109,3.9412792,-1.8323811,-16.650799,-3.9282043,16.853851,2.6935787,-12.428388,2.7331717,14.365523,3.1444552,-0.014045634,12.039375,13.949817,7.2505226,0.31941497,-1.0498555,16.311018,22.420954,-0.06417252,null,13.808143,-10.695719,4.3920074,15.746599,-10.1245985,-12.353005,10.64116,3.9891322,-10.398822,7.2665253,20.349325,-0.7878955,-16.383045,-2.2269282,14.153183,17.515614,10.385993,-4.678729,-8.161896,4.6255307,6.676031,-12.276572,-23.903355,-3.3784442,16.94589,11.794329,15.007825,11.161121,-15.010337,2.0890927,28.294123,-11.126943,-37.4068,-10.764624,-1.1765316,-5.3556933,0.043912504,-9.723691,-24.538857,-12.941741,10.1194725,10.099258,3.2715025,14.961286,16.443642,0.17437011,-2.3877676,9.55344,22.915644,28.720186,20.998335,14.901258,17.460142,12.411853,1.4320608,10.143101,29.677425,17.25375,-13.454597,-9.557688,21.5416,31.903955,10.339565,-10.990666,-17.62593,-21.715649,-14.375706,0.21076953,7.0490346,9.425658,-17.254295,-47.31747,-19.842726,5.702252,-6.2859297,-1.0493058,0.9502016,-13.602176,-13.31103,-6.202528,5.53175,-4.1265445,-31.377464,-5.231766,24.744297,-7.7518163,-25.320215,-0.49659923,13.156452,3.9903848,-11.3470545,-11.985134,-3.6071708,-3.80408,-7.6572323,-8.694016,2.8832715,9.395855,-4.530734,1.5782712,null,-10.638702,19.673048,3.18893,1.7988478,19.880575,11.690353,-1.5768096,3.9145112,9.371089,1.1865461,10.196527,25.757854,-6.8263025,-24.544222,15.620356,22.793009,4.0880623,9.625885,5.1941633,-1.8594599,-0.420943,6.3438444,22.56894,4.3519855,-14.372005,17.515709,25.242123,-2.3677373,-16.155716,-20.849667,-2.4013588,16.889359,8.743156,6.8155956,0.45127743,-11.893481,-2.4665582,4.9939575,10.329405,18.760742,14.110387,10.573023,0.7724642,-6.4506764,12.432941,14.245388,-2.8847852,-4.272357,-7.6634107,-4.794019,7.9622755,-0.48156223,-11.674502,-0.8936708,14.382149,7.0108757,-13.883852,-3.1661904,21.425095,20.209288,23.740831,30.14357,12.690261,3.8094306,11.731026,14.827343,22.24692,27.031172,-4.0733967,-49.337383,-29.812359,32.110847,24.100414,-20.549208,-12.562306,-0.13447076,-1.969115,16.87715,11.359562,-16.21726,-8.370823,8.2318535,4.268717,2.7105157,5.764301,0.7867295,-2.3861794,8.364195,5.109385,-19.427662,-8.845861,18.566679,-0.40791577,-18.101461,-1.9529479,2.7059305,-1.404451,-1.8702505,-5.3879495,-5.0170116,null,-3.4931831,24.444046,-7.649202,-16.725225,15.026293,4.9130526,-0.98511934,6.9910483,-8.453226,-2.3874655,4.0803714,-10.725527,2.6436799,16.920471,4.7086973,-7.5340495,-8.3232765,8.939994,14.403299,4.533146,4.1572976,-19.901388,-19.036612,36.420242,15.394772,-51.727646,-31.111471,13.736137,17.426382,1.3847276,-16.631653,-8.880719,0.13746886,0.13555892,7.2837014,-20.417442,-40.93768,-7.7084746,0.79007924,-10.961059,1.3293988,3.0490606,-2.0993118,-2.4054718,0.84394276,14.413736,12.556711,2.7496943,-1.0660263,-8.498017,0.8674607,4.501371,-7.0845976,9.619405,17.933838,-5.3701725,-18.3694,-18.448063,-10.918489,-21.768377,-48.356583,-28.500061,1.2350754,-1.3448355,-0.5420995,-10.957272,-17.952772,-0.19577701,-0.909603,9.586092,40.058285,26.16454,-15.06297,-40.464336,-22.452301,25.907291,25.29009,-1.0298241,4.611661,2.553054,-2.6601846,2.0233574,-4.3450174,0.0582703,-1.7423445,-14.615596,0.47615,1.8207695,-16.035494,1.7314942,18.524347,7.713685,4.1054473,5.9805455,-1.1455318,-13.39548,-12.493591,4.6382985,6.3885503,-2.638348,null,-11.451935,-8.03576,8.547256,5.5357513,-13.245788,-10.08503,-7.0675344,-22.633966,-21.225384,-4.0549617,2.5732617,-4.952791,-15.523597,-1.6307187,17.617191,4.8069453,-4.429071,-4.712633,-20.357807,-13.457695,-3.5541286,-27.824444,-27.969307,2.5290198,13.8248625,2.6513927,-17.642233,-17.770962,-6.817451,-14.15265,-1.8065349,14.512871,-5.578721,-16.81957,-17.535892,-14.059082,16.099363,22.12205,7.080531,15.777418,11.978929,0.45169678,3.334787,-1.3874007,-1.1810701,0.92585784,-4.0404763,6.8262486,21.316172,20.2902,4.670203,-5.715722,4.436223,-2.7789154,-19.788153,-5.1967297,11.522311,13.333193,2.974053,-0.41585168,33.350605,31.822046,-11.786912,-3.560519,9.279769,-3.5548432,2.4732418,-6.118522,-7.043957,8.553472,-9.878823,-5.8205147,21.41938,18.911562,18.400892,1.2381197,-15.754047,12.967356,12.057816,-13.950054,-9.846451,-8.0380335,5.223189,20.391558,7.579523,5.197154,-6.709017,-18.945469,9.488547,8.717117,-9.430299,6.172252,-7.7030945,-20.102951,7.574726,-1.8976126,-18.575521,1.129047,0.35335284,-3.539126,null,3.204455,-11.525492,-7.3057485,19.165476,7.608033,-14.273474,13.523181,29.019384,-1.9627788,-11.138135,2.6257067,11.096589,13.746669,-1.1123339,0.3577365,10.807264,-9.676438,1.0072607,29.866447,9.173236,7.3266087,39.19636,39.201584,10.690362,-20.277271,-11.901448,14.634324,-4.1361303,-15.271571,-3.3144548,-12.70953,-6.402379,6.072375,-0.2000099,-3.0022926,-19.417559,-19.097971,8.585114,-1.6846284,-12.334793,5.6457777,-3.4003034,-11.954221,9.3815975,18.90616,3.506022,-19.04452,-27.937742,-16.79051,-6.525738,-18.330242,-33.458385,-14.421547,7.762845,0.7041271,2.453568,9.808991,7.7165203,9.937237,-8.597325,-29.353315,-23.631895,-23.80941,-9.621052,19.990578,13.258956,-2.1317072,-7.180539,-15.327053,-0.8964893,17.388908,13.415402,4.0374117,-13.255568,-23.055857,-3.7614298,21.175129,29.465815,14.663275,-3.0353777,6.1985273,13.941821,-2.8068323,-5.8713384,7.490861,3.938165,0.7281504,13.140472,10.561934,-3.4981227,-0.5755453,8.480748,11.463959,13.115389,13.406037,15.066019,15.190851,9.640039,2.0763748,-5.0418797,null,8.099734,8.804517,0.2314499,-12.260223,-0.7486147,8.957641,-3.8849285,-4.3588686,4.6542525,4.6302915,4.869049,2.447469,0.56926787,7.360329,13.134198,4.875273,-7.901737,7.848395,28.172174,4.4504466,-24.362757,-19.149237,-2.3128867,1.7367562,-15.790603,-25.69179,-12.834128,-1.6770384,10.141349,10.5370455,-9.313514,-19.125454,-23.919178,-17.684351,9.329356,22.054611,27.855007,24.581442,-1.1736375,-0.7216166,4.949524,-20.165129,-20.676935,2.7726269,13.41081,13.124944,4.857457,13.958865,31.515524,23.322512,11.689702,1.4759881,-10.185287,4.0352297,14.416239,-17.402664,-44.170284,-19.548235,4.8790736,-12.4794655,-13.90968,3.9764998,-9.651607,-16.049847,0.14991142,-2.7822149,-10.551827,-5.850564,5.9777856,14.228978,3.0404181,-9.880162,-17.712627,-18.246405,8.455378,18.085718,-16.306725,-34.130154,-13.096515,11.756443,8.601778,-15.980773,-14.88543,10.030824,11.225265,-7.3605785,-8.499252,2.352708,-3.6131465,-7.278618,5.632444,3.9773521,-2.6775653,-1.6970938,-7.379343,1.3533268,10.93478,-2.936404,-8.345375,-7.77474,null,-1.0765336,-3.2641652,18.905064,8.10471,4.354394,7.4052057,-14.994906,-2.7764215,23.60705,13.221402,6.0528665,-4.2071958,-12.546698,10.586091,5.797089,-16.966103,3.3006318,1.6682576,-32.94322,-11.984801,25.899807,11.729477,-2.4863117,4.713409,-4.1917953,-13.389598,-0.9193362,19.422663,24.515537,3.412743,-11.967717,-3.4189384,8.2856655,21.335264,27.324886,23.399015,27.605053,22.71175,10.663171,16.466665,23.333519,23.246222,17.035519,4.4245925,0.29328454,-7.348596,-15.158195,-11.353779,-18.508278,-15.750961,5.7667904,0.4625092,-21.46846,-23.80932,-3.955435,7.7955656,-7.8469243,3.4088037,38.709156,30.246763,6.8870463,-3.4198132,-14.998823,-11.194364,0.2083072,19.98296,38.457428,16.466995,-4.495682,-0.5192097,-2.9466152,2.9026082,5.8272233,1.8009205,12.29608,4.582332,-7.805124,-2.0615115,-10.516826,-13.641901,-11.597386,-23.189169,-4.893233,20.73273,3.81798,-18.077879,-12.557406,4.5975285,6.4992313,-5.3377957,-6.12309,-2.3700461,-5.2083106,-14.62834,-18.540958,7.1661882,19.80369,-10.789429,-16.01744,8.053158,null,3.180268,-14.3664255,-3.905761,15.521291,14.815456,-3.6812944,-3.3650868,23.393349,17.87601,-11.906038,-7.14323,11.8997965,10.441678,-3.9721444,-10.77411,-8.05485,-7.890077,7.87475,20.347994,0.38234422,0.39643243,13.205858,-1.2282397,-3.7629912,-8.360018,-23.400553,-3.7761116,16.362366,17.370146,10.324796,-17.93142,-23.845982,-4.6430287,-0.9749657,8.409232,8.788284,-10.371089,-12.10075,-14.208908,-24.428665,-26.754385,-28.077827,-14.99713,0.5896377,-2.4966133,-2.7270162,1.9637067,-0.66425854,-10.479344,-16.360392,-4.865392,4.84181,8.532094,14.106859,3.5615299,-6.2310305,-10.814916,-26.44286,-17.023224,0.92469937,-14.618899,-16.750473,5.5625296,6.867239,-9.246087,-16.13634,-5.9710207,0.5543707,-2.552906,6.6297445,8.118163,-6.411652,-5.9646525,-3.3388658,-3.80835,4.2696214,-4.7155175,-12.874676,2.7332478,3.1199794,6.5864134,30.293697,9.293654,-20.927544,6.320277,14.928989,-7.9498734,6.5677614,15.561198,-0.46286762,2.9132047,6.7205596,8.178091,15.222102,8.907589,12.783739,17.33228,-4.220441,-7.528545,8.393863,null,-26.29495,6.5960603,19.54471,-1.4691135,-13.500828,-6.3459888,-6.1830688,-13.64891,-13.20778,-3.3650494,2.7946398,-7.3326564,-20.28829,-14.976778,4.9255924,16.542229,-2.005562,-27.559944,-12.276495,15.695164,2.7253253,-13.896741,-2.410601,-3.728654,-7.7773623,17.077667,23.423105,-5.310745,-17.20415,-1.956025,12.6779995,9.267882,-2.0016668,2.7459583,8.270493,-4.64053,-20.826015,-24.263819,-1.7529662,22.733625,10.09704,-11.939127,-19.026663,-23.546665,-18.362324,-12.25437,-11.673546,-2.715742,-2.7851236,-14.406216,-13.147403,-2.6276186,2.5178242,-4.129101,-13.781058,-12.675327,-5.8495107,-3.792455,-9.157892,-1.5737469,17.87979,6.2295704,-10.559161,1.7954823,-5.766267,-22.240372,-5.6004176,11.270043,9.485526,-6.937009,-18.504318,-0.86958385,9.919565,7.128464,12.512713,-0.6455196,-18.098503,-23.252438,-34.669662,-23.975843,1.2123317,0.1755585,-6.2952495,-0.239443,12.222239,13.157656,-7.217449,-10.454691,7.0559664,16.138704,16.138672,-7.5065465,-27.176111,-0.38391012,11.51142,-18.880062,-17.25731,18.532372,14.912465,-20.16733,null,-13.422198,6.2095623,10.86048,-10.739006,-13.226172,3.7531643,13.9899845,3.7061555,-14.30271,-0.46756527,16.147337,-3.0776126,-8.813002,1.7916582,-4.1885824,-1.8885324,0.578585,-11.178258,-12.283624,-5.6277823,6.8959866,20.328173,14.599541,4.766096,-2.4510212,-5.93583,11.035286,19.003435,-1.1485494,-12.042523,-1.4171553,4.9525743,-4.0480547,-0.5681997,19.208633,3.8757277,-31.992258,-26.250042,-1.0358077,8.192583,13.721563,15.165016,9.508737,6.5796437,4.8362255,-2.812116,-10.010648,-7.0895247,-5.478422,-8.8835945,-1.1324435,11.3844595,17.511305,18.394194,12.267908,14.068123,28.256432,29.776112,15.451327,4.6962237,9.599336,20.758049,19.652964,21.573614,31.628237,13.514282,-18.401316,-18.446913,-4.657016,-1.3877751,10.116477,28.227068,22.245718,-8.274658,-22.967955,-1.1504018,16.036022,-2.1186543,-10.602982,9.82952,7.0708246,-9.553693,3.356088,3.4698806,-18.915586,-4.370092,14.53773,-9.334248,-16.224354,13.77707,22.609333,5.607171,-4.1427255,0.51626956,6.3107615,-1.1857791,-7.5286074,-5.9908934,-12.7218485,-3.528027,null,5.062079,0.30737096,-8.548212,11.220975,11.993458,-10.156001,-8.280163,5.879809,6.871584,-1.0137726,-6.608013,1.8315941,10.409241,-0.30176634,-4.6864204,9.562816,10.333067,3.8846374,10.53111,4.0712104,-13.668253,-18.188444,-21.521538,-11.367294,18.305199,13.563345,-23.003204,-32.93768,-17.44639,-1.1070682,11.085153,15.749597,19.992428,16.174648,-6.2377377,-17.986486,-10.320601,-9.672222,-11.508033,-9.335884,-14.568678,-18.62073,-23.199696,-39.35536,-43.57805,-22.980572,-6.804099,-12.954024,-20.228733,-9.348745,-0.44725597,-9.331865,-15.646686,-13.923905,-15.106295,-16.783897,-20.478289,-23.929747,-20.069338,-13.62761,-5.2334394,2.6114345,5.2873273,9.608499,8.3270235,-8.986323,-23.339342,-13.774874,8.7133465,17.829462,10.230273,-5.0348406,-20.080608,-11.317449,12.270117,10.239927,-7.186997,-12.532485,-1.8107381,16.670994,11.817605,-5.6612444,0.8329097,4.271064,-6.1087403,-5.388381,-2.614953,-0.9617076,-5.2591786,-16.541769,-3.9880123,11.10557,-4.0788326,-14.006712,1.2771208,18.580976,5.6267176,-29.763927,-17.889963,28.855377,null,21.055819,10.042631,-14.820026,-16.778936,8.346077,-7.2665153,-37.312233,-7.6533012,14.353228,-7.600368,-11.10806,-5.087335,-12.769068,-7.7641993,9.475649,10.557274,-9.313685,-20.316015,-15.257801,-12.426444,-3.3199198,4.7549925,-2.3078928,1.4441028,15.75947,13.9200325,-6.423011,-28.761292,-20.153454,8.89298,6.6882954,-8.217315,2.832546,6.678179,-16.354885,-25.708433,-7.5199556,2.3951406,-4.02708,-3.6020763,2.563845,12.082656,24.657806,19.513542,5.293508,4.8085136,7.1703615,8.459307,7.4102774,-4.985731,-5.175434,12.65712,11.4162655,-3.4076996,6.128684,25.700474,15.918496,-6.020697,1.5607738,13.8185835,-6.421673,-21.976429,-8.455228,2.654387,7.005287,7.233246,-8.998803,-19.571463,-8.04012,7.944746,10.03089,-4.738622,-1.8124404,20.174488,-0.61323416,-36.33405,-12.075032,25.628874,14.140425,-18.944965,-30.548409,-14.238602,0.1493701,-2.2824101,-4.377056,-6.4116645,-7.8087077,-1.68063,-1.1116142,-4.928543,-2.4111836,-0.45391223,-6.040118,-12.582088,-8.065798,-1.6530795,2.8815236,17.98618,11.723703,-18.751873,null,0.5727948,-5.0799274,-9.232864,-9.850715,2.0454252,10.78339,-8.107996,-12.687386,12.81977,10.075836,-17.431803,-21.290234,1.0491037,18.664618,1.3795737,-20.24126,-1.0803256,21.671234,8.1866665,-16.784468,-20.753315,-4.0332355,7.9031463,7.8586135,1.8217671,-12.333279,-14.7064705,-1.8756126,2.5877314,11.857705,24.252214,5.455056,-23.092878,-17.383362,13.600608,32.553223,25.284456,12.08385,7.806414,7.907551,8.123907,0.42077774,-3.648692,11.780849,12.237529,-8.330862,0.85199285,20.763054,6.6365933,-6.2183094,4.258851,9.488335,-0.12836558,-17.388887,-22.65412,-8.736878,-8.293716,-23.827477,-22.097391,-5.4261756,3.4322398,0.9005279,-0.6375012,3.2788513,6.5969815,8.256528,-4.466867,-22.475986,-8.264103,8.434475,-6.9736953,-11.211934,0.19870809,-6.118007,-16.996157,-12.722765,12.766592,34.133392,14.774653,-7.2934637,11.931952,31.084234,11.28787,-9.597457,0.30901712,4.551323,-0.109217204,14.654711,12.860169,0.18450032,11.03828,5.0360327,4.9881234,33.817,15.259067,-16.201786,2.8366904,11.534574,-0.70285743,-0.15649316,null,-26.310862,-16.213505,20.79355,5.2437525,-8.805567,2.368698,-3.2909513,-3.5919876,-0.35853606,-3.0620685,3.126417,-1.5853635,-3.0055957,8.085539,-2.5409057,-9.760529,3.8652868,2.2420323,-7.062406,-1.4353919,2.2784684,-9.391852,-11.5215645,7.5376897,10.841325,-2.409319,-3.0858445,-1.9911689,4.6647854,22.747625,27.841494,21.05718,5.797473,-8.725473,2.4576554,8.675746,-6.2382846,2.5644727,21.975437,8.419065,-11.28506,2.2170439,22.50558,7.674518,-11.984792,3.5402436,18.454058,5.4929147,-10.413222,-12.165624,-0.3334822,3.1451828,-9.47934,-1.9052106,11.123018,-7.163753,-6.482786,22.428219,11.326039,-16.026983,-16.29886,-25.413982,-35.279926,-19.947561,-12.647042,-13.965605,5.325958,31.973974,31.204865,-1.2522075,-16.67041,0.3960508,1.9948251,-2.2026055,16.83412,20.863283,4.4145155,2.3776445,6.9449635,3.5494308,-4.675434,-14.533701,-10.446466,11.193709,18.363974,1.3604994,-5.58592,2.9653523,6.422068,7.4583206,1.2167966,-12.192712,-9.150259,2.0451038,5.2599974,10.90936,14.886566,6.5215287,-2.2270918,1.8597692,null,0.6794548,13.184648,2.675276,-5.9550133,-10.554001,-6.996215,9.765126,12.442394,-3.7413208,-8.741503,3.2369056,12.274578,3.3908677,-12.687568,-10.219732,-1.4071637,-4.3582783,-3.1518805,-8.575791,-16.638195,7.2272243,19.6819,-7.448112,-21.56926,-17.906338,-4.2999935,17.653616,9.274451,-3.8561592,2.9554129,-16.07345,-37.686874,-25.755718,-7.87765,9.792616,14.134488,2.4639037,11.422495,15.902585,-8.063799,-14.334716,-1.0623668,1.4312174,2.246343,6.3654633,8.064742,8.332637,4.958612,3.9652824,5.0525784,-0.19118626,6.766223,25.537424,17.096514,-0.4437847,16.863737,32.407356,11.073974,-3.97134,13.053174,24.432497,11.100814,3.2463586,7.7047167,3.6634843,-0.72734106,-0.5070545,-5.560423,-11.456349,-20.275074,-19.731516,0.93424207,8.669086,4.4903355,11.089459,3.3813536,-14.501005,-7.1353297,13.8464155,12.258893,-14.030474,-19.6757,2.1712232,0.09467771,-16.071724,-8.686342,-0.502648,-8.893738,-14.3985,-5.116501,-0.7540941,-10.097644,-4.001211,4.531303,-6.614131,-7.377594,-6.8702364,-10.295567,8.844429,5.6368413,null,5.2309413,-12.328216,-14.872041,3.619768,12.791468,16.420382,3.6798146,-19.013016,-13.227238,6.2574453,10.140939,4.0621786,-8.116194,-15.516744,-4.2601094,7.9455585,6.248729,5.0479326,5.980415,2.0276325,5.9479637,12.590335,5.4781833,-2.8519864,-4.2879653,-1.5245004,5.3960285,5.0098076,5.9674525,14.850023,2.6674948,-13.776832,-1.1101387,0.7555283,-17.158136,-8.100317,0.5629519,-23.565159,-27.958931,-5.7459145,-6.6814985,-12.795421,0.16209912,0.0667957,-13.177928,-9.253613,2.7126534,2.9399214,0.6524905,2.6432273,1.5666771,5.783778,9.753807,-7.7807117,-16.233948,2.4209976,5.03861,-4.962543,0.98544294,4.936846,-1.3166472,-8.038167,-10.008075,-7.9422545,-7.901923,-0.7064306,4.4211645,2.2872398,17.74798,12.972051,-27.20676,-30.079416,-8.085847,-7.417777,-6.489231,-5.0233974,4.325789,14.36539,-14.257681,-27.90913,4.321958,12.644203,-5.6782265,-14.127814,-5.8660684,14.922084,2.7862878,-34.09416,-24.2172,5.8389926,-2.0888543,-17.176243,-11.457796,-4.898506,-5.710986,-9.939592,-14.39855,-11.268875,-9.479078,-7.3554025,null,3.1097627,-8.559352,8.989088,5.554091,-9.893219,-4.6039224,-12.291497,-25.637508,-6.773415,13.698088,0.6720378,-11.500197,-3.7754092,-5.007741,-4.8750477,3.1044476,-7.282395,-12.758371,-1.1361496,5.7517095,14.537825,9.372529,-9.943448,-5.310718,4.1602235,4.055854,10.984875,5.0456443,-10.402778,-13.190184,-10.753765,-5.2765813,1.6973287,4.4602118,-2.2571778,-12.783025,-4.6300335,1.9128577,-6.488252,3.0334764,5.2374926,-10.5929575,2.9788907,15.483271,-1.3462195,-9.71953,-9.300062,-2.2068849,7.8081346,-7.008727,-14.377629,9.590309,18.283161,3.8699992,3.221859,18.524462,20.34217,10.561586,17.145826,13.733957,-9.219669,7.89258,32.367428,-2.7143245,-27.43203,-2.5192993,1.4080049,-14.816754,-3.4658856,12.099909,-0.035395127,-14.85209,-3.3280277,12.586341,7.6727796,-3.066205,-6.9042754,-3.1320612,5.188685,5.607404,2.6000965,0.518778,-2.4222083,7.402098,12.115989,-4.792611,-7.2914925,7.8606954,6.1743646,-15.484563,-26.975155,-5.2251925,5.7266097,-15.459718,-9.004652,8.703368,-0.23979306,-1.2522401,-8.318783,-11.851749,null,15.46441,14.134227,-7.186551,12.468202,12.621569,-11.576072,-3.5432088,11.670461,11.87278,2.6389654,-2.111431,7.051454,5.207044,-5.2639084,-3.623265,8.359685,18.985817,3.4632595,-10.932472,5.918628,3.8960524,-8.115945,6.9621124,9.05418,5.2001114,11.203006,-4.6418095,-13.353512,-0.1729053,-1.3197474,-8.885743,-5.0610557,12.132277,21.7723,-0.3039492,-8.740972,12.657636,12.1538,-0.8922759,-4.6802382,-10.974717,-4.491851,8.361283,3.1066225,-5.8739843,-0.47407642,11.285266,4.1428676,-5.711487,19.332294,30.010859,-3.6276076,-15.036192,1.1938256,7.898172,6.915905,-9.079676,-19.308489,-4.955918,3.1035585,12.466669,23.229935,7.8702097,1.1778083,8.493469,-5.205481,-14.730264,-13.76504,-19.435375,-8.188134,12.096735,11.229107,2.591577,5.0630836,8.039421,-1.8320988,-6.416474,9.365736,21.048742,16.022562,7.6127777,3.0408092,5.9236355,9.930706,4.597898,-2.7974868,2.9571717,13.842845,5.1187105,-6.430777,4.870245,14.110111,9.729258,-0.56993186,-13.079782,-6.5251517,-1.1299335,-8.906832,8.43742,14.834789,null,2.0736794,4.6225977,-0.06713808,7.98552,21.228931,6.078191,-4.889274,14.282296,15.397426,5.3218718,9.587226,-2.5963812,-9.345469,13.155733,14.685441,0.27022073,12.703464,20.774586,2.4734867,-7.8555326,0.07436505,11.73543,18.14491,15.418134,14.95165,12.216614,-6.881124,-12.776638,2.8757713,5.560532,8.81977,20.236385,4.8463373,-14.409375,-10.629944,-14.419058,-19.729244,-7.2046757,0.7072851,2.468846,8.020208,7.4168878,3.460203,5.1082406,12.025525,10.628544,-7.678305,-11.408115,6.678731,4.880616,-10.845792,-11.30432,-8.122328,-7.8717585,-4.180449,2.9275966,6.6112127,-1.04187,-4.8622622,-1.1967804,-1.8526099,3.4115272,3.500801,-4.9532723,-0.13956386,-5.6800323,-13.119482,9.3293705,20.688028,19.355318,24.727654,7.742808,-5.338232,-5.1952357,-13.353899,7.0816097,23.63941,0.25126797,-1.8590046,4.5463085,-5.913636,6.677751,19.930426,12.030309,1.6459566,-6.3802986,2.2699928,13.621841,14.546479,21.520113,10.974998,-13.734616,-8.481022,16.590067,23.32518,0.11188873,-8.658923,17.55179,15.770019,-3.046212,null,-3.3816822,17.547905,16.921463,-7.141163,-9.050469,9.646749,7.4696903,1.3304889,6.2620144,1.473398,10.273686,24.545273,6.865908,-3.461494,1.3359944,-7.32248,-2.1316667,8.987546,6.0361643,2.8797133,-11.204742,-19.214315,-9.629133,-8.749593,1.278871,12.828508,2.6327345,-0.7239311,-10.234102,-24.733217,-7.0168257,2.2288299,-12.669526,-12.838909,-4.6110625,7.037411,13.027212,2.032993,4.247944,10.351972,-4.5993686,-10.208803,-0.40571943,-0.956201,-6.246452,0.75344974,11.739472,7.390037,-4.3509417,-6.4156575,-4.8363585,-9.056886,-16.18253,-11.743684,-0.2607144,-6.3338118,-16.188683,-15.355281,-19.64745,-13.52202,5.1021967,5.489437,3.1156476,10.584151,3.3805196,-7.031543,-1.4396524,-0.16616789,-10.531149,-13.28617,-7.29853,-1.784697,3.1445808,0.36819306,-4.5807385,3.5941315,4.4691186,-9.752027,-9.457768,0.74046427,6.8335266,15.478205,7.3588605,-14.352438,-11.040438,-1.3826545,-8.296203,3.1032445,20.369358,6.9049416,-3.0934021,-1.1979992,-11.1611395,-0.8278006,20.60069,8.461945,-2.252178,8.111192,5.828929,-5.1447673,null,-5.580719,-6.770643,-10.090591,-9.962045,-5.669158,-2.129216,5.916782,0.44924387,-7.2117667,3.010737,1.4120989,-9.150921,-2.098119,4.1452394,2.9564703,4.640285,-6.138356,-22.630756,-13.450964,7.141842,6.760118,-3.4631553,-6.37346,-9.171413,-17.330017,-18.418005,0.5908113,13.300225,-0.68942213,-5.671987,5.0016456,3.6781802,-3.2950118,-7.3912687,-3.3085568,5.0688605,-0.81726694,-0.23028758,10.23922,2.4032326,-3.6105728,-1.907875,-5.553759,3.0452762,8.021836,-1.9916679,-1.9299315,3.3126464,4.5914683,-2.2805555,-18.314232,-16.792213,-3.954231,-9.505774,-19.294922,-10.694105,4.3340387,1.55892,-4.3257914,3.6263964,-2.7243521,-12.58377,-2.5858104,-4.26169,-8.665402,5.248429,10.115765,8.589692,9.468165,3.934219,1.6130438,2.1062462,3.6668983,4.878506,2.6389303,13.196127,21.032402,8.059705,-3.0128372,-12.866044,-16.26334,-3.5499458,-5.5451517,-10.370321,1.1375644,-1.1860512,-6.4881873,-4.372858,-11.003897,1.9367825,21.098732,0.36705002,-19.26851,-9.2389965,-3.255374,0.9761825,2.0260122,-8.707562,1.5566105,11.458418,null,27.36316,-14.686739,-27.658821,-3.41359,-8.472373,-19.659733,-6.7722836,2.2321613,-14.770148,-17.79019,8.272897,8.444183,-9.529482,-7.6447616,-13.141223,-12.61424,17.337458,17.72412,-9.626875,-4.361102,1.3877088,-9.455111,4.332982,11.210011,2.2684116,17.446709,17.436356,-2.7961884,2.7337925,9.259136,10.2174,15.4601555,12.670138,23.44865,21.118958,-13.200118,-16.300446,-5.401923,-24.210712,-32.234238,-11.474721,13.324019,13.057941,-0.09630704,9.011124,8.970674,4.439206,31.192223,35.833546,18.177479,23.934168,19.777859,3.0352936,0.92426586,7.5486155,15.410185,3.1976805,-22.58034,-28.569393,-15.866828,-7.5048127,-26.741156,-37.135674,-1.4526663,17.220509,6.933363,17.068592,19.955284,0.60404015,-15.667489,-18.414219,-1.1594763,11.221301,7.3893175,4.2873964,1.9351249,10.753653,14.761997,-1.018883,0.9174423,9.083648,5.544977,14.799629,12.794775,-4.5901766,-5.512705,-3.4537182,-3.4059353,-2.6741662,-4.862912,8.461399,18.639763,0.753355,-7.668804,12.019087,18.568794,-1.5724258,-6.4546824,12.403311,13.370198,null,-11.886624,-12.641297,-1.9309483,12.445146,10.755913,-1.6773443,-5.0800285,-8.214834,-7.821649,16.379478,22.016592,-3.8429062,2.6113229,14.708625,-8.647281,-10.412059,8.768575,9.918383,6.9033556,6.3773775,8.863828,1.8033739,-13.183624,-4.4478693,-4.373561,-22.78725,-10.712671,3.983334,0.37412643,4.343777,4.4277153,-2.5790944,-20.277142,-42.501602,-35.021408,-16.468494,-1.770031,16.985472,15.763262,11.103184,16.665916,5.4451313,-1.6068945,12.050261,18.760548,3.1076984,-18.990435,-20.612366,-20.318233,-33.212784,-31.134338,-23.624004,-21.838137,-15.199997,-11.951731,-5.903468,-2.0128562,2.6134453,24.947063,29.900368,28.051434,39.82091,13.591575,-14.180606,-7.7925963,-17.202255,-10.620661,14.906993,8.082593,3.7644696,2.9939585,-4.81108,9.255623,7.2617793,-5.072872,12.942829,18.89025,10.379736,7.83778,-5.9164085,-0.55904865,19.879456,7.555482,-7.091449,-2.4860923,-8.143335,-9.228596,3.4520345,2.4950895,-2.9203436,-2.362605,-7.5802755,-6.3212414,2.1730957,12.291262,28.13319,18.499489,-6.476092,-1.8763969,5.947009,null,-32.69326,-27.627665,9.038601,5.609483,-6.552067,0.9152875,3.089347,5.277768,12.867577,0.60082436,-18.510658,-5.974597,15.788973,16.335613,10.073898,-7.10075,-22.88759,-6.450889,15.168081,23.388659,19.270975,-2.5180426,-9.983818,-9.862937,-17.469131,3.1855617,12.961165,-13.996035,-17.309044,-9.253879,-12.293157,-5.8707294,1.721993,19.290583,30.967606,9.15271,-8.86812,-16.438606,-19.985859,-6.2296333,-8.242875,-18.351807,0.025151253,19.492136,24.716259,29.085989,34.00408,33.358635,24.244553,26.892345,35.44337,24.834547,15.179815,15.405219,6.9217515,-11.110634,-18.248764,-0.008787155,2.7180467,-17.309298,-3.7353764,17.444366,15.794279,25.217941,30.578459,24.328712,17.990341,-3.293922,-11.885307,1.0298731,4.629307,-3.8042269,-18.177608,-1.4701891,33.98044,10.918795,-20.517017,-2.011211,-2.9638178,-24.650814,-16.053549,0.062963724,-4.159498,-14.579149,-0.28246737,17.754528,-0.8869451,-14.990457,-6.712431,-15.838937,-15.438405,11.85705,15.293659,-6.5481424,-9.4342575,7.3331428,11.058513,-3.7248964,-9.223324,3.9229813,null,1.6410723,1.7318817,3.207861,-4.4526186,-0.49181747,18.72012,19.084957,-4.792673,-15.010466,0.34165,6.3042445,-4.4489694,-5.8326397,0.18030834,2.2980692,-0.73062885,3.6352034,26.592518,22.515156,-6.9600883,13.31872,39.351326,13.325747,1.7050443,12.799036,12.398049,16.946194,20.252102,22.368862,20.767815,4.7676063,6.9045334,13.950326,4.817313,3.702765,-14.740751,-30.714912,3.860501,23.435564,5.962021,6.428851,16.195917,15.361078,5.8824377,-4.9281745,-6.053483,-4.9646707,-2.4444675,-10.006964,-28.047276,-15.710961,2.479704,-11.936853,-20.001541,-13.885964,-6.0949636,14.291144,23.356781,10.363376,-1.3114929,-4.9680223,-5.5089674,-10.491444,-16.472115,-11.807333,-1.1301754,2.390661,3.7080913,22.180155,31.332712,8.380028,7.4858,26.33908,16.640196,8.310719,3.9644556,-9.7847395,-0.42026186,5.803148,-6.4997034,-1.8584574,7.0931196,7.1083164,-3.4304924,-18.253754,-10.548876,-4.2641053,-1.7576456,18.138968,5.07115,-20.033081,3.045703,19.306402,3.0497866,-11.906311,-21.837141,-14.733515,-0.025849342,5.516286,9.939642,null,-6.4221025,-5.231058,-18.50257,11.6074915,23.310148,-17.900501,-13.353115,1.6279082,-18.997135,1.2972724,12.274116,-19.409996,-7.088237,7.5976133,-17.527447,-19.05776,-2.428584,-5.0670652,-26.26972,-33.01218,-0.23183823,13.3257475,-13.153631,-21.678112,-18.270576,-16.426144,-3.248053,-9.604511,-27.78955,-13.490334,7.793518,1.6455822,-4.709848,4.8541055,10.827727,16.888613,28.363075,29.05862,16.22439,-3.7848828,-7.9985123,6.317089,-5.420157,-19.685186,0.5443363,3.7108135,-9.215948,-9.578211,-20.514101,-18.629333,-7.133157,-22.496458,-23.018147,-7.5338173,-16.416855,-21.867134,-12.614849,-11.340185,-10.902059,7.407841,23.98752,2.3225238,-12.652559,13.200068,12.743886,-13.262157,-15.62011,-8.742096,2.100937,-2.822116,-25.27892,-10.4193535,7.605646,-13.068534,-24.38403,-19.139181,-7.0947995,4.5368605,-10.133384,-12.074173,7.0225086,-2.7461143,-12.118355,-2.157076,0.6642833,10.017817,6.4133725,-20.887177,-11.105223,19.963867,3.8062081,-26.50042,-14.639175,9.372591,3.5932374,-12.934483,-14.718809,-9.5616045,-3.6028867,-4.251323,null,1.5172777,-5.585214,-5.844904,1.1556123,6.159004,1.6341114,9.207616,22.910597,17.238365,-5.0448775,-24.874264,-9.933868,18.421947,2.408473,-14.481724,3.2290502,-2.5417871,-18.39221,-6.1552486,-1.7281214,-15.335876,-26.182396,-13.724011,12.1570015,-0.359159,-15.726941,9.375138,5.6237793,-18.748407,-3.6146517,7.8253736,-3.3490133,-8.067522,-1.8514581,14.812765,9.384302,-26.038328,-35.10437,-9.988525,5.600191,3.1367016,3.2183428,0.6380191,-6.5194063,17.376518,40.921677,18.193384,17.990437,50.021233,44.269424,26.421772,25.417831,31.305212,41.172985,24.587463,6.094635,19.09423,16.221615,-1.7181888,-8.851654,-22.496468,-34.17797,-35.136143,-15.516272,16.192274,3.170065,-17.386768,15.081055,26.930967,-6.5014644,-14.30223,-2.9984112,-1.6501054,5.6257086,5.528784,-13.934448,-20.55431,-11.520006,-6.3937345,5.6650543,14.096878,5.924355,2.6792552,-1.2477016,-1.0254221,16.558922,11.634554,-9.717058,-15.443145,-15.9384985,9.500408,29.86642,-7.385547,-27.722734,-8.74709,-9.734718,-10.841368,-12.680283,-22.713125,-1.3250468,null,-16.746891,16.461313,26.396719,-19.184212,-7.7964096,29.883282,13.812132,-8.385373,-0.7394247,16.97723,31.310192,26.305126,1.0021667,-13.266394,2.3615956,21.556871,16.891682,4.796719,9.202888,15.766794,5.127738,0.16240025,13.3879175,19.159037,18.294683,11.483754,-4.5335965,3.8009758,14.083474,-0.52519226,5.519308,5.6192093,-20.229757,-10.440691,6.0074644,7.3470306,29.65659,28.711288,8.404734,14.203853,10.906544,-4.257873,-19.83643,-41.49915,-39.825096,-33.07494,-38.71278,-35.743683,-45.16064,-51.3931,-32.172066,-26.428444,-24.155602,-11.605565,-12.612286,-7.1857395,6.510405,4.973734,4.8091807,11.650816,10.914876,7.9881454,12.582119,15.722751,9.722058,7.6939936,8.077178,2.6878307,0.8063088,0.2319622,10.006838,25.845158,7.0263605,-19.736557,-11.377684,2.2931855,9.71585,13.250517,6.9280286,9.817261,10.475766,3.3536043,8.318682,1.1388018,-12.479374,-3.7153316,4.986349,14.189875,21.414925,6.0576224,5.4361444,15.934655,-0.4478584,-5.322772,2.7315493,-8.911126,-5.2695446,7.3672905,-1.6322279,5.6050615,null,2.6216583,33.21916,14.178696,-5.657872,7.1876984,-2.9237807,-18.076483,-2.4591262,4.1601505,4.929161,4.9077654,-14.999109,-5.3443933,25.056913,12.29722,-4.0281324,4.426417,5.9977574,-1.2542706,-18.082834,-20.770233,2.86271,0.4872942,-12.488302,8.570671,16.033278,-10.091718,-21.384579,-7.46058,1.7917426,-3.3791552,-1.6847372,11.269629,14.012169,1.6389775,-10.313366,-7.305534,-1.8526905,-8.976669,-8.523884,-2.7296932,-12.681694,-12.758974,13.186942,28.196747,13.964397,11.886461,36.861664,40.555225,33.39549,46.77613,37.6996,21.46797,38.17569,40.959297,22.105429,8.65041,3.2895722,11.3208275,-4.223896,-28.93274,-3.5393314,14.152348,-6.5614853,-11.498926,-1.6498628,12.2012615,5.516736,-28.08149,-26.913443,-15.6712055,-26.535244,-10.576281,-2.0082335,-18.806404,-13.315257,-13.04206,-15.109445,0.0917387,-11.684937,-22.870789,-5.191326,-5.83873,-12.831195,-2.767569,2.0489419,1.4273701,-5.7154174,-11.932287,1.4075392,-0.67964625,-23.9374,-9.498858,18.344452,4.112423,-3.1776056,13.55806,-0.24809718,-17.039415,-6.1769485,null,2.8163397,-15.122451,-14.214671,2.6354144,-3.1764097,-15.4131775,-3.2800136,16.02504,9.564604,-22.875673,-25.614864,12.996596,15.385414,-17.474232,-21.6856,-8.467138,5.5799866,10.101254,-4.340642,1.6493919,9.240145,-8.958742,-6.4551206,-3.6084824,-7.724212,19.585331,15.9637165,-8.902784,17.098755,24.456524,-5.0923157,-7.1556005,-3.3764958,-4.483676,2.0341744,5.3103905,8.978845,2.5754673,-3.2522013,4.754389,-4.489291,-16.910763,-16.738447,-24.152948,-18.562302,-11.854551,-32.869514,-40.84076,-26.598837,-21.045822,-24.004517,-37.156147,-45.757484,-20.453485,1.6350489,-28.505013,-55.129555,-20.029408,8.304615,-12.069921,-16.662582,1.9055654,7.7994947,11.684827,11.22044,-0.40519804,-9.695604,-13.733955,-2.0073605,19.595352,13.328846,-10.682246,-4.739479,15.704788,10.778931,4.4353013,8.419771,0.33399582,6.1498823,20.72196,7.044842,4.3358445,15.809002,3.4004529,2.3817549,12.261782,4.775069,7.505663,9.548614,-1.1066368,1.63023,0.80445814,-8.007097,-7.5527086,-9.824175,-9.595009,-5.846793,-6.6958475,4.0691414,7.889187,null,-7.600614,-25.429085,9.982645,16.205814,-16.48249,-15.171024,-0.5349784,-3.0983384,-7.3486176,-9.948427,-4.61577,-3.0844297,-14.521296,-15.1908,-4.8775454,6.5041685,6.1808677,-14.898612,-11.7458515,11.884434,-4.9533987,-22.596174,0.4404559,4.804081,-16.241117,-12.985151,5.004136,12.832173,7.7969413,-8.341218,-3.947845,26.105947,20.542313,-13.542467,-10.117632,4.0809326,-7.27335,-15.032022,-15.417267,-4.8072567,21.046446,20.276585,1.1951809,9.24395,22.515799,14.53393,1.5176573,-3.5786657,1.6130939,4.253686,-9.276122,-11.600336,13.947193,20.193384,-6.1202602,-13.945254,-1.4878368,3.1729765,3.3567,-2.8600836,-5.5790954,0.79182816,-4.224004,-3.965334,7.0474253,5.8686733,4.1089873,-7.0263615,-21.983685,-5.2102294,3.6432943,-2.6685271,17.992033,18.35923,-8.996223,-6.099696,5.116585,2.0823984,4.404875,6.800769,-7.1411886,-28.35252,-11.298388,24.370266,3.5903199,-22.256363,6.624312,22.199682,8.880542,4.0393443,-3.7544785,-7.42358,-0.19886732,3.4177861,10.322686,15.857291,13.189421,4.571152,-12.785399,-10.333536,null,-17.730202,7.7588177,5.003969,-18.351082,-11.872938,9.696669,9.974493,-4.1008167,-4.87887,-4.372208,-15.993046,-6.667424,13.737062,7.0542564,-0.5268874,3.2142668,-1.5044357,1.2721043,6.057789,-9.152026,-16.100315,-1.2093568,-2.2080038,-21.667858,-19.41296,-5.9771347,-11.256672,-11.081274,-5.564078,-13.163017,-0.67371154,16.299343,-3.684936,-16.441385,-4.8779144,-1.9822664,2.53199,0.61913013,-17.451307,-11.458082,6.827776,-1.2091705,-7.680433,2.6579928,5.4535465,3.5820465,4.2334204,3.941886,10.298456,18.526745,18.845385,13.621418,2.3053293,-3.3596938,4.498598,7.2068405,2.7230215,-1.7525322,-3.6437767,13.034894,25.26074,7.8208704,5.429126,16.98604,-5.872705,-17.586823,15.271064,19.940134,-13.879875,-17.563393,0.11288929,-1.0045404,-5.107827,-4.0991416,-2.6418047,3.6116543,-2.0094237,-12.657174,-7.082513,-6.1665893,-10.710628,-3.5224133,2.9796064,5.939752,2.587354,-2.2256885,7.631014,4.810901,-9.910519,-4.5711255,-2.7195609,-1.2838314,11.423563,-0.98750067,-11.401679,5.9349194,10.745514,6.2480173,-3.4381685,-15.215474,null,17.51977,7.140399,-29.315117,-7.509928,5.4191604,-11.174303,-16.486378,-11.902656,8.152803,12.9020405,-3.5805871,6.655862,13.237567,-0.5396979,-0.10198879,-4.888572,-9.797363,5.962821,17.515997,23.718227,28.49157,22.24183,7.838693,-5.1765876,5.783436,21.527979,10.662136,9.891761,21.934034,10.7785425,-0.76970005,1.6798105,1.879811,6.856903,21.15386,23.999197,2.6194162,-11.41224,-1.0600433,2.410539,3.6463852,12.466215,4.757203,-2.3546896,1.28648,-7.904566,-14.508196,-10.496824,-15.159683,-23.399426,-25.364378,-22.655977,-19.64291,-11.039024,7.5151596,9.048935,-9.520977,-8.444088,12.292591,21.219852,8.562285,-10.699453,-5.75937,17.547451,14.234671,-8.176905,-5.847101,5.481195,-0.49869633,8.018641,31.215546,23.764748,4.3856673,6.709183,7.2106247,4.927189,21.422369,35.87595,22.681196,-3.8253336,-8.495255,9.060889,11.060392,-0.8687453,-0.73526,-2.762418,-5.455624,11.847462,17.6137,-1.6480346,-3.7155197,7.4979277,4.838275,1.9362304,-0.7441611,-8.734875,-9.2228985,-4.0927854,9.114889,22.564804,null,0.8371527,-4.0575647,8.687201,21.126461,19.561636,5.432186,-4.7950335,-1.6068125,-5.605751,-7.5778847,9.902107,3.0208454,-19.498384,7.414604,34.468136,6.1514273,-11.877409,2.3471136,4.3987904,0.044289112,3.2836335,1.5522981,-4.0057125,2.0042562,11.972498,-0.4869244,-19.327526,-11.979761,-0.56017685,-12.593599,-15.367321,20.08241,31.646444,-13.783986,-24.545187,1.5835099,-18.245176,-25.359646,15.355074,22.776089,6.2292604,4.504734,-2.0611525,-3.936514,11.375334,25.917206,21.738102,9.108501,15.690157,26.077805,18.31559,5.8000755,1.9560394,12.881323,14.3446245,-4.4003544,-4.8813105,7.670784,8.555296,-0.5215893,-15.834467,-6.3098755,9.580265,-11.124287,-18.995771,-1.9106779,2.5490518,5.1167502,-4.0298033,-18.005215,-14.340062,-12.283464,0.18735838,8.412155,-15.205306,-18.38261,-3.2405334,-9.115377,-13.7603855,-11.436815,-2.295656,4.9278336,-8.059504,-9.160233,3.2823615,5.566099,2.6565313,-14.984251,-23.540085,-7.511062,-2.7261562,-5.0173073,-14.257179,-17.896969,19.075695,27.913132,-12.630206,-13.205274,11.077637,7.527278,null,-13.529693,-3.1918788,18.373075,8.784528,-16.504383,-0.7966964,30.394335,7.1524487,-24.77631,-13.088371,8.924383,12.175208,-3.0653896,-8.604742,-3.3752294,-7.2802563,-0.48379803,-6.137186,-26.15976,-1.1819124,25.508442,14.869224,5.8100333,-4.802438,-5.052974,1.4529829,-9.368266,-0.70849085,3.1138039,-20.01794,-14.610919,2.1218362,8.616514,4.7740784,-19.802332,-0.5928874,39.95843,14.561602,-11.361426,1.5578747,-2.5309105,-16.966366,-14.069986,2.7026577,2.714251,-19.363174,-18.889326,0.20555604,12.921606,17.220196,2.8087177,-7.520349,2.1427593,11.679125,8.719751,-5.3550606,4.395611,18.01093,-11.906784,-19.253147,1.2866154,-0.67019606,26.538704,35.231663,-25.066887,-32.80999,6.6416073,0.48440838,-2.4983883,21.88525,24.609745,0.21879444,-17.064098,-7.4829206,-0.72529364,-1.767808,17.718323,22.00972,-9.913331,-15.762526,17.218895,24.122404,3.9460702,2.2005098,-2.8990583,-9.404838,17.351025,20.426476,-11.652496,-9.330895,5.8814907,12.804197,30.43758,19.443756,-13.893473,-18.726097,-4.11498,11.817921,15.301853,2.882295,null,20.75784,-0.70399714,-3.0622127,14.1025305,-2.3369653,4.0363483,11.883205,-18.108994,-7.775388,13.124737,-0.003409624,8.578816,4.555279,-22.004528,-1.1939511,20.79698,-7.287915,-21.267738,-2.0315695,-3.8473997,-9.699819,13.527843,14.487255,-5.0638943,2.59017,7.533124,3.251407,4.792656,-2.3413577,-3.304048,-7.079378,-11.21756,7.839309,10.826501,4.3994293,-1.6198635,-35.107162,-30.711712,3.1733747,1.9076952,17.226171,21.670025,-11.535036,-0.2577119,12.066326,-15.192662,-13.704137,5.7936263,4.96027,-7.236601,-2.6077182,17.303999,3.1396294,-13.09452,9.751907,16.534222,9.665386,22.055866,29.068035,17.639908,0.5106673,1.1887779,0.5624931,-19.045801,-10.778393,7.002585,6.625163,17.79253,11.968927,6.432869,32.754417,20.99939,-7.2183228,9.126467,19.019957,-4.9078674,-28.992561,-12.091487,23.162922,10.54166,-4.580285,9.534361,0.8783593,2.6475158,21.494732,2.1098406,-17.15551,-3.9980273,6.653717,-2.5891366,-14.538485,-0.575974,17.169058,5.1906385,-6.3243275,2.465899,9.232242,-1.0221324,-15.292801,-11.061141,null,1.2944762,-24.378506,-30.71211,-0.9927499,12.751142,-2.6851988,-6.992632,-0.036909103,4.1665254,1.9023161,-6.075624,-6.175759,-3.018523,-0.49415493,-3.4965363,-16.81611,-0.57430685,22.114302,-10.068211,-30.58023,0.88963413,9.793697,-8.426317,-4.799389,4.3335485,-12.961184,-24.573753,-11.107404,-21.20443,-31.875805,-3.648991,-6.067048,-32.93097,-16.582699,0.012430765,-8.576555,2.30726,27.233852,15.706426,-19.407068,-9.773228,10.562269,-9.9344225,-14.688937,-6.1343217,-6.802322,13.414818,10.798105,-16.170603,-7.4081855,14.26006,16.747894,-4.799838,-17.24241,3.728616,-5.852783,-28.471275,-13.983889,-12.717582,-8.401541,6.6600137,-7.8310137,-3.865047,6.958356,-10.873027,-14.068803,-8.367951,4.58354,14.984631,-13.087837,-24.758234,-8.20059,-3.9651961,0.1377294,-6.0850267,0.7502494,18.390158,-16.063976,-26.638523,25.785423,32.756298,1.6841625,-4.6423216,0.54092693,8.111066,13.702166,3.1368961,-19.316463,-16.43213,3.5076427,-10.030035,-10.769655,9.128229,-15.277424,-15.564244,19.8431,-0.6635952,-22.181705,-4.836381,-1.0222621,null,-3.241446,12.508878,5.8362737,-32.92035,-30.185293,19.457264,17.540234,-10.396215,-0.17788017,2.4356613,1.2505792,9.247415,1.5178258,-7.435719,-17.514236,-0.9102498,29.814907,1.3454995,-16.274231,4.3261085,-4.425791,12.592906,23.71745,-19.747997,-10.5471945,23.061504,19.6739,25.708487,15.289442,-0.01826191,11.779486,10.901777,3.4092433,-9.34249,-7.623461,30.560898,23.167007,-16.420912,-15.11911,-12.709289,-4.240145,28.675894,38.666588,20.422964,-0.052977085,4.22925,11.609592,-13.484086,-21.562067,-10.068254,-13.796578,-2.8458803,4.682007,-4.7785854,-1.7000895,0.36264932,12.6029625,20.977692,-13.06336,-23.590948,6.577981,5.879323,-12.882306,-14.208152,-10.336035,-7.7724133,1.6797932,20.924541,22.717642,0.6025772,-2.7035017,11.856378,14.305105,19.989532,25.613548,5.4728494,1.3737326,33.912148,31.43742,-6.09715,-11.494058,1.9910362,10.240992,10.284483,-8.563708,-11.001663,6.15842,2.189279,-3.8455644,1.6866615,0.38792944,-5.5578904,-8.288449,1.5519044,3.0280597,-16.367077,-10.108302,8.5271225,-6.6525183,-10.351189,null,-13.483628,16.428598,-4.725147,-19.259708,11.429075,7.225074,-11.693251,3.386343,14.038515,5.1746216,-8.125284,-2.891471,12.803471,0.6457565,-5.0678034,9.623846,3.2294207,4.7894416,19.186108,7.0502405,-10.132723,-18.741499,-14.177715,10.315237,12.94714,-3.0259352,-0.76357937,-0.596508,-4.367455,-2.4186666,-12.689672,-12.146906,2.1678596,-6.4282665,-5.3405843,15.730265,5.8060265,-0.8731985,21.577532,16.713835,0.625844,7.918297,6.050168,-7.729751,-11.7324,-1.1099715,9.027873,1.9723141,5.395232,12.875534,-3.6260073,0.21721411,16.554993,-5.1018267,-26.350626,-18.85932,-7.875937,-3.7161975,4.5531344,14.284132,-7.330866,-27.105347,-1.4990063,9.602372,2.000052,9.085142,-0.88054407,-14.8984995,-27.473228,-30.016476,7.856484,6.0808306,-24.832335,2.0188954,7.4185257,-15.951899,-16.489994,-36.912785,-28.853323,-0.16878068,-21.30486,-19.1498,3.0131164,0.2065072,5.918157,-10.676996,-22.259314,0.43804884,-2.4170165,8.720066,16.441954,-31.03316,-19.494028,30.59315,8.661371,-6.2492537,16.395153,10.716614,-3.5428903,-0.909281,null,-3.3269222,-27.506622,13.198294,22.649357,-15.218495,-7.64602,4.9271507,8.658692,13.529175,-16.208206,-21.669678,5.959114,11.903515,16.525782,-1.3730935,-28.173166,0.384631,30.158459,23.407467,3.4685822,-16.023659,-1.775828,10.410616,-6.008566,-8.966915,-20.105661,-19.313503,18.3008,14.119014,-1.5896796,21.040812,7.742387,-24.227371,-17.756063,-2.9475222,9.607952,14.211982,-0.22413301,-4.7888794,6.0468616,1.0198154,-19.171257,-12.289376,18.82035,20.97189,5.257545,9.427547,15.882187,11.48315,-0.66599464,-11.0463505,5.374735,28.047071,12.872387,-16.788353,-10.54591,10.544968,-5.3390265,-25.09245,-4.2750072,1.8173513,-21.813503,-9.693058,12.005781,-1.741785,-1.3836391,10.692815,-6.2484884,-15.309811,-10.564386,-15.447829,-2.9042807,8.887168,-7.2862387,-19.075678,-20.351929,-7.4291716,15.004234,2.2468057,-19.798805,-12.385973,-4.4230003,-3.8133333,-11.873975,-20.105537,-4.0412803,8.378958,9.425274,8.263243,-9.5488205,-4.7712097,15.402343,0.001609087,-4.417034,11.675004,3.3954694,-7.610783,-10.930221,-4.3605905,14.08972,null,-2.8165722,-22.173134,2.7876968,21.709784,3.833972,-11.856525,4.416735,2.4182951,-26.295025,-9.369537,19.715261,4.8903294,0.92744005,13.908636,9.036842,6.984475,14.678596,16.175404,3.5607479,2.144706,24.89104,6.7491837,-36.97579,-11.225658,37.66084,33.123947,11.814833,9.183046,20.402061,25.20235,20.05265,30.84358,37.14457,16.359146,9.117086,20.541512,18.83887,18.661201,25.515482,8.245542,-14.927685,-2.1441174,18.353964,8.469546,-8.132497,-6.220045,1.5072868,-5.966023,-19.861492,-15.5734825,-5.147418,-2.5147266,1.8516072,-1.9604554,-8.059946,4.9500933,15.845791,6.88444,-7.7073536,-15.901264,-11.605104,0.86825657,15.338974,25.82492,15.686098,-5.357074,-1.5388677,23.810776,29.12754,5.523871,-14.841322,-12.984093,10.205454,30.092138,9.925631,-18.22454,-0.64788723,29.43343,20.768387,-15.924174,-31.633163,-5.5684805,15.117965,0.0028939247,-21.724262,-25.029459,-9.089864,2.8997488,3.9156928,1.8008366,-20.90509,-23.634232,12.169663,-1.8333321,-31.288895,0.4974513,7.7566667,-18.85489,-7.0440683,1.6616756,null,-8.6663685,12.309807,-5.6528172,-20.542591,16.117435,30.119455,-21.782469,-41.940174,9.435385,27.155708,-7.3561635,-18.684963,-17.953838,-20.794163,0.6223787,12.108332,-6.3677583,-5.0784326,15.693262,11.3787155,-11.582944,-14.670698,4.4426622,8.584797,-4.7550497,-11.052425,-20.125568,-10.654288,24.983103,6.657098,-36.51976,-12.478632,3.8233733,-24.114914,-15.14486,-0.50743234,-20.073008,-19.346283,-1.8373941,-9.543615,-19.450832,-0.33947945,-0.56076145,-46.12829,-44.365093,10.540442,12.116718,-13.024661,-3.9717462,5.2961125,12.632992,16.579811,-7.2475224,-22.166437,-4.2172213,10.334928,0.3430612,-9.845577,1.9436255,7.5949583,-10.69026,-16.800016,-1.4458475,4.7364683,0.18756437,3.1516724,0.2274909,-23.01213,-33.845306,-10.7291975,12.937145,1.341992,-28.99034,-21.279116,11.741295,6.4018,-5.0120497,5.4438224,-8.325365,-15.929617,13.843451,23.817688,1.2594907,-16.279026,-9.153057,10.477689,9.603931,-3.88651,-9.39856,-9.517379,2.5803857,7.613315,-7.735795,-6.4029613,10.570956,5.394168,-15.268263,-12.76169,14.716716,24.340246,null,5.161483,15.641842,-7.2694216,-21.194279,-0.6063328,2.2822394,-7.4241,9.629015,6.081691,-20.62661,-10.759493,12.562771,7.9404593,-6.1126246,-2.3501034,10.064112,3.4391313,-10.010165,-13.691721,-13.108202,3.3188848,7.923935,-26.91667,-42.171677,-14.933863,7.7746177,7.126687,-16.763165,-37.714703,-19.570328,8.474473,9.022368,0.19411564,-2.9548426,-6.563965,-6.419546,-7.671701,-16.94976,-11.595499,2.6621773,-5.3342867,-11.85158,2.521894,9.13564,2.952519,3.6588373,16.965569,15.011774,-13.997689,-17.13047,1.89217,-3.723812,6.5556173,32.84015,22.835064,11.422653,13.737387,0.09910202,-4.806637,14.452479,30.275541,24.580967,19.499352,22.269606,-6.3127127,-17.141132,35.303345,40.98813,-0.37347507,13.084597,19.042332,-6.1210403,4.6635094,-2.6796956,-36.441715,-12.592562,31.294632,19.57521,-15.597487,-11.214726,17.04504,8.284171,-16.440163,-7.8474307,1.6040332,1.6278207,18.876913,11.789724,-26.487387,-19.534166,20.856049,14.784733,-13.127983,-6.081783,0.38740015,-10.632623,0.11881828,3.899745,-14.389486,4.5325255,null,-20.631367,-33.67882,19.699371,19.728695,-26.131054,-17.17156,12.213718,-1.0263724,-20.289825,-7.074732,18.028828,16.531187,-14.531984,-28.319897,-2.6292324,19.92422,8.333458,-18.102777,-31.493464,-22.59577,0.43827868,16.776028,-0.9382143,-27.81027,7.3810377,52.96101,2.3490248,-56.799553,-23.658901,16.88324,12.846519,-5.649768,-25.892185,-13.437215,16.637032,12.064677,0.8924959,1.699333,-1.7829748,5.8179426,17.258171,15.938343,12.925621,9.635662,-3.6585793,-26.921402,-28.10331,3.0929794,9.970703,-14.545488,-18.851303,-2.1070857,12.128203,9.686872,0.0014115572,15.382891,31.175484,16.221155,8.596365,22.488808,31.109365,26.77245,14.200237,8.656395,8.867624,-8.3106785,-21.807663,-2.9715695,11.315363,-2.9181263,-11.702448,-10.7785225,-12.83193,3.4250855,23.998285,14.832126,-6.0734177,-12.198185,5.025123,25.069748,11.544432,-7.153193,-1.1169746,-0.35355586,-5.88383,-8.20191,-12.333395,-4.437524,5.0381303,5.094773,-4.5637927,-23.288082,1.7272396,42.777527,1.3793532,-40.38839,1.7017093,20.330559,-12.191286,-12.471135,null,-4.3183894,13.220402,10.214854,-33.58095,-7.41705,32.782402,-3.8460221,-10.353969,32.766735,22.285206,-20.124302,-21.78925,13.121811,23.288357,-12.11372,-21.296257,8.192382,14.054576,0.9317684,-15.403584,-24.330463,8.49366,38.84284,11.878321,-32.30004,-45.482994,-9.654945,39.779774,23.339512,-26.215633,-15.550874,14.081058,3.5800312,-1.1844702,4.635648,-14.912372,-26.283855,-15.382004,-15.453735,-26.367004,-41.64627,-46.992275,-28.586617,-23.775345,-33.144814,-17.313354,2.4901886,6.94584,4.428176,-6.8120794,-4.3244977,11.06159,3.9352722,-17.782358,-31.729298,-35.420116,-33.75197,-32.226124,-22.106125,-11.5938015,-13.653745,-14.5147085,-20.018822,-23.616047,-0.6509805,12.179734,-8.379825,-23.170729,-14.040655,9.281944,18.623976,1.378025,-8.399047,-13.842883,-21.762547,6.2808304,26.27951,-10.1330185,-18.414677,23.771885,24.42265,-3.36831,7.7113934,18.777325,-0.97285175,-3.805657,6.5587816,-0.7075901,14.188477,40.536057,7.0162616,-26.923056,10.870321,30.416344,4.106018,8.90185,5.435892,-22.007332,2.2910495,16.140795,null,12.675949,13.229422,-26.684753,-22.50941,20.017797,4.5018277,-38.76938,-16.30435,25.061743,-1.5404463,-38.727867,-9.74942,18.86244,-9.002935,-26.967815,-12.735091,-17.408657,-26.283707,-8.827207,-1.7988391,-14.037147,-1.7262859,22.66248,12.994113,-9.7024355,-4.8566685,13.3080015,13.564824,-3.6805356,-11.785536,3.2559428,27.796864,36.691006,13.059401,-6.224868,17.260143,28.974426,2.8639703,-2.4415183,6.9404974,4.8658633,22.664057,50.21325,54.16739,37.296566,11.954142,-1.0242345,-2.5474777,-13.18458,-21.20639,-10.326673,7.1602182,4.008083,-9.234583,16.78691,49.14048,26.702656,4.1784496,18.380703,21.547985,9.975374,-3.4561486,-15.493324,-6.1690636,-5.5916905,-24.681383,-0.5706215,35.343136,3.482977,-38.00004,-32.041832,-18.593966,3.248949,23.769009,-9.107128,-44.462708,-23.421326,5.76245,11.161264,1.9683475,-8.217788,-1.7133489,-0.38737154,-12.369098,-12.679506,-9.269385,-0.91842794,7.303705,-9.598949,-13.394328,9.797905,13.045982,3.2645638,-9.687881,-23.049328,-1.981187,17.505413,-1.0451112,-3.1717215,9.591524,null,25.53741,-11.816726,-12.790302,17.27455,3.2138565,-4.8258467,14.120946,-1.9379697,-37.118073,-19.753458,35.58478,29.736507,-28.198778,-26.015633,9.907428,-0.0857048,-15.61334,-10.348664,-0.5378628,16.107943,11.843154,-13.597785,-12.554279,11.96217,14.443426,-23.225803,-51.93956,-20.141594,17.812237,8.245868,1.3124502,12.861814,1.8563194,-9.355841,5.910346,12.585928,4.835738,12.944775,28.0528,27.016832,5.4946074,-25.694435,-31.786125,-11.421898,-13.036573,-27.114635,-7.208729,16.871334,9.835156,8.954859,20.348892,-5.1904464,-48.32725,-48.43583,-30.275574,-37.893486,-39.048958,-9.876341,15.996787,12.581324,-12.045839,-25.114801,-9.190907,-1.1801734,-18.464302,-23.698769,-19.042927,-24.459038,-13.522715,3.299677,-10.630775,-31.13419,-29.128021,0.21414554,31.00053,-0.21980286,-48.49118,-16.270412,17.368717,-26.948303,-48.740734,-3.9187837,19.403912,-6.816257,-27.477118,-21.116478,-9.971815,3.8959818,7.253315,-15.722485,-17.579325,-6.804427,-30.596703,-14.957991,33.554256,7.3061934,-14.208659,14.230688,-13.693747,-19.958515,null,-8.658169,16.505287,17.873117,7.7696977,-5.568971,3.1862593,33.155678,8.697874,-24.128002,16.725857,34.428326,1.0568895,10.168167,20.773016,-9.123854,-6.4323826,29.94444,28.297827,-5.2098217,-3.271723,12.8945465,-14.246108,-18.022352,21.019943,8.717791,-24.71404,-15.406712,2.4020395,14.480804,2.8090549,-28.183973,-23.551598,-12.881653,-18.706394,-1.6833105,11.641341,10.681724,11.364193,-13.216623,-29.641178,-8.567853,-2.4462795,-6.4539437,21.793137,54.253353,49.221878,24.098364,16.123299,8.598803,-13.545767,-18.799324,-15.13718,-10.013315,21.26493,33.971756,6.869888,1.307121,4.5545053,-19.306309,-29.470652,-19.587883,-16.770088,-9.953729,-0.9903997,-0.98485374,5.9742203,17.69246,8.561731,-14.097229,-9.719981,29.107733,50.40704,14.98502,-31.512302,-18.017563,30.298153,34.259132,2.29242,-9.480362,0.65985066,9.952972,0.7538247,-15.569867,0.7767725,23.009161,6.820796,-3.1787066,14.274285,14.849211,2.9832249,11.93841,26.388313,12.020612,-5.1549463,14.989154,17.159428,-14.970085,6.4376173,41.064877,1.4397378,null,-11.91452,19.307222,10.538334,-6.516786,6.328284,4.7840176,-4.638838,1.3120708,-8.806126,-24.216967,-8.710358,9.352011,-3.9817996,-17.752125,-6.3040514,-11.883125,-39.445435,-27.72052,0.050438404,-8.559672,-4.2287984,21.272161,3.8101618,-25.538094,-0.9267025,41.737022,32.82815,-19.9202,-47.00621,-25.087845,-1.8958621,-1.2214167,0.18498707,1.1395907,-21.820354,-47.793976,-34.73415,4.902642,27.638927,33.396324,47.841057,43.42433,-11.244194,-53.76188,-47.262405,-45.29017,-42.972847,-19.321854,-12.561771,-20.426083,-32.100433,-46.207134,-37.856926,-36.13478,-47.320183,-16.163235,38.38289,66.97355,56.18627,28.61908,30.200329,29.084507,3.5669763,-1.0938025,-8.809136,-6.996962,37.751305,38.18728,1.0650873,3.0016007,1.4862134,-1.9241414,17.131073,8.995212,-7.267315,9.106365,21.497093,-0.70586014,-19.338497,8.218653,24.48347,-7.6934247,-13.434107,7.254158,6.4843035,9.94044,10.70382,-2.8487957,5.860902,17.575169,-4.939939,-20.683002,4.2923794,5.9002504,-30.73331,-15.265778,16.794235,-7.8286605,-10.651929,3.645743,null,-5.9137673,-30.84758,1.8697853,-1.3793297,13.693287,16.732412,-27.40716,-9.266734,17.560612,-5.005068,6.04064,14.982014,-12.375672,-12.819493,7.633075,9.03096,-2.993545,4.105951,10.725428,-17.878096,-16.111134,20.080723,3.9216628,-19.860767,8.667728,21.097095,-18.392948,-40.45619,-5.3487406,21.365498,16.940495,23.13574,1.3217125,-43.011806,-31.38052,1.7954955,8.363849,8.299888,-0.7775602,-23.15344,-47.446526,-50.410606,-33.98867,-28.743172,2.988944,61.104885,65.55213,43.342262,40.615776,37.028893,59.326263,89.59754,63.72214,28.643356,31.466787,14.799279,-34.62417,-55.7168,-54.104652,-52.004986,-7.230446,44.207832,30.523634,4.721586,5.8125515,-1.1812367,-8.628497,-2.5126815,9.876254,22.191523,9.920808,-27.011992,-30.903059,19.945765,34.074886,-18.330412,-22.130926,10.049702,-15.810033,-33.324383,-16.101822,-17.153212,-1.2822094,19.207977,3.0836334,-10.930453,-9.7889,2.7191992,17.312824,5.149849,-14.255697,-24.154266,-8.187801,31.197773,3.176578,-42.848953,12.909783,31.88002,-34.98654,-10.152507,null,-28.152277,18.950644,8.176697,-23.934517,4.4451513,14.408413,-5.4770346,8.361757,24.979403,14.683287,-10.302228,-15.638529,11.376646,6.8540077,-6.9057684,20.318172,14.613967,-7.3720765,10.907548,10.837683,-8.928256,-23.178326,-18.405304,30.71553,34.625824,-19.00772,1.656805,59.09915,38.75083,-20.787868,-31.100227,-0.47453547,0.2308712,-1.3094459,28.80978,16.287115,-22.490534,-27.88744,-18.963453,22.534067,66.95491,60.59095,66.4948,70.24527,-1.4190683,-63.28326,-50.113087,-52.99052,-97.87378,-91.83272,-48.602432,-56.773815,-68.31593,-25.942295,15.288875,32.659447,37.260254,27.430687,23.406357,10.391897,-36.300354,-60.70393,-17.350142,31.380331,25.802984,-6.6378756,-35.41478,-38.942852,-2.939186,22.564371,13.575799,-3.7752552,-17.786568,5.7159004,39.07259,13.651623,-15.226562,0.74649477,14.223365,-1.6224451,-11.944301,32.942913,57.46426,2.097743,-10.341999,14.86782,0.0032510757,11.210759,6.8506985,-21.885563,29.315876,53.369705,0.18216991,-6.8540697,7.247358,8.449553,10.808689,-4.2893085,12.285448,34.422504,null,-5.3030453,5.137858,8.192759,12.702964,-4.802565,-16.933702,-2.7701178,2.9089842,-14.651826,-6.181919,15.860168,7.7213373,16.40022,15.60906,-14.288257,17.301453,26.711742,-30.618322,5.578893,58.641037,-1.2716885,-33.668457,18.466381,46.5318,11.674929,-18.209589,11.453484,24.962202,-12.451441,-22.542332,-10.139757,10.857453,50.09486,32.016457,-34.013752,-49.07297,-19.653454,18.626745,55.565567,50.631077,1.5236931,-55.28057,-88.82417,-56.497665,1.9850938,0.84304,5.623049,76.51947,106.06819,66.05087,56.119133,86.07048,74.26704,0.6463318,-51.303017,-60.098183,-86.49231,-88.43382,-26.003334,33.763107,46.57264,6.917509,-27.143967,-11.684481,-18.709715,-27.05455,22.003891,42.648506,0.5399122,-48.603703,-43.327538,23.006474,25.702187,-32.175255,-20.578707,8.819685,-3.3288455,-16.749548,-15.758525,16.55228,19.032528,-32.86577,-17.3965,38.662518,19.652622,-13.641361,6.251993,20.370544,-9.720331,-24.166073,3.3139963,15.882486,1.4198699,-14.3011,-6.3870215,23.12123,14.586275,-6.904099,-0.714551,-11.120842,null,43.843468,-11.131578,6.134446,15.897909,-26.05691,-2.6902506,20.766182,14.486046,8.062529,-1.7921662,26.55299,22.475998,-37.62272,-11.788362,53.20233,23.276356,-8.282888,32.521812,23.496822,-33.864037,-4.1714373,31.201845,-14.868959,-18.129843,19.920063,13.706678,-5.5551863,-20.75671,-0.7115507,51.63414,44.46176,-7.5969963,-48.152252,-55.995144,5.7186384,66.64014,45.049904,-9.68144,-48.673466,-63.543716,-49.449657,3.4413548,79.57889,98.78313,53.034096,16.169292,-9.85624,-42.487633,-68.01887,-68.98171,-41.25387,-34.718464,-29.71392,51.302116,115.44713,74.42421,36.17648,26.980305,-37.7402,-97.32214,-56.114925,35.529594,77.15456,32.65027,-32.94131,-38.236694,-6.245887,18.392143,25.652187,-3.232997,-35.59755,-28.768066,-6.1429334,-0.6903534,-21.805529,-15.105427,26.302937,-8.782673,-54.55076,14.0803585,44.176617,-24.944714,-23.423058,28.098274,14.139282,-12.92097,-10.182953,-16.840046,-7.188622,21.993458,-2.9221425,-22.9183,19.649363,21.546772,-3.4992955,-4.173985,-14.082021,15.476844,23.862995,-22.743206,null,16.92051,2.1236,-2.8606658,11.523939,-12.617683,9.393078,17.411993,-11.12392,12.631523,8.453947,-16.966824,7.7521896,7.9041348,0.87530327,10.922031,-15.634071,-0.5592356,56.448593,14.417504,-50.843933,-2.0017729,29.308153,-41.643684,-47.116943,27.681242,15.596878,-44.35824,-28.500647,17.403385,22.426403,-14.235428,-60.80816,-44.560158,45.91388,86.96864,18.833216,-42.206287,-32.099537,-8.97987,30.22163,84.87438,56.867706,-45.1976,-86.284096,-62.25974,-64.233,-59.892323,-1.9840279,40.999924,38.5166,29.161499,13.084124,-22.100285,-63.10482,-76.042755,-52.869377,-26.082565,21.859554,93.27582,99.19653,29.31159,-25.871202,-30.859741,-4.952793,30.945057,46.084816,14.605996,-30.682236,-30.520658,13.174128,49.287567,16.337671,-47.5911,-6.045828,65.117065,1.5171156,-52.68764,21.672655,48.11721,-19.219622,-11.848665,52.189163,12.445922,-41.31166,21.593525,43.357887,-12.2305,-1.9811668,17.49156,10.744125,14.947094,-3.2643037,4.303293,13.334697,-15.922923,1.1951832,3.0858617,-8.183075,33.222908,-13.359016,null,-9.784495,3.1279259,22.27184,5.473839,-2.734528,-5.718166,-15.818933,11.309936,9.021152,-13.327616,9.956783,6.204714,4.284364,25.288744,-5.120013,4.736643,37.997696,-20.592422,-29.70234,37.790882,16.1054,-39.520687,-19.167841,18.45118,-2.49229,-45.501183,-21.371502,16.395718,-29.69718,-66.113014,-10.6203,44.982796,31.773918,-28.485926,-71.26124,-23.362701,56.24018,39.551556,-30.556387,-61.78268,-86.85956,-95.6408,-30.395546,51.05705,80.04021,83.53302,89.83189,75.29789,33.26335,9.075547,17.868286,40.400124,81.966064,114.61549,96.09446,42.433376,-25.138266,-89.916275,-113.68895,-56.953457,61.16603,101.66265,2.4747562,-73.84688,-40.73584,3.8300877,23.529264,25.961967,-13.822614,-38.119804,11.252582,43.311474,-5.7156076,-22.121178,40.497578,36.530807,-38.55506,-8.214258,58.40116,-9.274485,-53.602005,21.494532,17.118975,-44.421715,-15.807923,18.386353,16.783976,16.04954,-2.5768404,-8.998796,-10.269321,-16.0189,0.5729232,-13.587961,-15.482614,31.330254,6.925918,-29.506092,1.9780049,-1.8697562,null,27.88182,-15.362868,17.342705,13.0062065,-20.009672,10.815687,29.122866,6.5712767,10.506609,22.727486,1.3488904,-26.670147,-14.580498,4.6675987,-4.5812345,8.557917,3.7992191,-51.60347,-19.44447,47.227814,-19.700588,-63.74257,19.35594,28.685776,-42.87016,-25.328585,29.485577,7.1951714,-44.433807,-34.630344,35.56832,51.238674,-40.46798,-87.65747,2.500744,93.25292,73.80347,-11.589895,-75.51749,-68.78126,-4.619337,71.57425,88.96579,12.119701,-67.210464,-89.49597,-112.19737,-132.95712,-115.26315,-85.32973,-73.14138,-102.3524,-152.84961,-149.63885,-78.24854,8.378034,63.58284,74.1351,46.32818,-30.944096,-110.47656,-76.406136,44.01181,92.05957,34.927635,-34.65187,-51.476368,-2.5634875,58.540283,50.34627,-8.852892,-26.808855,10.889788,17.417488,-23.00574,2.6779032,53.175644,-13.088604,-44.398003,55.617367,50.479744,-36.27728,0.062998295,45.153416,6.163184,-27.200602,-15.591411,31.700474,20.338728,-39.949024,1.6767716,43.516937,-12.739143,-19.740814,-1.6610022,-21.05673,5.740238,7.749132,-39.352493,-1.1898031,null,-23.465563,50.65548,12.708136,-23.486992,24.85654,1.3223436,-14.913602,34.969955,6.0524077,-25.458666,25.223753,28.927977,-14.569156,0.7640953,40.95814,7.1784596,-45.1091,11.807632,58.506004,-13.832027,-13.393942,59.914314,15.373873,-29.219133,33.55352,49.48261,-8.099244,-18.800058,22.833008,21.627884,-36.646606,-39.689636,35.592384,75.646065,34.84555,-49.69558,-94.98416,-11.899716,106.422226,90.37967,-15.5064335,-81.84713,-89.42665,-39.85771,36.273727,65.98859,79.557274,121.47507,127.78081,100.60019,109.79686,130.82132,122.429855,82.14783,1.8020763,-84.60193,-120.467705,-85.91681,13.135063,106.4296,77.472855,-52.93618,-100.60965,-12.239672,44.53548,6.6201754,-23.51413,-31.112558,-32.534065,4.5710254,12.179686,-35.71165,-13.15448,29.352377,-38.482567,-50.41749,49.826103,18.213474,-60.57529,23.362648,55.009666,-41.01739,-28.320974,31.86045,-2.0535069,-20.26279,5.098572,2.3919659,-0.56232905,9.087595,-11.867312,-32.057205,2.0374641,12.637122,-29.730211,-3.5067468,30.21759,-29.495014,-22.35176,35.638206,null,-56.352146,-28.13173,40.017006,-17.500881,-29.94005,20.035946,-3.901322,-14.397337,14.516562,-5.7854943,-15.595022,19.991638,12.542577,-15.075617,11.664085,13.11851,-19.702164,28.336878,41.854187,-52.62156,-20.625484,78.80304,-3.4907343,-62.489502,39.935844,38.008858,-50.517677,-3.6132307,57.70607,3.4300175,-23.413921,30.575384,42.721786,-29.121521,-107.88591,-98.709854,12.711798,95.96996,33.93142,-80.73126,-91.7464,-16.870316,48.43286,77.68512,34.511482,-76.57291,-130.78674,-115.98831,-142.86786,-173.14017,-146.53271,-136.52911,-132.82077,-56.388466,34.88461,68.71745,68.007515,9.347412,-107.572495,-129.6807,-15.079306,69.95786,55.115273,-7.7987223,-60.80445,-37.879654,16.079777,12.595238,-21.34053,-39.244087,-10.111427,24.674732,-17.370655,-23.57632,38.326096,-12.440004,-59.919994,39.429966,44.25497,-57.25654,-17.544722,56.744225,1.4266356,-42.671783,3.8408718,22.569881,-16.425821,-25.708494,-8.553795,-7.623849,4.1514726,-2.6402903,-37.88867,-12.9115715,15.386812,-20.855827,0.49246532,45.7202,-10.938498,-47.0597,null,19.412073,-11.477533,-33.702072,5.190077,2.7654142,-27.993795,-13.308276,5.0012784,-0.51414967,-4.4525642,-26.353882,-37.96844,18.271532,33.673428,-44.98011,-36.386,46.303535,4.982443,-55.14206,20.433151,64.39578,-6.928846,-7.0267234,58.97322,9.650642,-52.501717,4.1177554,23.07298,-8.608936,35.989902,51.32119,-20.510487,-62.15937,-39.158108,26.582592,75.06597,34.48404,-36.47032,-36.28708,41.4505,93.9156,31.61741,-63.306774,-85.0996,-61.20783,-34.78205,-0.07750893,54.470684,102.489296,120.256454,130.51863,93.088264,-20.126692,-95.64154,-88.99719,-64.603485,-12.1983595,74.17706,110.024536,37.821938,-60.825115,-54.74887,18.904495,29.409584,-17.324226,-39.445343,-14.359141,15.941643,8.136246,-1.4495052,16.15747,-0.81281614,-37.448486,-0.72392845,37.89409,-24.391804,-54.638588,24.49598,37.112038,-33.563457,-14.722402,38.224247,2.924512,-18.888083,18.020035,15.618967,-0.6903876,6.6705036,-8.986559,6.6040134,44.445583,3.8643777,-9.743361,35.825737,-6.0040245,-28.475164,41.105576,22.367867,-29.184608,9.062571,null,-10.931675,21.31257,-10.177605,-38.354816,20.875698,26.800333,-33.39188,-11.311112,18.171318,-1.0617352,11.20052,14.938566,5.558983,17.080456,1.2649865,7.8062086,37.588997,-8.686794,-24.10469,41.951313,20.931213,-29.699574,19.172995,39.59353,-3.480931,-8.790371,3.9558718,15.876429,19.777866,-10.55627,-15.189878,7.573985,-2.32298,-4.488515,7.393573,-38.94055,-108.30031,-58.384064,94.48037,108.496506,-47.812115,-113.425095,-31.194168,48.54853,70.174225,50.87088,18.88953,-21.050014,-57.976707,-57.416336,-53.117348,-45.057037,9.2824,63.537083,93.02197,73.65404,-33.862965,-105.97568,-38.564037,72.91809,108.3916,38.55657,-55.263943,-73.36771,-26.37346,4.624866,-17.85022,-18.673267,23.548285,5.7140484,-25.431866,23.974056,45.359154,-15.515135,-30.160221,37.547337,32.353813,-51.192993,0.66028976,78.30031,-29.83796,-64.633736,53.86123,37.66365,-25.57854,15.826664,13.626923,-18.204304,8.044966,6.289504,-15.783396,19.839474,20.875437,-41.062313,-2.8595743,61.59365,-15.432656,-39.05145,45.448624,12.800803,null,24.497528,-49.028156,-3.1480544,53.582596,-31.596571,-46.203365,32.045597,6.7099495,-42.67141,2.6451912,21.081753,-33.14244,-37.48354,-13.942078,-21.179531,2.6560113,-1.8028829,-37.10299,16.06838,31.890814,-33.200077,-4.4337506,44.555725,6.5508223,-35.640095,-17.282059,54.013664,45.119263,-42.17489,0.70475197,83.2894,28.437119,-30.194931,-26.661678,-44.984867,-47.240856,22.442497,59.553257,-25.615046,-81.18974,8.033435,102.6139,92.377266,-2.9610462,-92.90659,-91.267876,-50.710297,-3.5952764,54.293686,40.715,-16.054825,-40.14012,-64.31966,-89.808914,-81.98755,4.861083,123.070114,87.24597,-51.634705,-64.28075,15.7604475,29.324085,-17.31078,-25.822617,-11.121391,-30.820887,9.246367,84.6384,30.036377,-40.01804,-5.795349,16.270111,20.229647,10.836709,-36.470352,10.386532,73.86978,-20.601627,-57.8599,42.67598,16.706945,-54.817535,13.358269,41.638985,-15.018454,-15.286293,3.7018442,7.781267,3.7770653,-13.451822,12.375696,23.65804,-19.168335,1.8437252,36.45949,-7.6505756,-21.118217,18.160957,14.125101,-12.199808,null,-3.2676725,10.587177,-8.921797,2.1716027,19.29675,-21.771065,-4.7771316,33.35775,-7.1464996,-19.980446,-1.5691221,7.314438,14.653786,-17.344494,2.9442234,34.14586,-48.67755,-32.610092,60.53733,-23.713465,-64.53359,34.157547,-15.176292,-107.97902,-37.242065,24.204311,-3.8445108,-23.887852,-35.713783,-8.894688,39.37063,-14.341002,-55.859848,33.196167,54.45302,-24.677912,-39.04173,-36.83911,-53.07244,7.4690876,103.93982,95.06524,-10.519739,-36.76297,34.424263,66.965416,73.77759,71.03916,43.84278,65.76407,96.80258,89.63144,95.90555,83.30676,35.523224,-23.332886,-45.607853,50.876907,130.79248,56.491024,-17.449371,-10.967229,-25.425144,-66.308044,-29.179317,48.62209,4.9353294,-28.241053,69.378235,34.52578,-71.63498,-0.78627396,31.565725,-23.061329,9.97411,8.716817,-12.300575,43.97232,16.394613,-53.643867,2.7250385,47.721252,-21.732601,-44.973476,30.882767,49.238766,-23.351063,-40.817245,15.584421,14.29132,-30.01753,-0.48080906,29.16608,-22.623314,-30.667122,12.2912445,-8.463065,-25.456347,12.902693,20.106453,null,-1.9008036,1.4507985,-12.833077,5.567994,2.9791126,-18.35548,0.19038391,-12.699488,-25.080578,20.819773,24.522043,-24.074326,-18.722538,43.715866,28.822376,-51.69379,7.603156,73.173225,-53.230404,-48.503296,103.06765,7.40991,-89.91756,35.735714,35.098732,-20.716423,39.24922,-10.188822,-47.54528,10.249548,-63.558228,-57.69122,93.17699,34.00956,-94.54474,-50.56222,-10.051153,-29.545448,-4.8297176,49.372906,33.34173,-19.016579,57.691196,139.68167,49.20742,-35.958485,-40.548794,-48.75276,-34.738777,-38.32472,-62.50036,-50.64026,-44.971573,-3.1491272,102.52843,129.85512,38.49468,-34.255486,-9.358918,19.871492,-2.7584157,2.0288105,4.9015775,-36.141197,-8.102917,57.157745,6.4566307,-74.0426,-33.671745,29.409462,16.465046,-5.716579,-14.532555,19.58615,53.19014,-50.270428,-71.17554,68.253685,-0.5813618,-90.55591,49.798203,39.27367,-57.076088,17.798752,26.109373,-14.473959,16.26703,15.062118,13.965832,0.3056693,-15.616058,20.327787,3.6190982,-10.533143,12.780922,-17.932552,-4.7657776,10.511855,-35.552456,1.6681595,null,-40.878864,32.65196,-6.1235733,-31.05418,25.4888,-9.432586,-21.774296,-5.9431224,-26.063934,-9.367638,-10.717693,-13.441349,-18.213726,-34.003708,16.69119,-24.17375,-66.48256,46.837296,-12.082302,-84.56955,65.48411,19.235807,-77.376526,48.678383,32.75952,-63.371414,-16.108467,20.143263,19.988903,-25.42898,-50.874435,59.100822,76.767784,-29.405453,14.208784,116.14856,71.84746,-4.1862144,8.8457985,16.65693,-18.20894,13.513275,80.25037,74.65362,60.385826,104.66359,121.86919,58.60178,26.347786,54.51,36.657562,40.72381,90.51518,44.82924,18.11981,101.678925,122.639145,75.19479,26.444635,-26.74857,-34.252045,-15.312872,41.42222,103.72902,25.32128,-24.19237,70.56482,44.301174,-36.984756,3.2648993,18.762798,43.427013,57.355423,-48.060642,-3.0865126,93.75624,-57.10646,-56.45389,119.68779,12.441929,-80.936584,43.38877,24.914183,-50.934135,-4.659406,8.998208,-27.24926,-29.367315,1.1967977,-1.9900928,-25.979836,5.4197965,-2.1803312,-29.463055,21.41195,8.576332,-21.477049,18.634644,-10.821391,-15.04807,null,-10.109855,28.108656,-39.339394,-6.447377,19.258791,-36.60863,-8.307241,14.540713,0.37882733,10.277434,-5.832034,-17.484417,4.71608,45.58172,29.33979,-25.243162,32.194534,22.920595,-65.576584,47.244644,55.978348,-101.10473,10.880119,92.790695,-53.564056,-23.144758,79.507614,35.831825,-23.518318,-30.152384,44.766563,58.059425,-34.10044,43.87008,139.39767,19.715258,-3.0119514,77.62489,-7.731097,-66.77522,9.486635,31.29228,23.372784,60.200325,93.45357,89.33067,27.53607,-9.750674,43.32326,64.38035,5.5035753,-8.261868,78.27844,141.79895,80.4636,10.801852,10.846746,-2.220871,-18.463476,4.5036945,22.38023,-18.259193,-37.943474,86.40996,117.96318,-50.398003,-35.433838,70.77235,-19.057318,-59.056885,-10.428404,16.901833,28.766129,-62.51572,-35.936245,65.17458,-66.8138,-59.4704,78.53584,-38.760094,-47.034046,55.728554,-36.17953,-43.93605,17.24658,-13.381233,-2.1770205,3.2365856,-10.969563,-5.2998896,1.2396603,19.702534,-21.956993,-21.841057,34.697376,-24.572937,-17.47535,41.717087,-29.70044,-13.593148,null,1.9204254,47.051826,-8.138233,11.1705,42.376007,-19.413563,2.706334,38.380463,16.713219,7.645539,5.893593,26.787903,11.859215,2.6461735,20.640171,-29.625149,25.103916,72.73962,-55.517883,5.2563953,81.142654,-55.939026,7.950646,85.67476,-23.575819,6.7462225,39.69095,1.5940824,25.314867,17.827078,37.78164,2.087304,-72.404106,63.597084,101.07706,-33.912277,32.39906,81.74873,-18.390657,-34.584984,-32.3386,-39.8479,-27.996706,-40.126965,18.573723,92.62906,72.68586,43.959557,34.424362,55.92172,103.73603,78.938835,42.21179,74.27372,82.22156,36.289345,-21.093645,-24.962925,21.571976,-53.60156,-104.08732,77.14988,90.90895,-67.8578,49.512325,102.455765,-78.303925,-39.132324,55.42288,-14.846469,-39.918327,4.4642496,70.202774,13.816137,-90.199036,40.858505,68.686134,-73.9025,28.780468,77.05836,-42.20411,1.230479,21.174599,-13.713608,31.626488,15.7679825,1.5590701,22.350021,4.9006004,12.053765,17.524042,11.686911,0.9763317,-3.2259052,38.815727,0.26581717,-36.922073,43.04186,10.469645,-42.261215,null,23.03013,21.205982,-43.706123,-0.8911853,4.551875,-25.861263,-12.129523,-2.5719995,9.386207,-19.623188,-17.378761,19.531696,-36.985664,-23.994907,21.875284,-22.117006,9.30253,-14.391303,-48.617912,58.801937,-9.769949,-66.7359,64.90588,-20.934555,-97.4409,21.613937,6.235624,-36.377953,-2.0592499,34.59178,19.808456,-90.40953,-17.208204,86.75656,-56.07888,35.80374,202.11795,-19.252151,-103.054405,10.523762,-77.07684,-99.150314,-18.419746,-43.944717,-27.958614,7.6742744,-37.155502,-52.641,-48.416626,-64.10271,-61.52392,-68.44508,-38.653698,5.301306,-65.48821,-85.296295,-26.408073,-88.32741,-57.2893,22.718262,-81.81842,-0.13504744,135.70134,-32.846382,-38.730568,81.49689,-18.548695,-23.833893,55.105267,33.49769,5.6177115,-27.963257,4.285804,6.787275,-46.557243,46.73581,34.03071,-56.310825,56.447685,25.633354,-83.941666,20.991974,34.65014,-17.936886,15.970246,-13.088538,-32.468105,-15.298006,-13.97398,-0.3637252,-10.827427,4.259391,11.86682,-23.940306,1.7161427,1.4418979,-23.936245,17.38828,-0.19915605,-28.980537,null,12.858826,-2.8871222,-17.817677,6.4129806,-27.814804,-26.840519,18.430035,-13.8424635,-22.506826,5.31783,-7.0764956,-21.665823,-25.480934,5.9351854,-7.4231625,-52.852455,5.1170197,-20.885315,-72.37167,35.55725,-9.240992,-84.47092,41.748184,14.060016,-68.078415,17.198061,37.40896,-19.86738,-49.03808,-6.7320356,14.406445,-61.04354,0.32756448,19.624737,-106.20921,28.701372,76.718216,-119.775116,-16.190609,51.825684,-109.602036,-50.712395,-20.098316,-134.33936,-86.83472,-39.408417,-85.58954,-54.769302,19.916134,32.981033,12.871531,7.6315594,-3.7269287,-17.41335,-94.24123,-156.31169,-29.210941,-26.563528,-150.4844,-2.4340267,42.323265,-70.1107,62.354397,34.190945,-109.49354,27.156296,41.888214,-69.83331,-14.397371,40.587074,13.155327,-60.25431,-20.591692,68.0961,-37.610096,-29.731712,63.20078,-45.73817,-21.620918,39.241776,-53.566265,-3.8028584,6.962489,-56.051926,27.81855,19.823818,-32.62951,8.210681,-3.297678,-0.24649358,7.966847,-11.080645,0.44388288,-29.808575,-12.998097,25.143213,-37.598484,-18.354992,23.80717,-35.20229,null,61.11773,4.917675,-0.25940132,54.633636,1.8691463,12.113442,49.166832,6.3942146,13.631213,22.721432,18.836853,5.166375,-21.493357,49.001022,29.649982,-42.674675,48.106243,18.64465,-31.305954,63.770065,-12.973639,-32.600292,70.41821,-16.690567,-5.9670887,78.61672,-8.435345,-17.82311,47.915257,56.77034,32.41866,38.721264,108.89693,31.680761,-32.047424,65.57058,-2.7751875,9.200226,131.03015,7.8363857,46.8969,110.1493,-120.70386,-87.937775,23.041748,-92.32564,-57.57052,-27.300655,-90.03232,-82.616714,-110.2509,-124.62773,-124.6842,-53.205635,36.08342,-113.41205,-118.10978,60.37278,-6.398411,13.621931,68.85373,-67.854836,14.256798,70.296844,-50.02396,47.0326,76.05973,-25.847042,45.115284,67.52777,-16.372541,-14.649655,45.447174,19.757092,-67.11774,15.474077,75.38589,-60.36221,-26.506077,59.192524,-33.382877,-15.0419,28.955639,-36.08866,-5.030446,32.637383,-15.706424,-24.781614,3.8756697,4.3666463,-19.974447,-0.92952347,23.802553,-16.70329,-6.941571,37.31257,-5.90322,-22.454521,26.384695,15.777609,null,14.197468,-10.699711,5.458543,33.349495,0.1791501,-15.183935,26.765696,28.09565,-4.7687783,6.041706,16.043339,-17.46305,-9.024106,24.571947,-7.3006964,15.186195,60.162697,-33.006046,-28.388363,79.96303,7.455963,-19.41429,70.545555,10.294699,-34.925697,43.158493,47.97003,-16.561405,3.646805,84.21661,35.067684,2.1111436,100.199875,30.923763,-30.306728,56.897034,-0.81038094,19.169973,82.76759,18.27115,140.28214,77.18533,-145.11942,38.32436,14.7299,-196.9897,-10.6021,78.11241,130.60013,262.6115,116.303474,78.37036,-28.573647,-274.16302,-25.609646,60.551033,-176.6615,25.179169,132.29575,3.334778,84.64122,53.382156,11.728369,87.88452,33.38147,39.38335,92.62158,50.481102,31.034443,39.73602,57.859344,20.381765,5.3128595,68.16843,6.2945814,6.72781,84.06546,-32.400085,-19.523739,81.02136,-19.218624,-2.9807348,42.44777,-41.73546,-6.654973,10.4687,-27.055462,13.51429,6.2985697,-3.8919702,6.109544,-5.4490256,15.370096,-9.279562,-11.892404,32.013214,-15.955639,-4.8369274,53.363056,-6.8487396,null,19.418716,-33.646637,-26.097752,34.793316,1.105196,-10.4308815,6.2469134,7.6838884,11.371264,-28.280685,-2.387846,37.793083,-6.564082,22.16989,20.096619,-29.668066,22.184309,-7.405381,-24.941368,46.21659,-22.85268,-20.518402,50.275974,-29.712673,-4.3154955,59.42867,-3.449933,5.1415777,30.979061,21.503527,22.465836,7.8511963,35.478783,35.378193,3.6230812,-11.920923,-36.924694,36.938644,61.85115,21.768675,80.66881,-47.7432,-122.40798,12.610855,-163.69615,-134.82224,160.6199,-67.38881,-122.32269,87.01755,-109.533295,15.890047,203.28181,-144.57794,-101.84349,101.67317,-83.42424,-7.382492,146.11002,80.11603,100.31329,61.909153,15.756964,52.433228,-16.982819,-8.511694,63.718605,6.6083183,-10.126692,19.761328,-2.0024376,10.943293,48.419662,26.355976,-23.134418,2.7245407,34.178825,-17.043758,8.393096,68.90435,-9.04726,-32.426502,53.117077,26.443127,-23.783104,25.43725,35.511387,2.658457,8.928117,-4.3450127,-21.145168,5.9043617,4.450311,-18.564018,-8.036276,1.1094415,3.1479673,8.806739,-4.0139365,-16.381058,null,-17.347466,7.5335693,0.13862228,-8.113075,4.2387466,-6.1282387,-14.6864395,-20.11086,-11.234906,23.36008,-3.9775524,-33.99854,10.210813,7.573448,-13.710394,28.021942,30.541042,-0.9086609,9.090122,15.437445,-0.3460331,-4.335579,10.933744,16.814508,-12.7361355,-25.075333,5.0197563,6.493622,-15.174013,-15.438827,-14.999193,2.8166695,8.742214,-35.93415,-22.010532,25.489056,0.5394211,-8.686428,15.013039,41.300663,49.914505,-8.565376,54.29548,148.03209,28.62328,62.866283,130.92206,-49.17856,251.38477,689.6204,260.50537,-145.50446,73.03872,100.63464,-37.71267,6.570587,34.75161,47.305367,57.188026,24.171078,21.811287,21.171753,-5.0716324,-23.790977,9.6633,42.771465,9.609207,23.694042,40.01716,-4.024171,19.609352,14.952028,-12.72084,43.181602,8.786893,-34.55102,15.967221,-2.0011024,-4.5018005,9.799429,-20.318466,15.6479645,-0.6577351,-31.254023,38.05424,5.7799587,-31.823349,31.16129,10.274601,-9.278086,20.233896,15.858122,16.184568,-17.50768,-19.791765,32.288414,-3.319088,-19.80492,25.934063,10.4920845,null,0.60073423,-21.866068,-8.728231,13.992857,-12.825887,5.266594,10.449441,-17.681477,5.1064816,-1.4849138,5.383463,32.527172,-25.367361,-13.737521,33.09191,-34.1781,-28.726213,28.586796,-3.4600105,-16.946692,-9.105776,-8.95738,-0.088279724,-8.309517,3.8730078,-14.900308,-34.513485,44.179924,27.917198,-57.067513,6.2494287,23.682398,-36.796673,6.819881,13.003193,-19.030598,3.8950086,-46.871765,-81.87993,-33.482376,-31.513964,26.27452,91.459496,21.205755,77.21385,179.81633,-33.74745,-189.1048,80.73703,294.77936,81.95276,-143.92429,10.124931,186.69273,82.17502,52.629353,133.82446,32.90502,-51.2791,-19.708681,-50.390713,-40.591682,23.63879,6.3854666,-29.966236,-34.879333,-29.52723,-20.931152,-25.92424,-35.94487,-33.07057,-12.952409,-28.113388,-58.907063,-14.059096,-2.685381,-33.83737,27.164352,28.05488,-39.75716,-2.4654236,12.071907,-14.050598,15.770159,10.859327,-5.159526,-6.6165533,-21.905079,13.040885,35.99588,10.324872,2.2766073,-5.9124966,2.1998072,7.5058403,-8.264245,24.495094,28.981464,-16.31659,0.53164434,null,-37.12916,28.057219,14.042084,-40.437607,-6.4304247,-12.696646,-17.661701,18.153519,-8.939991,-20.129923,7.03765,9.785919,-5.233764,-13.946334,30.03,16.125143,-45.273354,7.25793,-12.019339,-72.85659,33.788734,31.16489,-60.451168,-0.3119154,-8.351309,-69.77198,-17.328852,5.083374,-33.595455,-55.80878,-45.17317,-38.711555,-57.596573,-44.21835,-55.391758,-50.180687,18.0865,-28.88802,-54.531578,-21.073719,-121.296616,-38.715897,123.06328,-10.137718,10.476177,181.86691,86.754425,-48.75676,-186.47824,-297.58307,-161.82423,-23.595154,50.713425,102.50421,16.045837,29.96347,62.43072,-86.70707,-100.54802,-57.413307,-113.4599,-55.612038,-33.19919,-76.82826,-28.8537,-65.73554,-93.487404,-9.429001,-55.87579,-97.16579,5.2069917,11.312955,-50.22596,-32.485535,-19.867878,-47.549774,-48.57641,-13.789512,-21.366816,-52.881958,-0.95042706,20.574787,-41.084354,-4.2023735,35.22125,-24.141418,3.9154634,36.93869,-28.37986,-18.02576,10.90394,-22.851414,-2.2201815,26.626366,8.319638,-5.1299496,-2.6376362,10.3800125,-11.262323,-29.041859,null,-12.552888,19.510067,-0.5163293,-20.645828,7.537447,11.762521,-22.967482,0.13469982,40.4774,-11.861077,-30.216566,35.99521,-0.55340916,-56.226387,20.52928,26.064564,-40.59538,13.738764,14.468274,-63.352528,1.8409858,41.007874,-46.422943,-38.72409,27.507133,3.3507996,-46.42737,-14.064405,21.39481,-50.629894,-49.854824,19.709309,-54.72245,-58.276844,18.660229,-40.9765,0.6911907,65.14351,-38.093376,-19.680645,29.144283,-10.8603,69.19786,120.803925,85.15672,72.58853,40.84858,95.4926,194.43091,216.9885,185.52313,48.25489,-10.45829,87.080414,123.1301,142.21536,69.259346,-84.37986,-32.433384,-6.293703,-81.73274,-4.1808968,9.20866,-36.149082,9.437344,-41.68639,-79.51854,-20.198456,-32.416855,-64.75894,-36.068035,25.411451,-4.0303545,-79.38345,-1.156848,16.734146,-59.81054,20.656082,17.721378,-64.04561,6.731249,-7.777204,-56.058235,19.555382,11.984579,-40.748528,-31.214819,-7.0390673,3.0125418,-28.366854,-4.7271605,25.410736,-32.60361,-15.613201,4.8490934,-39.2676,17.835238,30.083887,-39.167282,-3.536508,null,-14.869636,18.831284,30.11631,-21.53272,14.450494,15.832955,0.12336546,34.21107,2.1772022,-3.9606729,15.923231,-7.8567567,7.8433595,-0.037921906,8.36574,36.14631,-31.230057,-3.3846111,42.436295,-36.36603,15.757248,39.504017,-51.306194,19.500536,26.278929,-68.70791,2.8905025,52.840073,-18.615778,-61.86903,-10.574961,36.17488,-60.084583,-47.039444,81.0795,-19.096601,-75.56073,6.4634504,-66.79048,-36.459038,89.6103,0.7205963,-29.953373,106.77736,141.69179,66.11486,-29.154419,-104.22942,-121.0377,-126.56218,-139.69647,-56.499954,93.072685,136.39006,116.90202,80.72383,13.749006,66.472946,80.8996,-35.430336,47.199932,109.67546,-27.88879,25.863602,79.17869,-32.974052,24.824352,76.87329,-6.2412224,16.162682,69.83421,41.881813,-10.722352,8.973045,62.60604,-7.0980372,-9.269076,93.69464,11.374751,-33.746487,78.52005,38.895706,-8.855982,61.581566,27.04308,-22.136871,37.233475,43.121647,-19.548973,-2.612139,47.81307,11.164438,-12.53459,33.152397,23.231857,-11.181478,7.050928,2.0758438,-13.203934,31.686028,null,-10.58755,-0.54323673,25.138283,-18.339817,-12.948603,25.967201,-15.86047,-18.025255,24.186527,3.2689862,-16.82661,21.447906,45.47693,-8.087559,-6.1622868,48.218956,-24.833805,-12.346955,88.517136,-25.96481,-46.53335,80.430824,-7.452977,-43.038906,40.02539,-6.1646004,-5.774356,30.722778,-2.4780006,-27.443596,-38.80223,33.515762,32.22194,-85.10348,-0.1104002,42.81469,-91.45026,-17.587856,46.693302,-42.779934,2.1744137,24.85662,2.0848465,80.645706,55.18847,-10.718166,32.72098,42.590504,54.66763,86.21658,39.586166,22.134079,27.811346,-8.186659,23.239922,33.890793,-10.749582,44.680992,40.779144,-12.594535,66.67922,-17.153713,-159.81879,-0.37016487,48.599964,-72.59302,31.068045,94.7594,-20.05238,-52.25544,18.637415,71.76567,-6.0309687,-21.4945,100.67964,23.26302,-41.723038,73.609276,6.0898995,-36.267815,61.260555,2.8731055,-13.341124,38.687492,1.2007775,25.218323,29.571804,-9.598575,16.67971,2.2228422,-6.13608,17.46894,12.774127,29.071495,2.7596645,-4.7753263,42.74718,-10.97282,-17.065056,57.904465,null,-22.754696,-24.847046,50.656063,-3.060655,-20.508688,20.66136,-4.7122746,-2.6724722,-4.4380136,-13.283068,-0.011977673,-19.905754,-11.065294,-17.440712,-28.192684,13.483391,-24.823177,3.0611835,73.87284,-51.52342,-25.878437,102.3187,-36.96409,-39.31517,96.29616,-10.3985405,-58.771362,40.18964,52.143364,-3.9888265,-44.321327,50.166294,93.86204,-49.622974,-2.5130167,99.66846,-58.755157,-74.53424,86.972916,64.102425,2.7827892,23.437092,28.127384,15.88345,-31.821545,-57.172558,-55.116795,-117.298744,-121.92447,-58.021267,-77.57928,-101.83321,-95.68443,-70.868126,30.592247,52.062748,-1.3813419,43.163876,65.46022,43.22802,19.175476,-37.94541,29.004356,58.435135,-80.17216,-26.923191,76.322624,-7.143895,-10.184933,3.5495977,-37.856873,-26.817543,-47.260185,2.8211002,26.072598,-73.41664,20.921711,56.002445,-108.35386,-17.956944,49.666832,-90.95902,-33.10355,30.770765,-47.767433,-31.73539,-4.7058525,-23.59272,-19.89584,-9.23768,-14.996223,-44.355473,-15.413103,7.6475973,-42.485897,-14.7637,4.168052,-49.169674,-19.388973,-4.195898,null,29.933372,-55.04107,3.4100943,26.79041,-32.779022,-2.8444824,-1.2775036,-27.690752,-15.674815,-10.063387,-3.2241268,-17.175362,4.4237437,5.2572265,-54.856514,27.15246,46.214172,-60.38531,51.048805,61.179222,-79.17598,58.579376,90.791435,-58.304047,30.089916,85.16188,8.813648,0.8933177,4.323744,61.772736,49.845764,-43.4249,38.845093,51.87761,-91.320496,-47.351624,39.864765,-13.931705,-48.04105,-21.771118,23.746763,32.40352,-2.806651,-21.314177,-68.82773,-105.060905,-47.234013,3.722704,-7.40854,-33.762688,-32.100586,-1.3334389,-38.058712,-122.48214,-124.54704,-62.862534,-14.831176,-17.86412,-18.004976,41.382484,9.223711,-80.86031,-26.018345,-17.86691,-97.24457,-14.266568,32.97274,-59.510643,-45.953484,8.4867115,12.282016,-25.888186,-78.5206,18.743778,39.54317,-107.02417,4.4356937,103.8736,-77.71556,-41.30879,80.719574,-24.200373,-35.3893,23.021282,-12.790577,-24.459618,-13.514579,5.4907002,2.4952536,-13.663115,12.58102,-6.1065855,2.0293102,40.782192,-25.081316,-13.112148,38.15399,-29.729118,-6.0649567,29.80938,null,10.308318,-21.733793,32.001564,-5.6902432,-14.548643,48.670982,-1.2666315,-14.663587,31.35949,5.4554434,4.6919093,25.620665,12.096859,-10.040211,6.728403,55.446346,-27.172651,-77.19339,72.43568,17.46206,-122.94384,44.45208,71.804756,-97.54515,-15.989988,49.96499,-39.009758,-20.976217,-0.8532467,-4.142683,30.219118,-14.565092,-28.652342,20.15523,-31.328804,-80.969406,-36.070534,24.420311,66.14281,43.885918,-13.322427,-56.501167,-114.16402,-104.128494,-34.872734,-53.94718,-90.58394,-59.67861,-38.831993,-33.56685,-35.963665,-80.85843,-123.47121,-104.580246,-70.12873,-84.08896,-78.38798,-12.299948,14.714931,-14.906746,-37.49349,-41.156067,-50.49974,-62.3715,-13.845978,15.654922,-46.095665,-22.029633,39.3124,-10.742364,-25.729824,-1.7785935,30.305452,67.73161,-34.522278,-40.970196,81.56171,-29.45665,-53.461243,95.73641,-8.475018,-35.38538,91.43366,-11.865673,-40.982666,69.44439,29.967611,-5.7652516,13.078471,16.709677,20.161682,0.20249367,18.06901,9.655575,-10.262937,58.801197,22.609062,-33.963417,46.156227,13.303352,null,25.999043,-39.012215,10.131566,33.3828,-26.850864,6.7073584,13.664778,-18.384518,7.7853556,13.281771,2.718903,-36.10269,-28.276539,49.833454,-34.493652,-74.410904,58.19016,-20.569551,-70.68601,94.18429,23.222706,-72.04165,66.721405,61.231873,-29.320873,-1.022352,0.123622894,-8.968956,-6.164324,-30.053768,15.103829,71.85855,16.415852,-46.16047,-10.668796,29.055153,14.452692,14.5494375,14.232531,-1.0159035,39.200047,60.417793,-34.089897,-130.46524,-105.448364,-17.772999,21.06749,29.811752,55.816677,63.065376,51.436264,36.54077,29.789314,29.070305,-61.846893,-156.40784,-63.339916,42.190514,-5.627101,-35.170082,15.8704815,35.20893,18.235126,43.75445,51.905075,-47.052,-58.245674,60.013596,36.965683,-3.8410501,74.85299,34.33395,-11.112136,34.377907,-40.646866,-21.321854,101.459015,-33.92537,-101.84732,82.19679,48.782085,-75.43461,20.271294,56.29542,-30.141663,-29.657864,18.675362,13.940215,-22.82809,5.1752906,46.993855,-5.3183193,-14.1210575,28.89803,-1.7760422,2.9179718,23.098932,-9.261608,14.160263,11.659764,null,-17.147402,10.388618,17.13913,-12.945637,6.43483,19.005194,-20.222277,2.9757338,45.448032,0.7213578,-26.240591,19.73675,29.729712,-18.375061,-31.48153,28.055908,41.607075,-40.947678,-25.789307,59.433002,-13.562436,-65.83537,21.35198,8.454597,-24.37101,17.409885,-19.119274,-2.6693654,61.08434,-27.657722,-56.38389,30.912704,-4.0379276,-48.751076,3.694704,13.060619,-9.484369,23.893736,44.714745,-39.971527,-116.9808,-55.633957,13.643862,-11.064825,-59.95946,-102.606125,-119.62339,-109.710556,-98.40973,-77.66768,-74.82262,-84.25827,-76.61633,-78.20895,-48.757812,17.283484,9.484088,-72.31846,-97.26151,-8.387287,64.70261,31.214481,12.519333,15.235036,-36.002243,-19.644182,43.18095,-3.4140182,-43.19693,10.625267,22.126303,0.41701508,12.447143,3.4938664,30.677517,82.790085,3.8522968,-25.1049,89.68774,31.768158,-52.127686,69.276535,50.848213,-54.93779,26.582104,40.000122,-33.375656,1.6623633,25.1467,3.9417346,-16.156599,-16.945585,26.917065,-1.8728256,-39.94464,23.103966,12.230724,-32.292618,24.475922,32.772217,null,5.443388,-31.787579,15.149843,43.6897,-18.59069,-12.477488,38.06853,13.327947,-6.565885,4.2032075,12.733012,6.190527,-24.23214,12.876211,41.168377,-46.919952,-28.585546,67.21688,-14.697076,-62.262653,45.569862,25.671923,-62.416794,-13.645178,25.288649,-4.621957,-1.8754978,-8.100971,-7.2217116,19.007235,-34.554058,-74.349976,-10.743387,9.0879135,6.0413313,52.98002,32.2713,-25.128378,8.9328165,76.62202,44.5827,-90.054306,-158.67708,-83.68605,18.241293,71.07237,58.4179,7.8518844,-17.693808,-39.340393,-46.946938,2.2904217,55.18958,80.29313,64.65883,-17.787773,-106.65358,-109.87947,-11.885795,71.58402,38.00637,-23.819632,-14.68531,30.594383,38.576035,13.029955,16.283062,-6.8861322,-58.675793,-13.81397,23.44331,-25.356443,-19.676682,6.522913,2.9558902,-2.0071864,-36.414703,-4.3726387,43.969505,-30.612385,-42.35786,28.641392,7.782894,-2.8467717,26.606586,18.87429,28.2786,20.356903,-18.116468,2.3976245,25.58204,-16.400768,-23.565332,28.461983,2.9028807,-49.164925,15.296681,37.98387,-41.651794,-18.08281,null,-47.69831,18.134007,9.307971,-39.93988,10.916732,33.655724,-18.82009,-22.774921,23.817093,12.406339,-22.015633,2.7038398,-1.188724,-1.5926055,48.399433,-17.830534,-59.035908,65.46527,46.361042,-68.223305,-5.6566534,44.54529,-20.658894,-35.566837,2.173812,-1.4646964,-39.752556,-12.682572,35.81555,-13.771807,-38.945873,16.668821,13.35269,-17.259201,8.649708,54.68815,64.472275,-8.135828,-105.002045,-102.78751,1.8440113,81.003555,33.22846,-68.16285,-104.8925,-76.57648,-28.894354,0.423666,23.538332,52.479107,25.287521,-34.876724,-52.90896,-61.34097,-84.78192,-77.2507,2.5347834,81.76909,19.778885,-98.79313,-70.27754,62.940033,104.52026,5.7464333,-58.329254,2.3054056,32.303253,7.393634,21.139597,20.891043,7.797964,8.418793,-18.63399,-14.109002,3.8158474,-32.05245,-10.7525425,30.162144,-35.170532,-42.158737,40.89664,3.6521368,-59.952187,-11.777534,2.8479137,-28.08966,-25.061829,-35.956715,-30.513636,-10.349081,-22.926773,-1.8156548,2.286559,-42.11235,-8.517523,27.556707,-16.350424,-24.182589,-0.7579645,0.068513155,null,16.870945,5.7101145,-39.169945,7.0068293,12.005477,-31.191416,2.5762115,2.434111,-30.036135,0.049949646,-0.49593133,-9.668793,23.358221,-0.63548565,-12.291943,47.9629,23.21355,-30.798899,29.729893,35.6575,-56.787872,-34.348858,40.373116,8.385564,-28.760996,-3.3802662,14.796902,3.3081806,0.72537565,19.79169,-5.118763,-52.22105,-10.722546,47.316574,9.328205,-56.430183,-56.86074,8.230385,34.716156,-47.46777,-129.1337,-115.86931,-42.791092,41.171555,99.84072,102.12564,32.630768,-58.780025,-92.55374,-92.7764,-92.94702,-54.790592,7.990095,45.17775,56.394405,64.472755,36.984695,-63.767998,-130.65135,-68.95541,13.573247,1.8709462,-70.24845,-94.77951,-39.21203,24.94765,49.857067,-0.16537571,-73.180176,-29.201582,20.160715,-39.577824,-17.832129,57.75012,-2.666894,-49.416885,21.928574,21.574879,-59.687527,-19.196701,62.206562,-16.770836,-65.47092,35.916733,35.380173,-30.49676,10.546971,20.745201,-12.616337,8.932297,9.781967,-16.009644,-11.417963,-5.2501473,-16.102726,-13.143593,6.0693254,-12.500019,-28.974813,14.5363455,null,5.805161,-21.8862,2.9660392,15.037535,-15.730041,0.33191824,30.618137,8.805878,4.3813133,8.719774,-13.269091,18.800753,49.07292,-6.3662972,-11.925916,53.560165,21.523556,-51.56789,0.49261284,49.3027,-25.31391,-28.494251,48.19812,0.67446613,-40.517136,37.152035,38.92634,-22.67152,-5.845398,27.850937,16.892376,-15.314285,-24.176609,10.496204,32.35598,8.53833,-48.4707,-84.241905,-14.275037,82.9709,73.41831,12.222172,-29.014557,-64.858475,-55.92343,32.450974,122.64903,148.88795,154.71603,163.1713,148.55338,133.34903,116.94864,62.89496,-11.098658,-65.260925,-60.078285,15.467078,91.49511,70.81707,-52.61508,-121.91478,-28.399647,85.19707,81.87363,-0.35650253,-71.563675,-46.20942,22.45227,-5.6544485,-56.253418,-0.22850513,38.65773,-37.04104,-47.614723,45.526543,14.112427,-65.5435,16.307446,52.06273,-44.878113,-19.83457,55.82746,3.561121,-23.629269,22.061172,10.302863,-4.6198163,30.729465,20.825512,-0.78818345,26.425297,3.3939066,-26.949772,17.870739,2.406499,-34.665455,24.325893,21.351982,-35.94207,null,12.285374,31.870258,-8.783026,10.673918,23.094555,-11.004347,-4.511175,14.972185,-1.7158704,-5.5548687,12.620227,-5.0539665,-17.549643,27.993698,13.152175,-37.30863,33.784077,54.077915,-53.97381,-24.928057,54.17678,-18.196455,-29.999397,58.929462,28.28641,-37.163284,8.559977,41.380264,-4.328891,-21.861668,8.848305,35.654167,37.579906,-17.360258,-67.087166,-4.7058372,70.78696,26.344398,-62.260445,-75.871086,-7.89493,74.27327,124.86438,128.60034,52.654633,-60.131252,-112.34891,-112.76111,-117.26654,-138.3978,-146.40094,-98.95717,-49.426163,-58.35895,-39.593822,57.652416,122.7198,79.80455,-17.872784,-96.00278,-86.77528,26.796892,101.07062,33.086845,-47.821007,-49.79498,-18.934208,26.498358,33.88465,-29.642735,-46.942783,19.714924,21.090622,-59.155167,-39.294212,41.264565,-14.82617,-65.69701,24.373295,25.760454,-54.485565,-1.811482,38.348465,-42.920654,-46.19059,39.891747,31.689756,-41.60604,-23.1787,34.018684,7.396825,-13.141309,18.101025,2.0540833,-6.0095406,29.08515,1.0608177,-25.075756,12.855305,0.77314186,null,23.05352,12.30427,24.004902,15.086296,-25.273323,-5.3024735,5.492981,-40.038788,-12.640379,42.920334,8.253801,-31.293913,2.9196844,44.809578,0.6159787,-65.86523,-11.470903,39.946487,-34.979393,-41.928673,26.426361,-23.253407,-70.66464,2.7238674,30.000372,-17.172186,-13.295197,6.339463,-19.991085,-46.6831,-47.52691,-9.229841,57.801228,55.024315,-35.50376,-91.38327,-45.06688,52.460014,98.01137,43.458828,-35.50691,-61.034027,-44.56849,-15.871891,40.87969,133.10222,172.61888,108.59877,47.55904,63.392326,108.21251,119.36644,80.85819,51.915756,46.97133,-13.57913,-100.71037,-96.70065,-1.099657,79.722,66.611435,-13.338774,-78.060074,-65.88964,30.92228,97.64569,26.912178,-72.284966,-49.27737,43.76014,61.80613,-9.9861355,-42.840588,22.180538,58.90918,-6.297097,-25.989084,42.278297,15.70118,-50.204212,24.725628,62.05848,-28.309788,-22.184555,35.63305,3.3954258,-1.0171798,30.35524,7.609101,-11.886177,-6.116576,-13.345597,-13.986421,3.452558,6.259033,-14.676558,-9.932134,14.380497,-10.918556,-33.56136,null,-12.419292,13.526233,3.5255332,-17.63444,14.294312,29.72471,6.9919424,7.552584,22.34483,10.949076,-0.79237795,19.045292,9.303096,-23.772339,14.863328,36.308712,-23.30971,-6.8380823,53.900635,2.0309267,-44.220367,17.02378,31.790146,-38.893425,-39.454037,14.805943,-14.239373,-60.83024,-14.435146,36.43924,3.2551029,-46.587357,-30.2658,25.436838,49.77955,32.977924,-15.591317,-70.19243,-50.18203,43.49247,104.09408,90.822464,41.558277,-17.652466,-68.595024,-86.17949,-78.24466,-64.81803,-31.01104,-6.1404366,-39.77412,-71.73495,-57.29543,-54.020588,-63.15838,-29.269247,39.893517,84.06928,82.48987,65.43105,17.704569,-51.498844,-41.6673,30.228605,51.6979,26.180061,-10.489608,-27.447586,25.280037,68.16051,13.267645,-30.511017,16.281776,50.6715,8.805049,-29.250433,5.7984295,38.881218,-5.9940095,-18.215656,41.37981,20.345238,-34.652,1.9115944,14.758978,-17.501339,-3.1085572,-0.696584,-8.838091,5.544484,-4.688957,9.318823,43.3739,16.34082,-11.532822,6.9372745,25.968922,17.064268,-6.6327705,5.8753686,null,-35.54422,12.654665,8.135952,-0.5030961,-1.922246,-29.841923,-18.533829,11.746329,15.844681,-13.958354,-50.52936,-9.970171,21.13559,-40.85672,-36.91181,21.143559,-19.664148,-46.68657,21.501343,27.790098,-36.766872,-11.024103,55.498093,7.4340816,-51.90082,9.807174,51.204475,-13.789794,-41.431828,10.407709,39.7807,28.546902,4.1073236,-27.864822,-22.638916,22.78112,37.676792,12.378852,-26.754797,-79.46846,-102.15794,-56.255493,11.836714,52.50592,72.8443,73.273384,31.106026,-11.312785,2.9865894,11.368522,-25.212185,-3.7126884,83.11095,101.45792,55.482677,42.514458,19.721144,-54.360214,-94.57704,-68.77258,-11.969562,39.06571,13.1029825,-63.422764,-71.49794,-9.680102,47.292953,55.917778,13.922944,-23.051174,-12.623139,30.164845,39.92488,-24.33128,-44.072506,38.313442,47.880684,-31.458694,-15.843719,38.769016,-12.692226,-47.95921,13.639975,19.997467,-26.284012,-2.7320738,24.656357,8.172926,-3.1187274,-12.874472,-3.9077709,5.803915,-5.91278,9.929432,4.961691,-13.075181,21.077072,5.333342,-18.36129,30.519836,null,-43.7676,-17.095299,18.458328,-18.185717,-11.871018,-7.9268837,-15.109376,3.5680616,-14.518623,-15.596722,23.116842,13.406207,-0.033314228,12.791632,-10.353865,-20.373589,14.642302,-0.21627188,-37.459274,9.110866,42.153625,-17.373295,-30.13266,27.82749,32.280323,-7.236784,-8.632556,32.385654,47.63643,7.225239,-22.750088,-21.031864,-4.2628794,41.512077,50.62597,-15.630655,-60.15024,-27.526203,45.56295,81.54516,33.232563,-19.623913,-35.33556,-75.4175,-88.39385,-16.58134,34.12384,25.397741,45.602623,80.49912,58.473103,14.543514,0.99495125,-13.7598505,-52.583813,-65.00502,-27.03941,17.417227,46.417107,56.949615,41.220207,21.132975,-8.1175785,-46.915203,-27.119526,35.345047,46.41364,9.487405,-26.914726,-39.07215,-12.94562,23.671698,21.606731,-17.467312,-17.865929,26.625076,6.047323,-37.92511,9.200274,34.315228,-26.29524,-27.543686,21.411873,-3.9533863,-37.656513,5.8705683,28.794617,-12.511038,-22.914818,3.347527,17.028845,7.888076,-18.871382,1.3804373,36.486397,2.462369,1.1088855,29.476051,-11.178513,-15.675728,null,1.2493839,4.0168977,-9.194899,-13.2102375,2.6472762,9.405633,13.553526,13.538571,3.2009778,7.860613,12.666964,-15.202351,-25.386763,7.9748993,3.452344,-20.730566,11.235922,17.152044,-18.84198,8.488132,50.388153,34.822582,8.75886,8.787528,29.69382,19.341492,-23.670132,-9.686714,38.331757,32.16195,-13.924141,-39.505447,-8.809924,23.63796,3.4074717,1.4988775,31.51257,19.980581,-20.560112,-36.814816,6.327652,79.120346,86.32847,48.59639,41.556458,12.893243,-64.20059,-96.6562,-56.062042,-29.99513,-56.54933,-64.32474,-22.043146,12.807495,31.464394,67.26252,87.05452,57.978012,13.430422,-19.367014,-32.665802,-20.825712,-0.18841457,18.101345,16.485107,-21.260237,-43.875412,-22.544102,2.3191543,20.900782,16.684118,-22.082458,-25.266829,19.473373,20.622585,-26.692772,-17.32564,40.215366,15.94416,-40.12361,-2.3334332,19.928886,-25.636364,-8.698293,22.699787,-17.969254,-34.200546,-0.18037891,11.5801735,10.121599,21.143389,21.726227,18.29863,24.432396,6.7323365,-9.080296,14.962122,15.752814,0.13718605,11.675571,null,25.703232,22.027357,-11.306158,-7.232907,-12.467745,-18.296165,-13.941982,-18.60318,3.6007564,4.585755,-30.616598,-16.236801,-11.003069,-37.240788,-8.374251,-4.9257507,-52.53983,-28.829706,13.631969,-9.129439,-17.68317,16.76178,28.126352,4.0641503,-14.452948,-2.7212267,22.566948,17.967316,-14.411495,-17.162306,6.1993017,12.855807,14.268492,0.45077276,-36.556084,-27.507973,36.03395,65.45062,24.234823,-23.92353,-20.693205,-9.855371,-30.297443,-35.14931,-12.081167,11.724686,27.648186,31.68794,53.40363,93.028076,84.45367,37.003613,28.049286,41.194836,2.5692172,-47.129658,-35.714058,-29.49273,-49.129692,-5.667408,51.398354,39.64188,13.203324,5.8215895,2.7070103,-3.0896592,-14.54477,-2.5716915,27.589352,23.161503,-21.472956,-47.336864,-7.9135785,23.546547,-15.666672,-30.26165,9.3168545,20.232725,2.1344304,-14.737374,-19.263067,-12.447939,-16.126984,-2.0782242,19.546675,-6.822419,-23.627594,2.959303,7.3182635,-11.437635,-17.02491,-2.749888,2.013054,-34.29728,-39.540817,11.377701,8.028061,-23.851643,3.5673842,11.912373,null,14.588583,-24.13131,5.943963,41.283318,0.601346,-0.7423916,35.24902,19.302156,-2.141889,0.04630226,-2.1093898,3.263247,13.304561,8.748769,6.262951,19.127691,14.098848,-10.94597,6.6353273,38.682793,9.366252,-12.403389,15.634881,0.18732548,-43.78911,-19.1457,32.764763,18.404757,-33.74327,-34.809864,14.163784,40.82042,12.91504,-25.21231,-14.730713,3.0913486,-25.267673,-24.740047,27.221975,50.34162,49.9009,48.997776,31.173267,12.492555,-6.602479,-30.257702,-44.556885,-47.873726,-39.317703,-38.24482,-40.509575,-29.796036,-40.573734,-38.379055,11.787979,33.865,35.742943,57.6469,52.205765,32.99117,30.160831,31.063496,32.3813,16.504452,11.385118,25.042067,-1.5638957,-30.397755,-31.88601,-39.490826,-3.2468796,42.73535,1.1015205,-38.092495,5.261198,31.418552,-10.435822,-28.410051,15.13398,28.301874,-12.471857,-22.812975,4.194774,5.859013,-17.791351,-18.618225,-9.801847,-24.928133,-16.57165,5.962984,-9.517101,-5.011836,2.0561152,-28.373625,-6.6042604,18.372177,-5.1729107,15.129468,5.3562837,-38.097897,null,9.125007,24.262379,3.3734996,9.015709,-0.80203056,-7.8578863,17.20885,15.636762,-12.271264,-8.287893,14.258592,-8.037352,-34.620834,-5.2047358,5.2411094,-7.0789948,14.299185,-3.74586,-42.09353,-8.351066,21.97469,-12.463884,-41.92307,-14.432817,15.776684,-20.60355,-49.33149,-14.826381,3.3657389,-3.322412,-9.154565,-16.665743,1.8053899,10.296658,-2.9279535,4.2304835,-5.8381033,-20.001024,-6.628889,-20.610853,-47.03236,-52.848934,-33.704365,25.535727,44.017097,2.823556,1.0595264,19.299374,18.926922,24.169537,20.515585,14.837813,11.695234,11.525093,39.083206,31.469307,-32.8304,-53.1939,-28.475197,-15.985172,-4.102004,10.040733,21.147114,27.456898,22.359259,22.907892,22.512938,4.3371315,-4.5981092,14.292656,45.56176,50.047344,0.4179563,-41.641052,-11.585173,24.454123,-1.7513211,-19.795395,25.747368,48.539158,7.483551,-1.2846899,30.876133,15.68474,-12.298237,1.048707,-1.0954478,-13.012023,13.416153,21.550406,-4.9304657,-1.9017224,7.1156235,-7.0860815,2.4802442,13.126186,-6.7490335,1.0147333,17.853645,-4.161429,null,-14.544369,-0.10313606,5.992486,-5.4050303,-4.600983,-0.5783968,-10.7946,-25.865633,-19.642086,-1.1798224,-11.7906685,-24.086493,-9.466793,-12.604511,-13.990651,17.18018,15.323971,-21.346142,-26.663654,-6.5843406,4.931347,-9.120785,-35.84912,-25.736204,16.308014,29.278864,-2.6322298,-34.73501,-18.469233,22.796429,15.539539,-28.105547,-24.929096,21.727074,31.520418,4.384797,10.370551,32.578964,19.308928,14.540503,31.127735,15.850214,0.60362816,9.527394,-2.330124,-10.726337,9.348206,28.046207,41.489525,30.130054,-2.0814304,-9.0934515,-11.190645,-15.0567045,2.5694294,12.975544,20.018883,23.52643,4.8584194,13.635496,34.50303,16.865742,7.7616196,13.095148,7.065729,10.577479,18.72876,30.010574,36.371212,15.13319,-9.647097,-17.74742,2.562704,23.697973,-12.199588,-35.045414,-1.4080558,0.9010868,-15.033045,-9.024691,-9.040865,-10.538173,-21.431433,-17.28883,10.752184,-15.374591,-41.39419,-7.379938,-6.994361,-20.965555,-2.6490922,-10.039666,-20.266495,-8.80106,-3.9310024,0.06404781,-6.604519,-7.8575635,9.293913,0.8519697,null,-4.793084,-46.57261,-1.9389358,17.139528,-11.486071,0.9508877,3.6205864,-10.28161,-3.7668207,-9.285528,-12.094465,-8.367893,-13.869066,2.7155824,16.030354,0.5383369,-8.1801,4.9315553,36.7622,38.410126,-5.652384,-3.2780342,32.340336,10.759978,-25.331795,-15.967316,21.843632,45.70762,22.802597,-3.989996,11.735846,32.327312,30.834229,21.892431,6.849724,-13.391412,-13.188379,14.198206,19.293316,-7.252385,-7.1522913,14.820953,14.155584,2.2290034,5.420467,27.498913,35.949394,-1.1260452,-37.0791,-25.647621,-5.1163034,-8.336205,-14.516472,-5.1768694,10.373073,17.027966,19.78873,21.702286,3.0469742,-21.702139,-9.804889,8.853229,-14.021683,-31.136332,-8.033676,1.5728493,-12.869389,-10.58394,-6.641482,-26.941532,-33.482697,6.21937,44.632027,24.345428,-27.421452,-36.10623,8.132622,26.536049,-7.3726964,-17.429937,1.6678023,-2.808268,-1.6911922,8.44772,-4.930379,-2.582748,7.861513,-14.078249,-11.610649,22.497126,10.435455,-17.811825,4.2493563,15.026169,-22.444927,-20.084694,15.36472,-5.986091,-24.725994,10.324831,null,9.756016,-1.2446288,-0.15453148,-16.837217,-19.149536,6.6322317,-6.9627376,-34.391987,-9.554151,15.674788,8.185217,3.8976672,-4.4807534,-2.9806378,26.706198,20.86401,-14.557415,-5.1467147,13.010709,-3.3387775,-9.396947,9.41183,23.271309,12.6890335,-12.352408,-13.977858,12.724089,39.94745,52.62828,31.922934,-18.01747,-42.838234,-14.86096,21.570242,22.45195,7.462824,6.3077035,5.3428698,-5.2918844,-8.486683,-3.3330898,-10.149988,-20.211187,-5.0879884,4.1653757,-25.347435,-36.50426,-3.2214413,16.335659,3.4810095,-14.7928,-20.246017,-16.709696,-25.492317,-36.66678,-36.01416,-35.643867,-23.551266,-6.6669393,-16.405268,-29.341457,-25.250711,-19.956703,-12.134676,-12.086908,-27.881718,-27.962399,-8.435978,-0.8074312,0.17395496,8.361734,-3.4068823,-25.867355,-3.964252,27.91179,3.181288,-23.314674,-2.4157457,4.3565187,-17.112946,-9.41905,10.726886,-2.675012,-12.151066,8.015478,7.602395,-12.296078,0.006307602,18.35423,-5.871839,-29.183735,3.5795293,34.551163,2.9337153,-12.270424,25.910929,19.956656,-13.201741,9.819325,24.603155,null,0.8417978,19.408329,-1.7791257,-2.4472718,8.755604,-7.2193594,-4.364101,3.041596,-13.6988735,-7.8794475,7.2920427,-8.47019,-17.898859,0.8992237,8.190959,-8.632285,-2.0725908,19.224848,-16.44493,-46.612114,12.801938,40.596634,-22.153378,-41.60554,1.6704781,21.295097,11.690819,-8.936922,-23.902199,-5.196173,28.558859,27.241707,-14.9060545,-39.73771,-12.605393,25.388954,35.37347,20.283993,9.681061,23.397919,25.064562,7.2819395,14.744369,26.092394,16.965397,19.602533,23.982609,14.013264,7.9040446,7.772455,20.22858,29.012444,7.1793404,-0.13030243,21.296503,20.734035,17.739084,32.76828,20.895594,-6.3877196,-9.345292,-4.05257,-1.3219213,3.9772243,3.7745895,-2.179932,-10.753313,-4.490497,28.96894,32.400673,-19.721378,-39.14657,2.2911253,30.45346,26.074566,5.9695425,-20.594046,-15.207074,10.479006,3.25522,-20.20543,-24.468956,-0.7395501,37.91986,29.071665,-20.163218,-17.047552,14.2659025,0.92735785,-17.107836,-9.239011,-5.145004,-10.792889,-13.077686,-1.3428454,2.4780545,-16.602985,-7.6096716,20.565983,5.0961657,null,16.343466,6.648818,3.7490249,14.391576,5.393205,-6.6171336,3.5416203,15.892341,8.692066,1.4680395,12.457893,13.871607,-0.44714928,-2.7504244,2.4069452,8.553583,11.47811,-5.637292,-13.868107,2.8481417,-2.2970142,-21.214426,-7.811062,2.6963005,-20.130583,-21.488712,9.351477,13.900617,-7.225435,-18.757544,-10.461623,22.087791,37.852325,8.873466,-15.713027,-26.37472,-29.653456,-3.0550013,3.3618376,-22.184532,-11.834914,2.038621,-17.709812,-24.19632,-22.549265,-28.93383,-22.647652,-12.237198,-9.890123,-22.193708,-33.16364,-2.960802,25.215578,-2.344231,-26.227964,-13.4602165,-10.077017,-18.222181,-16.39841,-11.1835785,-9.136423,-15.841248,-26.376389,-23.856606,-11.471458,-0.70302963,2.9310908,-6.662691,-21.367233,-19.83883,8.503609,31.63296,4.620962,-31.831184,-14.441679,13.425152,3.1089187,-11.161316,0.9187075,24.333374,24.327385,5.2901735,7.0103617,12.990492,7.639814,16.30644,11.067354,-14.114922,-10.51803,8.258559,14.681271,6.066,-7.262216,16.027254,27.931793,-21.337715,-20.695383,24.725338,-7.268216,-28.538612,null,13.22431,7.0254674,-5.321089,2.9931297,8.73196,6.6391015,9.705586,-6.7175703,-13.8338585,23.226198,28.327782,-3.907559,7.4005694,16.397673,-8.758104,3.4627872,16.331926,-18.384874,-14.219277,27.003523,0.26081657,-51.282,-24.533928,28.55737,22.201504,-11.33296,-19.070396,-11.166412,-1.3415012,12.700914,9.057703,-17.159061,-20.911755,5.5880127,15.554793,1.293344,-5.9019537,-4.9173546,-18.116371,-33.897995,-28.154518,-17.839184,-8.906237,1.8786838,-9.641333,-10.303208,12.849309,-7.994837,-24.543446,18.6983,23.020449,-14.165198,-5.8945026,17.940464,8.947726,-21.916937,-33.71058,-15.633288,-13.600731,-7.4125013,20.040411,9.41869,-1.0518818,24.015984,18.129616,0.30926943,4.2839546,-6.01965,-12.275668,12.201403,37.953995,22.81123,-27.831778,-36.87932,10.035338,34.40626,13.807054,-8.09528,1.3902798,16.331472,2.3234878,-2.074461,9.60654,4.81837,14.692947,21.307674,-9.0766535,-7.738738,20.098444,-0.29889965,-26.369911,-7.9473877,11.948281,4.018187,-7.198174,-1.3482542,2.4907613,-5.2500954,-0.09626818,2.545754,null,-3.1353364,0.38739395,7.53275,3.0987372,1.9839339,-2.5902872,-6.317825,-2.1960726,-5.670534,1.7971293,11.336461,-8.697493,-14.69023,-0.71447825,-6.599789,-9.012492,-13.345365,-27.662033,-14.106474,0.68740034,-1.679565,-2.2827902,-15.288168,-13.190456,10.355793,11.731668,6.7496147,-7.0033374,-28.946735,-6.93209,22.555735,9.039463,-15.49766,-22.311554,-6.359937,-7.0745163,-34.017128,-23.943523,1.2236099,-0.1495266,4.7661495,2.1804473,-22.74518,-34.347733,-15.482523,10.6966095,-6.208442,-28.389095,-0.21172905,-0.8477764,-25.822994,3.0775132,13.314878,-11.046485,0.4594199,4.0853586,-12.516304,-0.5904269,14.871445,15.99409,21.349392,23.300097,11.320906,3.189954,14.105642,17.097494,8.09964,23.76198,33.605743,-0.45936388,-18.300686,17.597475,41.835854,11.068953,-17.974983,-0.37265468,18.151716,8.699698,-3.2712579,-11.721542,-4.633526,17.829126,5.9888515,-15.505227,10.274005,15.324726,-20.249905,-0.044116497,32.26116,-6.7525926,-27.451078,3.6508803,-6.3548746,-38.59021,-16.72267,13.75881,-12.587336,-33.080505,-1.1753575,-4.148959,null,3.9933324,-7.9867535,-9.884282,-1.7437325,11.080946,-4.792541,-7.813425,24.70069,12.649313,-11.693392,18.58482,24.49794,-5.362241,13.484189,37.739185,3.3675685,-20.464037,8.623622,28.19973,6.0890746,-27.544403,-32.107704,3.4174423,20.83908,-6.7463465,-7.983251,24.240753,14.211367,-23.856827,-27.91325,-16.615353,-16.631447,-5.7762003,5.8614264,-3.7444513,-6.4794316,1.6213312,-6.8654084,-16.89167,-8.299332,5.4958653,8.07043,5.300254,5.2504177,-4.563957,-2.6800394,22.028801,9.654725,-14.581165,12.044059,20.196198,-6.926445,0.48370424,12.467739,-1.7567205,-5.8464036,3.8091383,-0.43733597,-25.812103,-34.571495,-19.001759,-23.136316,-31.905272,-19.950413,-9.17863,-7.028958,-17.87516,-27.204914,-28.574524,-45.17508,-29.828075,15.450623,-2.4276805,-38.34726,-20.486168,-3.3406043,-9.504301,-16.685638,-11.950407,4.2185116,-6.3493834,-28.368858,-19.107899,-10.088835,-11.605756,-0.84228086,1.5157671,-12.796351,-11.772484,16.04174,24.991102,-5.9645934,-7.7138515,29.908842,22.920311,-13.996922,-6.7842827,16.369755,8.03652,-6.110556,null,15.102791,6.5385847,-7.5259776,-18.742212,-11.916309,12.642269,2.3325067,-20.631922,0.05473566,14.191723,-7.8672924,-16.0716,-0.69241166,12.397816,13.871399,8.341799,1.7314701,-4.4442263,1.239893,19.235708,17.634026,-7.4858313,-4.523945,28.531631,17.365013,-26.111126,-17.220598,18.252726,20.715729,8.193928,-5.43029,-16.146114,-17.62186,-18.708515,-9.973311,0.68377364,-2.7472615,-0.64458895,-5.304651,-27.931866,-25.154118,-1.0850506,-1.5305715,-11.620931,2.2799263,13.349405,-2.5285363,0.092372894,28.270117,18.697592,-14.162006,-10.591095,2.8796318,-9.059397,-17.243065,-10.496618,-13.788422,-13.878775,3.6821346,-1.9545398,-26.138338,-12.440692,14.199085,4.425202,-8.512449,3.0945044,6.727701,0.37246776,9.192181,1.9728444,-23.28857,-7.767839,19.027676,17.915388,25.93479,13.915838,-21.591944,-2.8671017,28.126411,7.087514,-18.277126,-17.17281,3.116092,19.750711,9.0923195,2.0050676,13.765002,16.862541,10.986832,10.097157,2.617507,-23.158804,-17.57406,29.243126,17.135517,-26.65614,-0.48677355,15.571795,-9.707387,4.961853,null,-18.90012,5.0982256,5.028872,-13.231893,-0.66393626,10.191085,0.12196827,-6.994736,13.916628,37.546165,3.9580798,-25.975594,6.677601,15.222335,-12.979721,-15.861052,0.82369804,13.344949,-7.6306887,-22.660198,21.758123,42.279453,20.18223,20.465563,10.76514,-0.21423054,9.671157,-9.140993,-21.88414,-1.0517087,0.5416336,-8.863771,-9.680471,-16.466488,-19.95718,-9.357742,-2.2673233,-19.130644,-19.328903,20.609085,24.453516,-4.8446674,11.497887,35.236168,19.405058,2.832169,2.6623998,4.2229476,-1.6004465,-9.912847,-11.712617,-13.827951,-13.094276,-9.461291,-16.875734,-14.482529,9.996339,15.368846,-9.084912,-23.370193,-24.235996,-31.173054,-19.767958,8.136493,2.6753602,-17.37622,-8.674998,-0.95364106,-10.83909,-15.778867,-15.42211,-7.954109,6.062746,7.799555,-0.51612806,-6.747447,-4.1071734,10.431219,7.114977,-15.151515,-2.9067512,15.514006,-14.915318,-28.00441,5.745022,9.879286,-15.318108,-13.830226,6.427002,4.9967937,-11.143332,5.0570908,17.380598,-15.612528,-3.938275,42.840027,12.838337,-22.644573,7.754423,17.798727,null,1.724514,-14.343725,-9.610368,18.012974,6.950698,-3.5988111,13.16955,5.443158,-2.1695533,14.037095,3.9700546,-28.324419,-23.688295,13.988102,15.169627,-21.365929,-21.096466,7.960333,8.921867,-1.5146809,-4.7827373,-13.659563,-19.289768,-19.888092,-19.066738,-12.713844,-18.330448,-32.119495,-27.497965,-15.518346,-4.9739037,5.7722836,-1.7327809,-10.548628,3.4752827,15.060805,11.341436,3.1972513,-4.7139606,-8.318957,-13.414551,-18.556864,-14.769697,-8.1992035,-3.4120684,-0.32688093,5.4799414,8.176369,-5.553871,-6.914152,12.449995,9.913871,-10.4406395,-21.285004,-11.358014,8.962435,-5.7133694,-25.579472,-2.9188776,4.566822,-8.462553,-0.13703156,1.6341838,-4.85721,-8.466478,-15.348841,-9.047518,-1.4973042,-0.10487878,-3.075111,-23.095592,-29.641518,-22.090418,-20.601944,-3.2169552,0.47790658,-15.754651,-11.413822,-8.661039,3.13828,22.38348,-4.2448673,-22.03149,2.8284674,14.783661,16.938208,9.739655,-3.812522,7.6068764,14.571971,11.003996,18.134384,10.428778,0.5351172,11.155092,13.307713,0.26448154,-3.842462,-1.9185734,-8.654644,null,5.0652895,-3.7332406,-2.2902794,-6.670871,-0.4384247,10.65938,3.0356646,-3.566721,-10.703595,-15.530647,-0.19263744,16.372635,8.574325,-14.762835,-11.018799,11.611032,0.6124449,-18.160004,-9.62253,5.3861065,18.786423,21.945992,10.332514,-5.378069,-10.381056,14.054206,26.010502,-0.67176604,-9.265002,-0.07547426,1.2373576,3.3279126,-10.445615,-18.69512,-3.616498,-1.441699,-7.14475,-11.992052,-8.769651,15.232818,12.913735,-6.315284,5.028205,5.5457153,-8.454862,-3.5376737,-3.1635003,-10.698343,-13.804691,-9.406774,3.4555762,1.0953946,-6.2092566,6.738418,16.460314,10.453997,3.589582,9.973273,25.101635,20.639475,6.594084,7.590543,1.4667354,-14.724828,-11.208699,7.137201,11.2677965,2.8051987,9.719419,25.031466,19.054947,1.8983884,-1.4029918,9.538984,15.994931,2.5035536,-15.366004,-14.671362,-0.2827344,5.4103537,-7.2537994,-11.431911,4.7738085,6.710849,-0.44210386,11.029754,8.368857,-9.504403,6.0966096,22.498478,0.47468197,-12.196774,-2.924349,-1.124346,-4.681612,-6.8765182,12.87364,32.088017,-1.0935329,-20.20818,null,-16.014538,-6.4731436,3.4320002,17.668423,8.349907,-16.7259,-15.986948,-0.103281975,15.330465,15.850994,-9.67413,-9.461299,21.151438,9.276452,-19.476336,-12.43194,-9.38969,-5.9406376,12.043322,-1.9410706,-14.144201,10.858663,18.07025,8.056994,7.3952603,0.96541834,-4.463497,-5.9686213,-5.5428114,0.7649522,-4.2379346,-8.077913,4.0321374,6.6763906,3.6307604,7.19604,1.5526333,-7.113446,-7.1716447,-9.9194565,-12.031008,-6.452364,-14.402041,-24.27897,-0.8351718,12.988509,-8.625736,-5.848033,11.161486,-3.2482946,-13.70116,2.5902576,16.51005,9.0957985,2.1415157,10.386189,-5.380789,-25.048294,2.2201452,19.1486,5.7421293,12.909489,22.290863,16.991602,2.681383,-19.031446,-16.894619,1.7761607,12.723461,13.151351,-9.931957,-18.910727,-1.4752365,-14.624443,-24.619047,6.686323,15.962952,-2.444084,-1.6947185,7.1865883,12.195107,21.420082,10.448822,-17.711264,-9.590955,12.069828,-3.1665876,-10.311774,10.257055,17.199038,4.2536683,-8.554483,6.962034,16.542158,-18.509308,-19.247416,9.234564,-6.1624627,-3.26305,16.438967,null,-2.5357287,5.9768543,11.139019,-2.354175,0.906579,8.296902,-2.0222826,-9.75146,-11.730805,2.1812792,11.060683,-12.641948,-12.393749,13.988406,4.2282314,-11.545671,-2.0576267,1.4463811,10.073906,34.580338,21.255083,-26.881142,-29.137703,4.940655,13.340485,12.510863,7.3544855,-13.451238,-13.263507,2.7657452,3.2294054,-1.8666439,3.1641407,14.567137,2.0538788,-21.070559,-7.537872,5.211588,-0.2157135,17.324446,22.086437,2.5040193,4.786357,5.4359093,-10.37154,-7.83463,6.8061614,2.923579,-11.524168,-2.9071536,8.961374,-7.1897955,-3.998029,20.383469,1.9299004,-21.71919,-0.088018306,10.248204,-4.718625,3.6758265,7.515681,-13.140346,-2.1588001,15.552063,-16.144487,-37.407738,-8.333931,28.445478,41.23766,19.92139,-0.4993353,5.3802633,7.300136,11.1328125,12.658799,-8.190575,-8.7115345,1.7114019,-3.9278603,17.227589,31.5709,-0.7180064,-15.952623,-3.497107,1.9082441,4.8166623,-4.31081,-20.713474,-11.625532,13.441288,18.492914,-3.6132832,-21.873127,-1.5301282,29.567005,9.624011,-26.987549,-6.600751,24.145935,11.3454275,null,12.772722,15.50587,-15.220924,-15.916902,8.766872,13.303901,1.1133447,4.962883,12.667816,8.183107,7.7538977,5.685542,-2.92971,-3.067707,5.5776653,16.443926,14.043648,-5.3742237,-15.626591,-4.223318,13.652872,6.9097166,-14.662217,-1.7547207,14.236361,-0.103832245,7.211053,21.926208,5.9325852,-1.2649641,1.2228804,-7.567888,-9.949395,-2.523256,12.287714,17.434544,0.6013799,-0.53412676,11.969599,0.9770255,-5.851761,11.075454,14.387388,-1.1324878,-12.301164,-22.828491,-28.715357,-16.135155,-4.5473576,-9.313787,-16.159126,-13.466773,-2.7126598,-0.16735077,-5.291559,-0.09416723,3.8943253,6.1658325,7.362584,-17.88543,-27.805386,5.1475515,11.615539,-4.977796,5.060976,6.682513,-13.421814,-14.025263,2.0762691,-2.520831,-15.548291,6.6235056,31.50169,16.699028,-0.72304916,-5.335859,-1.4920101,21.171558,26.744102,3.8361175,-7.1650043,2.701335,12.558756,-4.564123,-28.627441,-11.7683115,15.986757,13.986368,-4.646913,-19.12716,-5.777874,10.544306,-3.7360833,-5.667545,2.8632798,-16.501919,-16.182184,14.078186,12.110054,-5.3623104,null,1.6214767,12.347353,-4.48282,-1.4655437,10.488779,6.904578,6.8159337,1.8961401,-4.239949,-3.799523,-18.102444,-14.902277,5.7756996,-9.920958,-16.55544,5.7653847,2.796606,6.0804744,18.59893,-10.733835,-36.890163,-19.541164,4.001954,-3.7317998,-30.44812,-20.915949,1.4017897,-19.20315,-20.363457,21.506588,26.225666,-3.5159612,-14.2117405,-13.916901,-14.872128,2.940998,26.434988,12.136896,-11.505209,-0.21981597,4.597012,-8.500986,-5.000312,-3.7078705,-7.7482147,0.9834728,6.491205,12.0556555,16.825737,4.533325,4.3576555,21.657475,12.593444,-10.921009,-6.6492825,11.142171,14.341415,7.463923,-0.7687855,-0.8118663,16.847286,26.789202,3.017188,-18.21226,-3.3556914,2.3452265,-26.495388,-32.66458,-10.492516,-12.6268215,-18.465542,-8.555252,-21.595976,-35.468258,-14.275291,0.038390636,-12.818239,-16.631386,-5.1019444,-4.8963947,-14.229584,-12.642867,-4.5682178,4.5564456,9.262364,-8.013632,-21.216164,-6.0742397,-1.9276965,-15.443347,-11.072986,3.699976,4.0166025,-8.151574,-10.893451,0.34526968,-0.47306013,-15.399094,-20.614979,-11.984106,null,18.409334,-16.178774,-15.050782,9.94819,13.854026,4.155142,-1.2623978,-7.1375885,-4.5258055,6.3639407,8.3611355,-2.3800752,-9.864644,5.453298,20.136753,2.2830849,-14.680248,-1.9221592,12.848766,7.3921266,-15.008166,-29.327309,-14.531733,3.883091,4.748391,4.6570053,4.7320633,-7.6822453,-16.549341,2.706635,25.318424,12.410819,-2.7057629,5.9585023,-5.7426815,-24.43993,-8.214909,0.007352352,-14.350579,-9.05869,1.5018084,-2.596325,-0.24156427,3.7791781,-7.995121,-17.033283,-8.103451,-10.553673,-31.718536,-28.216112,-7.175666,-10.766418,-23.520096,-24.047207,-14.97798,0.05548501,2.700766,0.09088373,7.951896,0.76354647,-13.588787,-0.06934023,16.929302,8.943339,5.6207705,24.609426,23.665325,0.85673857,11.888605,20.957096,-15.501304,-16.543911,23.328152,20.274317,3.9558287,8.4653845,-9.3960705,-31.950546,-10.511162,20.866415,-0.43453646,-35.84796,-12.804808,12.589997,-8.459302,-12.304014,-4.9607587,-17.77587,-3.7504091,15.345515,0.29472566,0.33662218,13.279623,1.6056461,-2.9059744,7.141037,5.4933486,11.941605,23.170357,3.1848178,null,11.948995,-13.821598,-5.2030983,-0.92746496,-15.095154,-4.1405334,10.076796,1.6118928,-5.1446443,-7.445549,-12.512335,-4.3031826,8.155377,-4.5191464,-19.971153,0.1989479,19.822521,-2.2885203,-21.009941,-1.2350023,16.295357,11.541492,3.9902744,-8.003813,-10.677107,15.591174,24.901842,-0.6820134,-1.409159,18.002611,11.930428,6.367834,14.987665,11.075638,5.0269113,13.743486,26.357864,23.538351,-0.3783431,-18.447107,-14.700335,-6.1569185,2.9154983,13.663875,12.908451,-0.122069836,-5.3939586,6.272937,14.263431,10.695286,10.763867,9.176838,2.10146,1.9778287,8.258828,11.220847,-1.5054955,-14.781939,-3.4904118,2.7460117,-6.7784266,-4.141712,-4.1170774,-1.8522701,16.861153,16.934715,6.1736403,1.655431,-13.289203,-12.444272,3.1388712,0.5203943,1.4464519,9.667397,6.255188,0.9001074,0.7288437,8.411279,2.1137152,-24.764994,-22.000578,1.4377422,0.6829448,-5.2958508,-0.36390495,15.309187,25.605791,3.4665403,-3.100538,27.06693,22.500599,-11.320647,-12.044122,8.335823,5.0934916,-20.872116,-17.485735,16.94118,16.767448,-11.1793995,null,-14.122762,12.15208,5.067974,0.14960325,12.206974,9.973976,-10.3896475,-19.216413,-2.0957785,3.3768017,-8.08731,1.3668948,2.1035595,-18.021435,-15.0715475,-3.132144,1.2257562,1.2929211,-8.5039015,0.06076193,11.206367,-5.2545114,-8.9050255,-1.3460414,-3.4640188,-2.9691324,-12.249508,-8.9747505,10.822123,0.7923186,-4.298642,12.096293,8.043394,5.6173854,6.3074303,-1.8933997,12.792738,24.5356,13.632464,9.629237,3.0477557,-1.5724621,9.379837,11.557146,12.282618,23.46232,26.109352,25.849201,28.498127,22.563406,21.06321,31.137299,27.406624,10.565695,10.982723,21.801807,18.120102,6.2351923,2.946244,16.3802,30.81664,18.687593,-5.0327063,-10.82379,-6.0472946,-3.837573,-1.6313887,3.2368412,4.9807234,0.5403633,-3.5764694,-11.044979,-21.156298,-14.227055,8.245576,21.76143,15.806667,1.5095887,-9.812134,-14.920038,-0.31203926,17.742678,1.3202915,-9.464244,13.679581,8.868839,-16.443575,-8.563416,4.561532,-2.3478436,-16.5945,-18.59742,5.785318,12.34359,-11.071995,-1.7909541,21.329926,9.487675,-4.591028,-8.09239,null,16.19553,11.009991,-7.908865,-16.784893,-4.7047987,5.835671,-6.0615454,-13.243704,-0.3253131,10.508627,12.863007,-3.3003616,-16.463392,16.360062,37.16185,2.5266771,-19.13174,-6.781309,11.983258,30.66514,22.01716,-13.822027,-23.805939,8.229069,28.875797,10.19453,3.151701,15.13396,3.9361854,-3.4397326,8.12117,9.376324,12.3166275,13.112077,-3.3355112,-11.49156,-10.81158,-14.4254675,-14.034823,-14.608816,-16.55841,-5.417123,7.1379147,-11.42435,-45.244614,-37.936394,-9.615246,-21.650116,-42.810646,-29.742596,-21.332651,-36.19262,-36.894722,-18.401283,-3.7023742,1.1926956,-5.950346,-11.577775,-5.34853,-7.5117764,-4.878291,6.7503343,-14.380179,-31.830156,-6.960397,11.189936,19.806992,23.71039,2.6779385,-4.4254556,3.6633234,4.000889,11.051309,-0.8519418,-13.06891,8.638582,1.5322249,-20.373352,7.620142,31.508553,12.267872,-11.802214,-11.292536,6.8244467,0.08125737,-24.612907,-15.787495,10.106843,12.263334,-1.8492298,-5.657771,1.9279652,-1.944602,-5.0499344,11.890357,11.93819,-19.419407,-30.362062,-1.1847668,15.785345,null,22.224098,-7.7360306,-10.767289,9.613391,5.1619797,-11.990118,-7.552365,2.8077888,1.4100256,0.27834702,-8.029278,-20.206034,-9.199749,9.287237,6.179214,-4.1070786,-7.474323,-17.380249,-24.403084,-11.887697,-4.0779634,0.063557506,15.929474,5.3976264,-21.55569,-16.082367,-2.4151864,-0.79350114,-4.129643,-18.869404,-28.782122,-28.97429,-20.11179,3.6968699,4.425667,-12.45612,1.6345558,16.034172,3.5079584,-4.6488667,-5.485667,-7.309976,2.6456194,21.466862,25.565279,11.476243,8.267788,25.869152,39.037697,33.312843,26.583483,36.40673,39.05909,17.123709,4.0812607,13.4431305,17.627335,5.1410303,-12.583317,-22.821247,-16.161152,8.957117,18.139833,-9.411572,-17.12413,3.2588444,-1.2810593,-2.401534,8.816619,-7.7984805,-9.984183,15.487089,14.518345,-5.95176,-20.631012,-27.03912,-18.757427,-1.221961,4.448379,-16.043978,-26.618158,-1.7718496,7.852396,-9.42428,-13.548646,-3.9882975,3.8847294,-5.4994717,-24.3976,-20.210192,-1.7797717,2.0586488,-15.3955145,-19.846107,12.097961,12.778416,-23.090607,-16.630829,-1.8637148,-10.089804,null,-0.64780164,2.999424,4.5136285,21.529724,-4.699879,-21.004644,9.331706,10.32387,-5.1529865,-1.3977594,7.1280212,18.3796,14.95605,-0.05288148,-6.600123,-6.3419685,3.77156,6.87605,-4.164137,-11.639666,-15.265328,-0.06886792,20.502846,5.680475,-15.589848,-14.047297,-7.068982,-5.3850694,-7.784396,3.9857836,15.349208,-0.76785755,-3.3445807,12.240117,2.062724,-8.8532295,3.1554508,12.6928005,11.426247,5.715436,0.6731224,-1.6581793,-5.1014814,-11.837449,-21.646671,-28.724775,-27.025341,-18.89983,-20.79255,-36.86125,-33.886406,-14.904292,-18.206419,-25.019863,-16.031471,-6.349859,4.9085054,4.7758665,-9.935153,-11.153187,3.9897056,21.512234,17.617025,-6.8000374,-2.6707013,14.779784,1.868644,-0.58143234,22.224834,24.305443,7.141011,-2.6504111,-3.7347484,-1.256201,0.97842073,1.7338033,7.0374794,14.524578,7.1475,-7.205419,2.6840382,24.61978,18.157513,-4.785589,-2.9686089,5.8129168,-10.596108,-12.219284,16.436913,18.957996,-3.497214,-5.15895,9.401794,15.135895,7.9601154,4.8574295,11.457226,14.341916,6.642067,-12.802302,null,2.5269823,3.5137644,-0.33427525,-10.001075,-5.888334,1.4466903,5.371538,6.740494,-0.2859764,-0.31770158,5.5853243,1.4193319,-1.2548914,6.664685,11.628165,-1.5831857,-14.938356,-1.1420522,8.03174,-10.669308,-14.812016,2.6043575,7.3033876,0.63830316,-3.8514395,2.2711368,18.657309,17.88105,6.2751446,11.215444,2.740417,-9.220037,19.66164,23.078884,-19.770432,-16.849634,8.967176,0.86106133,-4.0603266,-5.0446386,-6.327764,11.451378,23.476738,27.870014,30.517538,19.927147,19.200603,22.664757,13.681665,15.722742,20.354801,15.148676,9.948681,-1.16682,-0.63979936,17.977333,13.603317,-13.724743,-26.002424,-24.639116,-28.280434,-31.65683,-26.540567,-14.776565,-5.3696284,-10.88068,-14.99338,-6.5566106,-11.273844,-11.447219,11.268652,19.485388,18.769827,17.825752,-0.11237645,-6.7949877,-10.133956,-20.756605,4.099951,28.38875,5.513869,-22.613895,-16.56114,19.550468,29.730167,1.0192194,-2.9283834,4.95021,3.0779538,12.692612,0.7994952,-16.004114,-4.4860764,-2.4475026,-3.1372576,-5.0110283,-19.797697,-9.529897,8.2939625,14.561876,null,-2.218391,6.2267456,7.3746033,8.664548,9.795949,3.1994836,-18.966604,-10.822735,27.25118,6.866844,-27.462662,-5.1523514,1.4641848,-11.642491,-3.4093049,-2.1640897,-3.5293486,-10.1472645,-23.808117,-13.881404,-7.30288,-8.989717,2.6326046,-2.386282,-14.208473,-18.639051,-26.647339,-11.686424,1.239934,-15.936378,-13.889739,-0.15577585,-9.161018,-12.829187,-3.2145724,9.037264,26.841732,32.380417,20.575176,8.569613,-5.813264,-9.069517,13.648344,11.890764,-22.463556,-17.688473,8.4756365,2.0755465,-5.6350565,-3.9197829,-4.370637,2.4762506,-2.4112282,-17.90011,-25.648321,-30.751215,-26.465122,-19.247929,-11.151365,3.396197,-3.0762258,-0.027227402,35.41574,25.261057,-13.728154,-6.73792,-1.5364146,-19.772232,-14.448114,0.19289112,0.6327319,-5.210849,-11.924593,-8.847525,2.4401336,9.566422,9.263238,-9.233192,-32.153725,-19.706827,1.4418349,-10.721199,-11.386469,13.00468,8.199054,-9.853097,-7.3352532,-11.276724,-20.40226,-4.5331078,16.876554,3.9756448,-16.98602,3.6553502,25.484882,8.673957,-0.9075769,4.8523655,1.0686722,1.6780635,null,-11.250431,5.906703,-2.7912097,3.1417284,19.131018,2.3008764,-12.50149,1.4293275,12.184614,7.012051,4.3775053,9.990244,-2.1608133,-24.062466,-11.448211,12.223337,8.541866,4.8723764,12.0548115,10.942217,7.3810062,1.2736018,-14.674749,-15.266264,4.7078753,5.5263815,-3.8384826,10.256105,14.630417,-3.541202,0.45785046,21.454102,14.15016,-18.787115,-29.235538,-16.221134,-27.145311,-38.58233,-16.261412,-3.8107224,-5.504998,6.4885244,10.303426,-2.9912367,-15.750049,-11.73399,0.9808693,-9.112905,-23.451561,-20.137768,-17.848751,-4.585972,6.6894865,-12.769516,-16.883291,8.429991,21.061665,18.726328,5.511148,-9.515892,-1.7598977,5.9812546,-10.677847,-16.676365,2.65728,11.021744,4.0189524,1.1631021,2.8640523,20.23724,35.423306,13.0608,-6.4807434,7.6110516,23.330872,27.49688,17.088264,6.5921807,9.008222,1.3670912,8.287076,32.35938,17.005547,-1.5891867,7.529743,3.000173,5.141369,16.261742,4.9308605,-0.81035423,2.6404195,6.710487,20.558481,9.006123,-16.364532,0.53198147,26.009792,15.029599,0.24207544,1.3965235,null,-6.3520246,-29.110558,-2.304954,0.18000269,-12.736,2.950893,13.872714,-6.630173,-20.489107,1.257431,24.998999,5.2306466,-20.28402,5.921289,29.790073,9.967518,2.9531372,9.076884,1.6739349,6.8020167,10.485292,-3.0670443,-3.1113825,9.201375,12.467228,1.6639426,-7.8036056,4.9881477,13.634471,-6.1361985,-19.801495,-9.1868305,2.1316128,6.974337,13.210943,9.833534,-1.1216936,1.8067265,-3.0030556,-24.529774,-17.572027,4.7228246,0.62754726,-11.624744,-11.246836,5.561474,23.458412,20.987589,22.410017,31.525639,22.719227,13.758091,14.280193,13.436534,12.226984,5.407339,-2.2827144,-10.65983,-19.183523,-3.0928125,18.834602,11.604678,0.15247607,5.977127,11.413534,3.6976357,-6.7280235,-17.089495,-41.100433,-46.967884,-6.9211407,22.339256,9.8630705,-7.295142,-9.544215,5.1921115,21.398893,12.057287,-9.125448,-11.232291,1.4521573,0.5484867,-15.459046,-17.169315,-1.5238805,9.362376,9.746589,4.3537083,-8.394766,-22.390318,-13.024244,6.8100767,-5.465031,-22.23328,-10.045542,-1.3370047,-2.430132,-2.402193,-7.4320393,-5.81914,null,8.813275,21.73266,8.006041,-12.476015,-16.014935,7.015758,26.581434,15.17194,4.945208,13.885338,23.386845,16.262089,-6.5376034,-8.657449,8.990002,8.438864,1.5265737,-6.413148,-16.724277,2.9468517,21.988468,-0.7564411,-14.774772,4.597969,13.890891,-1.152678,-16.57424,-7.872837,13.144011,2.7854643,-26.837595,-25.603046,-10.675806,-9.925709,3.5861745,31.574055,42.038845,33.00045,29.006699,34.68305,15.779648,-18.573462,-17.213036,-9.367162,-23.013824,-18.660034,-13.21797,-27.755367,-34.018528,-36.096954,-25.279432,4.0204573,6.0246887,-13.691788,-11.4658785,11.486826,30.975714,29.915005,19.35635,17.485455,27.989056,43.191483,29.128246,-7.9927635,-22.395613,-23.40242,-17.185728,4.4246855,11.326193,10.528239,15.521899,-0.010791302,-19.512709,-13.224064,5.3565435,5.2209377,-22.456684,-27.96824,10.829824,30.362144,-0.76245594,-39.948273,-39.367607,0.8349197,26.396935,15.380496,8.330926,13.400924,3.7795713,0.771142,17.88373,5.5203915,-11.994879,24.783375,31.850014,-23.431755,-24.26146,14.723707,9.370704,6.809043,null,-10.494572,32.985275,9.351521,-18.126865,5.554326,-0.5417223,-7.050484,32.221497,26.788897,-25.943138,-31.820126,-1.3004407,6.907015,-1.083327,-4.851552,-4.5283985,3.5594711,5.437997,-7.212771,-10.499348,-9.720307,-5.67979,19.866053,29.778442,12.43055,-0.13727951,-11.987618,-13.58234,-10.862466,-25.27742,-22.516878,-9.086691,0.86470056,39.836708,55.316803,13.6138525,-16.415525,-20.468369,-19.436993,-24.205719,-45.753803,-45.361816,-21.343763,-17.095936,-11.584297,3.2595906,1.503129,10.69077,39.813034,44.65257,31.88332,38.216248,38.632904,14.660381,5.5629783,16.72148,19.143738,4.252838,-23.976269,-42.501,-42.300873,-34.431625,-15.100146,-8.057922,-15.728008,4.218298,17.516497,-6.270201,-14.11989,-4.6910133,-5.9277143,-8.4255,-16.519344,-21.22838,-12.688264,-13.948761,-15.963073,-6.56279,-9.812761,-11.967512,1.8142939,-3.9952812,-10.059102,22.683662,36.01852,6.5462246,-4.3601727,3.1561258,9.077336,18.688908,5.965019,-18.506569,-17.031168,-2.6424909,1.7164102,-10.1933155,-15.6661005,2.414691,7.7447653,-3.6228733,null,-5.4295106,12.418373,6.740349,-5.3920603,-10.300705,0.98130524,9.1605835,-0.1734047,-1.7958862,-12.444306,-29.544353,-3.9859543,20.435822,-4.1117563,-18.76404,-4.932489,-2.1379638,3.0628033,13.245651,-5.5849786,-27.432756,-17.754772,3.7659345,21.144371,13.141162,-16.475018,-12.304732,10.217932,9.872441,11.313969,8.11704,-5.8360825,-8.902156,-23.326777,-32.85887,-10.256256,4.188197,9.190132,10.930861,-12.756471,-18.781914,5.7407727,5.7199173,-10.833572,-16.741497,-23.718033,-25.44247,-18.815546,-15.331379,-9.578947,-16.45271,-42.88819,-40.712795,-8.285929,7.816299,12.339173,7.485998,-2.908873,11.529175,12.884693,-15.367424,-20.356415,-18.966492,-24.719559,-13.421192,-11.878678,-13.462669,1.0942373,8.367136,19.349117,32.034233,30.113022,26.37226,5.8875933,-16.410746,-4.4213524,12.777799,19.087389,16.10988,-2.7379766,-1.0168748,27.31853,35.50517,15.60033,-3.5119176,-3.7859755,5.4810085,12.277906,14.437697,6.05587,-4.013873,-8.526057,-7.414032,1.9513149,-3.613821,-9.091993,16.05722,14.954456,-20.026024,-22.148563,null,7.0916824,-17.683083,-11.505745,-7.137029,-15.581816,-7.514736,14.599119,6.475196,-11.784967,1.8823376,2.3562355,-20.507004,-17.010006,4.376814,17.23703,2.1661267,-38.646614,-42.637035,2.9227376,29.364462,7.9886703,-20.739296,-20.020832,-8.359598,-3.2788205,5.23669,-2.15864,-26.7753,-33.742928,-24.261492,-13.58142,-3.9722152,-1.2295797,-19.902365,-47.506317,-16.34389,48.589676,32.699516,-17.54145,-5.543592,14.910646,6.766074,0.7836757,1.5651865,9.23876,15.970705,18.611979,21.76112,7.665247,-11.399805,-14.239714,-15.327081,-7.161233,4.9378033,-14.62054,-36.66581,-23.935043,-9.795673,-1.9734488,19.125963,24.372816,15.516726,29.794512,40.011356,24.859676,12.42638,4.2355633,-8.969752,-25.735226,-26.49394,7.2178183,16.223454,-22.63596,-27.923996,0.32943606,8.120262,10.425743,12.343903,11.399582,13.408457,-0.82213926,-6.3370485,20.767796,26.705307,-1.4634748,-9.185625,2.5020428,0.23955154,2.8340302,16.333023,8.394914,-6.707278,-5.8181896,-3.9360676,-1.1356335,4.550529,14.5760765,27.821995,12.856022,-8.286436,null,19.63356,7.8556004,-7.057993,5.4119854,20.180874,5.305092,-13.123358,0.9583874,9.956823,-7.988534,-7.0586967,1.2666821,-3.2003043,17.918173,37.88148,14.303752,-11.110887,-8.785938,2.9232779,6.857165,4.4885416,1.4450941,-8.927964,-7.714832,10.599535,1.7480359,-11.914873,13.829757,24.472,2.5744467,11.108137,38.58039,28.386112,-5.868596,-19.27785,-10.446068,-15.250933,-44.96774,-59.93572,-37.941048,-5.530388,20.072409,29.159184,19.694752,25.408407,38.402416,26.302258,21.12711,27.372581,20.740097,23.694328,21.75864,1.3558435,2.1708713,13.382366,12.178518,8.292953,-1.125207,-8.851267,-20.619518,-30.33493,-2.9765291,13.987823,-10.967661,-3.642437,31.7465,28.719309,3.3527284,-6.9521976,0.021670341,5.968116,-1.9601676,-6.1680408,-1.9645076,-2.1551857,3.9520903,8.339418,-17.05664,-34.24372,-1.4430289,16.803137,-11.416183,-15.964132,-3.0822518,-14.274847,-9.037078,12.409582,9.00239,-11.453178,-26.403473,-6.13286,28.144081,5.5654893,-34.38228,-11.561996,25.542713,14.659337,-3.2848444,2.5095809,-6.37717,null,-20.54891,-7.300522,20.500196,21.85116,-4.4658566,-22.416283,-14.869398,-0.016963482,-0.277627,-6.4779205,4.1133914,26.003235,19.034168,-25.998447,-45.336937,-12.254717,16.027264,16.451815,5.4613276,-13.687716,-13.147626,9.208647,1.7084489,-16.488068,3.0796938,15.397894,6.168482,24.528887,36.167984,11.094132,-5.2333703,-12.805508,-13.807461,10.357711,19.357433,1.0543613,-6.271492,10.965157,43.762627,47.358307,16.533316,7.9271708,9.288866,0.10382521,-3.2620497,-24.201233,-44.306473,-38.108715,-42.07189,-38.85986,-21.653109,-37.171898,-53.12454,-32.935703,-9.125665,-3.7933154,-11.265898,-5.360818,13.5374,18.87088,34.96149,65.26889,58.591152,18.602303,-9.321619,-8.305715,-0.21289921,-12.161698,-17.217762,7.111326,16.841345,-1.6073389,-9.479274,-0.86351013,10.5945215,18.45627,8.211554,-8.096172,-6.176693,0.9718709,7.6227064,11.4260435,-4.6551313,-8.195607,6.649281,-2.4227247,4.1466494,23.03507,-16.48045,-37.4086,10.488027,25.69823,7.1137314,6.2422194,3.9755578,10.52886,15.13557,-4.7125163,-3.3950934,9.041776,null,7.3369246,0.090932846,18.61419,5.2944965,-10.058523,-5.0269465,-6.790389,9.537755,17.522276,-6.5240607,-0.070528984,23.563242,15.181699,0.3920622,0.77900505,16.103048,24.24198,0.8750515,-15.375139,-6.1117964,-8.310126,-7.1955237,14.451711,-0.06218052,-44.962566,-31.814606,11.086254,2.6973944,-10.984272,-5.2921085,-20.435432,-16.710934,17.54385,25.163773,7.071434,-15.556531,-28.203075,-16.034515,-0.14232016,5.4626775,-1.3095515,-14.469063,0.36008728,33.155727,40.041878,25.14547,25.039162,51.313545,57.10897,32.735584,39.16883,57.979702,46.05053,31.684126,14.294789,-2.817234,-0.17371559,-9.649246,-21.063145,-7.778078,-3.8889036,-15.550586,-20.666222,-8.516948,8.445564,-3.2417583,-7.87063,17.697718,5.658037,-26.682966,-25.577673,-29.003906,-28.825565,0.55865574,9.241736,-7.8717613,-8.740128,11.551237,28.415628,11.724054,-21.848318,-31.856186,-23.069798,-2.041581,22.036186,13.31671,-17.101894,-29.333649,-22.56438,-12.829445,-13.100673,-9.526003,13.625006,11.594754,-21.142883,-15.441666,10.619387,-0.90192914,-8.065762,7.7352524,null,-7.7320385,-7.999585,-3.8826609,-6.2460957,-8.25041,3.675259,12.46897,8.839389,-3.1336827,-10.1996355,4.053664,4.9924297,-10.780941,6.8431377,14.792264,-14.161173,-8.205678,14.112426,5.0839205,-3.7116203,-11.853373,-13.137468,7.934025,5.7121487,-13.997438,-8.451212,8.826712,22.94334,16.946613,-2.6143925,2.5301602,3.0599556,-15.918322,-10.144199,4.0329695,6.2353683,7.5686135,-2.3848553,-6.3369007,3.8576777,4.6440005,5.1721773,1.2324967,-20.28826,-37.16704,-38.51359,-29.085583,-24.566341,-30.645939,-20.713428,-4.6200924,-5.28482,-11.201509,-24.61119,-27.884953,2.8022785,26.478031,12.035423,-10.651332,-9.617871,-3.1623707,-16.865856,-15.466698,2.639749,-4.882746,-10.026514,-2.6831546,-1.9149227,14.228886,13.962002,-9.356655,4.851259,20.37709,-0.04211569,-10.3301525,0.7265358,13.447518,7.398895,-1.2685976,18.233536,17.714775,-6.8032384,-1.8750103,2.6256685,3.3097773,20.352522,9.29442,-12.682642,-5.3590946,6.7546415,10.728241,4.778857,-2.5547624,3.542941,7.261057,-0.16634536,-13.673704,-7.9334645,17.75575,-3.7026944,null,-0.005848646,-10.302613,1.3115995,13.639483,3.8625093,-6.36922,4.7533383,3.2802515,-15.285894,0.085027695,2.72412,-28.483189,-11.528503,10.896415,-4.684989,-4.56698,-8.773514,1.7688727,34.59126,5.9791126,-17.105951,7.144477,-10.4313965,-9.990086,25.131947,-1.5865402,-33.054405,-24.864662,-24.88316,-24.619526,-17.93739,-3.451548,11.35829,0.06834102,-2.5992327,10.17074,8.302662,20.172508,35.156525,16.806435,-1.4664049,4.9243803,8.303322,-11.532433,-21.0681,-2.014312,-5.1671352,-17.470034,10.975216,24.570183,0.743865,4.367391,28.19582,28.115738,22.986866,34.28675,32.60339,9.866541,10.836976,25.838028,8.1710825,-17.350807,-19.378597,-5.6972327,11.68253,8.590082,-12.686076,-27.319355,-26.67643,-3.0892873,13.473902,2.4437695,2.9549875,-0.52458954,-22.875015,-12.009071,6.411604,-6.708557,-15.596802,-14.483793,2.6879992,28.030846,3.7327502,-35.78693,-33.79529,-19.601915,4.2729144,21.291634,-6.4301944,-18.071571,16.599731,25.305176,-0.35619438,2.3508663,30.650536,24.956474,0.71187115,9.148938,14.850585,4.2663555,null,12.359602,22.152367,-3.251624,-14.558349,2.8777008,13.986549,5.4190626,7.746498,21.281292,6.973488,-16.82426,-15.1931095,1.1873088,17.473106,21.725727,18.9062,9.02389,-27.07562,-46.04638,-15.046394,15.118763,25.4051,13.653965,-17.703995,-10.377725,9.760979,-24.915684,-46.743637,-13.644587,5.198279,-7.582469,-18.487274,-14.338601,-5.7907457,-12.797377,-21.587831,-14.068971,-2.5053222,4.0871572,-3.8926477,-19.370174,-11.641981,7.4330196,3.4353058,-10.661994,-1.7818928,13.662745,-0.50168777,-9.695572,11.510371,7.924975,-13.140896,-1.9307089,12.235453,10.501469,5.2952795,-7.7514114,-13.568571,-6.958807,1.3457963,3.1276362,-13.322632,-23.175266,-19.534239,-24.531372,-11.217802,11.450492,1.7509685,-16.1248,-12.38507,13.5939665,19.040394,-16.556286,-14.323402,8.835367,-9.379683,3.9461346,21.37765,-19.474464,-26.278477,-5.25454,-4.0966225,10.678274,-0.28193474,-14.827322,12.014261,4.3570776,-6.9873457,21.162256,6.434128,-18.344332,7.377571,22.950584,1.3776841,-21.641882,-10.213663,16.119164,3.1002903,-15.209484,3.5439107,null,-4.660777,11.886932,10.652293,-5.341681,7.6177416,18.446724,5.207622,1.4774852,7.362899,18.59625,14.56719,-10.632468,-2.3362033,12.802825,-4.355324,0.94211483,12.789655,3.2976394,17.212244,30.73812,14.075891,0.18956304,-1.5977554,0.48696995,-0.87346125,4.2380276,23.672407,22.330437,2.1496534,-8.57675,-11.0959835,6.4532537,18.73374,-2.29527,-7.107733,10.133816,14.52666,11.745691,-1.8871002,-9.007417,8.467696,13.238668,4.8149657,3.4153614,-4.8071513,-9.841111,-3.0600586,-0.8428564,-11.656921,-30.386341,-28.081696,-9.413637,-18.066605,-34.11911,-27.79623,-26.140106,-26.540262,-6.3142376,9.445858,-4.266393,-18.623583,-2.2777882,12.342756,0.8572712,-0.66431904,3.761239,-12.178094,-15.870719,3.1041212,12.103324,5.588767,4.8168964,25.437796,28.591791,-10.958702,-22.740686,-0.9173727,-12.322037,-18.195145,11.03487,22.600266,14.496143,-0.6630707,-16.97653,-7.7499876,0.22660685,-16.426165,-17.649546,7.3768983,16.611301,-12.841678,-25.780758,14.497219,27.137062,-7.332337,-5.6190634,15.642771,2.439265,-17.40614,-18.676022,null,4.0562096,-2.9521961,30.711008,19.159544,-6.3342714,22.947227,31.836224,-1.9606371,-18.82531,-3.8271747,20.907993,14.277765,-6.2915936,-1.5839462,-7.3706694,-16.665293,10.0911455,34.618996,22.828966,-15.167868,-33.413357,6.772882,40.69988,18.015686,-11.122963,-22.070171,-17.72595,2.6649656,14.930397,11.3586445,-1.254092,-8.506216,9.454389,19.05552,-0.32038498,-5.0306864,4.1376214,2.0403008,14.505844,41.582703,40.310352,13.483934,12.099669,45.036583,57.628227,37.85919,35.07188,47.08538,39.073795,25.879978,23.850739,19.329887,12.464426,18.194847,25.322706,8.838299,0.22480059,28.462082,33.43477,8.268489,20.89062,37.57132,12.003187,-13.422391,-21.469221,-12.139975,8.851576,6.8806047,0.7139797,3.6520715,-14.054605,-19.44961,-1.4062448,-2.6654263,2.8173985,17.397367,-10.732672,-34.88584,-3.6485841,18.007494,-0.73779726,-13.731192,-15.030655,-9.030475,9.311716,9.061308,-2.027992,1.2190967,-9.689937,-13.73205,11.52077,3.9031188,-22.688978,-6.7847404,16.707607,15.555214,5.8157997,2.6502953,7.749701,-6.500771,null,-0.04326117,-10.947651,-8.668739,-20.951439,-28.644432,-15.807921,-3.8700426,11.786184,8.769837,-18.014557,-3.6840706,23.757095,-2.9447098,-28.526575,-17.143303,-0.40742683,19.859564,15.897257,-20.576952,-23.757917,2.7408237,11.45645,15.707609,11.429035,-6.4376116,-4.302849,8.891491,16.403982,25.25162,22.13773,11.198951,0.012568474,-9.942837,6.989038,16.648344,-13.436897,-13.806417,7.7694707,-22.008007,-48.707054,-32.745884,-35.88829,-43.997417,-10.978863,14.34423,-5.428883,-28.827002,-23.917683,-3.4594126,8.487541,3.8103652,-1.9711723,-5.0685863,-18.347973,-27.330181,-17.484207,-13.057222,-26.590055,-25.945696,5.4124346,25.663116,13.279978,3.9326892,1.5433936,-5.024072,4.5051813,14.006844,2.6295013,-3.6675935,5.6163387,13.667883,1.9717112,-13.321802,4.0976496,17.247448,-0.42345524,9.273186,39.875317,29.562227,-9.71044,-24.771345,1.1535678,29.767607,36.575928,29.842218,3.3190055,-9.442448,10.608707,12.389977,9.618283,19.910881,8.912799,6.6742063,8.241161,-18.68873,-22.249159,-8.044682,-6.4620495,4.9390135,-1.8083162,null,17.105244,18.7862,-8.46381,-11.8536415,29.318098,33.05613,-20.344402,-16.727654,21.831045,3.8456864,-6.9336877,19.722797,19.156384,-3.085628,-11.166009,-10.940467,-11.698235,0.74907243,23.554308,27.710121,16.137218,-10.520409,-46.061817,-29.893036,20.69392,25.658714,0.6530285,-11.821983,-4.3833227,13.748218,12.687583,-2.2416015,-11.520679,-6.051306,24.414986,29.901762,-3.0178742,-1.8335371,16.764214,4.6405497,4.286978,31.667591,40.38141,13.084843,-0.07560158,30.978546,36.936687,-3.7671714,-13.7359,6.846014,4.4947343,-6.1279707,1.2073798,14.566771,21.202719,25.29337,27.473396,19.454884,2.0192003,-3.847384,20.615623,29.592785,-13.969905,-26.427723,17.875395,23.1377,0.40904093,-0.33411884,-15.442778,-28.749859,-13.491245,-2.6620636,7.4228826,13.164401,-9.837439,-26.467087,-9.343228,15.598249,23.640194,14.008342,4.273982,1.0882392,-1.0728779,-2.2184482,-9.199541,-13.758092,-5.989066,-7.2370834,-4.645814,19.688541,15.619105,-14.264006,-8.786217,4.3403273,-5.0290937,6.0447125,22.347485,-1.5568962,-24.446629,-4.324085,null,-8.616009,9.106363,5.9934864,4.0547843,2.5406952,0.43760395,5.6999874,8.81006,9.590439,5.7014356,-7.694682,-4.5296445,14.497431,14.721439,5.909043,-0.7426677,-21.354145,-26.964355,0.16430664,4.3110704,-20.525148,-14.681069,6.3842497,9.107593,24.513403,28.123392,-11.123259,-23.346737,1.7084486,6.333786,2.7257624,-0.24938607,-10.291675,-12.593597,-17.710138,-12.923599,18.165154,35.52657,22.050499,-6.774207,-20.170248,1.5609455,-2.2491388,-43.28849,-40.097706,-10.784416,-25.03297,-44.01158,-13.810906,12.605815,-15.841856,-30.301197,-0.3331933,5.058208,-2.6479979,11.010986,15.781042,12.074963,5.7873077,0.038002968,0.771101,-16.39022,-14.987804,26.088099,32.08065,4.6883802,-11.458353,-17.98101,-2.7262511,6.5637302,-9.812033,-12.323295,-13.824553,-23.612843,-4.163885,39.519447,57.505127,4.027152,-54.844276,-20.179817,25.644667,6.358227,1.9004283,19.174303,4.3675117,-6.0551605,13.112001,17.496893,-3.4504738,-5.66563,5.7449026,-9.034523,-19.453363,-1.7770209,0.5434513,-14.688948,-9.64431,6.8147783,5.5865498,4.5287466,null,-13.013025,11.74959,17.116314,2.1104188,-22.502895,-24.78041,4.938652,13.449192,-5.5257106,-4.245961,-2.2960892,-17.99965,-12.00552,7.562356,21.672478,27.48059,-2.4586263,-20.070124,11.623769,12.198877,-5.3911715,21.303001,22.901875,-24.50365,-38.424416,4.371378,40.52826,23.298098,0.08144379,3.5791183,4.0005245,15.002533,20.87128,-8.001768,-14.206483,-1.0331249,-14.046626,-24.810352,-27.551464,-26.40276,-18.136126,-24.564285,-24.488693,-12.879703,-15.326504,-14.523815,-14.4550495,-11.225509,17.487122,26.134064,-0.33336198,-6.7985544,24.401814,47.96614,20.860601,-4.620572,9.649308,-3.4473124,-27.741106,-15.546678,-23.065205,-40.611244,-23.148808,-9.365342,-7.3658347,-0.2854619,-1.0033717,-6.1225386,-3.3486454,10.336291,16.019299,4.4587264,6.7723737,13.113333,-3.7742462,-10.581472,1.5935345,2.2057672,-5.03122,-11.479263,-13.194956,6.57292,29.192087,16.482918,-15.525526,-27.312515,-12.221855,13.950409,16.131226,-8.637699,-3.5127754,19.950792,3.781211,-6.520196,12.461962,-9.260723,-35.78944,7.119733,34.713253,-8.23341,null,0.86390877,-13.651104,-8.660203,23.964657,31.912857,-10.915684,-34.9076,-7.6283584,3.4899921,-10.97257,-5.506138,3.4035494,0.9150882,4.312002,-5.3099556,-23.49165,-9.586022,1.037857,-18.186636,-1.4092674,34.92867,13.361646,-19.729876,-10.244919,-0.6836753,-4.960402,-0.68519735,-4.185355,-21.887787,-20.143469,-2.5764089,-1.3867729,-1.044836,5.880398,1.9931874,-1.8818843,-11.898704,-13.137981,24.664799,36.243576,3.5855742,1.8971772,15.849491,10.186237,-1.2153816,-9.902519,5.0444016,8.194684,-25.482517,-21.1684,6.4130397,-4.8444233,-10.237015,5.4396944,11.941393,13.175368,11.375467,9.430037,3.076296,-7.7046733,-3.7784543,11.764082,30.135796,28.585522,-3.9682074,-11.212233,7.219924,-1.7884164,-11.446391,-8.737597,-25.778986,-35.27086,-3.4088316,30.889473,12.49928,-28.690624,-32.754917,-16.826134,1.734663,15.416144,-4.8609543,-15.793206,-4.072833,-27.537102,-33.78427,8.430682,15.881483,4.247366,15.145306,6.9332,-2.0952215,10.832726,6.022057,1.7039909,17.10714,13.428887,7.0827084,24.312881,25.256561,1.7877283,null,18.22137,-5.165588,-24.960073,-2.7655168,16.580738,-17.252789,-35.999977,-5.786268,2.638796,-11.944016,-8.486316,-3.4074807,-3.005445,-10.16522,-19.545422,6.384097,27.394762,0.7214165,-14.71654,-15.185614,-27.374289,-13.705305,9.468896,13.206215,14.33261,-4.8137383,-27.189796,-7.69289,13.204938,-0.14650679,-9.476919,7.362333,22.831886,13.133093,-6.3573713,-14.38553,-14.367975,-15.459096,-18.04472,-18.530632,-18.162191,-14.598066,-10.338586,-16.874863,-15.3996105,-3.7275279,-7.82293,1.5279179,16.147541,-8.830271,-13.255314,11.556237,-10.934484,-41.22332,-32.86026,-20.369484,-18.93492,-33.294113,-37.91491,-16.075378,-11.043372,-10.357408,4.918187,-2.5248575,-10.431618,-0.036500454,0.17282867,10.710725,29.600471,14.263933,-11.459137,-12.369084,-4.6288404,9.996539,32.338776,21.289875,-10.047727,-0.9015255,9.819017,-12.0195875,-3.988039,10.756454,-15.281979,-14.525269,15.209875,14.056766,11.106672,10.081715,-16.0102,-17.364674,10.039267,12.82494,10.896977,8.671501,-19.372847,-15.863746,18.390797,-0.11386907,-23.723894,8.098822,null,-10.204712,10.418407,11.838045,-17.753796,-15.449961,12.949011,7.5768356,-12.252414,-6.3687115,7.699501,11.61533,-5.8683352,-39.711357,-33.828197,8.888244,11.7002535,-14.495485,-12.12695,3.1667805,4.140857,-0.055799484,1.467372,-3.243676,-18.224356,-8.593145,16.681068,4.99299,-14.603325,4.4236937,17.926352,-5.880338,-13.828358,13.491499,10.677196,-18.421856,-2.899785,21.545895,9.561878,2.6092958,-1.3493805,-9.196556,3.0421476,9.155758,13.319109,36.76325,37.09334,11.678944,-0.62480485,5.745303,16.490688,3.3633718,-17.145514,-4.815089,5.5990057,-6.1040783,-9.625446,-14.813037,-16.410236,5.9795437,14.689577,5.153715,14.978445,19.787743,0.79667664,-13.782467,-23.60655,-13.955772,26.19554,31.965895,3.4723663,11.388195,29.934046,23.663147,6.804365,-22.883654,-22.904263,16.187592,18.478916,2.2780633,14.233177,6.4286747,-21.591139,-19.605288,8.063505,28.119614,19.27639,-0.65627575,-8.819521,-10.5656185,7.135199,31.374758,15.853571,-10.699731,-7.5517135,-1.2798314,0.2926407,4.1320767,-0.9178343,3.1549397,15.170663,null,-5.436736,12.471394,33.803215,-2.6198778,-24.493008,12.194301,15.73882,-14.907253,-4.4227047,17.110992,7.09111,-4.0786023,1.4382172,6.591077,0.013043642,-8.606239,-6.0299563,4.2693424,7.6489325,-7.690651,-17.040398,3.3581944,8.405678,-9.247024,6.329669,27.487095,6.6353755,-31.871704,-55.541092,-26.744087,25.45573,8.969566,-28.058002,-2.3667521,22.406246,13.863525,10.129738,-2.686144,-12.785559,7.0178576,14.565475,2.1171963,10.783473,20.829155,7.6247683,-2.6611147,-6.8511963,-14.259254,-9.648664,-2.4200778,-19.610455,-49.725586,-51.395584,-23.417765,-18.258892,-34.727028,-23.668795,-1.2749023,8.275278,10.872545,-3.9016464,-6.643484,16.38786,10.659918,-2.3272018,24.050669,29.157211,-14.79649,-32.062805,-1.8216853,4.8515043,-12.376394,9.424339,19.662415,-18.320011,-7.5751123,28.760418,-4.8120036,-27.052631,8.162338,6.6550703,-25.694853,-26.09747,-16.842838,-10.83699,5.726339,5.7160635,-9.694768,0.77583027,17.052021,7.309991,-4.526005,-10.918779,-6.4319344,21.537748,25.574242,-4.077549,-6.0455246,5.7841406,-11.106106,null,16.354235,14.2980175,-5.861309,-7.5011835,-7.591764,-0.5512142,22.889444,22.790207,8.247581,2.8525295,-7.2765317,4.6076393,37.46565,24.053452,-10.2715,3.502865,12.584536,-10.836187,1.0605636,12.764713,-15.400012,-4.745596,19.459549,-3.3543406,-0.46494102,25.036283,8.960279,-5.6070156,2.9931169,6.2348566,9.656963,11.47867,-1.8814278,-27.897495,-36.915047,-13.795437,-6.283503,-20.529465,-6.0906143,16.915627,10.00094,-5.649871,-4.741151,9.964739,13.544844,1.5346341,7.1965647,27.6515,21.449486,-4.758275,-3.9656086,18.385708,13.981515,-11.107636,-20.539455,-18.727089,-13.164463,-1.030015,2.5273695,-3.6331902,-0.93553567,-0.8572645,-24.653864,-37.954144,-11.409361,10.439501,12.260492,28.336401,41.386864,33.26523,24.242317,10.373713,-5.6367116,-2.282598,9.762402,11.168006,5.526374,6.030699,12.337485,8.685558,-2.4224205,-3.0480373,3.6677732,3.4154701,1.1218648,5.275427,1.5784819,-7.256647,4.0418487,10.463486,-12.166943,-13.065867,13.665176,1.487257,-27.897518,-7.286086,21.646809,10.107582,-4.9506083,-12.409027,null,21.859915,-16.053871,-31.868458,5.721613,25.425133,-5.2199125,-4.4892683,33.2609,35.570858,9.173489,-7.176116,-4.0806217,10.86491,16.746067,7.868527,-6.608387,-12.926459,-9.237087,-8.940131,6.2009797,31.175415,18.535835,-1.1180186,13.280666,14.350813,-5.832626,5.237509,40.356792,45.258926,9.014706,-18.828228,-8.966119,3.317907,0.3710816,10.163818,30.773495,37.85251,29.55632,5.219227,-14.798771,1.4787827,16.132816,-1.8848524,-7.5891,-0.30808926,-6.125803,-3.3852189,-2.4365351,-14.909061,-5.6753144,17.241182,22.84558,19.353785,17.786142,22.466238,33.609604,30.581251,5.996238,-7.5466137,-3.2095966,-12.231227,-14.85574,8.223905,13.512258,-0.22823,-7.116394,-12.614337,-5.957518,2.9699488,3.309535,13.404118,3.7817316,-17.315964,2.3931217,19.256107,4.746412,-2.0331182,0.731339,16.113743,30.585777,11.397152,-2.7236605,9.117444,5.8005466,-6.8672867,-3.4652977,-1.4220476,-6.961322,7.3059835,28.67157,11.451168,-17.000206,-2.9870744,21.859352,6.922615,-17.26506,3.4003963,24.315926,-11.460018,-29.054943,null,-0.7341466,10.45635,3.1890287,3.1328993,16.368692,10.402299,-20.058544,-16.94172,18.465366,6.5363655,-26.054485,-7.7404547,22.873817,18.985573,-4.5457735,-14.645684,-0.11565256,7.9779162,0.7425337,-1.9737563,-7.0133524,-17.080992,-13.500449,8.037481,12.677169,-11.082651,-1.8733506,31.569742,13.925183,-19.641392,-17.111116,2.4474297,26.736897,27.549603,3.8242626,-3.286717,-12.261876,-25.085297,-6.880419,8.867479,5.205905,6.536767,-18.216919,-65.48997,-57.79889,-13.0912895,-21.045671,-54.109215,-43.14398,-11.137724,10.542067,5.568756,-27.262043,-27.25238,4.433093,6.792158,9.696846,23.786102,1.5461559,-20.160376,-12.078431,-13.5153675,-18.05876,-15.31435,-19.425823,-2.152371,30.011826,21.367458,-13.2146,-26.482973,-14.118908,8.627921,16.736217,16.119354,16.007542,-19.241295,-46.43682,-13.353518,-9.016426,-43.22366,-22.22233,12.212188,2.3456244,-11.717737,-10.688412,-0.22898388,12.489738,11.894783,-9.15068,-25.418968,2.8237028,16.15066,-35.284485,-38.025066,25.104027,28.048748,-11.541895,-15.382137,1.3107982,6.0604815,null,-7.4716134,2.977406,13.590273,0.20349264,-24.152649,-18.928307,24.954424,25.656609,-20.308212,-14.632354,18.945494,13.985009,-5.2467613,-11.790916,-5.78769,-7.629267,-13.604458,2.824092,5.235755,-7.763906,4.9140444,5.0846515,-2.2145844,17.883446,12.9277315,-7.1212134,-1.2318916,-10.866003,-15.46294,21.753313,36.01918,8.661586,-10.547765,-19.269592,-24.104805,-10.839864,14.358326,29.46994,12.275177,-18.690361,-12.158077,8.741849,0.9055023,3.4268038,14.381316,-3.3161047,2.2285264,38.505836,36.105835,11.032575,9.298645,25.789497,51.3323,56.63586,20.360554,-10.859848,-4.882043,3.1024985,1.5284622,13.554667,23.111408,17.855062,14.648687,-0.028100967,-24.946629,-27.614765,-11.081917,12.692409,26.93864,6.0197544,-19.151033,-13.765853,-2.1227877,-1.5242386,-2.6108997,-6.0422535,-14.083755,-9.390383,8.32596,5.403351,-9.926067,-6.9187884,-1.120029,1.2238388,5.431079,3.6587431,1.7816257,-9.934244,-23.653614,-11.9319935,-0.45788622,5.8455763,11.977499,-17.177612,-32.568253,5.0392666,15.632196,-4.2857056,5.6471367,20.397142,null,-9.302746,-3.3135943,26.18438,16.777699,-14.447657,11.13453,31.863342,1.257824,-2.3867102,23.584175,27.293169,10.888753,-5.370595,3.2573128,16.327286,-0.5849891,-5.1073437,19.741217,24.116928,1.3825822,-11.746742,3.9798782,18.306894,-0.47220707,-9.999731,8.65823,-0.82712793,-26.023438,-9.889063,13.926353,-1.7669506,-30.939774,-31.911583,6.3169193,40.635105,20.491673,-10.564831,1.6697035,15.306112,7.0258064,10.086062,18.72168,19.338287,20.537235,8.031759,-17.185799,-16.603596,1.7305653,-10.670368,-32.939995,-22.958893,-14.908125,-21.369057,-7.8732405,5.294717,2.2480726,7.9526033,15.171627,12.402602,5.6154814,3.6486404,18.520697,26.736433,21.591354,38.110348,31.224268,-41.097683,-75.57522,-24.053997,6.558879,-5.9494553,4.2554007,4.1766186,-26.815329,-21.650158,11.339509,15.794935,-5.5732303,-26.223267,-13.042607,18.400541,10.386338,-12.678071,-6.5012593,8.281501,9.975977,-6.1806746,-11.840206,8.154909,0.68657494,-20.568642,1.0164032,17.313732,0.3211465,-1.8128881,2.9535422,-9.978798,-7.5463896,21.485668,25.92815,null,8.9959755,-10.345959,-5.9817,26.7013,13.038442,-27.566473,-26.113117,-2.8355713,2.1594534,-5.4140234,-17.229057,-14.107629,12.813196,17.255907,-13.884865,-23.910671,-2.038094,6.9135857,-3.9375954,-11.592331,-13.040507,-17.095781,-23.728159,-17.495825,8.672138,26.05956,13.075696,-8.784584,-11.900958,4.7015104,7.959489,-10.548273,-2.0820622,9.981774,-33.319626,-58.586796,-29.651295,-30.484367,-40.061436,-15.736189,-15.460619,-28.257402,-13.382326,-0.81598854,6.1066375,16.904346,21.004765,25.59247,23.575153,11.556156,12.532451,22.705585,22.341795,14.078313,11.417365,15.289763,13.578197,4.201247,-4.095534,3.422038,17.963116,-7.855288,-46.22023,-20.38985,17.224716,5.5012817,-2.0074925,1.6161509,-5.208268,5.8724594,14.980428,10.393355,22.145716,11.483585,-30.960543,-27.825298,18.225395,28.691885,-6.7344704,-25.6503,-1.8235612,12.490522,0.4038663,4.658828,14.185617,7.907477,4.607321,-5.608628,-18.739138,-7.093255,6.233423,2.9437675,0.7935145,4.4394703,7.31522,-1.4699702,-6.4612074,17.311771,29.648943,0.85252,null,27.933361,11.462711,-10.262425,14.997284,17.620335,-20.827007,-15.456833,24.044594,30.494911,4.815365,-16.74913,-13.457372,-8.055085,-13.672245,-2.3161683,7.3509254,-11.290673,-22.472103,-9.356836,7.047819,8.690352,-3.8090343,-2.4556255,12.139599,14.9599905,8.462847,-5.413602,-15.6887455,-8.984512,-0.6682081,9.349839,6.7922583,-25.250372,-30.75329,-2.435688,-4.8522263,-22.414669,-15.18292,-0.69659233,-0.67188716,-6.7252054,14.915512,45.041306,30.73623,7.661173,9.733836,0.094074726,-16.409214,-16.03686,-13.074509,-14.712477,-13.581676,-6.9104753,-8.545591,-14.438954,3.2011237,22.193295,23.151402,22.465488,-1.4954863,-19.75311,16.293652,31.158096,-1.2356524,-18.76412,-38.552734,-43.77486,0.8842654,20.30032,2.8280468,-6.328933,-30.213703,-38.301575,-2.960792,14.843446,7.172529,-1.5264621,-2.2544541,20.72422,20.89909,-7.4314833,8.881635,27.730516,-4.6593757,-19.836302,-5.6682825,-7.714753,-16.178377,-19.452623,-15.004426,0.85784864,13.628903,18.173193,14.949206,1.9361668,-12.641069,-17.206234,-6.8634176,-3.4529204,-10.8653965,null,11.659323,10.519829,-2.4713888,-16.360964,1.900393,22.444464,3.6087267,-8.717853,1.7145181,-1.3629899,-7.5688963,-7.583048,5.5472097,27.319921,14.333426,6.569277,34.85632,22.35765,-6.0729256,-0.14122915,-10.684884,-9.770477,13.90355,-9.213839,-33.300896,-16.816952,2.3355637,28.289722,28.355972,-8.7896,-16.90869,-22.435886,-38.379593,-3.2513485,21.706161,-9.213239,-14.636511,4.578184,-0.9164257,-10.7031145,-7.1847687,5.171259,2.7593083,-23.671362,-24.315441,4.0921965,7.637199,-10.990446,-13.869321,8.795568,16.228931,-18.134941,-37.490005,-31.36496,-42.15245,-37.52748,-26.494848,-50.07006,-46.12191,-6.46879,-1.9274349,-17.524727,-12.4464445,11.29066,30.295502,15.041261,-13.744776,-16.603634,-3.5769272,2.8242793,12.05492,34.83471,31.483463,-6.280284,-5.479725,25.679972,12.397579,-21.374886,-21.907116,5.559495,25.28796,14.676512,-1.0207653,-3.8413277,7.106781,31.717186,24.776459,-2.9517803,6.2477493,8.106314,-10.793417,-2.1863203,-5.7810106,-23.247238,-0.6561432,20.129757,3.9162273,-10.298087,-4.1377735,6.7293224,null,-9.581371,-3.5774293,14.995774,-10.727377,-34.32312,-10.678682,16.71017,-10.4243145,-30.195572,2.6632185,-3.6537976,-31.936047,-1.3631825,17.534737,-3.6925468,-5.2951927,1.3947754,-7.1411924,-22.458775,-21.65495,6.9732156,24.611797,7.8446198,-28.503033,-47.62737,-7.3508835,35.98356,11.066711,-21.524168,-10.559573,1.1350069,-5.4274216,-4.9777465,5.017841,7.9135437,8.981646,10.44927,6.251752,6.804162,-0.4263239,-3.6814728,33.803402,51.365295,24.509443,32.06362,44.502914,20.089058,25.596897,46.367424,22.226986,-12.005112,-6.9660454,28.90733,37.375977,9.889086,19.495222,50.945194,28.718409,-10.734028,-12.419088,-1.7461853,-9.485395,-31.252037,-35.164963,-7.8880816,21.065214,33.052944,21.717154,-2.3047733,-2.3055568,1.2920704,-12.891214,3.0177512,24.03392,3.410996,-5.627492,5.5366597,8.428597,16.8407,11.325317,7.4658823,23.285408,-4.2724037,-32.708885,0.949172,9.790173,-10.930313,1.5701752,3.0633621,-6.2993736,9.402252,9.374072,-8.064542,-3.7246037,11.194679,15.545958,12.166547,9.789192,7.3749237,1.1611404,null,27.93961,6.521276,-21.826283,3.6028523,17.576023,1.2546244,10.333856,11.620953,-23.595844,-22.859055,15.069376,-3.6819751,-41.39348,-4.0298595,23.866882,-9.603326,-0.2508149,27.32436,1.9678078,2.7112696,36.867207,28.238903,7.6267757,11.500603,12.673564,-1.5282559,-19.705843,-11.117911,20.72671,16.884972,-10.499599,4.497219,25.653801,-2.797038,-20.666004,15.49192,40.48783,27.610613,27.155321,34.219856,16.402216,5.503585,1.7674232,-32.975327,-50.547493,-20.530743,-9.252937,-23.481405,-16.22414,4.756708,12.059732,1.7658386,-1.7168412,-2.0115185,-33.19491,-44.981045,1.6882029,27.359459,6.884465,-6.88649,-5.4293613,3.2173414,6.8238344,-9.889866,-25.073261,-14.833704,4.1554585,4.171935,-2.16108,-0.55221844,-12.180674,-20.209389,-4.9272795,1.7899561,-0.21109676,-4.3792443,-18.549177,-9.153072,19.485008,18.12051,-9.84023,-21.330746,-0.15488052,12.856563,3.8743305,3.8364391,-7.019829,-11.3556,28.189163,34.126434,-9.107529,-14.205154,12.476816,13.294109,-14.928943,-13.6587515,23.884235,9.191337,-16.499605,16.294958,null,-18.529387,7.953922,6.2293587,-14.461693,2.2434082,9.253196,-10.315094,-21.787142,-5.0194554,17.330246,-4.8046303,-21.302444,15.63743,31.392685,11.849894,7.342758,10.05047,10.049862,13.100956,12.332825,-0.9503279,-10.563469,3.4037323,3.6423292,-18.167702,-14.635433,1.4421115,15.568616,28.984907,7.3298635,-10.797093,19.371851,33.921925,6.0639753,-12.218278,2.5946865,18.400816,-6.4125757,-47.077908,-57.291687,-48.85664,-31.229195,1.4181657,22.175447,15.051174,7.5651226,15.595084,19.73222,19.551128,22.092178,12.088252,14.832744,49.05292,64.76449,54.639725,41.396507,3.4941397,-38.127712,-42.937874,-36.68987,-42.822937,-43.680397,-28.007118,-8.680348,4.933662,17.670717,10.796156,-18.727125,-18.94385,12.70808,27.945408,24.122606,5.9590406,-15.771542,-8.632682,1.5171528,-0.7540829,17.551577,13.093588,-23.393112,-3.5110712,35.403,13.055166,-2.7411084,23.28083,23.697948,-7.4028487,-13.824839,7.754319,6.846964,-6.806773,2.271238,-0.97916985,-4.7815094,17.524036,0.12226105,-23.261103,22.905367,38.91645,-18.78718,null,-4.4728785,-6.6650753,-16.776207,7.982066,15.540698,-11.47303,-10.025459,-2.6390355,-2.8065286,5.0404572,-8.182769,-12.440292,1.2460485,-16.992085,-31.935287,-14.97804,-1.7127697,-4.125846,-17.187675,-9.289105,14.775515,-4.8753552,-29.07557,-6.451871,4.581906,-9.338421,-13.700193,-18.399368,-18.941181,-12.636156,-15.618915,-12.768837,5.315323,21.696547,11.029467,-30.417845,-44.77874,-13.744112,7.316136,26.693375,58.27283,50.343155,13.759883,-5.0267696,-8.652358,-11.180847,-39.68917,-78.64868,-67.507545,-39.44359,-40.865364,-32.871353,-30.92503,-58.329285,-35.00033,37.657463,57.31179,46.357002,62.655922,49.410263,2.7766752,-8.170462,4.4661646,3.208353,-13.129532,-24.717152,-9.494672,-9.454353,-38.469772,-35.67128,-20.003574,-17.2141,4.240974,6.781446,-18.712696,-12.609511,16.231087,28.380749,2.429864,-44.587925,-50.995457,-22.269224,-10.495738,-19.08296,-19.72101,1.7780261,1.8769817,-27.038666,-19.864904,3.0688515,-0.0685029,-3.9575405,-12.991724,-17.002789,-1.5968924,-1.0508138,-3.164957,5.2583046,-1.4518361,-13.931183,null,33.301003,6.428794,-3.846171,17.364803,9.327677,-9.853615,12.172816,15.198768,-10.735527,0.65864563,21.029129,6.3756666,-19.590488,-13.374198,22.170664,21.300268,-10.952219,-16.63839,-8.635411,4.3074746,17.644802,5.54278,-8.434882,-9.658625,0.04264736,24.178444,23.148014,5.3141103,10.717287,12.9804325,14.070773,20.284817,-4.9636145,-31.148052,-25.123753,-17.261047,-13.757719,-6.561857,0.4128852,-10.219683,-52.692352,-67.26373,-32.130264,-34.655468,-45.937416,27.961596,88.676735,55.792274,43.65642,80.27989,77.84072,54.6944,53.068096,43.417717,8.251623,-38.198746,-54.458,-29.87265,-29.926647,-47.090794,-10.705298,30.739788,19.292185,0.93562984,-7.5597687,-19.684338,-17.04358,-3.1205637,5.706306,8.096762,9.181804,13.386707,2.5446963,-10.666967,5.915781,8.290873,-13.481362,-0.17276525,20.228008,6.4306035,-15.613601,-25.210884,-0.08707619,29.355793,9.017328,-14.18042,-8.160299,2.2498436,9.304813,-8.538229,-18.663286,4.0777926,-3.4656806,-15.000529,4.673637,4.427342,0.28586054,-8.695879,-20.451504,23.22712,null,-11.315044,31.529106,11.953466,-18.338673,0.38365078,0.33877754,3.9645905,1.7182603,-20.467299,2.125145,15.261943,-15.102563,-12.710253,6.9324064,5.5452933,-6.5591373,-17.187908,-8.542046,-5.738433,-12.946196,3.6451778,15.578426,15.845625,20.46656,2.2320547,-7.692872,15.274889,18.907652,10.51289,15.0961895,0.676466,-19.108416,-3.208334,27.706772,29.156305,1.2815549,-13.581394,-7.6090245,-16.2812,-24.687872,0.20680475,21.943108,15.998209,12.869913,9.149122,-15.750823,-43.62702,-53.0093,-47.725037,-57.516026,-81.40933,-62.34955,-25.04048,-45.18638,-46.85414,44.157497,103.84793,49.82691,-22.057257,-39.82513,-22.832289,0.38142896,14.370739,20.39074,27.486435,31.652426,18.292238,-0.7833333,16.939602,46.9043,27.13102,3.7832737,19.25227,17.676655,1.2046232,3.6566143,1.5363712,-1.9653664,6.6128435,18.994627,23.20728,-6.37761,-24.444983,22.53782,45.880577,-7.543926,-35.042847,6.763077,21.23732,-23.43011,-24.60505,19.195065,7.8071294,-12.716147,11.996268,11.351961,-14.835796,-13.440383,9.317022,5.9031734,null,-17.050182,-6.89549,-12.23561,-2.899839,5.9246697,-31.867836,-17.4251,15.756847,-31.73491,-44.912327,3.2864122,0.18269348,-20.450047,-5.7589397,-1.7013013,-16.008228,-11.060064,-0.85251904,-25.743626,-45.099525,-14.032505,5.609453,-9.751438,-7.8973713,-0.61786747,-9.49496,-10.960529,3.584724,23.879442,10.289476,-34.529335,-18.344051,42.65957,30.9614,-23.295444,-27.26207,-1.7397633,18.219091,42.43397,59.872322,47.24361,21.853384,10.63209,-11.366962,-46.36997,-29.087833,36.95605,72.3499,60.608047,40.075268,32.509712,37.989655,43.546314,26.470722,-26.000238,-71.18332,-53.195824,-0.74261284,34.144485,54.137917,55.321377,24.466526,-14.522167,-32.348297,-15.42495,21.798903,29.472527,2.4709568,-13.12011,-18.528358,-19.058542,7.365984,24.040869,13.095044,12.518301,7.4962406,2.6338654,20.517899,10.755586,-17.490208,-13.054449,2.9301147,11.317776,-5.2349253,-22.053814,5.8931518,-1.5831735,-39.421577,-1.6400559,24.84338,-15.209134,-24.269638,0.38066888,23.758837,16.54209,-17.24045,6.131652,35.63383,2.2453394,-10.327998,null,16.674374,-1.3309269,1.0157871,15.13126,18.115925,12.627895,4.5739813,-8.888524,14.195925,37.993935,-7.6221447,-10.207529,44.988445,17.399729,-11.087767,29.60197,24.881369,-5.1542034,-1.4554744,5.5521774,15.739559,8.415252,-11.001145,-0.08383989,6.2342343,7.425482,27.7939,14.208398,-17.434034,-1.619029,28.60805,25.447872,-6.8050265,-35.756577,-13.58044,39.991436,41.53612,-15.243015,-62.561264,-69.81021,-45.42949,-10.121025,10.606078,21.92329,40.00892,52.106194,42.129883,16.455883,-5.3809566,-11.232062,1.2861786,16.917982,4.5687494,-4.8964577,31.632565,37.16263,-28.727448,-63.34576,-35.63462,-20.702414,-35.70704,-26.625982,17.05031,15.330648,-33.17485,-20.550917,35.101425,44.86472,15.789743,-15.330056,-2.5757494,31.769016,3.1432781,-24.020832,-1.6066837,-24.366383,-45.86039,0.80609894,11.986,-22.559212,-17.748161,14.163158,19.284891,-9.709671,-13.285699,9.700704,-8.538728,-10.127499,24.279198,5.1524296,1.1811085,34.251724,9.448516,10.801472,38.81187,-7.658679,-6.044957,42.168175,2.0272832,-11.385269,null,16.017517,45.58342,-46.69452,-32.08155,34.448433,3.2762966,-16.164927,-9.907818,-17.772388,10.792688,5.397055,-35.41809,-10.992928,2.7858992,-24.589111,-10.597417,-0.42850685,-14.3461685,-1.0034904,17.099693,14.824797,-12.095324,-25.955631,10.012001,18.775974,5.1096888,30.02589,8.85323,-19.970514,38.49146,42.391106,-28.751652,-19.564981,37.862206,64.83086,56.87433,2.2265482,-40.637196,-17.486631,23.59147,26.478992,-1.8553371,-10.622101,-13.195504,-53.45761,-71.81276,-41.192207,-31.340767,-45.588173,-49.972374,-44.937603,-37.449036,-54.056152,-82.99986,-67.68933,-26.042303,-5.365791,14.66244,40.041416,32.98105,4.109953,-11.316863,-18.289658,-11.212025,22.007713,30.27119,-14.694002,-30.818714,16.326523,32.601852,3.8387783,1.7692142,-2.8294082,-17.548227,11.876224,19.692425,-24.230005,-32.604248,-13.6984215,-5.7435465,-3.316948,-17.361105,-7.6952763,18.741415,-5.13459,-18.368189,12.622373,12.210682,-2.0348434,3.5463917,7.218627,23.558874,29.25815,-1.7787805,-1.340816,23.426338,-10.658039,-27.629354,37.1026,32.403618,null,36.50789,-21.810446,11.549462,32.434765,-14.74508,-6.8427753,38.041847,25.503372,-21.655336,-16.4515,36.94948,21.740952,-41.20542,-13.859583,35.445328,4.5996113,-8.375623,15.164972,6.870226,16.006779,19.770878,-34.6036,-28.997187,35.614044,14.688978,-29.16988,0.20616055,22.353207,5.2780476,-4.0415277,-4.298517,13.582425,50.80146,37.208992,-40.86824,-63.151726,11.298983,54.74654,22.86789,-1.7926149,-14.045533,-34.19911,-18.549253,17.697498,28.910133,55.637978,104.67618,102.32146,58.180443,38.283535,54.156036,100.01058,126.4042,74.304924,0.3976841,-31.40849,-45.224064,-51.908928,-32.28253,12.485685,49.98632,51.96495,13.497242,-54.307213,-52.80027,44.117195,39.148445,-60.726498,-31.993418,31.552647,-2.2097683,0.6096902,23.85101,-19.607624,-22.600822,25.936985,13.348934,-36.595936,-33.77157,-0.7142515,-12.166651,-26.494846,9.262299,9.303921,-35.197773,-24.69837,-0.7348685,-15.964928,-11.938837,-4.2575417,-10.118666,6.254001,-6.36172,-23.190731,19.85531,1.2620106,-49.14926,22.23649,47.863274,-31.299032,null,39.22525,-10.04105,-4.065479,55.09807,-0.4311962,-21.95873,36.245235,26.065649,-4.08217,3.132611,13.058002,17.614725,-0.40669155,-17.367435,1.93295,21.285728,9.323013,-7.006273,12.127497,28.353321,-10.108564,-22.988934,25.674522,15.834543,-44.869904,-23.030409,32.96402,13.100683,-21.86253,-18.625696,-1.7295971,36.56483,33.60609,-45.742664,-52.619225,32.44899,42.402916,-20.419094,-49.10056,-42.137012,-13.720221,33.993114,49.975204,6.601343,-36.48357,-31.725853,-16.153362,-20.928413,-39.53794,-65.705444,-69.10395,-39.399796,-25.72976,-39.8453,-29.02101,17.841055,46.342957,34.63757,4.1381435,-39.09138,-62.84012,-23.765928,47.399784,80.381996,28.49248,-56.49312,-45.65125,35.51855,40.186733,-18.626518,-27.158352,19.20466,32.10408,-8.344876,-6.2426357,29.9558,3.039115,-6.360421,36.759228,7.861088,-9.980283,40.840553,-13.143673,-68.30101,25.233006,40.67926,-34.53392,7.739509,47.98101,-4.6687956,-17.11217,17.534775,25.431597,-15.946624,-38.420662,15.255735,20.685429,-24.559448,8.610562,18.049063,null,-2.7013378,-24.198137,12.319124,-5.6102123,-36.236977,0.08451867,15.475679,0.8038626,-9.680228,1.784513,16.586905,-32.608665,-29.281082,46.977894,-10.289314,-61.83644,39.868546,37.131958,-52.79775,-27.451416,-12.672779,-40.59842,-19.242517,-29.041819,-40.67288,3.9926853,-14.340637,-69.42651,-36.27283,25.944942,19.076292,-51.269936,-75.46721,19.975084,78.70769,-8.886505,-73.211334,-15.929048,43.9121,23.069708,-29.475384,-39.793076,-27.502422,-39.30545,-37.153816,1.346653,30.362114,21.173727,-2.8534312,12.165166,53.69331,48.047016,10.57655,2.1508608,10.841358,8.746475,-4.3927946,-17.475855,-5.911669,27.281698,23.878809,-36.742783,-56.735466,34.30825,108.496544,36.49025,-52.949215,-6.093042,68.05151,40.378372,-13.329709,-11.331155,8.710602,2.2483292,-4.059593,10.384182,-1.7747598,-20.181606,5.8775034,14.376802,10.108425,28.78647,1.2053547,-17.683517,19.141174,6.483268,-18.62606,-0.07618618,7.889065,-0.714653,-35.271427,-26.285423,34.539062,-18.345158,-62.89982,15.9964905,1.813921,-37.423496,11.185711,-13.813895,null,31.59694,-22.143007,18.536005,15.703373,-42.82108,16.047306,26.137482,-31.625214,6.4338017,30.029865,3.450882,-9.573939,-9.456446,26.687614,2.6467505,-50.43142,12.399572,27.672846,-42.789093,-9.273616,26.001373,-20.84811,-16.736084,23.487423,17.835712,-13.589081,-32.59438,-25.686615,7.30414,39.254787,-3.1503067,-58.424458,32.10065,107.881485,-28.383133,-114.52202,14.73011,84.98118,-1.1137662,-59.488773,-56.273155,-57.835392,-48.858543,-14.396471,9.6238365,-5.134142,-22.695742,-5.1632776,0.50460815,-32.282074,-48.8023,-25.358814,6.988037,12.541292,-3.2033415,2.0944233,15.682035,-0.06967163,-37.20806,-62.680733,-15.049653,65.02881,23.243813,-84.85857,-60.386963,55.8392,74.95095,-17.030106,-41.834774,50.16632,53.52928,-51.669727,-45.571617,19.23769,-1.3927412,-5.908357,5.2251205,-19.444817,29.038048,54.978165,-32.441208,-17.019802,51.41417,-18.230827,-45.2584,17.791943,4.843587,-14.53124,6.5096855,2.3541842,-7.9004216,-12.150342,4.2493997,14.781897,-16.7673,-7.6604424,16.660301,-11.0790615,-9.814814,5.0662136,null,-20.14516,7.071318,20.889387,-12.635679,-1.3860435,19.674662,-3.2845945,4.2239723,29.375092,19.381886,-4.268738,6.6085186,43.766586,4.959161,-37.727993,39.040077,45.34014,-40.508682,11.692139,68.5016,-6.69384,-20.911272,24.209404,15.265688,16.98137,6.52943,-35.341415,12.857683,66.816895,-5.6993427,-15.904871,95.001595,62.106438,-85.112915,-51.88038,101.35785,88.71747,-55.61483,-70.17211,40.860085,68.611145,22.545918,9.068684,-10.357672,-27.395742,11.944238,37.379555,6.6603146,-11.556406,5.1322565,19.567661,28.156744,30.506771,2.0290928,-27.020058,-13.272563,4.8405304,26.296078,71.64025,21.204645,-100.34978,-34.02743,118.035706,33.57464,-96.414955,-0.6759033,97.013245,39.90858,-8.286993,12.597363,26.21521,8.854572,-15.2064,-25.072803,-0.2672181,27.95122,-15.280083,-25.838947,69.323425,47.876625,-49.518948,8.989718,39.442352,-23.176798,11.152893,28.262423,-24.521477,-27.800632,-14.460467,9.4503765,12.797471,-21.44698,3.6720486,11.543566,-12.177891,30.95246,14.482672,-30.712437,27.380623,27.068342,null,5.7498817,-30.029945,7.3493943,9.035873,-37.69346,-13.171683,14.278388,-5.934146,-22.910835,-18.44925,3.65827,-19.622456,-32.89807,23.828043,1.9144287,-27.792587,36.636917,2.390007,-41.728874,33.2305,10.658203,-47.93058,7.4829063,15.572885,-22.311234,-6.5402246,2.1420689,-0.7497164,-4.4444504,-12.653858,29.013975,57.26679,-18.376373,-49.54338,75.0445,113.2257,-53.598045,-96.4832,76.411064,112.68767,-15.765842,-13.1450405,79.481026,45.55973,-44.98771,-44.171833,-8.778572,-12.073078,-8.735763,9.988567,15.958717,44.564877,68.57077,1.749229,-60.86503,2.4696178,41.17923,-44.953526,-46.28412,92.62593,99.98593,-67.96721,-96.74862,58.03667,63.179703,-82.24402,-48.36891,88.28401,42.530457,-60.222805,-40.94928,-23.971687,-46.04721,-20.59871,-15.877665,-27.361492,14.983621,-17.818645,-77.924095,6.4341183,28.910965,-56.87214,3.7017145,55.712048,-32.716682,-22.587603,45.88832,15.913572,-7.6632566,20.285378,23.221973,-17.948326,-32.140564,8.461113,5.5273385,-19.424238,13.435459,13.080471,-30.520733,-23.37806,null,-11.190077,16.845266,11.3672905,-9.08876,14.260787,19.754725,3.1550848,5.427452,5.2484827,1.1617901,-1.1785042,25.644566,36.219887,-38.432243,-37.00729,33.734627,-32.198162,-47.587494,58.855972,16.12416,-33.312508,54.560066,42.550987,-17.75796,15.48623,16.830917,-7.4974904,-9.281258,-29.30639,7.1172028,49.497772,-25.242435,-37.980743,75.75618,45.266674,-97.23596,-63.20692,60.588013,30.336212,-69.62674,-45.15581,49.25182,41.608894,-41.057663,-43.841923,19.607191,20.485231,-42.679855,-76.265274,-60.26094,-36.951366,-17.293201,-0.6001854,-3.9276972,-24.516506,-16.625202,40.075485,33.01658,-86.35772,-92.860596,60.545,45.237476,-127.332,-81.18237,80.1309,21.561562,-63.637104,21.432396,42.41574,-24.318714,-21.117256,-19.992302,-18.51024,-0.051675797,-37.617004,-16.786423,29.133297,-29.181684,-22.137909,25.344408,-21.740183,-11.417091,7.657463,-44.012005,-2.7956734,40.40621,-15.867088,-19.786283,16.43356,0.26581764,-26.228456,-6.6844177,27.136135,-5.3644037,-32.489613,19.541016,34.503273,3.6591039,6.8419456,9.013157,null,1.7323394,-21.570961,4.982854,4.5124006,-39.0179,-6.040228,13.945702,-20.654285,3.7660084,33.31389,1.6896486,-30.825298,-4.930825,36.01303,10.858644,7.1997423,30.90467,-21.381329,-7.349931,51.209236,-8.066902,-15.889289,19.934805,-26.8792,-5.2911215,20.538097,-25.82417,-2.4724379,11.239031,8.822699,48.551956,-8.130842,-25.025295,66.898155,-11.87138,-99.33344,41.97706,79.66718,-60.231293,-28.981747,102.37373,66.642365,-6.6162996,37.1796,69.307915,11.916191,-46.021408,-43.942062,-19.237185,-34.058327,-73.52114,-88.30954,-63.89428,5.926711,65.05021,40.382233,-11.875275,7.7195625,50.751015,-27.696606,-121.71741,0.60253525,104.13612,-30.761232,-36.524925,108.98921,18.645355,-90.59039,14.533425,44.245117,-19.791368,-17.9729,-11.928974,15.127282,26.089281,-32.86266,-7.8633275,33.941463,-26.201813,-7.426338,49.512775,10.657546,16.07135,38.69569,-2.9024181,4.3272614,25.654133,9.0707,12.565207,4.6984015,-1.8810105,18.886444,15.589779,10.35962,16.340248,10.126263,11.160316,9.947775,2.587325,3.3940134,null,0.7979069,-7.6068063,-3.9681349,4.2275157,4.3801084,-8.204639,-10.321251,-14.812778,-33.841335,-8.993252,6.614154,-25.523977,-1.9235582,18.784372,-22.406647,-16.802397,2.226982,-9.085022,-10.860475,-34.45001,-23.005875,13.227709,-31.197998,-33.18077,16.961596,-18.009514,-36.26925,-29.776688,-45.67395,-0.9823785,-10.678417,-34.806137,52.41673,-8.133944,-97.75904,50.655815,46.182545,-97.04057,13.95713,67.75818,-72.002144,-52.613655,28.852102,-22.810202,-71.9473,-29.12042,53.768543,97.16927,110.0905,129.12555,104.56729,68.405754,60.723522,-0.51227665,-56.386303,14.321931,47.881226,-58.593193,-44.00399,67.40448,-7.5292587,-38.854626,88.39547,39.990307,-28.159647,49.27379,2.1063385,-48.0729,25.542006,28.117886,8.821442,4.965493,4.4434795,49.062996,6.77326,-36.11829,20.78135,-1.5814476,-5.127941,52.043343,-7.6121173,-29.811901,25.32127,-5.5396156,-21.410795,21.158531,27.461922,-0.20303488,-3.750163,33.46402,12.278646,-23.772087,28.543217,17.944124,-27.509407,24.26611,17.656347,-22.278122,21.015331,17.12002,null,24.940125,-18.894094,28.994091,22.387009,-39.78446,22.203402,34.547375,-24.83216,11.262136,24.617882,-15.3468485,-10.074424,22.6512,29.954967,-14.593586,-6.469136,31.409851,-11.722042,13.408213,44.978477,-32.847324,-2.2517223,30.95525,-54.603836,-27.499271,34.6149,7.8004937,-19.172302,-13.955429,40.0707,20.893673,-16.194908,61.95268,7.156741,-39.245308,80.03596,-33.728527,-105.64415,87.970085,-11.810441,-151.92142,30.9859,41.96765,-62.695126,70.31236,166.09341,31.73972,-126.66758,-139.46886,-103.2434,-129.90805,-130.14609,-28.19218,121.94046,78.611626,-122.355095,-29.01509,88.53932,-116.04904,-60.616867,127.48078,-46.666954,-45.97605,120.37907,-12.208136,-47.985565,72.776276,21.987692,-27.803486,-7.1240206,18.694445,42.79076,-5.3863144,-9.508935,29.064201,-11.297181,-7.5448885,20.842503,0.9354117,18.180813,4.6592,-20.966425,13.265232,-13.376214,-35.325104,13.777622,-2.542684,-23.195002,3.4868588,-14.610459,-22.46715,5.373854,10.107265,4.74268,1.6710348,5.7663717,0.08778381,-9.950561,15.847031,14.302853,null,4.353379,-27.076857,4.301874,9.440502,-10.510679,-12.258565,-16.427877,-16.156912,-24.354465,-13.69291,3.0650697,-11.487847,19.085117,19.991013,-33.697994,20.802786,35.23339,-34.227608,22.024384,38.13597,-21.104797,16.587452,8.875369,-3.053401,50.163208,7.3178387,-15.098451,28.71886,16.824863,-19.097782,-69.84789,-34.598545,-1.2456384,-75.62653,60.14067,136.48001,-62.55599,34.864433,64.91649,-198.01416,-9.4264,115.589966,-127.78117,64.34892,182.24988,-147.73172,-131.18341,161.8328,307.05826,320.80417,266.05933,157.75394,-124.56196,-167.23764,156.66,81.238266,-75.99858,100.59143,-7.4476643,-63.51167,123.43356,-35.268578,-72.23848,108.665146,-17.104408,-44.878372,66.59012,-10.374745,-18.9718,21.257072,-24.556091,-41.64391,-16.396473,24.678791,-12.770363,-33.00125,50.636406,-3.776493,-56.95285,34.72333,-0.58109856,-33.165802,41.724827,7.1570053,-21.77806,19.745632,7.6206884,-10.967661,3.6464467,29.426731,0.27706134,-42.25481,11.324866,4.0810366,-57.172623,0.3408041,3.6954098,-54.414646,-12.2567005,-6.488165,null,8.44367,-34.545887,11.890692,7.6754303,-42.50585,10.334894,14.807511,-36.812515,-9.795856,18.781563,0.39489222,-17.328598,14.356552,14.36604,-57.2931,-6.7297573,31.985828,-74.964806,-27.88647,29.678581,-54.93451,2.3964915,23.738522,-67.02066,-8.5251,29.689865,-21.068687,-26.257622,0.7688732,18.487778,-55.33369,-50.664715,8.214214,-87.93603,8.542294,109.17355,-76.47498,0.9812708,36.768948,-154.35529,-23.716549,-83.4306,-140.33627,192.74034,-76.69899,-213.3413,373.45483,159.88666,-369.95456,-341.39948,-321.20834,101.39589,351.01584,-201.8984,-163.97757,131.65396,-131.32487,-48.16342,36.460373,-164.47488,13.892453,49.95538,-96.85635,37.128212,-0.16590929,-96.60158,3.1716123,-9.622602,-44.09101,-29.996798,-30.776081,-4.4241343,-30.294605,-13.131068,14.169228,-46.25247,-4.9868116,3.579729,-68.19799,5.4128685,4.251813,-57.15702,34.31504,18.371752,-52.70063,12.376097,2.8497963,-43.86196,-12.651652,-12.394063,-20.833176,-6.1915445,6.6512976,3.0571194,-25.02693,-8.556908,3.7784872,-26.29359,1.4051285,3.6705008,null,17.312698,-10.140959,21.805614,-0.80364037,-16.179813,23.375416,19.749395,-8.506538,-22.485826,3.722919,10.836949,-33.457417,15.929798,31.737444,-50.670128,17.913061,42.2263,-47.512657,36.44888,48.152283,-39.262096,39.051342,29.508865,-36.52365,16.622122,3.5239017,2.8715708,27.506882,-9.449226,-2.1264029,-4.3863883,48.897823,84.95395,-33.254547,16.461786,56.62824,-45.13307,61.69142,22.993258,-58.777416,55.12677,-108.998,-7.1136513,118.76102,-265.46765,239.29324,390.73517,-765.3596,160.08714,1600.9081,65.90581,-706.90393,443.77554,231.90839,-180.46529,171.12466,-29.139412,-105.58151,31.862484,-87.52812,26.30442,35.162735,-69.58996,62.266594,21.917265,-28.905243,58.445312,-0.8742075,-5.2426357,52.54411,15.616285,-22.81697,-21.502106,40.815468,8.645687,-62.83789,34.827675,19.44859,-57.52192,35.4171,-2.0980206,-55.756897,50.278008,11.114573,-44.154625,34.637077,25.710167,-16.534534,13.1836405,34.926292,11.4993,-4.886812,30.972538,15.393785,-37.815804,-11.351185,-9.449265,-21.000757,30.822992,9.856621,null,21.504038,-21.738174,-6.39641,25.557823,7.370158,30.01552,42.510536,9.826489,-0.7665498,14.019393,21.397774,2.3254743,19.05812,27.144308,-27.835918,12.578262,33.48674,-49.46862,16.460579,39.534832,-64.043,24.690056,78.50333,-10.336933,23.925817,49.257553,12.10617,7.9153566,24.115082,65.79868,35.52062,46.280792,118.0447,53.80874,58.80804,74.75092,4.70113,89.45497,45.034473,-6.8364563,98.14958,-58.71209,35.14367,112.99078,-169.55826,391.76755,214.46077,-634.35504,2250.493,5186.128,2297.7466,-642.0711,193.65186,383.76962,-188.84276,137.4266,76.4968,-75.00168,69.512726,-4.4410477,55.11252,94.26407,24.960976,115.864494,54.36949,-17.241217,49.11235,-13.322423,-26.724657,35.942833,23.638062,4.830696,-9.963564,41.09456,54.90707,-7.2165217,50.123966,35.57228,-31.115364,74.15559,49.956127,-28.088522,71.78459,37.975227,-24.287727,66.11994,34.59051,-31.699509,13.555001,20.713833,-6.680416,-15.724356,8.395316,32.575096,4.528057,16.89658,32.826225,-4.16046,22.92976,29.828354,null,18.461594,-6.502862,19.356558,-5.978386,-23.6112,13.88098,9.894922,1.9310284,13.488546,16.476051,-8.162877,-47.00129,13.051461,42.742516,-47.477108,1.5658135,53.165825,-47.23715,-6.23322,37.330387,-51.21334,-13.071636,3.3106523,-55.760124,6.6575336,16.678673,-54.622196,-40.755272,22.177301,38.492477,-26.511736,-14.654261,32.672646,-36.384094,1.247819,35.119354,-33.04991,66.39637,52.04239,-32.912003,36.656647,-83.18933,-10.221638,78.31981,-254.68639,112.52516,278.28183,-602.22595,193.87204,1529.7083,297.84277,-590.98047,259.36023,180.60399,-187.23105,79.68289,-51.693794,-130.47258,15.265152,-72.35779,-30.225544,21.858124,-24.15083,47.78117,35.74492,4.944416,35.53609,-3.8488407,2.2661076,27.799929,14.187607,21.565073,20.498075,19.41197,-23.453598,-40.22397,25.683891,-30.905676,-82.86584,3.629528,-18.774029,-53.33512,11.881108,2.680335,-10.5531845,8.398367,-14.293107,-13.6584,-6.056797,-18.54997,-15.939627,6.840849,25.084919,-6.8230915,-6.0488296,33.970406,-11.256816,-17.076895,45.574863,9.730882,null,30.053856,-35.54599,-20.684223,34.60755,-10.293829,-4.85978,26.075245,-9.542231,-18.129145,-7.9999366,2.7422276,13.4994335,5.0223694,11.222942,-13.220619,-30.724438,7.08742,-15.161474,-30.915648,4.264342,-17.911854,-12.673266,4.858286,-36.574272,-20.832108,2.2602043,-28.381092,-24.908163,2.6838655,17.958252,12.88603,13.023571,4.543688,-21.201736,40.781727,50.142136,-44.34082,-9.135912,-20.88609,-88.178955,-40.20283,-155.7497,-142.62349,89.30229,-112.67783,-183.43431,222.34807,120.2798,-380.62857,-653.1917,-514.21674,117.42191,284.4885,-197.14743,-139.57137,90.047775,-99.89464,-98.42456,-49.34682,-124.32449,-14.5187235,0.5081711,-71.3835,-7.2413354,-12.786421,-21.465952,44.45671,27.17003,-9.184809,0.9093151,3.8433185,-23.922253,-37.3982,-10.145079,-34.141586,-42.723297,19.76892,-0.47353172,-11.5472,29.984932,-38.243214,-54.986717,13.034672,-28.48296,-38.297142,18.995724,-4.998975,-17.329485,5.8408594,-7.2539544,-19.323593,-22.096642,-11.758724,-10.76963,-32.255775,-10.280176,-2.4120722,-36.261047,-14.793762,3.2457395,null,-10.630125,-16.34171,-3.524907,-9.334425,-19.405733,-11.629321,-7.7170796,-1.0804229,3.3243666,6.216483,19.171347,-6.2510624,-33.19629,1.0055542,3.182169,-19.031784,6.451544,-2.5717273,-11.358718,26.650427,0.9783993,-17.188446,28.904057,7.469983,-32.75982,-9.959766,5.3156633,-5.725787,-18.151148,-5.249899,27.158457,31.896997,15.867136,4.2947464,16.8023,14.7819,-23.1465,-2.6923103,-17.279556,-106.764404,-55.39527,-26.855286,-100.68207,37.250195,83.97511,-174.23544,-130.85962,232.9047,379.30475,386.99683,433.95245,251.58054,-133.73343,-185.15643,52.58386,3.1248245,-138.02829,-34.205418,-14.307437,-61.205185,20.268398,16.98937,-11.3731365,62.824295,63.12467,18.46627,41.71087,55.04689,34.89456,43.17171,51.553284,13.713694,17.164125,62.554855,40.512268,14.739967,20.830498,15.109741,27.09946,3.0277188,-17.743704,35.647087,20.820667,-27.493385,-7.929428,-6.1614013,6.7468724,20.284924,-9.56275,-0.015130997,-7.0978346,-22.005402,20.94022,5.2465024,-6.6039014,33.818047,-4.811239,-24.196814,3.2656631,-22.780716,null,10.157492,8.594194,-9.805778,3.5582561,-8.738276,-5.569783,-8.123729,-25.032202,13.727149,7.6495695,-21.241762,10.64312,-16.22955,-32.997433,10.582958,-17.833935,-14.005043,31.902771,-12.363994,-34.247658,-10.454083,-12.339072,0.22994566,-3.0130186,-2.3859534,32.05439,23.534853,15.594793,37.550106,20.88145,14.504411,40.41057,35.087864,24.18319,26.598766,-4.526245,-27.03605,9.740611,-7.2767277,-93.092384,-62.30266,18.455563,-44.974304,-80.96808,43.264557,89.59865,-18.96661,-109.7702,-157.21574,-171.56784,-131.28445,-117.958786,-77.675934,45.883286,42.14058,-62.242157,-40.514297,-6.8796215,-43.736515,-33.786182,-9.756368,-8.599678,-16.046509,-29.625141,-5.595001,7.479127,-6.422612,26.234562,49.097748,17.001905,-17.612595,-16.052006,13.071011,-2.089653,-16.440231,21.715034,-6.3019595,-43.665348,-0.7761195,-1.6285219,-17.1177,-1.0952201,-36.12914,-42.858013,-1.1090021,-9.365789,-16.508408,2.2853203,-2.1412544,-1.9551711,12.868277,5.9020724,-12.433854,-5.3673496,1.0196679,-14.813984,-4.3785505,8.577471,-15.818685,-16.691032,null,-30.735857,3.8598342,-15.158072,-10.695416,33.845226,8.134407,-20.836327,-1.618382,10.054952,-3.0871136,-7.4264174,26.800304,23.498602,-14.073204,0.3846264,-8.571617,-24.95871,8.7414875,-9.594774,-17.342388,22.68901,-0.35447693,-5.1452255,22.26332,7.4774785,17.249607,26.606602,26.118431,56.935604,44.474922,15.999512,12.502375,3.6506538,17.873024,-4.7837543,-51.3579,-23.126862,-25.189995,-65.77215,-53.119736,-79.984634,-115.58336,-52.822105,5.4308605,-11.613381,-30.362352,9.518647,63.241764,46.583298,10.627502,33.92196,59.01515,34.571465,3.0134373,6.6030884,10.575424,-26.868336,-68.629135,-92.3368,-90.34218,-37.51821,-10.561993,-40.52793,-19.742643,20.286789,3.5548935,9.206457,36.801964,31.53435,29.7411,8.948626,-25.038393,-9.812582,-4.2854156,-19.47546,-4.709115,3.4308987,10.5526285,1.6094608,-25.127754,18.909866,24.456865,-46.945778,-5.9233794,31.460083,-31.146055,-4.9053955,31.724113,-11.77581,-6.8448796,5.556901,-15.559769,-10.87944,7.491153,16.969398,-9.001738,-16.372978,24.346035,2.962932,-24.410965,null,-3.4730463,38.74225,-11.107865,-25.311203,7.9098096,-11.200358,-16.16085,16.740421,22.890537,-8.235247,-6.768611,26.938568,-22.467997,-57.543644,27.009472,31.807194,-23.71641,26.659588,33.023415,-19.907913,12.470118,23.879896,-17.28303,0.7517643,38.575897,39.91714,9.40623,-14.445516,21.675354,48.8397,29.797253,31.329828,17.191746,2.150982,41.736263,19.580246,-44.471928,-30.478687,-32.262417,-36.267845,38.60917,38.74785,-31.496128,8.737204,84.469604,50.8776,-37.792973,-72.96892,-54.164413,-45.846363,-42.530914,-18.80674,7.154642,41.737564,60.69183,18.32871,-20.703655,-0.50442886,-14.178148,-75.57791,-39.83588,38.726185,8.40788,-11.147433,40.948654,50.481926,50.112164,42.509808,7.200514,32.796894,52.43176,16.193789,17.523245,28.331568,18.072683,6.537833,3.6218007,26.23801,1.225101,-21.447947,35.873386,19.252409,-18.536089,30.63693,2.7801309,-36.051216,19.289877,21.078167,-2.7147279,21.717829,36.613857,24.1833,-3.990358,11.021501,27.99794,-11.528755,14.318561,47.011658,-1.1625814,13.454992,null,-28.667175,35.23945,20.621384,-21.647568,12.317518,21.449078,10.9621935,16.81506,20.180073,14.010104,-12.580914,0.5908754,9.012417,-32.126324,13.074446,37.314865,-54.43525,-26.677258,47.278557,-18.004202,-46.066082,-3.5975418,-9.384483,-6.851452,25.538773,32.33094,10.19651,-3.7711654,9.277908,21.772228,36.634888,49.80662,32.12237,28.60941,31.510807,-24.129408,-54.729904,4.9244633,19.845486,-53.928608,-36.978966,93.7082,128.50906,43.953712,9.005714,56.681675,92.59325,61.9574,14.755272,13.039843,24.727829,33.369114,60.512054,59.285446,5.47268,-0.9350004,94.75421,119.676674,-5.5465126,-46.752674,10.677235,-27.402529,-43.081688,17.043856,2.233942,-4.7199774,33.11849,14.819882,11.794068,35.438408,13.267301,-14.534229,-20.595207,3.4304047,15.744365,-30.771473,-16.722046,40.122887,-9.632471,-32.0525,28.19382,-7.998104,-41.65547,26.541637,11.398842,-48.436142,-0.7180157,32.30857,-13.163973,-17.252604,26.767122,18.446648,-28.502293,-9.421554,16.494263,-24.206692,-3.3969939,42.61876,-5.032707,-6.0913925,null,-17.101446,17.133179,-9.578699,-32.820526,6.213994,6.4334183,-21.962608,5.5495424,20.44458,-28.26189,-38.408527,13.733942,15.568363,-19.09952,16.883419,35.616623,-32.805836,-12.227702,60.73643,-7.2200775,-29.448355,71.767914,41.327297,-31.17857,1.8409557,-7.954872,-27.677982,7.2993546,19.073975,34.471695,28.720762,-2.6991386,8.470749,-18.742868,-48.362907,-12.054535,-48.929684,-79.71629,16.045341,48.61647,-9.903793,-7.9024,36.45127,74.69411,80.43851,10.727177,-73.31014,-79.39271,-40.31304,-37.915733,-68.65038,-82.14163,-45.536,32.687717,89.17669,89.41353,29.197678,-58.32146,-40.995163,44.792286,-1.1301374,-98.01717,-76.71576,-18.33471,-6.684108,-25.44825,-37.30089,-7.036599,15.398508,6.626237,16.6053,18.01572,-3.4628172,0.18961811,4.975074,-2.9531584,9.833006,-1.7850094,-31.950567,4.800784,23.22143,-33.80498,-16.77723,30.524174,-18.68217,-34.275433,7.713043,-2.6155958,-8.669388,4.2413845,-15.1817255,-27.621872,-13.782881,2.8963132,-9.797901,-30.449055,-9.487879,-15.207324,-42.660336,-2.3395767,null,-2.7359495,-19.078743,-4.77427,-1.0988889,-10.618046,2.6370018,5.7321153,-14.204208,-5.7510815,6.6122694,-22.555023,-28.310974,6.6472616,-9.518079,-41.877384,9.946593,43.990723,-21.363203,-44.65403,-14.331587,-44.364807,-54.254913,-11.742313,-14.971598,-23.280828,-16.072264,-26.20053,-6.84256,-1.5242519,-29.588005,-9.64266,4.924036,-25.721928,-46.291786,-50.170883,-11.283386,24.638216,-16.515413,-29.5318,28.25758,64.022446,52.587433,-11.570924,-63.307762,-5.8968563,71.76033,72.281136,52.433426,50.51744,45.949993,30.86822,16.312773,38.757633,87.69018,60.387493,-35.06627,-30.444714,86.98449,150.88727,83.69862,-32.326233,-42.236954,19.065006,-11.869089,-34.70317,18.368439,5.3786087,-7.27409,27.01759,12.199015,8.335085,3.713873,-10.750847,38.29403,11.929195,-38.192657,44.46873,34.271706,-44.897243,27.992603,45.157516,-36.01833,-2.422884,37.115044,-14.865721,-31.961988,-0.10831332,-4.8396435,-27.24907,2.483116,22.55422,-13.042408,-2.560337,27.85609,-8.473255,-30.086351,-10.27634,-8.634528,-11.120668,-4.876661,null,35.500824,-5.711132,4.986178,0.8443451,-3.6907063,36.497215,6.061057,-35.08521,4.853917,15.8376045,-10.067768,0.4479928,26.881922,8.343587,-30.70023,14.399467,35.09704,-43.84394,-4.2047997,62.882843,-18.801735,-16.79652,38.996372,-24.057384,-22.85719,30.93128,2.4848242,-8.49296,7.0816126,13.193945,16.907127,-10.5707035,-2.3545766,27.879694,-10.028347,-20.050053,43.66319,66.36052,15.456135,-30.568352,11.179806,102.39389,126.8608,75.72977,6.712057,-40.884003,-39.701782,-6.0740356,21.458124,18.05901,-17.377258,-46.30254,-47.027092,-51.740234,-43.81431,54.27412,163.49434,102.797745,-38.066986,-32.91351,61.862843,59.239296,-22.030615,-48.39254,-24.79209,-15.133062,27.38095,67.24792,21.73937,-0.4165001,25.278534,10.7470665,9.698346,4.4692144,-21.848305,8.191607,-16.80872,-81.327614,-19.001726,4.4001274,-59.820892,-8.376875,32.7761,-35.336395,-30.088242,18.454977,-12.405991,-44.222145,-10.756073,18.962952,-7.2776136,-12.784003,20.098879,-1.7915258,-18.526268,18.55814,1.843214,-18.567015,14.956604,-7.8927917,null,10.753836,-32.79093,-3.2298627,39.975723,-4.767256,-8.626014,17.060732,-19.749815,-37.056236,-0.7199638,25.656855,6.4217873,-12.595528,21.753292,10.977463,-39.800293,9.357544,36.837082,-15.37597,14.486773,28.247711,-25.259506,15.523543,43.80827,-16.167078,-14.8871155,14.123781,11.236296,16.23008,7.278779,19.807495,44.554394,-4.606035,-26.040659,35.125282,13.912698,-72.743065,-39.508213,67.938156,76.051994,-10.998963,-69.0313,-34.269054,47.880165,94.50992,88.836105,45.020992,-24.003616,-52.8853,-19.314392,12.683281,14.854717,8.970141,42.7405,108.037544,79.33863,-50.55521,-102.9653,-9.343803,97.47542,80.023994,-10.26144,-25.184263,17.174507,17.37915,-8.693239,-13.355955,7.011222,31.084728,30.57947,12.692656,22.757423,46.433758,-0.0010204315,-40.35415,33.24049,43.954834,-24.59919,40.552864,72.573944,-19.512825,19.901402,70.3003,-14.097093,-7.3137608,54.198105,15.151167,-18.424679,2.4767895,18.989964,2.348651,-9.141733,23.130066,17.025639,-6.00506,27.782898,7.627796,-31.749966,14.208696,19.84069,null,0.1499052,-22.66586,12.12193,29.845139,-12.924227,-8.61918,16.521172,-13.574744,-29.625998,17.831455,44.377483,-13.2128,-33.91185,32.206207,10.066693,-44.5736,35.55652,58.36277,-27.23592,5.91348,51.92402,-12.831695,-5.53476,46.85682,11.126059,7.241211,56.887863,33.98094,-10.66986,-5.9320188,7.4211607,21.59954,11.17968,-31.305109,-9.27676,50.84004,20.90358,-46.8422,-22.917719,81.171844,125.1626,28.1413,-70.222275,-60.833527,-48.157574,-56.534557,-8.972858,59.545517,94.254585,91.35092,67.50313,45.209595,3.513329,-46.77421,-69.857704,-94.427475,-70.513824,57.098877,120.17423,22.40014,-55.116566,-18.079247,29.298285,22.053822,-21.1646,-46.76642,-25.912834,-3.1285648,0.7248039,-2.41818,-18.105007,-13.550262,10.402965,9.730242,9.137663,3.422976,-13.752478,12.0922165,11.54238,-33.331505,2.5954146,29.597122,-23.998981,2.741496,51.07762,-0.23470807,-6.581956,49.079662,31.197298,-16.95887,-1.9957857,42.15651,26.788586,-18.96687,14.25693,48.654083,-8.208343,-24.899435,20.753986,12.345657,null,17.463898,12.041422,-13.84467,8.035412,11.459744,-30.282595,-16.80463,20.313711,0.7839527,-25.107582,-5.2328186,19.006353,-13.927467,-37.860733,16.470142,16.184828,-47.69407,-11.013421,29.47417,-20.36085,-5.252033,40.429535,-13.092897,-52.837555,-5.75848,28.07185,7.6908536,-10.44161,11.847519,35.3713,20.233639,8.351492,33.65238,38.371223,-22.599312,-55.18164,28.667007,97.206924,23.53661,-62.917408,-48.31519,-2.8862114,37.11742,74.46185,50.759865,-33.430893,-96.74418,-99.847565,-75.2915,-73.26679,-79.06588,-54.678123,-38.913273,-35.425667,12.741403,64.11972,61.43993,17.048134,-60.13582,-92.406906,-12.466593,69.13182,60.298298,11.8894005,-14.399181,2.9874058,15.588462,-19.490406,-39.787533,-19.97326,-7.726389,-12.088463,-18.088573,2.8173451,23.321033,-20.038366,-31.45204,33.742558,11.58626,-52.219048,5.2988033,42.27307,-23.039902,-17.699017,36.39129,-1.9666328,-52.05371,-12.215485,34.024452,0.092695236,-43.66954,-18.344593,9.955834,-6.2406335,-6.4577026,10.07612,6.682248,11.53802,27.264568,16.73544,null,-7.6765127,-13.248399,-9.012711,0.63422585,0.80290985,-9.6516285,-3.4085145,-0.08785772,-7.7391677,-1.1063519,2.401262,-5.3368387,-21.960873,-23.245234,30.110823,34.57,-37.876534,-6.3810444,53.566795,-20.007782,-30.15549,60.7809,19.367123,-58.909584,-5.1939597,32.61822,-21.357473,-39.32319,2.4521675,12.708792,-20.584564,-33.901672,-12.015074,16.145456,21.913023,-12.330749,-35.872154,6.038211,57.158012,44.45577,-25.022232,-92.94357,-95.98437,-42.32334,7.890455,41.083546,49.29428,12.524256,-10.063171,30.431864,54.439766,23.163113,17.058432,36.49891,11.634586,-45.039074,-92.46391,-95.88632,-30.710775,41.356003,46.712074,0.8549862,-31.587097,-9.973299,17.754692,-0.040714264,-15.736004,-3.7068968,5.8239946,12.508751,6.5008106,-6.597433,11.277511,19.311825,-18.206495,-18.877363,23.761684,2.0962896,-36.426636,3.5205688,14.39304,-32.99975,-16.697239,2.8056479,-27.14888,-5.358505,18.531292,-14.342704,-18.62012,-2.550941,-9.332108,-24.196463,-26.689587,18.472576,36.536224,-18.636665,-9.93549,32.73044,-7.24401,-20.532192,null,-12.221569,23.647184,5.457505,-5.032942,26.14829,10.744221,-11.975039,3.2631993,14.9004,22.921904,7.325069,-18.722689,10.594582,21.344864,-27.527954,-15.783223,18.184261,-31.810072,-44.54795,18.977139,2.0240765,-49.342056,-9.008932,21.567244,-9.979196,-9.413277,12.6985035,3.609601,-28.903196,-51.402344,-20.714851,4.5385857,-43.871628,-67.09604,-5.0692177,53.521866,39.65362,-33.472282,-71.949356,-21.610567,39.315903,54.56073,22.391014,-41.638405,-65.815155,-46.573544,-37.610012,-12.386543,22.831415,15.912702,-9.773794,-28.488775,-41.874947,-34.19741,-20.829521,-26.083351,-15.582009,40.46885,81.86728,41.105907,-33.187057,-53.281765,-18.10025,19.587875,26.40221,7.372931,-11.203381,-9.970413,10.363546,18.261692,-8.189694,-15.337852,31.873177,38.0903,-26.383514,-16.683186,47.411552,1.2951803,-40.73668,33.046814,35.1463,-21.969864,28.135538,52.37306,-19.952309,-29.739296,12.935319,15.281977,3.3179164,4.6274433,9.470774,-1.5115623,-15.156034,0.9430065,18.443373,17.236076,8.399534,-9.566295,-2.8628058,18.7348,null,3.4771423,-25.723286,-8.322855,-10.1982765,1.779088,23.517792,-2.4815655,-10.266048,7.303129,-3.3906555,-22.070892,-26.163074,1.8373013,9.448318,-31.231308,5.419798,56.768005,-22.130672,-53.266586,22.369087,5.7168217,-34.56028,19.842606,29.326305,-31.14068,-37.210304,-8.547465,-9.617723,-10.528362,2.9869785,-0.08958578,-13.226152,-6.7413177,12.72324,15.661705,8.954313,25.890781,33.431763,-20.463276,-74.69888,-63.41785,-37.685875,-23.958944,19.489193,56.542305,31.955984,8.689594,26.445568,17.98189,-10.699491,-2.0285444,15.796267,24.525549,39.985123,46.105118,38.38897,9.071283,-44.734627,-79.52542,-69.074875,-16.205235,36.128258,23.430244,-17.6689,-32.535706,-28.911392,11.233553,40.492176,-11.552471,-52.907722,-12.532616,26.118935,4.177782,-21.127506,14.295685,23.350662,-43.134842,-20.060543,56.15094,-9.171291,-60.65562,13.907658,15.664845,-26.85069,3.4077058,-9.0703535,-46.91951,-10.243693,4.1658816,-29.898315,-13.735964,16.437725,-13.899715,-41.97268,-13.077213,4.3735,-15.682059,-12.4112,4.805874,0.969038,null,36.148743,-20.095,-30.541868,27.153286,2.4194689,-37.01834,-13.803914,3.602768,-11.093373,-18.99577,18.849041,22.583527,-40.735146,-12.871248,41.016083,-26.899944,-27.917126,50.46492,-0.40670872,-46.88411,16.002213,21.130754,-15.710241,7.6713896,35.398468,24.239574,-1.0745683,-11.143519,-11.94505,-28.104599,-28.53232,-7.238391,-9.528143,-15.709556,-3.537466,-7.8852606,-24.820948,-12.569533,25.622215,39.487858,11.746418,-17.864006,-25.49221,-20.403278,-17.575869,-15.501133,20.469631,73.60414,70.21805,32.608887,32.532173,37.443913,8.772352,-5.3005867,-5.3984184,-37.168724,-43.04659,7.3109894,22.131884,7.646288,23.475359,10.063572,-31.645987,-25.315903,0.21075511,5.7715836,4.0315037,-7.2450423,-13.495461,-1.6329241,5.0811872,-6.094968,-23.33197,-24.851107,-5.6120577,-5.105584,-32.731358,-14.199457,31.556412,-14.035431,-57.89418,13.267961,23.707691,-40.46274,4.4111314,43.597847,-19.301744,-37.131104,-0.17724657,18.46334,1.7455354,-25.414892,6.617562,18.243694,-33.63301,-15.571469,2.7284966,-42.62136,-17.831278,6.851003,null,-7.5633383,-31.47327,29.85893,31.73383,-14.232494,14.916651,21.65287,-25.003876,-25.111494,18.023348,40.955383,6.0055456,-16.079012,30.931042,33.30745,-17.075657,3.685693,48.043644,21.398724,-19.463896,-5.481907,15.242523,-13.606393,-29.91056,6.395877,26.125626,12.9147415,14.060342,28.635464,16.42462,-17.96091,-13.442424,17.679903,18.222162,11.57155,4.9494286,-14.570709,-23.572659,-30.506525,-4.5439367,64.208984,65.8477,12.639006,5.603256,12.082344,15.875272,30.606644,-1.0432787,-49.907806,-25.217918,38.675278,44.79004,-1.0358896,-13.56482,16.429998,42.913235,63.453327,62.54443,28.809975,-0.5544491,-16.183613,-10.51234,26.16567,36.99629,6.4430466,-11.814011,-25.935656,-41.982018,-10.630998,21.96001,-21.21125,-52.134983,-1.1879852,16.643253,-30.942898,-30.804699,11.263841,4.602007,-31.715454,-9.205947,50.637592,26.02237,-31.694542,13.280368,50.369183,-2.0881891,-13.788095,10.912951,8.12519,15.238303,12.911597,0.5852971,-2.2765465,-8.080443,27.447205,36.487175,-25.579102,-0.728652,39.827053,-25.296787,null,26.602617,-1.2092094,-42.30259,-8.631784,-5.177431,-20.973507,2.6330943,11.761002,-1.2313857,-7.136981,-9.452877,-2.6622162,2.6334972,-6.850877,-4.949397,9.356447,-5.31213,-27.367857,-0.6249857,17.733782,-24.798098,-30.88297,15.305686,-3.1155365,-46.325706,-8.622725,29.937141,-6.549739,-29.741533,1.4191539,15.811374,10.787973,20.376398,4.732314,-29.970276,-20.581375,14.595664,26.883135,3.2441087,-36.00762,-32.624695,5.1114883,19.198153,18.632473,4.521593,-27.15392,-27.200188,-1.0627651,-5.547207,-47.214462,-60.966354,0.09428024,45.201843,17.027325,-1.5611062,-13.750054,-40.956978,-21.235645,1.8209801,-14.455548,-12.474092,4.59212,13.197557,10.3931675,-7.9127655,-13.3812275,-15.560638,-21.365175,-1.8303261,7.894219,-4.9212,-8.11371,-10.598004,-8.451195,-4.7475348,0.5297389,21.141218,-1.4751163,-44.259144,-11.762995,18.267302,-15.499491,-25.744312,-2.568203,6.5836077,-2.7563772,-16.279541,-4.800656,9.234659,-13.301621,-24.279478,2.007698,1.2129002,-27.669119,-14.714242,9.197996,-12.495636,-22.658665,-1.6294079,5.928908,null,-10.872894,17.014503,-15.432281,-4.6167717,20.478107,-13.555412,-13.940799,19.14945,5.5509844,-14.943382,-16.111591,-4.458458,21.96406,6.8452225,-19.577888,8.429451,4.044346,-33.182213,-11.825268,-3.661848,-38.183395,-38.447926,-21.719616,-7.277251,1.1952462,-14.270926,-9.729502,4.390779,-11.939678,-14.226028,-0.71279335,-1.3123388,-6.2080183,-15.981664,-18.877188,-23.032877,-42.521385,-30.195652,12.180077,31.010494,16.632133,-9.992063,-9.030218,-0.45829964,-27.436966,-25.908663,14.555546,12.321318,-10.314371,0.56555176,31.353104,44.017235,6.9311714,-34.979504,-30.894794,-18.660065,-16.34362,-9.191101,-5.8130074,-2.4675822,-1.3822048,-9.527676,-14.479019,-16.477896,-11.38599,10.891643,28.776361,16.670412,-17.174034,-30.404617,-2.9499097,15.426172,-6.7822857,-19.70097,6.026739,16.66254,-16.904633,-25.023243,12.750686,5.832466,-25.832819,12.911755,39.443848,-9.914806,-15.392897,27.146719,22.880905,10.695244,9.855275,-15.611,-18.923277,3.7025175,-3.3612452,-14.708027,0.5406723,10.142288,-1.2392101,-10.018545,-7.6671505,-7.486058,null,-20.843388,-22.182064,23.754404,16.017117,4.790316,20.706577,14.078373,-2.3696566,-6.3762913,5.431758,16.187397,9.3245,25.52052,49.601547,16.674522,-14.864401,17.208742,32.957096,-7.9887676,-23.744207,6.2732773,8.128216,-25.407223,-26.374376,5.3607254,-2.19846,-41.36166,-22.366066,40.957546,46.53983,-0.6752453,-23.89968,-17.876377,-12.308285,-4.7000694,3.4119701,-10.068676,-29.526634,-19.473526,-0.68973255,0.7057991,-0.14712715,-1.5902357,-11.862739,-22.253895,-13.389752,20.776297,37.449005,4.4116745,-40.44214,-43.30485,4.3070736,38.327213,13.872537,-6.0651236,7.399991,-2.6502323,-33.380733,-30.314163,3.7213473,0.81843305,-55.317997,-71.4974,-14.914618,32.657314,29.678352,-4.8543215,-30.09687,-12.032564,21.013128,30.219316,17.78815,11.702229,25.201458,16.187305,-10.780952,0.5665488,12.471589,-2.9861994,-0.23314238,6.776537,10.87988,22.237198,-7.062545,-35.872677,10.9084015,52.088673,24.172977,-3.1965559,7.592642,17.964523,-4.5842037,-19.656456,21.233744,41.823193,3.9833302,6.039716,22.083714,-12.893087,-10.037783,null,2.4154196,-18.246386,1.9171467,-0.9464569,-15.5444145,-13.6051035,-23.423035,-20.070427,16.218433,18.64818,-8.10107,-1.4014034,7.4558444,-6.510378,-13.23483,-22.155436,-25.499416,2.616621,10.660372,-24.631847,-24.096466,22.887419,30.875626,0.16955662,-1.9502406,11.588989,-6.3244114,-30.574053,-11.617498,25.06596,17.473606,-23.198956,-36.234776,-4.702639,29.133057,22.413784,1.3101807,9.98119,20.704576,-1.7199574,-29.56586,-22.257578,4.9689026,2.6767921,-7.7600446,23.353687,48.127922,17.263409,-18.945833,-13.279782,2.7088032,-10.421932,-23.91744,-19.230957,-25.359077,-12.176236,28.075933,19.57278,-18.030901,-17.22454,-3.0972023,3.1420298,6.019784,-1.4947643,-2.8256087,2.7834291,-5.4343786,-8.413174,12.313541,12.419511,-27.579628,-33.107056,9.106194,10.229673,-23.805853,-16.699944,13.43288,4.53074,-28.37392,-18.77669,8.907789,-17.105072,-42.123634,-13.537665,5.369607,0.0916338,-0.8624296,-7.0762353,-2.175775,17.796806,10.282557,-10.999616,1.2180347,10.691898,-12.331509,-15.474535,-16.525215,-35.585377,-2.6141615,17.181767,null,5.368993,-12.039806,-21.372894,-1.1835661,13.07173,-2.515746,-11.843447,-1.2852683,5.2048674,-0.46098757,-4.127833,10.810036,14.5007715,1.7192855,17.706646,19.959045,-10.489966,3.4374151,31.467648,17.493275,-1.3652346,-10.6160755,1.0881758,20.448904,-6.5594726,-24.824543,15.985196,25.748375,-19.639168,-32.84316,-10.4881,-7.228773,-4.360079,9.247012,-8.607326,-37.836388,-33.321064,-6.03421,11.865788,-12.246687,-34.71115,1.2237577,11.893249,-28.075005,-23.885511,-0.19328833,-0.24589252,14.359261,22.073738,-0.847002,-19.2662,-14.849026,-4.64376,-13.2048435,-16.258583,5.6572847,9.757588,1.8912487,8.811736,1.1786914,-12.160384,-8.678206,-17.178715,-42.227814,-50.94839,-26.130878,9.557799,16.965439,-3.3534558,-21.684553,-18.185097,-2.195808,-4.943516,-10.81015,9.679926,16.91291,-1.2842054,-7.1436205,-16.657557,-25.19822,-3.4908688,-7.817457,-36.14953,-6.9264097,27.061928,5.677904,-7.1562176,-1.615592,-2.712286,0.3651743,-4.132178,5.6481876,21.929237,-11.470261,-22.071259,21.805542,3.8872151,-29.15682,20.895948,35.666504,null,14.410498,2.1382685,7.622363,25.325703,-2.1497002,-13.948513,21.47166,24.793793,-6.1188087,-10.4225855,14.721189,27.327414,5.584339,-17.400517,-26.025455,-33.63531,-11.327663,15.790428,-11.217384,-16.468746,28.408216,9.689886,-30.419168,9.185687,28.732445,-18.051205,-24.632507,16.2733,31.881605,-0.50337553,-37.883953,-16.0501,27.76408,15.7513075,-19.273233,-22.002213,-11.943973,-22.218868,-25.26758,7.3240957,11.031408,-29.685694,-30.504593,-1.4483366,6.967149,9.026135,2.3926592,-13.776208,-30.520088,-30.35452,14.55673,40.681458,9.184338,-6.3286757,-2.4096212,0.35934305,16.934902,9.384024,-8.815922,-0.9913521,-5.263784,-18.175158,-14.959547,-0.19477582,22.949469,10.707129,-26.94749,-18.071281,2.1153336,-3.0917559,12.323599,14.505754,-26.639725,-18.363281,29.88714,4.1022067,-31.01678,9.242008,17.656069,-18.968279,1.5425239,27.721294,4.1493645,-5.86532,13.312438,27.309496,31.886095,31.91559,10.748821,-16.487549,8.904001,40.580807,12.702889,3.8275638,17.880667,-5.642873,4.791477,32.8147,0.29258728,-4.965587,null,-21.1115,11.86032,-3.8074903,-22.369623,0.090797424,-15.270067,-19.368168,18.018404,12.191658,-2.9586525,6.198572,-6.5871725,-7.590314,10.825809,-3.871347,-20.348875,-2.9168715,10.192463,-4.064054,-17.296408,-5.144326,9.594525,4.818103,1.6895351,4.0303273,-4.958898,-7.163724,-4.784991,-21.532717,-17.74237,12.233976,5.9346747,-8.357988,7.49815,12.6048565,23.377796,42.932228,15.222051,-22.810375,-20.992939,-5.0112753,0.8183608,-2.9322605,7.9265723,7.9356203,-29.145527,-13.862728,36.99924,7.116083,-26.436657,12.531186,35.69254,8.98978,-21.495358,-19.968376,-6.8088627,-25.714027,-30.851372,1.2217832,8.056597,-3.284522,7.0896807,30.043781,38.00267,13.42544,-7.5285263,-5.4499865,-3.650196,11.717943,22.720392,1.7220535,-15.055711,-20.36849,-9.599526,17.674448,6.720805,-9.226689,14.158615,3.4420633,-30.265146,-14.017169,9.078879,-4.3287954,-24.77357,-19.10587,10.299041,19.693121,0.24595833,-14.354665,-10.653015,15.286932,23.291515,-15.01906,-17.055,22.138826,9.253299,-5.776094,18.872665,3.9094315,-7.0162544,null,5.989419,4.329234,-19.163017,4.878789,37.466232,5.0074663,-6.328373,20.904799,21.338531,12.854448,-6.40474,-24.574883,0.7392702,17.897604,5.5691967,-1.2285023,-11.523337,0.040395737,30.009163,19.164291,-5.841099,-7.811782,6.925066,25.714226,9.052128,-8.469311,18.432901,15.322536,-23.9141,-19.744051,19.170862,43.018417,26.733967,-3.8996181,-7.847285,-11.109682,-18.275541,-4.2527637,5.4152665,4.363241,1.0719881,2.8566074,32.690903,45.049824,6.38686,-14.298372,18.657154,52.042328,26.16063,-13.058805,24.088161,60.791542,18.750992,-4.2844954,11.22887,-2.483407,-12.926119,2.589219,8.107948,-0.4235325,1.1566117,11.520888,-11.351642,-44.904213,-17.805902,23.783552,15.306919,-3.6187773,-11.178599,-13.2185755,6.390008,26.13291,10.252811,-22.64056,-19.483826,14.508213,2.1003492,-33.117302,9.382956,53.6399,4.6361694,-20.302303,18.004044,15.414718,7.5117846,27.491886,8.49044,-4.9409056,22.882973,25.310112,7.214779,-3.4108295,-9.637329,-2.2735329,-3.1736898,-12.825283,-13.186818,-16.927832,-1.9814711,11.857709,null,17.201897,-4.9939203,11.214196,1.6072378,-20.551796,10.555642,37.924408,9.372793,-15.482444,6.1810236,15.943211,-1.2065134,10.054832,11.947712,-19.664688,-7.03485,19.436184,-9.549267,-21.572197,12.212916,12.7324,-17.278961,-16.860825,6.691951,16.048494,3.1587915,-17.028233,-15.663107,10.604046,18.671406,-11.10107,-37.98651,-21.208061,16.435637,16.951426,-9.408622,-7.967201,8.122647,4.031892,-6.578865,-2.3253784,14.056246,19.101748,8.245529,-3.5214229,-20.344454,-21.45564,8.950504,18.950216,-4.2678566,-12.367073,4.7236633,21.582417,16.817556,5.73084,7.898083,-1.6095695,-17.106592,-12.538267,-2.9818344,11.791222,23.107504,11.124307,10.244645,24.63498,17.867926,3.1405435,-1.8206506,-8.094952,-13.652035,4.303549,33.294758,20.477444,-3.7336082,15.50136,18.341478,-12.163069,-9.688344,15.832457,28.633356,19.750805,-0.06965637,4.9383173,5.536887,-25.158373,-33.16262,-15.593811,1.9204674,12.7313,-10.254299,-23.470036,4.4756703,3.558239,-12.200339,5.1325226,10.102484,-1.6256473,-2.6288667,-4.088335,-5.0354643,null,2.82869,7.054343,3.7991962,7.2566953,-8.97917,-19.585896,4.290264,11.319472,-13.297698,-35.29059,-29.192686,12.812857,29.37882,-7.30587,-22.202261,-2.1239188,5.0352755,-8.620927,-26.84871,-12.744343,20.195887,17.346762,6.5078063,8.424063,-4.4114285,-6.18257,7.231024,1.4078894,-4.6267853,9.363041,13.141732,-16.622923,-34.881058,-8.496941,3.5165052,-5.3270783,9.262444,4.9930925,-20.244152,-17.299541,-9.914512,-4.4756746,1.1149759,-19.083618,-24.26028,8.273832,17.554646,-20.2137,-43.181,-2.6031694,28.002872,-7.131085,-21.16812,6.2869267,12.649574,14.884842,20.87859,10.948395,-0.9292402,-11.515887,-4.131666,25.374815,34.846222,17.486343,-3.2715192,-8.446365,7.292845,20.603199,26.88375,24.878004,4.387194,-6.038206,1.7287374,6.771675,8.618441,7.6593285,20.198175,26.756308,-13.531681,-25.606407,22.215897,20.469696,-23.216496,-22.14714,-7.8358483,-12.466447,-11.137995,-5.509549,-4.078347,-5.090805,-6.2645774,-0.9264147,-4.406601,-26.464836,-22.373251,14.048563,10.280954,-21.908382,-10.469999,6.3001795,null,-10.324301,-10.234125,8.421677,25.633537,20.958183,5.5045485,-1.1164408,4.3865113,12.739666,-1.8738618,-13.0447855,6.5756664,-8.528507,-29.57055,22.76617,31.111435,-33.627346,-13.963829,39.595,22.658417,7.604681,6.217333,5.4987793,23.872402,7.9383583,-9.196951,28.524105,42.93249,11.917217,-16.531942,-18.626816,23.620253,48.95692,8.303114,-29.185684,-17.526392,8.620981,0.48036158,-20.17509,2.8754668,23.050232,5.8285694,-4.471409,-6.3871527,8.06053,25.460678,14.481984,36.74866,58.99804,6.5545654,-10.522733,30.575197,20.173262,-15.304391,-8.570744,30.543404,46.940178,21.411741,14.215038,15.712975,-1.2501402,8.783659,7.9716034,-16.10448,1.5735807,17.766521,8.332182,9.001844,-3.2802172,-15.922342,-7.5022087,6.1654825,18.666689,3.6427217,-10.940706,6.421194,0.81826353,-7.540348,9.098016,-0.16337872,-1.08619,21.562422,7.422262,-18.80515,-16.52026,9.231354,19.893545,-23.332363,-36.274063,20.948153,32.61532,-4.3883305,-11.311372,1.3171263,12.4695835,-1.10217,-21.32434,1.4734411,8.568713,-8.99836,null,6.3985353,4.3455977,-7.752398,8.138607,1.1707125,-1.9955487,-1.6598573,-27.24496,-12.270214,21.614952,4.85089,-14.139255,-7.203782,3.6545243,3.1810372,-3.440781,21.21298,33.52132,3.4916918,8.894907,20.560127,-6.1807895,-9.367644,0.20654917,10.122344,27.990898,12.31053,4.756067,12.350266,-16.357784,-18.699753,5.002527,-0.6824708,1.8599854,7.8911533,13.051118,24.049553,-0.9068675,-8.1421385,23.724194,13.22678,-11.719965,-1.4034176,19.833082,14.328394,-23.98522,-16.172043,13.792101,-24.762833,-33.237022,3.1819363,-26.228058,-48.83508,-21.419092,-7.850827,1.97399,-3.211975,-19.670492,-12.390715,-17.984245,-30.040554,-15.147192,0.17502952,-0.050644636,-14.683235,-19.684635,-11.600975,-24.501005,-19.845766,12.541903,10.285534,-12.104336,-27.54773,-20.59274,15.40593,0.19054747,-38.748806,2.5905712,35.30213,-3.3829436,-26.366001,-16.034063,9.988535,19.837458,-23.272945,-34.74267,7.0070105,2.133981,-20.6142,-11.549676,-12.223251,-0.2314949,30.357744,21.057226,-9.6680975,-16.356133,4.318426,22.908525,3.7986488,-5.335159,null,-3.1378827,4.361865,-1.7075305,-9.262899,-19.71661,-10.103637,4.780034,-2.344565,-2.5543365,-3.0234761,-24.559166,-22.112413,9.813234,14.804352,-15.764395,-29.183556,8.98782,36.122635,-6.927162,-31.65641,14.486322,25.497036,-16.958588,-19.543613,10.3131695,8.765493,-21.335936,-23.759321,15.722284,28.725368,9.690769,10.33396,0.16466045,-14.479763,6.6419077,6.0976124,-18.19789,-7.7951946,8.1390705,-2.727027,-26.412743,-29.130623,2.6968274,20.644424,16.213968,4.759573,-17.799826,-1.5519924,24.947607,-1.9234772,-10.725059,-0.4439788,-15.789862,0.6670189,13.196083,-25.737062,-43.335297,-17.731838,15.911606,12.448261,-26.202803,-22.598309,0.14252758,-9.075594,-16.024204,-24.943565,-18.16061,12.196863,5.3076086,1.4546137,19.92466,3.6104765,-0.31123066,13.381894,1.0889435,6.9921904,22.069536,17.209267,10.663818,-6.196534,-7.2553954,10.924339,4.03265,3.7586212,17.119293,8.171014,8.254131,21.14952,5.6952763,-29.856869,-31.569832,17.49955,30.456392,-20.144848,-27.993,4.287277,1.4856443,-3.2853715,1.722641,-11.012459,null,-17.77179,-19.251398,-5.4848804,6.5939302,12.332394,2.5062265,2.1811376,20.616205,15.920249,-15.307895,-16.926025,8.906554,1.044105,-18.426495,-0.33997536,13.718987,-2.1552453,-12.195965,-1.9410096,8.440283,-3.243413,-12.102762,2.352826,1.8762507,-9.051249,-5.8126945,-6.2719555,-2.8192873,1.917026,-2.528915,2.833579,3.6942806,9.294652,23.465584,-7.8389516,-29.810978,9.566496,19.92324,1.4980459,19.701933,41.21927,33.905674,8.882559,-0.8306,12.155173,3.1429377,-7.630567,8.484337,6.1242886,-2.7698421,10.0053835,8.680021,-4.9723434,-0.00645113,15.728516,20.185226,16.358633,16.892555,8.98695,5.8025126,21.646572,5.312395,-26.051687,-10.39398,-0.55725336,-14.369536,-0.28963375,-4.906348,-33.36714,-5.5837183,28.845123,9.191936,10.239515,33.981377,11.277907,-11.351277,4.3126287,3.2640362,-12.511377,0.89719486,22.051165,7.365935,-19.987513,-1.0077965,26.72331,-1.9120631,-23.315132,-1.507246,-2.6937408,-10.568477,10.674746,11.841568,-10.67381,-7.8026724,19.963383,27.877789,-2.9181652,-19.99723,7.90009,25.858625,null,-0.8904524,-8.830582,1.5720983,-4.880035,-14.578619,-8.635482,6.139259,12.790462,-20.72478,-46.21939,-1.2686663,22.653776,-19.823132,-26.417473,6.675849,12.542185,-4.3968315,-16.41793,0.058960915,12.9905,-10.472572,-13.546403,-1.7631376,-13.506322,0.7106948,10.87682,-26.98855,-22.078457,26.47202,23.804283,-2.0166125,-2.1870003,-4.433298,-7.0525613,1.8475628,1.1746111,6.959017,20.522816,-7.706131,-32.644688,4.469963,18.112694,-12.824298,-2.5759873,11.735739,-12.535707,-10.847226,2.8796697,-15.338003,-11.180457,20.30207,12.959365,-11.048407,4.4732203,31.693632,25.65392,0.9303508,2.8508186,22.505077,6.0812445,-7.313081,29.166138,23.575968,-31.085747,-14.791905,32.288696,14.092039,-12.476879,2.061431,13.079891,-1.9764512,-8.117686,9.988168,12.294325,-11.607417,-27.08649,-24.891256,-6.8659177,15.498025,11.9656315,-11.853593,-17.341219,6.997102,16.999048,-15.052344,-26.336407,9.777813,15.582369,-15.656603,-11.074605,4.5465355,-23.796528,-33.067467,7.0250893,10.767009,-8.924817,10.558989,5.9414597,-22.846298,-2.9392016,null,-6.920183,8.178722,3.756672,-21.089138,-14.144737,5.289139,9.144908,9.040034,-9.72357,-27.365509,1.5799773,36.677525,26.734215,8.51428,8.05382,-1.6102619,-7.144438,5.048916,-4.5018797,-27.292591,-16.039873,16.246435,23.96088,-2.886128,-16.365595,10.874645,25.677645,13.803228,13.672582,6.9356813,-14.798727,-14.169132,2.2513957,2.0447712,-10.907441,-6.2100983,9.357343,-1.0270138,-1.4887857,34.525852,25.294718,-27.498098,-27.454395,-2.7966967,-13.956959,-27.237473,-21.909393,-3.0823414,11.1561,-6.1541014,-11.784786,8.7058115,1.4721537,-0.56263113,13.095348,-21.058966,-40.852985,1.4229898,12.881569,-10.618615,-2.6315365,15.830822,10.777651,-2.18046,7.1645775,29.273468,25.972744,6.027384,-1.6251572,5.537861,9.224449,-5.5029125,-2.9242115,23.828568,23.653084,13.858442,16.519197,8.239738,6.722821,3.316523,-9.5863285,9.538069,16.719776,-14.576557,-8.595197,15.235364,-0.48237967,-14.183628,-7.071118,-3.0027747,3.3943024,11.22507,6.58174,-7.8025856,-15.54375,-0.64210653,20.272972,10.252709,-11.846622,-8.634011,null,-3.5899687,-3.3117847,2.776998,17.966871,22.422094,-1.154948,-18.63043,-7.4068146,19.07901,27.992039,6.344031,-4.421585,12.476378,9.106559,-13.7246065,-0.8554089,20.075644,-3.7823467,-22.70075,-1.3756282,12.721834,1.0186648,-10.806726,-0.791576,12.208921,-3.7930794,-8.3611355,17.67509,18.508148,-0.36403322,-5.8601027,2.206302,24.39032,20.01047,-10.218598,-0.95279884,18.898563,5.5728216,-4.735488,1.6905403,14.053114,14.388695,-2.2107234,3.9007802,20.911524,15.252925,12.956873,12.7194,6.0070615,10.310541,14.432888,27.585424,37.616634,4.2281446,-2.9226537,42.92478,37.298767,1.0427856,12.211805,16.800598,-10.567436,-22.53852,-6.3620005,17.813288,9.248278,-12.365454,9.244772,21.663464,-5.4762096,-6.119543,5.8229513,-4.445322,-10.149014,-17.071188,-20.330534,0.37892652,12.732946,4.2810135,-3.6463976,0.45633268,17.359856,14.732292,-6.0301304,7.837896,26.230833,-4.4977036,-25.640938,-0.53745985,7.430507,-6.9690065,3.307492,14.72473,9.013254,14.756163,20.694908,6.0179796,-14.425251,-15.78659,6.2875676,12.303931,null,-7.607786,-6.354416,0.61650467,1.2062407,7.47221,1.5714006,-16.427309,-20.10373,-17.25032,-6.3118005,13.360689,5.1663265,-24.285172,-28.756947,-10.904757,5.835586,15.242012,0.7540302,-21.183552,-4.393981,15.800527,-9.03775,-28.224108,-7.8158054,18.307682,25.675884,11.923498,3.8345551,6.0980053,-7.9581246,-4.0670834,19.135815,1.3394523,-18.863503,-3.5313983,6.3721375,21.811684,37.638268,19.549702,2.204514,-10.868984,-20.029533,17.016438,32.65051,-18.261543,-30.479322,4.2461953,4.574386,-8.097072,-5.100913,-5.609166,-6.9399376,-2.1651516,1.844183,-7.757614,-17.53635,-0.39203405,14.145615,6.371831,3.121143,-0.9294052,-0.70083046,7.8014107,-11.389757,-24.174425,3.421164,16.364235,8.199766,3.8270106,-1.6339135,5.572298,4.898394,-11.868077,1.6178217,12.187271,-13.678718,-16.924265,0.855299,-1.4925618,-6.891001,-14.5611725,-23.943476,-7.687161,2.0241926,-19.446177,-10.34285,25.707542,8.084182,-30.962551,-18.720032,3.6090212,-3.7809515,-8.351145,1.0032454,3.6969213,1.4556608,5.9594088,-0.10498738,-11.208273,5.5898194,null,-22.717495,5.3128204,26.315792,0.12568778,-8.862038,10.505716,1.8363705,-2.076436,25.771177,20.517076,-7.5172205,3.1497483,19.240034,12.327076,11.035162,2.4675221,-17.160555,-2.021504,19.02208,-11.343676,-29.489552,6.438618,18.343391,1.784137,7.969218,9.411901,4.8046284,16.832687,14.032598,-0.71759105,-1.1354055,4.182515,12.049505,18.669992,20.531502,13.868453,-9.939366,-14.308217,10.197533,9.486,-3.1980882,2.6146164,-3.2760649,-6.5932198,15.347783,23.9755,9.486944,-4.059533,-12.876575,-15.25969,-4.278467,8.965105,-7.1607885,-34.83395,-14.771968,12.943453,-11.116541,-23.4613,-4.4851904,-9.323358,-7.868595,9.170092,-5.8132596,-16.548855,5.8357544,19.88601,13.439709,-8.686359,-32.269066,-29.374443,-15.690075,-13.209425,-14.487883,-13.424292,-5.1756926,2.1813478,0.91000223,-1.1015244,-12.989435,-27.866077,-16.220385,4.4959283,-0.57520914,-20.871775,-25.621815,-10.217854,8.956877,22.915672,16.864693,-5.652956,-1.8931749,20.85169,18.21203,-3.000278,-18.007088,-2.9600015,26.841946,10.122646,-16.392767,2.1220062,null,-3.194938,11.15115,9.706921,-1.1175079,6.109079,-1.4407238,-5.8109956,8.109744,8.084769,3.577684,-3.4080262,-22.224525,-23.176306,-1.9589388,15.059232,9.528354,-7.486513,0.76519763,13.994675,-2.6564646,-12.524898,-0.4387498,7.1768913,3.4734635,-14.476544,-27.52894,-17.922634,-7.519614,1.3176346,14.078781,17.17043,14.930876,5.3315315,-10.831153,-7.7878513,3.7458115,-4.537285,-20.859589,-24.963314,-16.54087,-10.553455,-9.980351,-1.2848597,4.3542023,1.9004214,12.409173,21.498241,11.081039,-1.5634277,-10.199732,-10.194136,-0.85597825,-3.309896,-12.582483,-16.224514,-18.606674,-14.320192,-15.709265,-17.46291,9.375585,17.761345,-14.339072,-9.1940975,25.006039,14.583445,-12.912741,-9.090535,5.224308,7.7681575,12.597689,17.966698,0.55887127,-13.9409895,-2.0511208,-0.31638336,-4.190299,5.6579533,-2.2664213,-11.5008135,3.8367834,7.5514693,-2.0570126,0.04779792,6.4090605,8.729065,4.9446173,1.16396,3.9853234,10.621395,18.417345,5.753084,-17.575089,-4.56894,14.689574,5.6986775,7.4813294,9.02587,-9.036999,-8.59096,-3.7048583,null,1.0931716,-28.784657,-14.011618,2.7795525,-7.2386813,-11.685529,-5.50107,0.6049986,-7.793586,-20.471256,-6.7507367,6.8197036,-0.15134239,-7.469599,-23.652557,-32.182858,-15.871069,-15.221913,-22.59278,-5.82148,13.231709,15.052633,-6.4532495,-22.197998,7.573727,29.658672,3.2317376,-15.647394,-13.069211,-21.430328,-23.143204,2.615755,21.870913,6.6836615,-9.498384,-9.271695,-14.897905,-7.6043653,16.794643,17.268711,5.075001,6.1023617,4.3718605,-12.508234,-34.08297,-25.492874,1.8342972,-15.086809,-41.523613,-22.35932,-12.898733,-22.327282,-5.2069926,4.1087046,-8.633036,1.3881626,21.834597,15.35593,4.0284114,15.561821,19.416565,6.920143,19.648544,26.452984,-12.10755,-25.9804,8.28021,29.183487,28.50136,17.362013,5.9001627,17.665192,32.011623,34.938725,32.862686,10.325548,-4.623626,9.743756,9.452433,-9.0532675,-14.633636,-1.5987036,19.034994,13.4048195,-10.361062,-5.0148883,13.671659,17.43047,16.491766,14.022167,4.887225,-14.562331,-13.459615,26.832993,28.924053,-18.264624,-13.107348,22.091442,6.6293364,-8.548683,null,-5.9350185,-0.96711946,-0.98446846,-2.5005975,-1.5695887,-1.7832978,7.642852,25.82138,12.935421,-17.390654,-13.750799,11.8173065,17.227207,-12.789801,-39.61702,-16.806244,15.344212,9.457354,-4.502361,1.2592654,14.290678,8.399528,-11.669797,-10.994913,-4.078391,-12.693335,-14.283353,-13.59,-16.582771,-9.579037,-6.3019648,-4.7844033,2.7308302,7.524461,20.843586,23.668705,-3.5446787,-18.75523,-15.362349,-19.92407,-19.948997,-6.493468,12.0332575,17.498528,5.4363627,7.597528,23.72865,37.766006,48.754295,25.764585,1.9018927,41.1049,69.53028,36.39763,16.68319,16.242395,-5.1396055,-19.846973,-12.046679,-8.018088,-14.940998,-11.4516735,1.771759,3.5351095,13.98154,36.94201,17.229004,-34.49221,-39.216785,4.82549,22.060257,-4.1064105,-8.54619,11.201231,-2.630713,-18.222448,6.683202,16.583885,-12.698146,-19.437046,20.122196,36.798374,-2.4224365,-17.036987,9.787185,1.414969,-18.423437,-0.40947533,12.465645,2.8787785,-5.3839245,-8.297491,-8.526192,-10.213996,-2.5852664,9.991137,-5.8978653,-29.250475,-14.929567,11.979319,null,-3.4387734,0.28113008,-5.6415253,4.6265063,18.191341,21.940855,7.834936,-8.2609825,3.8137062,15.488656,12.182305,9.53406,-2.0388021,4.7637615,26.203754,4.4246335,-17.05855,6.8642416,14.906346,-1.2090292,1.4407716,5.0358067,-7.9774437,-9.41067,5.383698,-4.5141377,-36.888657,-32.558678,3.865243,10.047425,-13.9750805,-25.128422,-23.88329,-31.391716,-29.912483,-7.5501904,-1.5719147,-15.442461,-4.657607,21.629795,15.374579,-14.521109,-21.011745,-13.817439,-29.814398,-38.68254,-23.047016,-28.234802,-46.79638,-45.72912,-33.199593,-20.04572,-33.41966,-57.946495,-32.823067,-2.855475,-16.439468,-15.659471,2.6551995,2.7613888,2.5588431,3.4326992,0.6095996,-0.54454803,-15.010321,-36.280903,-35.562515,-5.167172,24.646193,23.299627,11.124683,0.74894106,-17.410154,-21.7855,-13.198668,-6.2489176,4.2859383,-1.8479676,-10.8681965,6.3433495,6.099898,-19.211533,-21.442139,-1.7124157,9.177053,-10.869115,-36.840275,-31.721508,-27.626867,-25.75022,9.923414,31.704247,0.8192389,-33.151604,-14.470051,26.624289,1.0785799,-44.489414,-8.6662855,25.459532,null,9.203181,-12.159103,-9.026904,-6.4419613,-0.3463061,8.053049,-8.699322,-23.444044,-14.602439,9.934647,31.326473,14.477482,-7.334323,7.445109,12.284952,-12.333905,-25.77159,-5.423708,16.325417,-7.896682,-28.630812,-0.35318565,9.804987,-1.9848185,9.58335,15.486686,11.367628,2.5208325,-23.34649,-22.676998,7.8036785,15.647716,5.199441,0.61529064,2.1265767,1.8809586,-4.213522,-8.287521,-11.689896,-8.866571,0.58273125,-7.2659345,-9.151882,8.667213,-1.8368654,-18.612095,-3.1475532,-2.696168,-22.086636,-19.69698,-6.7234077,-1.3823254,-0.6628723,-2.3422685,-3.0356274,-2.8954172,-1.5603585,1.1085687,1.9260263,-3.4454432,-21.937857,-34.75761,-13.484846,11.753395,3.7156134,1.6573277,31.802927,38.878185,3.7383947,-23.0308,-23.604801,-8.192895,12.992861,12.262928,-9.747971,-26.207531,-23.896397,-0.42843533,11.841286,-3.9351063,-10.568491,-5.2827697,-1.1518984,0.1390214,-17.778645,-11.212479,30.303547,20.205414,-10.983762,7.2528286,18.82397,11.106988,15.555496,16.029821,14.922249,1.229579,-15.097095,4.997951,12.941412,-4.9921293,null,7.8990607,2.0701246,1.5974605,1.584156,-17.336727,-6.1150756,23.83901,12.641012,3.0257854,6.430565,-10.360445,-7.05456,5.9448137,-9.69393,-13.958647,-0.24274111,11.90671,24.56493,12.416924,-13.241989,-12.077046,7.430141,23.105663,12.747263,-13.388956,-7.9523067,13.386234,17.375841,17.550165,5.73765,-17.529928,-23.993887,-17.841364,1.0633793,29.790533,28.734587,9.042586,16.801023,28.191168,12.052745,-4.4109106,-9.932682,-15.8574505,-7.2606115,13.5314455,18.528122,13.961588,19.489681,25.081606,22.624283,27.407194,38.916557,36.446983,24.833721,14.453868,3.2896671,10.38408,24.970524,10.81281,-2.7739735,7.796693,14.51362,17.757206,21.206768,15.634314,2.3990526,-15.961506,-9.707285,9.664693,-12.848583,-33.05734,-12.946327,-5.664873,-5.9370704,1.3226147,-7.324978,-5.7974343,2.3623567,-11.5647955,-10.04434,16.421535,23.755938,2.7147963,-13.662325,0.43429804,15.742073,3.0412946,-9.78797,-7.6886806,-4.084424,-4.800291,-8.379391,2.4532523,15.950145,-3.8326912,-20.363626,12.507113,37.4949,1.3989797,-28.335178,null,-2.043502,5.1561584,4.201829,12.137563,-3.567605,-25.208237,4.1304164,41.67358,28.891853,-7.8818626,-24.74171,-12.03715,7.2181053,10.164109,7.3432865,10.73461,12.071085,4.3093967,-4.524207,7.422556,26.578363,14.585315,4.243828,20.857487,10.913316,-3.154108,22.945198,23.25713,7.599884,43.645546,59.773834,14.120763,-18.17148,-18.707619,-12.567322,-10.911781,-18.304813,-10.650949,8.4116,13.679768,22.359774,28.697195,7.6796427,-11.6529,-9.071912,-8.755641,-17.179594,-24.270897,-32.61018,-39.263718,-38.87847,-42.99539,-47.31471,-30.837673,-12.175174,-15.099193,-12.492655,8.226285,17.634472,15.907536,16.988932,1.5213175,-23.93872,-22.921555,-5.806797,-1.0654655,-6.7729597,-8.619913,8.350973,21.830177,-0.9308357,-21.576118,-8.324771,7.887737,14.902911,15.372231,7.9497924,4.6840863,6.3684826,12.207244,9.402601,-17.374695,-25.859497,0.268301,11.819235,2.196957,-9.520998,-11.156162,8.025092,8.345633,-17.205893,-8.208492,18.484034,13.295036,2.7713869,0.7072263,-9.476019,-8.768259,7.197133,8.2048,null,18.10677,3.6885529,-10.952875,0.7615366,22.152803,15.231089,-4.3675747,-4.8643694,1.4842639,0.3852811,-4.7283163,-1.599643,-0.39948654,-18.089478,-14.683658,13.158937,9.653395,-2.984871,6.910802,13.936239,16.036415,2.9898658,-26.012703,-20.939867,15.326141,29.926075,8.583632,-22.285648,-27.652327,-13.659364,-3.8619642,10.226877,19.593462,8.512625,-0.31932735,0.9367924,-4.188198,-15.924039,-25.271164,-21.92165,-3.8640194,8.419878,1.67976,-1.5081,18.597488,39.95387,38.29368,27.464035,27.738714,27.534481,9.824957,-4.292735,6.499303,19.959522,16.053183,-2.339134,-26.295244,-31.913607,-11.705517,5.6323547,-0.51123595,-13.608688,0.35093904,26.32666,18.144579,0.18802166,6.6572895,6.6641154,-10.0897665,-23.078331,-17.243494,13.419797,28.649256,18.925707,29.915878,28.931652,-8.228734,-11.606623,13.344052,12.573494,5.56231,4.6094255,4.364154,5.2149973,-5.9189134,-1.446177,24.775967,20.66603,3.143441,5.0696554,-0.7921972,-17.35632,-30.806904,-18.553764,24.11747,20.268959,-28.52949,-22.137903,18.082006,21.111788,null,14.899479,14.335647,-6.9341106,-7.391692,3.253718,5.142549,-8.9040575,-17.420145,0.7342329,-3.4327936,-26.991451,-12.976896,-3.249909,-13.615604,-0.4747889,0.41176653,-13.547471,0.18235588,15.079053,24.777878,32.011703,7.9204397,-10.7928705,7.1372733,17.48983,-4.6647234,-30.55082,-16.855808,9.587375,-6.4051194,-9.073461,22.46246,6.6777496,-20.712723,2.9035492,21.070444,18.004501,19.479038,16.111036,13.667563,5.452672,-11.159289,-10.277308,-5.950721,-8.396429,-3.0300438,-8.041359,-14.616404,8.269158,23.799116,-3.8507748,-26.07421,-2.6267006,17.307608,-1.319447,-11.280402,2.41815,5.417357,13.8326435,41.04337,41.866444,17.940985,22.660461,33.57574,3.0583725,-24.83215,-17.262806,-11.868971,-7.6773796,12.103991,18.831837,-1.4924412,-20.164822,-7.819087,10.559993,4.372278,9.622107,23.734425,9.506177,6.0266075,18.210577,7.888887,-0.42238426,-4.799566,-16.954845,-11.197397,-2.394741,-6.119132,-8.483943,-6.9649982,11.370077,33.148087,24.50593,-5.549124,-29.694563,-20.10889,9.540325,9.247368,-10.004338,-21.321325,null,-9.482303,-14.556311,3.1147048,2.5923338,-4.39917,7.2683754,16.807178,-10.067924,-37.07864,-5.467725,23.20283,-8.171134,-25.475058,1.8082042,15.788534,-3.2270718,-17.689077,7.6320753,29.855549,7.0461016,-8.962328,-4.506833,-4.580412,16.81461,35.957912,14.346226,-1.5609818,12.224959,18.621483,6.571777,9.022641,32.831837,28.96163,3.5789502,11.828017,12.985935,-31.572868,-41.3498,10.02334,33.10759,9.10553,1.4674044,6.862776,-0.2637043,5.436512,10.810117,-9.350485,-17.103006,-0.3573953,9.998104,8.0602,2.8954601,2.9762068,7.735045,14.174105,22.621181,20.575684,12.625849,3.870191,-12.155193,-9.561628,-7.9837265,-37.007095,-28.54826,7.9750004,1.3217945,4.7149277,21.455833,-4.4922714,-8.011255,25.329414,22.873154,3.8893933,4.643657,7.7724056,2.1924543,3.2291346,25.501442,28.584318,-2.7271338,-12.600147,-12.450861,-20.814571,3.749511,19.443947,-1.5057967,6.150032,16.241098,-13.649034,-22.42523,2.789331,17.271797,9.383753,-17.793299,-35.073746,-12.3906765,21.106024,19.131638,-9.757106,-11.237554,null,2.8364782,-6.928801,-4.411434,12.744657,24.385754,11.140568,-12.534516,-15.62438,-3.1659937,9.001333,25.134361,25.677212,7.6146526,10.707291,13.269948,-8.192177,5.374284,34.95397,10.98612,-17.498507,-15.57717,-15.836487,-2.4261642,11.589388,-5.046792,-6.4088717,14.931135,4.6793966,-30.760664,-36.51812,-11.517349,-17.236828,-35.560455,3.8478045,34.91619,6.182123,4.7061033,30.317524,23.073202,11.781246,4.628767,-14.048839,-15.481701,4.6075726,13.084892,3.5444136,5.9692907,14.4344,-2.8868027,-9.823824,9.884471,4.9638824,-6.819576,4.4834995,1.4853606,-14.352887,-18.531862,-17.000973,-5.9996605,2.9613132,-10.891268,-17.535913,8.415968,21.185143,-8.264925,-27.597443,-13.299382,-4.498165,-8.35049,-13.649334,-19.30613,-14.454785,-5.589461,-3.073018,-6.468176,-17.473442,-18.339228,-7.675666,-3.8031855,4.706997,10.371182,-3.2134223,-11.115568,-4.8653984,4.606549,7.7644176,-5.383416,-5.5213237,13.132253,9.277591,-1.8199522,-1.2070355,-8.339867,1.9735367,27.675106,17.21515,-2.8210702,8.116424,16.91525,8.332336,null,3.2173681,30.04982,-0.74529195,-10.312549,-5.948862,-15.443126,6.6941204,32.93224,15.629005,-14.432287,-28.540726,-12.07237,16.852962,4.9855895,-13.36173,6.0953903,2.7801552,-24.955366,-14.79294,4.490797,1.7519393,0.13724661,-8.017128,-26.300594,-23.687176,-0.17501068,3.0318315,-16.573914,-5.3713436,25.762564,11.846362,-21.496675,-26.464758,-27.2315,-26.15837,-5.342281,2.17494,-17.064053,-16.138119,12.630072,17.061707,-6.6933937,-15.432668,-2.2596776,8.838368,-8.6785145,-38.57025,-28.95251,-7.0700674,-19.622164,-20.320316,3.9244838,0.33880424,-21.893541,-22.646011,-9.125792,-2.2167683,2.6118956,5.761984,-7.1626186,-17.44785,-11.114886,-15.039505,-21.100857,-10.868387,-6.7923274,-4.9084206,18.760256,43.202293,24.63715,-20.026047,-20.704235,6.6362834,2.6375394,-0.048467636,5.9068837,-13.027744,-11.118241,17.428934,18.028992,9.00372,7.4616513,-7.9957457,-16.729395,-1.0472522,10.36985,-6.466334,-30.150288,-16.432518,23.672794,27.700193,-3.94681,-6.016226,23.675957,23.691603,-11.660477,-25.896374,5.900596,34.033516,9.2437,null],"type":"scatter","name":"Re{S(t)}","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[4.184,4.188,4.192,4.196,4.2,4.204,4.208,4.212,4.216,4.22,4.224,4.228,4.232,4.236,4.24,4.244,4.248,4.252,4.256,4.26,4.264,4.268,4.272,4.276,4.28,4.284,4.288,4.292,4.296,4.3,4.304,4.308,4.312,4.316,4.32,4.324,4.328,4.332,4.336,4.34,4.344,4.348,4.352,4.356,4.36,4.364,4.368,4.372,4.376,4.38,4.384,4.388,4.392,4.396,4.4,4.404,4.408,4.412,4.416,4.42,4.424,4.428,4.432,4.436,4.44,4.444,4.448,4.452,4.456,4.46,4.464,4.468,4.472,4.476,4.48,4.484,4.488,4.492,4.496,4.5,4.5040000000000004,4.508,4.5120000000000005,4.516,4.5200000000000005,4.524,4.5280000000000005,4.532,4.5360000000000005,4.54,4.5440000000000005,4.548,4.5520000000000005,4.556,4.5600000000000005,4.564,4.5680000000000005,4.572,4.5760000000000005,4.58,4.58,5.0440000000000005,5.048,5.0520000000000005,5.056,5.0600000000000005,5.064,5.0680000000000005,5.072,5.0760000000000005,5.08,5.0840000000000005,5.088,5.0920000000000005,5.096,5.1000000000000005,5.104,5.1080000000000005,5.112,5.1160000000000005,5.12,5.1240000000000006,5.128,5.132000000000001,5.136,5.140000000000001,5.144,5.148000000000001,5.152,5.156000000000001,5.16,5.164000000000001,5.168,5.172000000000001,5.176,5.180000000000001,5.184,5.188000000000001,5.192,5.196000000000001,5.2,5.204000000000001,5.208,5.212000000000001,5.216,5.220000000000001,5.224,5.228000000000001,5.232,5.236000000000001,5.24,5.244000000000001,5.248,5.252000000000001,5.256,5.260000000000001,5.264,5.268000000000001,5.272,5.276000000000001,5.28,5.284000000000001,5.288,5.292000000000001,5.296,5.300000000000001,5.304,5.308000000000001,5.312,5.316000000000001,5.32,5.324000000000001,5.328,5.332000000000001,5.336,5.340000000000001,5.344,5.348000000000001,5.352,5.356000000000001,5.36,5.364000000000001,5.368,5.372000000000001,5.376,5.380000000000001,5.384,5.388000000000001,5.392,5.396000000000001,5.4,5.404000000000001,5.408,5.412000000000001,5.416,5.420000000000001,5.424,5.428000000000001,5.432,5.436000000000001,5.44,5.44,5.904,5.9079999999999995,5.912,5.9159999999999995,5.92,5.9239999999999995,5.928,5.9319999999999995,5.936,5.9399999999999995,5.944,5.9479999999999995,5.952,5.9559999999999995,5.96,5.9639999999999995,5.968,5.9719999999999995,5.976,5.9799999999999995,5.984,5.9879999999999995,5.992,5.9959999999999996,6.0,6.004,6.008,6.012,6.016,6.02,6.024,6.028,6.032,6.036,6.04,6.044,6.048,6.052,6.056,6.06,6.064,6.068,6.072,6.076,6.08,6.084,6.088,6.092,6.096,6.1,6.104,6.108,6.112,6.116,6.12,6.124,6.128,6.132,6.136,6.14,6.144,6.148,6.152,6.156,6.16,6.164,6.168,6.172,6.176,6.18,6.184,6.188,6.192,6.196,6.2,6.204,6.208,6.212,6.216,6.22,6.224,6.228,6.232,6.236,6.24,6.244,6.248,6.252,6.256,6.26,6.264,6.268,6.272,6.276,6.28,6.284,6.288,6.292,6.296,6.3,6.3,6.764,6.768,6.772,6.776,6.78,6.784,6.788,6.792,6.796,6.8,6.804,6.808,6.812,6.816,6.82,6.824,6.828,6.832,6.836,6.84,6.844,6.848,6.852,6.856,6.86,6.864,6.868,6.872,6.876,6.88,6.884,6.888,6.892,6.896,6.9,6.904,6.908,6.912,6.916,6.92,6.924,6.928,6.932,6.936,6.94,6.944,6.948,6.952,6.956,6.96,6.964,6.968,6.972,6.976,6.98,6.984,6.988,6.992,6.996,7.0,7.0040000000000004,7.008,7.0120000000000005,7.016,7.0200000000000005,7.024,7.0280000000000005,7.032,7.0360000000000005,7.04,7.0440000000000005,7.048,7.0520000000000005,7.056,7.0600000000000005,7.064,7.0680000000000005,7.072,7.0760000000000005,7.08,7.0840000000000005,7.088,7.0920000000000005,7.096,7.1000000000000005,7.104,7.1080000000000005,7.112,7.1160000000000005,7.12,7.1240000000000006,7.128,7.132000000000001,7.136,7.140000000000001,7.144,7.148000000000001,7.152,7.156000000000001,7.16,7.16,7.6240000000000006,7.628,7.632000000000001,7.636,7.640000000000001,7.644,7.648000000000001,7.652,7.656000000000001,7.66,7.664000000000001,7.668,7.672000000000001,7.676,7.680000000000001,7.684,7.688000000000001,7.692,7.696000000000001,7.7,7.704000000000001,7.708,7.712000000000001,7.716,7.720000000000001,7.724,7.728000000000001,7.732,7.736000000000001,7.74,7.744000000000001,7.748,7.752000000000001,7.756,7.760000000000001,7.764,7.768000000000001,7.772,7.776000000000001,7.78,7.784000000000001,7.788,7.792000000000001,7.796,7.800000000000001,7.804,7.808000000000001,7.812,7.816000000000001,7.82,7.824000000000001,7.828,7.832000000000001,7.836,7.840000000000001,7.844,7.848000000000001,7.852,7.856000000000001,7.86,7.864000000000001,7.868,7.872000000000001,7.876,7.880000000000001,7.884,7.888000000000001,7.892,7.896000000000001,7.9,7.904000000000001,7.908,7.912000000000001,7.916,7.920000000000001,7.924,7.928000000000001,7.932,7.936000000000001,7.94,7.944000000000001,7.948,7.952000000000001,7.956,7.960000000000001,7.964,7.968000000000001,7.972,7.976000000000001,7.98,7.984000000000001,7.988,7.992000000000001,7.996,8.0,8.004000000000001,8.008000000000001,8.012,8.016,8.020000000000001,8.020000000000001,8.484,8.488,8.491999999999999,8.496,8.5,8.504,8.508,8.512,8.516,8.52,8.524,8.528,8.532,8.536,8.54,8.544,8.548,8.552,8.556,8.56,8.564,8.568,8.572,8.576,8.58,8.584,8.588,8.592,8.596,8.6,8.604,8.608,8.612,8.616,8.62,8.624,8.628,8.632,8.636,8.64,8.644,8.648,8.652,8.656,8.66,8.664,8.668,8.672,8.676,8.68,8.684,8.688,8.692,8.696,8.7,8.704,8.708,8.712,8.716,8.72,8.724,8.728,8.732,8.736,8.74,8.744,8.748,8.752,8.756,8.76,8.764,8.768,8.772,8.776,8.78,8.784,8.788,8.792,8.796,8.8,8.804,8.808,8.812,8.816,8.82,8.824,8.828,8.832,8.836,8.84,8.844,8.848,8.852,8.856,8.86,8.864,8.868,8.872,8.876,8.88,8.88,9.344,9.347999999999999,9.351999999999999,9.356,9.36,9.363999999999999,9.367999999999999,9.372,9.376,9.379999999999999,9.383999999999999,9.388,9.392,9.395999999999999,9.399999999999999,9.404,9.408,9.411999999999999,9.415999999999999,9.42,9.424,9.427999999999999,9.431999999999999,9.436,9.44,9.443999999999999,9.447999999999999,9.452,9.456,9.459999999999999,9.463999999999999,9.468,9.472,9.475999999999999,9.479999999999999,9.484,9.488,9.491999999999999,9.495999999999999,9.5,9.504,9.508,9.511999999999999,9.516,9.52,9.524,9.527999999999999,9.532,9.536,9.54,9.543999999999999,9.548,9.552,9.556,9.559999999999999,9.564,9.568,9.572,9.575999999999999,9.58,9.584,9.588,9.591999999999999,9.596,9.6,9.604,9.607999999999999,9.612,9.616,9.62,9.623999999999999,9.628,9.632,9.636,9.639999999999999,9.644,9.648,9.652,9.655999999999999,9.66,9.664,9.668,9.671999999999999,9.676,9.68,9.684,9.687999999999999,9.692,9.696,9.7,9.703999999999999,9.708,9.712,9.716,9.719999999999999,9.724,9.728,9.732,9.735999999999999,9.74,9.74,10.204,10.208,10.212,10.216000000000001,10.22,10.224,10.228,10.232000000000001,10.236,10.24,10.244,10.248000000000001,10.252,10.256,10.26,10.264000000000001,10.268,10.272,10.276,10.280000000000001,10.284,10.288,10.292,10.296000000000001,10.3,10.304,10.308,10.312000000000001,10.316,10.32,10.324,10.328000000000001,10.332,10.336,10.34,10.344000000000001,10.348,10.352,10.356,10.360000000000001,10.364,10.368,10.372,10.376000000000001,10.38,10.384,10.388,10.392000000000001,10.396,10.4,10.404,10.408000000000001,10.412,10.416,10.42,10.424000000000001,10.428,10.432,10.436,10.440000000000001,10.444,10.448,10.452,10.456000000000001,10.46,10.464,10.468,10.472000000000001,10.476,10.48,10.484,10.488000000000001,10.492,10.496,10.5,10.504000000000001,10.508000000000001,10.512,10.516,10.520000000000001,10.524000000000001,10.528,10.532,10.536000000000001,10.540000000000001,10.544,10.548,10.552000000000001,10.556000000000001,10.56,10.564,10.568000000000001,10.572000000000001,10.576,10.58,10.584000000000001,10.588000000000001,10.592,10.596,10.600000000000001,10.600000000000001,11.064,11.068,11.072,11.076,11.08,11.084,11.088,11.092,11.096,11.1,11.104,11.108,11.112,11.116,11.12,11.124,11.128,11.132,11.136,11.14,11.144,11.148,11.152,11.156,11.16,11.164,11.168,11.172,11.176,11.18,11.184,11.188,11.192,11.196,11.2,11.204,11.208,11.212,11.216,11.22,11.224,11.228,11.232,11.236,11.24,11.244,11.248,11.252,11.256,11.26,11.264,11.268,11.272,11.276,11.28,11.284,11.288,11.292,11.296,11.3,11.304,11.308,11.312,11.316,11.32,11.324,11.328,11.332,11.336,11.34,11.344,11.348,11.352,11.356,11.36,11.364,11.368,11.372,11.376,11.38,11.384,11.388,11.392,11.396,11.4,11.404,11.408,11.412,11.416,11.42,11.424,11.428,11.432,11.436,11.44,11.444,11.448,11.452,11.456,11.46,11.46,11.924,11.927999999999999,11.931999999999999,11.936,11.94,11.943999999999999,11.947999999999999,11.952,11.956,11.959999999999999,11.963999999999999,11.968,11.972,11.975999999999999,11.979999999999999,11.984,11.988,11.991999999999999,11.995999999999999,12.0,12.004,12.008,12.011999999999999,12.016,12.02,12.024,12.027999999999999,12.032,12.036,12.04,12.043999999999999,12.048,12.052,12.056,12.059999999999999,12.064,12.068,12.072,12.075999999999999,12.08,12.084,12.088,12.091999999999999,12.096,12.1,12.104,12.107999999999999,12.112,12.116,12.12,12.123999999999999,12.128,12.132,12.136,12.139999999999999,12.144,12.148,12.152,12.155999999999999,12.16,12.164,12.168,12.171999999999999,12.176,12.18,12.184,12.187999999999999,12.192,12.196,12.2,12.203999999999999,12.208,12.212,12.216,12.219999999999999,12.224,12.228,12.232,12.235999999999999,12.24,12.244,12.248,12.251999999999999,12.256,12.26,12.264,12.267999999999999,12.272,12.276,12.28,12.283999999999999,12.288,12.292,12.296,12.299999999999999,12.304,12.308,12.312,12.315999999999999,12.32,12.32,12.784,12.788,12.792,12.796000000000001,12.8,12.804,12.808,12.812000000000001,12.816,12.82,12.824,12.828000000000001,12.832,12.836,12.84,12.844000000000001,12.848,12.852,12.856,12.860000000000001,12.864,12.868,12.872,12.876000000000001,12.88,12.884,12.888,12.892000000000001,12.896,12.9,12.904,12.908000000000001,12.912,12.916,12.92,12.924000000000001,12.928,12.932,12.936,12.940000000000001,12.944,12.948,12.952,12.956000000000001,12.96,12.964,12.968,12.972000000000001,12.976,12.98,12.984,12.988000000000001,12.992,12.996,13.0,13.004000000000001,13.008000000000001,13.012,13.016,13.020000000000001,13.024000000000001,13.028,13.032,13.036000000000001,13.040000000000001,13.044,13.048,13.052000000000001,13.056000000000001,13.06,13.064,13.068000000000001,13.072000000000001,13.076,13.08,13.084000000000001,13.088000000000001,13.092,13.096,13.100000000000001,13.104000000000001,13.108,13.112,13.116000000000001,13.120000000000001,13.124,13.128,13.132000000000001,13.136000000000001,13.14,13.144,13.148000000000001,13.152000000000001,13.156,13.16,13.164000000000001,13.168000000000001,13.172,13.176,13.180000000000001,13.180000000000001,13.644,13.648,13.652,13.656,13.66,13.664,13.668,13.672,13.676,13.68,13.684,13.688,13.692,13.696,13.7,13.704,13.708,13.712,13.716,13.72,13.724,13.728,13.732,13.736,13.74,13.744,13.748,13.752,13.756,13.76,13.764,13.768,13.772,13.776,13.78,13.784,13.788,13.792,13.796,13.8,13.804,13.808,13.812,13.816,13.82,13.824,13.828,13.832,13.836,13.84,13.844,13.848,13.852,13.856,13.86,13.864,13.868,13.872,13.876,13.88,13.884,13.888,13.892,13.896,13.9,13.904,13.908,13.912,13.916,13.92,13.924,13.928,13.932,13.936,13.94,13.944,13.948,13.952,13.956,13.96,13.964,13.968,13.972,13.976,13.98,13.984,13.988,13.992,13.996,14.0,14.004,14.008000000000001,14.012,14.016,14.02,14.024000000000001,14.028,14.032,14.036,14.040000000000001,14.040000000000001,14.504,14.508,14.511999999999999,14.516,14.52,14.524,14.527999999999999,14.532,14.536,14.54,14.543999999999999,14.548,14.552,14.556,14.559999999999999,14.564,14.568,14.572,14.575999999999999,14.58,14.584,14.588,14.591999999999999,14.596,14.6,14.604,14.607999999999999,14.612,14.616,14.62,14.623999999999999,14.628,14.632,14.636,14.639999999999999,14.644,14.648,14.652,14.655999999999999,14.66,14.664,14.668,14.671999999999999,14.676,14.68,14.684,14.687999999999999,14.692,14.696,14.7,14.703999999999999,14.708,14.712,14.716,14.719999999999999,14.724,14.728,14.732,14.735999999999999,14.74,14.744,14.748,14.751999999999999,14.756,14.76,14.764,14.767999999999999,14.772,14.776,14.78,14.783999999999999,14.788,14.792,14.796,14.799999999999999,14.804,14.808,14.812,14.815999999999999,14.82,14.824,14.828,14.831999999999999,14.836,14.84,14.844,14.847999999999999,14.852,14.856,14.86,14.863999999999999,14.868,14.872,14.876,14.879999999999999,14.884,14.888,14.892,14.895999999999999,14.9,14.9,15.364,15.368,15.372,15.376000000000001,15.38,15.384,15.388,15.392000000000001,15.396,15.4,15.404,15.408000000000001,15.412,15.416,15.42,15.424000000000001,15.428,15.432,15.436,15.440000000000001,15.444,15.448,15.452,15.456000000000001,15.46,15.464,15.468,15.472000000000001,15.476,15.48,15.484,15.488000000000001,15.492,15.496,15.5,15.504000000000001,15.508000000000001,15.512,15.516,15.520000000000001,15.524000000000001,15.528,15.532,15.536000000000001,15.540000000000001,15.544,15.548,15.552000000000001,15.556000000000001,15.56,15.564,15.568000000000001,15.572000000000001,15.576,15.58,15.584000000000001,15.588000000000001,15.592,15.596,15.600000000000001,15.604000000000001,15.608,15.612,15.616000000000001,15.620000000000001,15.624,15.628,15.632000000000001,15.636000000000001,15.64,15.644,15.648000000000001,15.652000000000001,15.656,15.66,15.664000000000001,15.668000000000001,15.672,15.676,15.680000000000001,15.684000000000001,15.688,15.692,15.696000000000002,15.700000000000001,15.704,15.708,15.712000000000002,15.716000000000001,15.72,15.724,15.728000000000002,15.732000000000001,15.736,15.74,15.744000000000002,15.748000000000001,15.752,15.756,15.760000000000002,15.760000000000002,16.223,16.227,16.230999999999998,16.235,16.238999999999997,16.243,16.247,16.250999999999998,16.255,16.259,16.262999999999998,16.267,16.270999999999997,16.275,16.279,16.282999999999998,16.287,16.291,16.294999999999998,16.299,16.302999999999997,16.307,16.311,16.314999999999998,16.319,16.323,16.326999999999998,16.331,16.334999999999997,16.339,16.343,16.346999999999998,16.351,16.355,16.358999999999998,16.363,16.366999999999997,16.371,16.375,16.378999999999998,16.383,16.387,16.391,16.395,16.398999999999997,16.403,16.407,16.410999999999998,16.415,16.419,16.423,16.427,16.430999999999997,16.435,16.439,16.442999999999998,16.447,16.451,16.455,16.459,16.462999999999997,16.467,16.471,16.474999999999998,16.479,16.483,16.487,16.491,16.494999999999997,16.499,16.503,16.506999999999998,16.511,16.515,16.519,16.523,16.526999999999997,16.531,16.535,16.538999999999998,16.543,16.547,16.551,16.555,16.558999999999997,16.563,16.567,16.570999999999998,16.575,16.579,16.583,16.587,16.590999999999998,16.595,16.599,16.602999999999998,16.607,16.611,16.615,16.619,16.619,17.084,17.088,17.092,17.096,17.099999999999998,17.104,17.108,17.112,17.116,17.12,17.124,17.128,17.131999999999998,17.136,17.14,17.144,17.148,17.152,17.156,17.16,17.163999999999998,17.168,17.172,17.176,17.18,17.184,17.188,17.192,17.195999999999998,17.2,17.204,17.208,17.212,17.216,17.22,17.224,17.227999999999998,17.232,17.236,17.24,17.244,17.248,17.252,17.256,17.259999999999998,17.264,17.268,17.272,17.276,17.28,17.284,17.288,17.291999999999998,17.296,17.3,17.304,17.308,17.312,17.316,17.32,17.323999999999998,17.328,17.332,17.336,17.34,17.344,17.348,17.352,17.355999999999998,17.36,17.364,17.368,17.372,17.376,17.38,17.384,17.387999999999998,17.392,17.396,17.4,17.404,17.408,17.412,17.416,17.419999999999998,17.424,17.428,17.432,17.436,17.44,17.444,17.448,17.451999999999998,17.456,17.46,17.464,17.468,17.472,17.476,17.48,17.48,17.943,17.947000000000003,17.951,17.955000000000002,17.959,17.963,17.967000000000002,17.971,17.975,17.979000000000003,17.983,17.987000000000002,17.991,17.995,17.999000000000002,18.003,18.007,18.011000000000003,18.015,18.019000000000002,18.023,18.027,18.031000000000002,18.035,18.039,18.043000000000003,18.047,18.051000000000002,18.055,18.059,18.063000000000002,18.067,18.071,18.075000000000003,18.079,18.083000000000002,18.087,18.091,18.095000000000002,18.099,18.103,18.107000000000003,18.111,18.115000000000002,18.119,18.123,18.127000000000002,18.131,18.135,18.139000000000003,18.143,18.147000000000002,18.151,18.155,18.159000000000002,18.163,18.167,18.171000000000003,18.175,18.179000000000002,18.183,18.187,18.191000000000003,18.195,18.199,18.203000000000003,18.207,18.211000000000002,18.215,18.219,18.223000000000003,18.227,18.231,18.235000000000003,18.239,18.243000000000002,18.247,18.251,18.255000000000003,18.259,18.263,18.267000000000003,18.271,18.275000000000002,18.279,18.283,18.287000000000003,18.291,18.295,18.299000000000003,18.303,18.307000000000002,18.311,18.315,18.319000000000003,18.323,18.327,18.331000000000003,18.335,18.339000000000002,18.339000000000002,18.803,18.807000000000002,18.811,18.815,18.819,18.823,18.827,18.831,18.835,18.839000000000002,18.843,18.847,18.851,18.855,18.859,18.863,18.867,18.871000000000002,18.875,18.879,18.883,18.887,18.891000000000002,18.895,18.899,18.903000000000002,18.907,18.911,18.915,18.919,18.923000000000002,18.927,18.931,18.935000000000002,18.939,18.943,18.947,18.951,18.955000000000002,18.959,18.963,18.967000000000002,18.971,18.975,18.979,18.983,18.987000000000002,18.991,18.995,18.999000000000002,19.003,19.007,19.011,19.015,19.019000000000002,19.023,19.027,19.031000000000002,19.035,19.039,19.043,19.047,19.051000000000002,19.055,19.059,19.063000000000002,19.067,19.071,19.075,19.079,19.083000000000002,19.087,19.091,19.095000000000002,19.099,19.103,19.107,19.111,19.115000000000002,19.119,19.123,19.127000000000002,19.131,19.135,19.139,19.143,19.147000000000002,19.151,19.155,19.159000000000002,19.163,19.167,19.171,19.175,19.179000000000002,19.183,19.187,19.191000000000003,19.195,19.199,19.199,19.663,19.667,19.671,19.675,19.679,19.683,19.687,19.691,19.695,19.699,19.703,19.707,19.711,19.715,19.719,19.723,19.727,19.731,19.735,19.739,19.743,19.747,19.751,19.755,19.759,19.763,19.767,19.771,19.775,19.779,19.783,19.787,19.791,19.795,19.799,19.803,19.807,19.811,19.815,19.819,19.823,19.827,19.831,19.835,19.839,19.843,19.847,19.851,19.855,19.859,19.863,19.867,19.871,19.875,19.879,19.883,19.887,19.891000000000002,19.895,19.899,19.903,19.907,19.911,19.915,19.919,19.923000000000002,19.927,19.931,19.935,19.939,19.943,19.947,19.951,19.955000000000002,19.959,19.963,19.967,19.971,19.975,19.979,19.983,19.987000000000002,19.991,19.995,19.999,20.003,20.007,20.011,20.015,20.019000000000002,20.023,20.027,20.031,20.035,20.039,20.043,20.047,20.051000000000002,20.055,20.059,20.059,20.523,20.527,20.531,20.535,20.538999999999998,20.543,20.547,20.551,20.555,20.559,20.563,20.567,20.570999999999998,20.575,20.579,20.583,20.587,20.591,20.595,20.599,20.602999999999998,20.607,20.611,20.615,20.619,20.623,20.627,20.631,20.634999999999998,20.639,20.643,20.647,20.651,20.655,20.659,20.663,20.666999999999998,20.671,20.675,20.679,20.683,20.687,20.691,20.695,20.698999999999998,20.703,20.707,20.711,20.715,20.719,20.723,20.727,20.730999999999998,20.735,20.739,20.743,20.747,20.751,20.755,20.759,20.762999999999998,20.767,20.771,20.775,20.779,20.783,20.787,20.791,20.794999999999998,20.799,20.803,20.807,20.811,20.815,20.819,20.823,20.826999999999998,20.831,20.835,20.839,20.843,20.847,20.851,20.855,20.858999999999998,20.863,20.867,20.871,20.875,20.879,20.883,20.887,20.891,20.895,20.899,20.903,20.907,20.911,20.915,20.919,20.919,21.383,21.387,21.391,21.395,21.398999999999997,21.403,21.407,21.410999999999998,21.415,21.419,21.423,21.427,21.430999999999997,21.435,21.439,21.442999999999998,21.447,21.451,21.455,21.459,21.462999999999997,21.467,21.471,21.474999999999998,21.479,21.483,21.487,21.491,21.494999999999997,21.499,21.503,21.506999999999998,21.511,21.515,21.519,21.523,21.526999999999997,21.531,21.535,21.538999999999998,21.543,21.547,21.551,21.555,21.558999999999997,21.563,21.567,21.570999999999998,21.575,21.579,21.583,21.587,21.590999999999998,21.595,21.599,21.602999999999998,21.607,21.611,21.615,21.619,21.622999999999998,21.627,21.631,21.634999999999998,21.639,21.643,21.647,21.651,21.654999999999998,21.659,21.663,21.666999999999998,21.671,21.675,21.679,21.683,21.686999999999998,21.691,21.695,21.698999999999998,21.703,21.707,21.711,21.715,21.718999999999998,21.723,21.727,21.730999999999998,21.735,21.739,21.743,21.747,21.750999999999998,21.755,21.759,21.762999999999998,21.767,21.771,21.775,21.779,21.779,22.243000000000002,22.247000000000003,22.251,22.255000000000003,22.259,22.263,22.267000000000003,22.271,22.275000000000002,22.279000000000003,22.283,22.287000000000003,22.291,22.295,22.299000000000003,22.303,22.307000000000002,22.311000000000003,22.315,22.319000000000003,22.323,22.327,22.331000000000003,22.335,22.339000000000002,22.343000000000004,22.347,22.351000000000003,22.355,22.359,22.363000000000003,22.367,22.371000000000002,22.375000000000004,22.379,22.383000000000003,22.387,22.391000000000002,22.395000000000003,22.399,22.403000000000002,22.407000000000004,22.411,22.415000000000003,22.419,22.423000000000002,22.427000000000003,22.431,22.435000000000002,22.439000000000004,22.443,22.447000000000003,22.451,22.455000000000002,22.459000000000003,22.463,22.467000000000002,22.471000000000004,22.475,22.479000000000003,22.483,22.487000000000002,22.491000000000003,22.495,22.499000000000002,22.503000000000004,22.507,22.511000000000003,22.515,22.519000000000002,22.523000000000003,22.527,22.531000000000002,22.535000000000004,22.539,22.543000000000003,22.547,22.551000000000002,22.555000000000003,22.559,22.563000000000002,22.567000000000004,22.571,22.575000000000003,22.579,22.583000000000002,22.587000000000003,22.591,22.595000000000002,22.599000000000004,22.603,22.607000000000003,22.611,22.615000000000002,22.619000000000003,22.623,22.627000000000002,22.631000000000004,22.635,22.639000000000003,22.639000000000003,23.103,23.107000000000003,23.111,23.115000000000002,23.119,23.123,23.127000000000002,23.131,23.135,23.139000000000003,23.143,23.147000000000002,23.151,23.155,23.159000000000002,23.163,23.167,23.171000000000003,23.175,23.179000000000002,23.183,23.187,23.191000000000003,23.195,23.199,23.203000000000003,23.207,23.211000000000002,23.215,23.219,23.223000000000003,23.227,23.231,23.235000000000003,23.239,23.243000000000002,23.247,23.251,23.255000000000003,23.259,23.263,23.267000000000003,23.271,23.275000000000002,23.279,23.283,23.287000000000003,23.291,23.295,23.299000000000003,23.303,23.307000000000002,23.311,23.315,23.319000000000003,23.323,23.327,23.331000000000003,23.335,23.339000000000002,23.343,23.347,23.351000000000003,23.355,23.359,23.363000000000003,23.367,23.371000000000002,23.375,23.379,23.383000000000003,23.387,23.391000000000002,23.395000000000003,23.399,23.403000000000002,23.407,23.411,23.415000000000003,23.419,23.423000000000002,23.427000000000003,23.431,23.435000000000002,23.439,23.443,23.447000000000003,23.451,23.455000000000002,23.459000000000003,23.463,23.467000000000002,23.471,23.475,23.479000000000003,23.483,23.487000000000002,23.491000000000003,23.495,23.499000000000002,23.499000000000002,23.963,23.967000000000002,23.971,23.975,23.979,23.983,23.987000000000002,23.991,23.995,23.999000000000002,24.003,24.007,24.011,24.015,24.019000000000002,24.023,24.027,24.031000000000002,24.035,24.039,24.043,24.047,24.051000000000002,24.055,24.059,24.063000000000002,24.067,24.071,24.075,24.079,24.083000000000002,24.087,24.091,24.095000000000002,24.099,24.103,24.107,24.111,24.115000000000002,24.119,24.123,24.127000000000002,24.131,24.135,24.139,24.143,24.147000000000002,24.151,24.155,24.159000000000002,24.163,24.167,24.171,24.175,24.179000000000002,24.183,24.187,24.191000000000003,24.195,24.199,24.203,24.207,24.211000000000002,24.215,24.219,24.223000000000003,24.227,24.231,24.235,24.239,24.243000000000002,24.247,24.251,24.255000000000003,24.259,24.263,24.267,24.271,24.275000000000002,24.279,24.283,24.287000000000003,24.291,24.295,24.299,24.303,24.307000000000002,24.311,24.315,24.319000000000003,24.323,24.327,24.331,24.335,24.339000000000002,24.343,24.347,24.351000000000003,24.355,24.359,24.359,24.823,24.827,24.831,24.835,24.839,24.843,24.847,24.851,24.855,24.859,24.863,24.867,24.871,24.875,24.879,24.883,24.887,24.891000000000002,24.895,24.899,24.903,24.907,24.911,24.915,24.919,24.923000000000002,24.927,24.931,24.935,24.939,24.943,24.947,24.951,24.955000000000002,24.959,24.963,24.967,24.971,24.975,24.979,24.983,24.987000000000002,24.991,24.995,24.999,25.003,25.007,25.011,25.015,25.019000000000002,25.023,25.027,25.031,25.035,25.039,25.043,25.047,25.051000000000002,25.055,25.059,25.063,25.067,25.071,25.075,25.079,25.083000000000002,25.087,25.091,25.095,25.099,25.103,25.107,25.111,25.115000000000002,25.119,25.123,25.127,25.131,25.135,25.139,25.143,25.147000000000002,25.151,25.155,25.159,25.163,25.167,25.171,25.175,25.179000000000002,25.183,25.187,25.191,25.195,25.199,25.203,25.207,25.211000000000002,25.215,25.219,25.219,25.683,25.687,25.691,25.695,25.698999999999998,25.703,25.707,25.711,25.715,25.719,25.723,25.727,25.730999999999998,25.735,25.739,25.743,25.747,25.751,25.755,25.759,25.762999999999998,25.767,25.771,25.775,25.779,25.783,25.787,25.791,25.794999999999998,25.799,25.803,25.807,25.811,25.815,25.819,25.823,25.826999999999998,25.831,25.835,25.839,25.843,25.847,25.851,25.855,25.858999999999998,25.863,25.867,25.871,25.875,25.879,25.883,25.887,25.891,25.895,25.899,25.903,25.907,25.911,25.915,25.919,25.923,25.927,25.931,25.935,25.939,25.943,25.947,25.951,25.955,25.959,25.963,25.967,25.971,25.975,25.979,25.983,25.987,25.991,25.995,25.999,26.003,26.007,26.011,26.015,26.019,26.023,26.027,26.031,26.035,26.039,26.043,26.047,26.051,26.055,26.059,26.063,26.067,26.071,26.075,26.079,26.079,26.543,26.547,26.551,26.555,26.558999999999997,26.563,26.567,26.570999999999998,26.575,26.579,26.583,26.587,26.590999999999998,26.595,26.599,26.602999999999998,26.607,26.611,26.615,26.619,26.622999999999998,26.627,26.631,26.634999999999998,26.639,26.643,26.647,26.651,26.654999999999998,26.659,26.663,26.666999999999998,26.671,26.675,26.679,26.683,26.686999999999998,26.691,26.695,26.698999999999998,26.703,26.707,26.711,26.715,26.718999999999998,26.723,26.727,26.730999999999998,26.735,26.739,26.743,26.747,26.750999999999998,26.755,26.759,26.762999999999998,26.767,26.771,26.775,26.779,26.782999999999998,26.787,26.791,26.794999999999998,26.799,26.803,26.807,26.811,26.814999999999998,26.819,26.823,26.826999999999998,26.831,26.835,26.839,26.843,26.846999999999998,26.851,26.855,26.858999999999998,26.863,26.867,26.871,26.875,26.878999999999998,26.883,26.887,26.891,26.895,26.899,26.903,26.907,26.910999999999998,26.915,26.919,26.923,26.927,26.931,26.935,26.939,26.939,27.403000000000002,27.407000000000004,27.411,27.415000000000003,27.419,27.423000000000002,27.427000000000003,27.431,27.435000000000002,27.439000000000004,27.443,27.447000000000003,27.451,27.455000000000002,27.459000000000003,27.463,27.467000000000002,27.471000000000004,27.475,27.479000000000003,27.483,27.487000000000002,27.491000000000003,27.495,27.499000000000002,27.503000000000004,27.507,27.511000000000003,27.515,27.519000000000002,27.523000000000003,27.527,27.531000000000002,27.535000000000004,27.539,27.543000000000003,27.547,27.551000000000002,27.555000000000003,27.559,27.563000000000002,27.567000000000004,27.571,27.575000000000003,27.579,27.583000000000002,27.587000000000003,27.591,27.595000000000002,27.599000000000004,27.603,27.607000000000003,27.611,27.615000000000002,27.619000000000003,27.623,27.627000000000002,27.631000000000004,27.635,27.639000000000003,27.643,27.647000000000002,27.651000000000003,27.655,27.659000000000002,27.663000000000004,27.667,27.671000000000003,27.675,27.679000000000002,27.683000000000003,27.687,27.691000000000003,27.695000000000004,27.699,27.703000000000003,27.707,27.711000000000002,27.715000000000003,27.719,27.723000000000003,27.727000000000004,27.731,27.735000000000003,27.739,27.743000000000002,27.747000000000003,27.751,27.755000000000003,27.759000000000004,27.763,27.767000000000003,27.771,27.775000000000002,27.779000000000003,27.783,27.787000000000003,27.791000000000004,27.795,27.799000000000003,27.799000000000003,28.263,28.267000000000003,28.271,28.275000000000002,28.279,28.283,28.287000000000003,28.291,28.295,28.299000000000003,28.303,28.307000000000002,28.311,28.315,28.319000000000003,28.323,28.327,28.331000000000003,28.335,28.339000000000002,28.343,28.347,28.351000000000003,28.355,28.359,28.363000000000003,28.367,28.371000000000002,28.375,28.379,28.383000000000003,28.387,28.391000000000002,28.395000000000003,28.399,28.403000000000002,28.407,28.411,28.415000000000003,28.419,28.423000000000002,28.427000000000003,28.431,28.435000000000002,28.439,28.443,28.447000000000003,28.451,28.455000000000002,28.459000000000003,28.463,28.467000000000002,28.471,28.475,28.479000000000003,28.483,28.487000000000002,28.491000000000003,28.495,28.499000000000002,28.503,28.507,28.511000000000003,28.515,28.519000000000002,28.523000000000003,28.527,28.531000000000002,28.535,28.539,28.543000000000003,28.547,28.551000000000002,28.555000000000003,28.559,28.563000000000002,28.567,28.571,28.575000000000003,28.579,28.583000000000002,28.587000000000003,28.591,28.595000000000002,28.599,28.603,28.607000000000003,28.611,28.615000000000002,28.619000000000003,28.623,28.627000000000002,28.631,28.635,28.639000000000003,28.643,28.647000000000002,28.651000000000003,28.655,28.659000000000002,28.659000000000002,29.123,29.127000000000002,29.131,29.135,29.139,29.143,29.147000000000002,29.151,29.155,29.159000000000002,29.163,29.167,29.171,29.175,29.179000000000002,29.183,29.187,29.191000000000003,29.195,29.199,29.203,29.207,29.211000000000002,29.215,29.219,29.223000000000003,29.227,29.231,29.235,29.239,29.243000000000002,29.247,29.251,29.255000000000003,29.259,29.263,29.267,29.271,29.275000000000002,29.279,29.283,29.287000000000003,29.291,29.295,29.299,29.303,29.307000000000002,29.311,29.315,29.319000000000003,29.323,29.327,29.331,29.335,29.339000000000002,29.343,29.347,29.351000000000003,29.355,29.359,29.363,29.367,29.371000000000002,29.375,29.379,29.383000000000003,29.387,29.391000000000002,29.395,29.399,29.403000000000002,29.407,29.411,29.415000000000003,29.419,29.423000000000002,29.427,29.431,29.435000000000002,29.439,29.443,29.447000000000003,29.451,29.455000000000002,29.459,29.463,29.467000000000002,29.471,29.475,29.479000000000003,29.483,29.487000000000002,29.491,29.495,29.499000000000002,29.503,29.507,29.511000000000003,29.515,29.519000000000002,29.519000000000002,29.983,29.987000000000002,29.991,29.995,29.999,30.003,30.007,30.011,30.015,30.019000000000002,30.023,30.027,30.031,30.035,30.039,30.043,30.047,30.051000000000002,30.055,30.059,30.063,30.067,30.071,30.075,30.079,30.083000000000002,30.087,30.091,30.095,30.099,30.103,30.107,30.111,30.115000000000002,30.119,30.123,30.127,30.131,30.135,30.139,30.143,30.147000000000002,30.151,30.155,30.159,30.163,30.167,30.171,30.175,30.179000000000002,30.183,30.187,30.191,30.195,30.199,30.203,30.207,30.211000000000002,30.215,30.219,30.223,30.227,30.231,30.235,30.239,30.243000000000002,30.247,30.251,30.255,30.259,30.263,30.267,30.271,30.275000000000002,30.279,30.283,30.287,30.291,30.295,30.299,30.303,30.307000000000002,30.311,30.315,30.319,30.323,30.327,30.331,30.335,30.339000000000002,30.343,30.347,30.351,30.355,30.359,30.363,30.367,30.371000000000002,30.375,30.379,30.379,30.843,30.847,30.851,30.855,30.858999999999998,30.863,30.867,30.871,30.875,30.879,30.883,30.887,30.891,30.895,30.899,30.903,30.907,30.911,30.915,30.919,30.923,30.927,30.931,30.935,30.939,30.943,30.947,30.951,30.955,30.959,30.963,30.967,30.971,30.975,30.979,30.983,30.987,30.991,30.995,30.999,31.003,31.007,31.011,31.015,31.019,31.023,31.027,31.031,31.035,31.039,31.043,31.047,31.051,31.055,31.059,31.063,31.067,31.071,31.075,31.079,31.083,31.087,31.091,31.095,31.099,31.103,31.107,31.111,31.115,31.119,31.123,31.127,31.131,31.135,31.139,31.143,31.147,31.151,31.155,31.159,31.163,31.167,31.171,31.175,31.179,31.183,31.187,31.191,31.195,31.199,31.203,31.207,31.211,31.215,31.219,31.223,31.227,31.231,31.235,31.239,31.239,31.703,31.707,31.711,31.715,31.718999999999998,31.723,31.727,31.730999999999998,31.735,31.739,31.743,31.747,31.750999999999998,31.755,31.759,31.762999999999998,31.767,31.771,31.775,31.779,31.782999999999998,31.787,31.791,31.794999999999998,31.799,31.803,31.807,31.811,31.814999999999998,31.819,31.823,31.826999999999998,31.831,31.835,31.839,31.843,31.846999999999998,31.851,31.855,31.858999999999998,31.863,31.867,31.871,31.875,31.878999999999998,31.883,31.887,31.891,31.895,31.899,31.903,31.907,31.910999999999998,31.915,31.919,31.923,31.927,31.931,31.935,31.939,31.942999999999998,31.947,31.951,31.955,31.959,31.963,31.967,31.971,31.974999999999998,31.979,31.983,31.987,31.991,31.995,31.999,32.003,32.007,32.011,32.015,32.019,32.022999999999996,32.027,32.031,32.035,32.039,32.043,32.047,32.051,32.055,32.059,32.063,32.067,32.071,32.075,32.079,32.083,32.086999999999996,32.091,32.095,32.099,32.099,32.563,32.567,32.571000000000005,32.575,32.579,32.583000000000006,32.587,32.591,32.595,32.599000000000004,32.603,32.607,32.611000000000004,32.615,32.619,32.623000000000005,32.627,32.631,32.635000000000005,32.639,32.643,32.647000000000006,32.651,32.655,32.659,32.663000000000004,32.667,32.671,32.675000000000004,32.679,32.683,32.687000000000005,32.691,32.695,32.699000000000005,32.703,32.707,32.711000000000006,32.715,32.719,32.723,32.727000000000004,32.731,32.735,32.739000000000004,32.743,32.747,32.751000000000005,32.755,32.759,32.763000000000005,32.767,32.771,32.775000000000006,32.779,32.783,32.787,32.791000000000004,32.795,32.799,32.803000000000004,32.807,32.811,32.815000000000005,32.819,32.823,32.827000000000005,32.831,32.835,32.839000000000006,32.843,32.847,32.851,32.855000000000004,32.859,32.863,32.867000000000004,32.871,32.875,32.879000000000005,32.883,32.887,32.891000000000005,32.895,32.899,32.903000000000006,32.907000000000004,32.911,32.915,32.919000000000004,32.923,32.927,32.931000000000004,32.935,32.939,32.943000000000005,32.947,32.951,32.955000000000005,32.959,32.959,33.423,33.427,33.431000000000004,33.435,33.439,33.443000000000005,33.447,33.451,33.455,33.459,33.463,33.467,33.471000000000004,33.475,33.479,33.483000000000004,33.487,33.491,33.495000000000005,33.499,33.503,33.507000000000005,33.511,33.515,33.519,33.523,33.527,33.531,33.535000000000004,33.539,33.543,33.547000000000004,33.551,33.555,33.559000000000005,33.563,33.567,33.571000000000005,33.575,33.579,33.583,33.587,33.591,33.595,33.599000000000004,33.603,33.607,33.611000000000004,33.615,33.619,33.623000000000005,33.627,33.631,33.635000000000005,33.639,33.643,33.647,33.651,33.655,33.659,33.663000000000004,33.667,33.671,33.675000000000004,33.679,33.683,33.687000000000005,33.691,33.695,33.699000000000005,33.703,33.707,33.711,33.715,33.719,33.723,33.727000000000004,33.731,33.735,33.739000000000004,33.743,33.747,33.751000000000005,33.755,33.759,33.763000000000005,33.767,33.771,33.775,33.779,33.783,33.787,33.791000000000004,33.795,33.799,33.803000000000004,33.807,33.811,33.815000000000005,33.819,33.819,34.283,34.287,34.291000000000004,34.295,34.299,34.303000000000004,34.307,34.311,34.315,34.319,34.323,34.327,34.331,34.335,34.339,34.343,34.347,34.351,34.355000000000004,34.359,34.363,34.367000000000004,34.371,34.375,34.379,34.383,34.387,34.391,34.395,34.399,34.403,34.407000000000004,34.411,34.415,34.419000000000004,34.423,34.427,34.431000000000004,34.435,34.439,34.443,34.447,34.451,34.455,34.459,34.463,34.467,34.471000000000004,34.475,34.479,34.483000000000004,34.487,34.491,34.495000000000005,34.499,34.503,34.507,34.511,34.515,34.519,34.523,34.527,34.531,34.535000000000004,34.539,34.543,34.547000000000004,34.551,34.555,34.559000000000005,34.563,34.567,34.571,34.575,34.579,34.583,34.587,34.591,34.595,34.599000000000004,34.603,34.607,34.611000000000004,34.615,34.619,34.623000000000005,34.627,34.631,34.635,34.639,34.643,34.647,34.651,34.655,34.659,34.663000000000004,34.667,34.671,34.675000000000004,34.679,34.679,35.143,35.147,35.151,35.155,35.159,35.163000000000004,35.167,35.171,35.175,35.179,35.183,35.187,35.191,35.195,35.199,35.203,35.207,35.211,35.215,35.219,35.223,35.227000000000004,35.231,35.235,35.239,35.243,35.247,35.251,35.255,35.259,35.263,35.267,35.271,35.275,35.279,35.283,35.287,35.291000000000004,35.295,35.299,35.303,35.307,35.311,35.315,35.319,35.323,35.327,35.331,35.335,35.339,35.343,35.347,35.351,35.355000000000004,35.359,35.363,35.367,35.371,35.375,35.379,35.383,35.387,35.391,35.395,35.399,35.403,35.407000000000004,35.411,35.415,35.419000000000004,35.423,35.427,35.431,35.435,35.439,35.443,35.447,35.451,35.455,35.459,35.463,35.467,35.471000000000004,35.475,35.479,35.483000000000004,35.487,35.491,35.495,35.499,35.503,35.507,35.511,35.515,35.519,35.523,35.527,35.531,35.535000000000004,35.539,35.539,36.003,36.007,36.011,36.015,36.019,36.023,36.027,36.031,36.035,36.039,36.043,36.047,36.051,36.055,36.059,36.063,36.067,36.071,36.075,36.079,36.083,36.087,36.091,36.095,36.099,36.103,36.107,36.111,36.115,36.119,36.123,36.127,36.131,36.135,36.139,36.143,36.147,36.151,36.155,36.159,36.163,36.167,36.171,36.175,36.179,36.183,36.187,36.191,36.195,36.199,36.203,36.207,36.211,36.215,36.219,36.223,36.227,36.231,36.235,36.239,36.243,36.247,36.251,36.255,36.259,36.263,36.267,36.271,36.275,36.279,36.283,36.287,36.291,36.295,36.299,36.303,36.307,36.311,36.315,36.319,36.323,36.327,36.331,36.335,36.339,36.343,36.347,36.351,36.355,36.359,36.363,36.367,36.371,36.375,36.379,36.383,36.387,36.391,36.395,36.399,36.399,36.863,36.867,36.871,36.875,36.879,36.883,36.887,36.891,36.894999999999996,36.899,36.903,36.907,36.911,36.915,36.919,36.923,36.927,36.931,36.935,36.939,36.943,36.947,36.951,36.955,36.958999999999996,36.963,36.967,36.971,36.975,36.979,36.983,36.987,36.991,36.995,36.999,37.003,37.007,37.011,37.015,37.019,37.022999999999996,37.027,37.031,37.035,37.039,37.043,37.047,37.051,37.055,37.059,37.063,37.067,37.071,37.075,37.079,37.083,37.086999999999996,37.091,37.095,37.099,37.103,37.107,37.111,37.115,37.119,37.123,37.127,37.131,37.135,37.139,37.143,37.147,37.150999999999996,37.155,37.159,37.163,37.167,37.171,37.175,37.179,37.183,37.187,37.191,37.195,37.199,37.203,37.207,37.211,37.214999999999996,37.219,37.223,37.227,37.231,37.235,37.239,37.243,37.247,37.251,37.255,37.259,37.259,37.723,37.727,37.731,37.735,37.739,37.743,37.747,37.751,37.754999999999995,37.759,37.763,37.766999999999996,37.771,37.775,37.778999999999996,37.783,37.787,37.791,37.795,37.799,37.803,37.807,37.811,37.815,37.818999999999996,37.823,37.827,37.830999999999996,37.835,37.839,37.842999999999996,37.847,37.851,37.855,37.859,37.863,37.867,37.871,37.875,37.879,37.882999999999996,37.887,37.891,37.894999999999996,37.899,37.903,37.907,37.911,37.915,37.919,37.923,37.927,37.931,37.935,37.939,37.943,37.946999999999996,37.951,37.955,37.958999999999996,37.963,37.967,37.971,37.975,37.979,37.983,37.987,37.991,37.995,37.999,38.003,38.007,38.010999999999996,38.015,38.019,38.022999999999996,38.027,38.031,38.035,38.039,38.043,38.047,38.051,38.055,38.059,38.063,38.067,38.071,38.074999999999996,38.079,38.083,38.086999999999996,38.091,38.095,38.099,38.103,38.107,38.111,38.115,38.119,38.119,38.583,38.586999999999996,38.591,38.595,38.599,38.603,38.607,38.611,38.614999999999995,38.619,38.623,38.626999999999995,38.631,38.635,38.638999999999996,38.643,38.647,38.650999999999996,38.655,38.659,38.663,38.667,38.671,38.675,38.678999999999995,38.683,38.687,38.690999999999995,38.695,38.699,38.702999999999996,38.707,38.711,38.714999999999996,38.719,38.723,38.727,38.731,38.735,38.739,38.742999999999995,38.747,38.751,38.754999999999995,38.759,38.763,38.766999999999996,38.771,38.775,38.778999999999996,38.783,38.787,38.791,38.795,38.799,38.803,38.806999999999995,38.811,38.815,38.818999999999996,38.823,38.827,38.830999999999996,38.835,38.839,38.842999999999996,38.847,38.851,38.855,38.859,38.863,38.867,38.870999999999995,38.875,38.879,38.882999999999996,38.887,38.891,38.894999999999996,38.899,38.903,38.907,38.911,38.915,38.919,38.923,38.927,38.931,38.934999999999995,38.939,38.943,38.946999999999996,38.951,38.955,38.958999999999996,38.963,38.967,38.971,38.975,38.979,38.979,39.443,39.446999999999996,39.451,39.455,39.458999999999996,39.463,39.467,39.471,39.474999999999994,39.479,39.483,39.486999999999995,39.491,39.495,39.498999999999995,39.503,39.507,39.510999999999996,39.515,39.519,39.522999999999996,39.527,39.531,39.535,39.538999999999994,39.543,39.547,39.550999999999995,39.555,39.559,39.562999999999995,39.567,39.571,39.574999999999996,39.579,39.583,39.586999999999996,39.591,39.595,39.599,39.602999999999994,39.607,39.611,39.614999999999995,39.619,39.623,39.626999999999995,39.631,39.635,39.638999999999996,39.643,39.647,39.650999999999996,39.655,39.659,39.663,39.666999999999994,39.671,39.675,39.678999999999995,39.683,39.687,39.690999999999995,39.695,39.699,39.702999999999996,39.707,39.711,39.714999999999996,39.719,39.723,39.727,39.730999999999995,39.735,39.739,39.742999999999995,39.747,39.751,39.754999999999995,39.759,39.763,39.766999999999996,39.771,39.775,39.778999999999996,39.783,39.787,39.791,39.794999999999995,39.799,39.803,39.806999999999995,39.811,39.815,39.818999999999996,39.823,39.827,39.830999999999996,39.835,39.839,39.839,40.303000000000004,40.307,40.31100000000001,40.315000000000005,40.319,40.32300000000001,40.327000000000005,40.331,40.335,40.339000000000006,40.343,40.347,40.351000000000006,40.355000000000004,40.359,40.36300000000001,40.367000000000004,40.371,40.37500000000001,40.379000000000005,40.383,40.38700000000001,40.391000000000005,40.395,40.399,40.403000000000006,40.407000000000004,40.411,40.415000000000006,40.419000000000004,40.423,40.42700000000001,40.431000000000004,40.435,40.43900000000001,40.443000000000005,40.447,40.45100000000001,40.455000000000005,40.459,40.463,40.467000000000006,40.471000000000004,40.475,40.479000000000006,40.483000000000004,40.487,40.49100000000001,40.495000000000005,40.499,40.50300000000001,40.507000000000005,40.511,40.51500000000001,40.519000000000005,40.523,40.527,40.531000000000006,40.535000000000004,40.539,40.543000000000006,40.547000000000004,40.551,40.55500000000001,40.559000000000005,40.563,40.56700000000001,40.571000000000005,40.575,40.57900000000001,40.583000000000006,40.587,40.591,40.595000000000006,40.599000000000004,40.603,40.607000000000006,40.611000000000004,40.615,40.61900000000001,40.623000000000005,40.627,40.63100000000001,40.635000000000005,40.639,40.64300000000001,40.647000000000006,40.651,40.655,40.659000000000006,40.663000000000004,40.667,40.67100000000001,40.675000000000004,40.679,40.68300000000001,40.687000000000005,40.691,40.69500000000001,40.699000000000005,40.699000000000005,41.164,41.168,41.172000000000004,41.176,41.18,41.184000000000005,41.188,41.192,41.196,41.2,41.204,41.208,41.212,41.216,41.22,41.224000000000004,41.228,41.232,41.236000000000004,41.24,41.244,41.248000000000005,41.252,41.256,41.26,41.264,41.268,41.272,41.276,41.28,41.284,41.288000000000004,41.292,41.296,41.300000000000004,41.304,41.308,41.312000000000005,41.316,41.32,41.324,41.328,41.332,41.336,41.34,41.344,41.348,41.352000000000004,41.356,41.36,41.364000000000004,41.368,41.372,41.376000000000005,41.38,41.384,41.388,41.392,41.396,41.4,41.404,41.408,41.412,41.416000000000004,41.42,41.424,41.428000000000004,41.432,41.436,41.440000000000005,41.444,41.448,41.452,41.456,41.46,41.464,41.468,41.472,41.476,41.480000000000004,41.484,41.488,41.492000000000004,41.496,41.5,41.504000000000005,41.508,41.512,41.516,41.52,41.524,41.528,41.532000000000004,41.536,41.54,41.544000000000004,41.548,41.552,41.556000000000004,41.56,41.56,42.024,42.028,42.032000000000004,42.036,42.04,42.044000000000004,42.048,42.052,42.056,42.06,42.064,42.068,42.072,42.076,42.08,42.084,42.088,42.092,42.096000000000004,42.1,42.104,42.108000000000004,42.112,42.116,42.12,42.124,42.128,42.132,42.136,42.14,42.144,42.148,42.152,42.156,42.160000000000004,42.164,42.168,42.172000000000004,42.176,42.18,42.184,42.188,42.192,42.196,42.2,42.204,42.208,42.212,42.216,42.22,42.224000000000004,42.228,42.232,42.236000000000004,42.24,42.244,42.248,42.252,42.256,42.26,42.264,42.268,42.272,42.276,42.28,42.284,42.288000000000004,42.292,42.296,42.300000000000004,42.304,42.308,42.312,42.316,42.32,42.324,42.328,42.332,42.336,42.34,42.344,42.348,42.352000000000004,42.356,42.36,42.364000000000004,42.368,42.372,42.376,42.38,42.384,42.388,42.392,42.396,42.4,42.404,42.408,42.412,42.416000000000004,42.42,42.42,42.884,42.888,42.892,42.896,42.9,42.904,42.908,42.912,42.916,42.92,42.924,42.928,42.932,42.936,42.94,42.944,42.948,42.952,42.956,42.96,42.964,42.968,42.972,42.976,42.98,42.984,42.988,42.992,42.996,43.0,43.004,43.008,43.012,43.016,43.02,43.024,43.028,43.032000000000004,43.036,43.04,43.044,43.048,43.052,43.056,43.06,43.064,43.068,43.072,43.076,43.08,43.084,43.088,43.092,43.096000000000004,43.1,43.104,43.108,43.112,43.116,43.12,43.124,43.128,43.132,43.136,43.14,43.144,43.148,43.152,43.156,43.160000000000004,43.164,43.168,43.172,43.176,43.18,43.184,43.188,43.192,43.196,43.2,43.204,43.208,43.212,43.216,43.22,43.224000000000004,43.228,43.232,43.236,43.24,43.244,43.248,43.252,43.256,43.26,43.264,43.268,43.272,43.276,43.28,43.28,43.744,43.748,43.752,43.756,43.76,43.764,43.768,43.772,43.775999999999996,43.78,43.784,43.788,43.792,43.796,43.8,43.804,43.808,43.812,43.816,43.82,43.824,43.828,43.832,43.836,43.839999999999996,43.844,43.848,43.852,43.856,43.86,43.864,43.868,43.872,43.876,43.88,43.884,43.888,43.892,43.896,43.9,43.903999999999996,43.908,43.912,43.916,43.92,43.924,43.928,43.932,43.936,43.94,43.944,43.948,43.952,43.956,43.96,43.964,43.967999999999996,43.972,43.976,43.98,43.984,43.988,43.992,43.996,44.0,44.004,44.008,44.012,44.016,44.02,44.024,44.028,44.032,44.036,44.04,44.044,44.048,44.052,44.056,44.06,44.064,44.068,44.072,44.076,44.08,44.084,44.088,44.092,44.096,44.1,44.104,44.108,44.112,44.116,44.12,44.124,44.128,44.132,44.136,44.14,44.14,44.604,44.608,44.612,44.616,44.62,44.624,44.628,44.632,44.635999999999996,44.64,44.644,44.647999999999996,44.652,44.656,44.66,44.664,44.668,44.672,44.676,44.68,44.684,44.688,44.692,44.696,44.699999999999996,44.704,44.708,44.711999999999996,44.716,44.72,44.724,44.728,44.732,44.736,44.74,44.744,44.748,44.752,44.756,44.76,44.763999999999996,44.768,44.772,44.775999999999996,44.78,44.784,44.788,44.792,44.796,44.8,44.804,44.808,44.812,44.816,44.82,44.824,44.827999999999996,44.832,44.836,44.839999999999996,44.844,44.848,44.852,44.856,44.86,44.864,44.868,44.872,44.876,44.88,44.884,44.888,44.891999999999996,44.896,44.9,44.903999999999996,44.908,44.912,44.916,44.92,44.924,44.928,44.932,44.936,44.94,44.944,44.948,44.952,44.955999999999996,44.96,44.964,44.967999999999996,44.972,44.976,44.98,44.984,44.988,44.992,44.996,45.0,45.0,45.464,45.467999999999996,45.472,45.476,45.48,45.484,45.488,45.492,45.495999999999995,45.5,45.504,45.507999999999996,45.512,45.516,45.519999999999996,45.524,45.528,45.532,45.536,45.54,45.544,45.548,45.552,45.556,45.559999999999995,45.564,45.568,45.571999999999996,45.576,45.58,45.583999999999996,45.588,45.592,45.596,45.6,45.604,45.608,45.612,45.616,45.62,45.623999999999995,45.628,45.632,45.635999999999996,45.64,45.644,45.647999999999996,45.652,45.656,45.66,45.664,45.668,45.672,45.676,45.68,45.684,45.687999999999995,45.692,45.696,45.699999999999996,45.704,45.708,45.711999999999996,45.716,45.72,45.724,45.728,45.732,45.736,45.74,45.744,45.748,45.751999999999995,45.756,45.76,45.763999999999996,45.768,45.772,45.775999999999996,45.78,45.784,45.788,45.792,45.796,45.8,45.804,45.808,45.812,45.815999999999995,45.82,45.824,45.827999999999996,45.832,45.836,45.839999999999996,45.844,45.848,45.852,45.856,45.86,45.86,46.324,46.327999999999996,46.332,46.336,46.339999999999996,46.344,46.348,46.352,46.355999999999995,46.36,46.364,46.367999999999995,46.372,46.376,46.379999999999995,46.384,46.388,46.391999999999996,46.396,46.4,46.403999999999996,46.408,46.412,46.416,46.419999999999995,46.424,46.428,46.431999999999995,46.436,46.44,46.443999999999996,46.448,46.452,46.455999999999996,46.46,46.464,46.467999999999996,46.472,46.476,46.48,46.483999999999995,46.488,46.492,46.495999999999995,46.5,46.504,46.507999999999996,46.512,46.516,46.519999999999996,46.524,46.528,46.532,46.536,46.54,46.544,46.547999999999995,46.552,46.556,46.559999999999995,46.564,46.568,46.571999999999996,46.576,46.58,46.583999999999996,46.588,46.592,46.596,46.6,46.604,46.608,46.611999999999995,46.616,46.62,46.623999999999995,46.628,46.632,46.635999999999996,46.64,46.644,46.647999999999996,46.652,46.656,46.66,46.664,46.668,46.672,46.675999999999995,46.68,46.684,46.687999999999995,46.692,46.696,46.699999999999996,46.704,46.708,46.711999999999996,46.716,46.72,46.72,47.184,47.187999999999995,47.192,47.196,47.199999999999996,47.204,47.208,47.211999999999996,47.215999999999994,47.22,47.224,47.227999999999994,47.232,47.236,47.239999999999995,47.244,47.248,47.251999999999995,47.256,47.26,47.263999999999996,47.268,47.272,47.275999999999996,47.279999999999994,47.284,47.288,47.291999999999994,47.296,47.3,47.303999999999995,47.308,47.312,47.315999999999995,47.32,47.324,47.327999999999996,47.332,47.336,47.339999999999996,47.343999999999994,47.348,47.352,47.355999999999995,47.36,47.364,47.367999999999995,47.372,47.376,47.379999999999995,47.384,47.388,47.391999999999996,47.396,47.4,47.403999999999996,47.407999999999994,47.412,47.416,47.419999999999995,47.424,47.428,47.431999999999995,47.436,47.44,47.443999999999996,47.448,47.452,47.455999999999996,47.46,47.464,47.467999999999996,47.471999999999994,47.476,47.48,47.483999999999995,47.488,47.492,47.495999999999995,47.5,47.504,47.507999999999996,47.512,47.516,47.519999999999996,47.524,47.528,47.532,47.535999999999994,47.54,47.544,47.547999999999995,47.552,47.556,47.559999999999995,47.564,47.568,47.571999999999996,47.576,47.58,47.58,48.044000000000004,48.048,48.05200000000001,48.056000000000004,48.06,48.06400000000001,48.068000000000005,48.072,48.076,48.080000000000005,48.084,48.088,48.092000000000006,48.096000000000004,48.1,48.104000000000006,48.108000000000004,48.112,48.11600000000001,48.120000000000005,48.124,48.12800000000001,48.132000000000005,48.136,48.14,48.144000000000005,48.148,48.152,48.156000000000006,48.160000000000004,48.164,48.168000000000006,48.172000000000004,48.176,48.18000000000001,48.184000000000005,48.188,48.19200000000001,48.196000000000005,48.2,48.204,48.208000000000006,48.212,48.216,48.220000000000006,48.224000000000004,48.228,48.232000000000006,48.236000000000004,48.24,48.24400000000001,48.248000000000005,48.252,48.25600000000001,48.260000000000005,48.264,48.268,48.272000000000006,48.276,48.28,48.284000000000006,48.288000000000004,48.292,48.29600000000001,48.300000000000004,48.304,48.30800000000001,48.312000000000005,48.316,48.32000000000001,48.324000000000005,48.328,48.332,48.336000000000006,48.34,48.344,48.348000000000006,48.352000000000004,48.356,48.36000000000001,48.364000000000004,48.368,48.37200000000001,48.376000000000005,48.38,48.38400000000001,48.388000000000005,48.392,48.396,48.400000000000006,48.404,48.408,48.412000000000006,48.416000000000004,48.42,48.42400000000001,48.428000000000004,48.432,48.43600000000001,48.440000000000005,48.440000000000005,48.903,48.907,48.911,48.915,48.919,48.923,48.927,48.931,48.934999999999995,48.939,48.943,48.946999999999996,48.951,48.955,48.958999999999996,48.963,48.967,48.971,48.975,48.979,48.983,48.987,48.991,48.995,48.998999999999995,49.003,49.007,49.010999999999996,49.015,49.019,49.022999999999996,49.027,49.031,49.035,49.039,49.043,49.047,49.051,49.055,49.059,49.062999999999995,49.067,49.071,49.074999999999996,49.079,49.083,49.086999999999996,49.091,49.095,49.099,49.103,49.107,49.111,49.115,49.119,49.123,49.126999999999995,49.131,49.135,49.138999999999996,49.143,49.147,49.150999999999996,49.155,49.159,49.163,49.167,49.171,49.175,49.179,49.183,49.187,49.190999999999995,49.195,49.199,49.202999999999996,49.207,49.211,49.214999999999996,49.219,49.223,49.227,49.231,49.235,49.239,49.243,49.247,49.251,49.254999999999995,49.259,49.263,49.266999999999996,49.271,49.275,49.278999999999996,49.283,49.287,49.291,49.295,49.299,49.299,49.763,49.766999999999996,49.771,49.775,49.778999999999996,49.783,49.787,49.791,49.794999999999995,49.799,49.803,49.806999999999995,49.811,49.815,49.818999999999996,49.823,49.827,49.830999999999996,49.835,49.839,49.842999999999996,49.847,49.851,49.855,49.858999999999995,49.863,49.867,49.870999999999995,49.875,49.879,49.882999999999996,49.887,49.891,49.894999999999996,49.899,49.903,49.907,49.911,49.915,49.919,49.922999999999995,49.927,49.931,49.934999999999995,49.939,49.943,49.946999999999996,49.951,49.955,49.958999999999996,49.963,49.967,49.971,49.975,49.979,49.983,49.986999999999995,49.991,49.995,49.998999999999995,50.003,50.007,50.010999999999996,50.015,50.019,50.022999999999996,50.027,50.031,50.035,50.039,50.043,50.047,50.050999999999995,50.055,50.059,50.062999999999995,50.067,50.071,50.074999999999996,50.079,50.083,50.086999999999996,50.091,50.095,50.099,50.103,50.107,50.111,50.114999999999995,50.119,50.123,50.126999999999995,50.131,50.135,50.138999999999996,50.143,50.147,50.150999999999996,50.155,50.159,50.159,50.623,50.626999999999995,50.631,50.635,50.638999999999996,50.643,50.647,50.650999999999996,50.654999999999994,50.659,50.663,50.666999999999994,50.671,50.675,50.678999999999995,50.683,50.687,50.690999999999995,50.695,50.699,50.702999999999996,50.707,50.711,50.714999999999996,50.718999999999994,50.723,50.727,50.730999999999995,50.735,50.739,50.742999999999995,50.747,50.751,50.754999999999995,50.759,50.763,50.766999999999996,50.771,50.775,50.778999999999996,50.782999999999994,50.787,50.791,50.794999999999995,50.799,50.803,50.806999999999995,50.811,50.815,50.818999999999996,50.823,50.827,50.830999999999996,50.835,50.839,50.842999999999996,50.846999999999994,50.851,50.855,50.858999999999995,50.863,50.867,50.870999999999995,50.875,50.879,50.882999999999996,50.887,50.891,50.894999999999996,50.899,50.903,50.907,50.910999999999994,50.915,50.919,50.922999999999995,50.927,50.931,50.934999999999995,50.939,50.943,50.946999999999996,50.951,50.955,50.958999999999996,50.963,50.967,50.971,50.974999999999994,50.979,50.983,50.986999999999995,50.991,50.995,50.998999999999995,51.003,51.007,51.010999999999996,51.015,51.019,51.019,51.483000000000004,51.487,51.49100000000001,51.495000000000005,51.499,51.50300000000001,51.507000000000005,51.511,51.515,51.519000000000005,51.523,51.527,51.531000000000006,51.535000000000004,51.539,51.543000000000006,51.547000000000004,51.551,51.55500000000001,51.559000000000005,51.563,51.56700000000001,51.571000000000005,51.575,51.579,51.583000000000006,51.587,51.591,51.595000000000006,51.599000000000004,51.603,51.607000000000006,51.611000000000004,51.615,51.61900000000001,51.623000000000005,51.627,51.63100000000001,51.635000000000005,51.639,51.643,51.647000000000006,51.651,51.655,51.659000000000006,51.663000000000004,51.667,51.67100000000001,51.675000000000004,51.679,51.68300000000001,51.687000000000005,51.691,51.69500000000001,51.699000000000005,51.703,51.707,51.711000000000006,51.715,51.719,51.723000000000006,51.727000000000004,51.731,51.73500000000001,51.739000000000004,51.743,51.74700000000001,51.751000000000005,51.755,51.75900000000001,51.763000000000005,51.767,51.771,51.775000000000006,51.779,51.783,51.787000000000006,51.791000000000004,51.795,51.79900000000001,51.803000000000004,51.807,51.81100000000001,51.815000000000005,51.819,51.82300000000001,51.827000000000005,51.831,51.835,51.839000000000006,51.843,51.847,51.851000000000006,51.855000000000004,51.859,51.86300000000001,51.867000000000004,51.871,51.87500000000001,51.879000000000005,51.879000000000005,52.343,52.347,52.351000000000006,52.355000000000004,52.359,52.36300000000001,52.367000000000004,52.371,52.375,52.379000000000005,52.383,52.387,52.391000000000005,52.395,52.399,52.403000000000006,52.407000000000004,52.411,52.415000000000006,52.419000000000004,52.423,52.42700000000001,52.431000000000004,52.435,52.439,52.443000000000005,52.447,52.451,52.455000000000005,52.459,52.463,52.467000000000006,52.471000000000004,52.475,52.479000000000006,52.483000000000004,52.487,52.49100000000001,52.495000000000005,52.499,52.503,52.507000000000005,52.511,52.515,52.519000000000005,52.523,52.527,52.531000000000006,52.535000000000004,52.539,52.543000000000006,52.547000000000004,52.551,52.55500000000001,52.559000000000005,52.563,52.567,52.571000000000005,52.575,52.579,52.583000000000006,52.587,52.591,52.595000000000006,52.599000000000004,52.603,52.607000000000006,52.611000000000004,52.615,52.61900000000001,52.623000000000005,52.627,52.631,52.635000000000005,52.639,52.643,52.647000000000006,52.651,52.655,52.659000000000006,52.663000000000004,52.667,52.67100000000001,52.675000000000004,52.679,52.68300000000001,52.687000000000005,52.691,52.695,52.699000000000005,52.703,52.707,52.711000000000006,52.715,52.719,52.723000000000006,52.727000000000004,52.731,52.73500000000001,52.739000000000004,52.739000000000004,53.203,53.207,53.211000000000006,53.215,53.219,53.223000000000006,53.227000000000004,53.231,53.235,53.239000000000004,53.243,53.247,53.251000000000005,53.255,53.259,53.263000000000005,53.267,53.271,53.275000000000006,53.279,53.283,53.287000000000006,53.291000000000004,53.295,53.299,53.303000000000004,53.307,53.311,53.315000000000005,53.319,53.323,53.327000000000005,53.331,53.335,53.339000000000006,53.343,53.347,53.351000000000006,53.355000000000004,53.359,53.363,53.367000000000004,53.371,53.375,53.379000000000005,53.383,53.387,53.391000000000005,53.395,53.399,53.403000000000006,53.407000000000004,53.411,53.415000000000006,53.419000000000004,53.423,53.427,53.431000000000004,53.435,53.439,53.443000000000005,53.447,53.451,53.455000000000005,53.459,53.463,53.467000000000006,53.471000000000004,53.475,53.479000000000006,53.483000000000004,53.487,53.491,53.495000000000005,53.499,53.503,53.507000000000005,53.511,53.515,53.519000000000005,53.523,53.527,53.531000000000006,53.535000000000004,53.539,53.543000000000006,53.547000000000004,53.551,53.555,53.559000000000005,53.563,53.567,53.571000000000005,53.575,53.579,53.583000000000006,53.587,53.591,53.595000000000006,53.599000000000004,53.599000000000004,54.063,54.067,54.071000000000005,54.075,54.079,54.083000000000006,54.087,54.091,54.095,54.099000000000004,54.103,54.107,54.111000000000004,54.115,54.119,54.123000000000005,54.127,54.131,54.135000000000005,54.139,54.143,54.147000000000006,54.151,54.155,54.159,54.163000000000004,54.167,54.171,54.175000000000004,54.179,54.183,54.187000000000005,54.191,54.195,54.199000000000005,54.203,54.207,54.211000000000006,54.215,54.219,54.223,54.227000000000004,54.231,54.235,54.239000000000004,54.243,54.247,54.251000000000005,54.255,54.259,54.263000000000005,54.267,54.271,54.275000000000006,54.279,54.283,54.287,54.291000000000004,54.295,54.299,54.303000000000004,54.307,54.311,54.315000000000005,54.319,54.323,54.327000000000005,54.331,54.335,54.339000000000006,54.343,54.347,54.351,54.355000000000004,54.359,54.363,54.367000000000004,54.371,54.375,54.379000000000005,54.383,54.387,54.391000000000005,54.395,54.399,54.403000000000006,54.407000000000004,54.411,54.415,54.419000000000004,54.423,54.427,54.431000000000004,54.435,54.439,54.443000000000005,54.447,54.451,54.455000000000005,54.459,54.459,54.923,54.927,54.931000000000004,54.935,54.939,54.943000000000005,54.947,54.951,54.955,54.959,54.963,54.967,54.971000000000004,54.975,54.979,54.983000000000004,54.987,54.991,54.995000000000005,54.999,55.003,55.007000000000005,55.011,55.015,55.019,55.023,55.027,55.031,55.035000000000004,55.039,55.043,55.047000000000004,55.051,55.055,55.059000000000005,55.063,55.067,55.071000000000005,55.075,55.079,55.083,55.087,55.091,55.095,55.099000000000004,55.103,55.107,55.111000000000004,55.115,55.119,55.123000000000005,55.127,55.131,55.135000000000005,55.139,55.143,55.147,55.151,55.155,55.159,55.163000000000004,55.167,55.171,55.175000000000004,55.179,55.183,55.187000000000005,55.191,55.195,55.199000000000005,55.203,55.207,55.211,55.215,55.219,55.223,55.227000000000004,55.231,55.235,55.239000000000004,55.243,55.247,55.251000000000005,55.255,55.259,55.263000000000005,55.267,55.271,55.275,55.279,55.283,55.287,55.291000000000004,55.295,55.299,55.303000000000004,55.307,55.311,55.315000000000005,55.319,55.319,55.783,55.787,55.791000000000004,55.795,55.799,55.803000000000004,55.807,55.811,55.815,55.819,55.823,55.827,55.831,55.835,55.839,55.843,55.847,55.851,55.855000000000004,55.859,55.863,55.867000000000004,55.871,55.875,55.879,55.883,55.887,55.891,55.895,55.899,55.903,55.907000000000004,55.911,55.915,55.919000000000004,55.923,55.927,55.931000000000004,55.935,55.939,55.943,55.947,55.951,55.955,55.959,55.963,55.967,55.971000000000004,55.975,55.979,55.983000000000004,55.987,55.991,55.995000000000005,55.999,56.003,56.007,56.011,56.015,56.019,56.023,56.027,56.031,56.035000000000004,56.039,56.043,56.047000000000004,56.051,56.055,56.059000000000005,56.063,56.067,56.071,56.075,56.079,56.083,56.087,56.091,56.095,56.099000000000004,56.103,56.107,56.111000000000004,56.115,56.119,56.123000000000005,56.127,56.131,56.135,56.139,56.143,56.147,56.151,56.155,56.159,56.163000000000004,56.167,56.171,56.175000000000004,56.179,56.179,56.643,56.647,56.651,56.655,56.659,56.663000000000004,56.667,56.671,56.675,56.679,56.683,56.687,56.691,56.695,56.699,56.703,56.707,56.711,56.715,56.719,56.723,56.727000000000004,56.731,56.735,56.739,56.743,56.747,56.751,56.755,56.759,56.763,56.767,56.771,56.775,56.779,56.783,56.787,56.791000000000004,56.795,56.799,56.803,56.807,56.811,56.815,56.819,56.823,56.827,56.831,56.835,56.839,56.843,56.847,56.851,56.855000000000004,56.859,56.863,56.867,56.871,56.875,56.879,56.883,56.887,56.891,56.895,56.899,56.903,56.907000000000004,56.911,56.915,56.919000000000004,56.923,56.927,56.931,56.935,56.939,56.943,56.947,56.951,56.955,56.959,56.963,56.967,56.971000000000004,56.975,56.979,56.983000000000004,56.987,56.991,56.995,56.999,57.003,57.007,57.011,57.015,57.019,57.023,57.027,57.031,57.035000000000004,57.039,57.039,57.503,57.507,57.511,57.515,57.519,57.523,57.527,57.531,57.535,57.539,57.543,57.547,57.551,57.555,57.559,57.563,57.567,57.571,57.575,57.579,57.583,57.587,57.591,57.595,57.599,57.603,57.607,57.611,57.615,57.619,57.623,57.627,57.631,57.635,57.639,57.643,57.647,57.651,57.655,57.659,57.663,57.667,57.671,57.675,57.679,57.683,57.687,57.691,57.695,57.699,57.703,57.707,57.711,57.715,57.719,57.723,57.727,57.731,57.735,57.739,57.743,57.747,57.751,57.755,57.759,57.763,57.767,57.771,57.775,57.779,57.783,57.787,57.791,57.795,57.799,57.803,57.807,57.811,57.815,57.819,57.823,57.827,57.831,57.835,57.839,57.843,57.847,57.851,57.855,57.859,57.863,57.867,57.871,57.875,57.879,57.883,57.887,57.891,57.895,57.899,57.899,58.363,58.367,58.371,58.375,58.379,58.383,58.387,58.391,58.394999999999996,58.399,58.403,58.407,58.411,58.415,58.419,58.423,58.427,58.431,58.435,58.439,58.443,58.447,58.451,58.455,58.458999999999996,58.463,58.467,58.471,58.475,58.479,58.483,58.487,58.491,58.495,58.499,58.503,58.507,58.511,58.515,58.519,58.522999999999996,58.527,58.531,58.535,58.539,58.543,58.547,58.551,58.555,58.559,58.563,58.567,58.571,58.575,58.579,58.583,58.586999999999996,58.591,58.595,58.599,58.603,58.607,58.611,58.615,58.619,58.623,58.627,58.631,58.635,58.639,58.643,58.647,58.650999999999996,58.655,58.659,58.663,58.667,58.671,58.675,58.679,58.683,58.687,58.691,58.695,58.699,58.703,58.707,58.711,58.714999999999996,58.719,58.723,58.727,58.731,58.735,58.739,58.743,58.747,58.751,58.755,58.759,58.759,59.223,59.227,59.231,59.235,59.239,59.243,59.247,59.251,59.254999999999995,59.259,59.263,59.266999999999996,59.271,59.275,59.278999999999996,59.283,59.287,59.291,59.295,59.299,59.303,59.307,59.311,59.315,59.318999999999996,59.323,59.327,59.330999999999996,59.335,59.339,59.342999999999996,59.347,59.351,59.355,59.359,59.363,59.367,59.371,59.375,59.379,59.382999999999996,59.387,59.391,59.394999999999996,59.399,59.403,59.407,59.411,59.415,59.419,59.423,59.427,59.431,59.435,59.439,59.443,59.446999999999996,59.451,59.455,59.458999999999996,59.463,59.467,59.471,59.475,59.479,59.483,59.487,59.491,59.495,59.499,59.503,59.507,59.510999999999996,59.515,59.519,59.522999999999996,59.527,59.531,59.535,59.539,59.543,59.547,59.551,59.555,59.559,59.563,59.567,59.571,59.574999999999996,59.579,59.583,59.586999999999996,59.591,59.595,59.599,59.603,59.607,59.611,59.615,59.619,59.619,60.083,60.086999999999996,60.091,60.095,60.099,60.103,60.107,60.111,60.114999999999995,60.119,60.123,60.126999999999995,60.131,60.135,60.138999999999996,60.143,60.147,60.150999999999996,60.155,60.159,60.163,60.167,60.171,60.175,60.178999999999995,60.183,60.187,60.190999999999995,60.195,60.199,60.202999999999996,60.207,60.211,60.214999999999996,60.219,60.223,60.227,60.231,60.235,60.239,60.242999999999995,60.247,60.251,60.254999999999995,60.259,60.263,60.266999999999996,60.271,60.275,60.278999999999996,60.283,60.287,60.291,60.295,60.299,60.303,60.306999999999995,60.311,60.315,60.318999999999996,60.323,60.327,60.330999999999996,60.335,60.339,60.342999999999996,60.347,60.351,60.355,60.359,60.363,60.367,60.370999999999995,60.375,60.379,60.382999999999996,60.387,60.391,60.394999999999996,60.399,60.403,60.407,60.411,60.415,60.419,60.423,60.427,60.431,60.434999999999995,60.439,60.443,60.446999999999996,60.451,60.455,60.458999999999996,60.463,60.467,60.471,60.475,60.479,60.479,60.943,60.946999999999996,60.951,60.955,60.958999999999996,60.963,60.967,60.971,60.974999999999994,60.979,60.983,60.986999999999995,60.991,60.995,60.998999999999995,61.003,61.007,61.010999999999996,61.015,61.019,61.022999999999996,61.027,61.031,61.035,61.038999999999994,61.043,61.047,61.050999999999995,61.055,61.059,61.062999999999995,61.067,61.071,61.074999999999996,61.079,61.083,61.086999999999996,61.091,61.095,61.099,61.102999999999994,61.107,61.111,61.114999999999995,61.119,61.123,61.126999999999995,61.131,61.135,61.138999999999996,61.143,61.147,61.150999999999996,61.155,61.159,61.163,61.166999999999994,61.171,61.175,61.178999999999995,61.183,61.187,61.190999999999995,61.195,61.199,61.202999999999996,61.207,61.211,61.214999999999996,61.219,61.223,61.227,61.230999999999995,61.235,61.239,61.242999999999995,61.247,61.251,61.254999999999995,61.259,61.263,61.266999999999996,61.271,61.275,61.278999999999996,61.283,61.287,61.291,61.294999999999995,61.299,61.303,61.306999999999995,61.311,61.315,61.318999999999996,61.323,61.327,61.330999999999996,61.335,61.339,61.339,61.803000000000004,61.807,61.81100000000001,61.815000000000005,61.819,61.82300000000001,61.827000000000005,61.831,61.835,61.839000000000006,61.843,61.847,61.851000000000006,61.855000000000004,61.859,61.86300000000001,61.867000000000004,61.871,61.87500000000001,61.879000000000005,61.883,61.88700000000001,61.891000000000005,61.895,61.899,61.903000000000006,61.907000000000004,61.911,61.915000000000006,61.919000000000004,61.923,61.92700000000001,61.931000000000004,61.935,61.93900000000001,61.943000000000005,61.947,61.95100000000001,61.955000000000005,61.959,61.963,61.967000000000006,61.971000000000004,61.975,61.979000000000006,61.983000000000004,61.987,61.99100000000001,61.995000000000005,61.999,62.00300000000001,62.007000000000005,62.011,62.01500000000001,62.019000000000005,62.023,62.027,62.031000000000006,62.035000000000004,62.039,62.043000000000006,62.047000000000004,62.051,62.05500000000001,62.059000000000005,62.063,62.06700000000001,62.071000000000005,62.075,62.07900000000001,62.083000000000006,62.087,62.091,62.095000000000006,62.099000000000004,62.103,62.107000000000006,62.111000000000004,62.115,62.11900000000001,62.123000000000005,62.127,62.13100000000001,62.135000000000005,62.139,62.14300000000001,62.147000000000006,62.151,62.155,62.159000000000006,62.163000000000004,62.167,62.17100000000001,62.175000000000004,62.179,62.18300000000001,62.187000000000005,62.191,62.19500000000001,62.199000000000005,62.199000000000005,62.663000000000004,62.667,62.67100000000001,62.675000000000004,62.679,62.68300000000001,62.687000000000005,62.691,62.695,62.699000000000005,62.703,62.707,62.711000000000006,62.715,62.719,62.723000000000006,62.727000000000004,62.731,62.73500000000001,62.739000000000004,62.743,62.74700000000001,62.751000000000005,62.755,62.759,62.763000000000005,62.767,62.771,62.775000000000006,62.779,62.783,62.787000000000006,62.791000000000004,62.795,62.79900000000001,62.803000000000004,62.807,62.81100000000001,62.815000000000005,62.819,62.823,62.827000000000005,62.831,62.835,62.839000000000006,62.843,62.847,62.851000000000006,62.855000000000004,62.859,62.86300000000001,62.867000000000004,62.871,62.87500000000001,62.879000000000005,62.883,62.887,62.891000000000005,62.895,62.899,62.903000000000006,62.907000000000004,62.911,62.915000000000006,62.919000000000004,62.923,62.92700000000001,62.931000000000004,62.935,62.93900000000001,62.943000000000005,62.947,62.951,62.955000000000005,62.959,62.963,62.967000000000006,62.971000000000004,62.975,62.979000000000006,62.983000000000004,62.987,62.99100000000001,62.995000000000005,62.999,63.00300000000001,63.007000000000005,63.011,63.015,63.019000000000005,63.023,63.027,63.031000000000006,63.035000000000004,63.039,63.043000000000006,63.047000000000004,63.051,63.05500000000001,63.059000000000005,63.059000000000005,63.523,63.527,63.531000000000006,63.535000000000004,63.539,63.543000000000006,63.547000000000004,63.551,63.555,63.559000000000005,63.563,63.567,63.571000000000005,63.575,63.579,63.583000000000006,63.587,63.591,63.595000000000006,63.599000000000004,63.603,63.607000000000006,63.611000000000004,63.615,63.619,63.623000000000005,63.627,63.631,63.635000000000005,63.639,63.643,63.647000000000006,63.651,63.655,63.659000000000006,63.663000000000004,63.667,63.67100000000001,63.675000000000004,63.679,63.683,63.687000000000005,63.691,63.695,63.699000000000005,63.703,63.707,63.711000000000006,63.715,63.719,63.723000000000006,63.727000000000004,63.731,63.73500000000001,63.739000000000004,63.743,63.747,63.751000000000005,63.755,63.759,63.763000000000005,63.767,63.771,63.775000000000006,63.779,63.783,63.787000000000006,63.791000000000004,63.795,63.79900000000001,63.803000000000004,63.807,63.811,63.815000000000005,63.819,63.823,63.827000000000005,63.831,63.835,63.839000000000006,63.843,63.847,63.851000000000006,63.855000000000004,63.859,63.86300000000001,63.867000000000004,63.871,63.875,63.879000000000005,63.883,63.887,63.891000000000005,63.895,63.899,63.903000000000006,63.907000000000004,63.911,63.915000000000006,63.919000000000004,63.919000000000004,64.383,64.387,64.39099999999999,64.395,64.399,64.40299999999999,64.407,64.411,64.41499999999999,64.419,64.423,64.42699999999999,64.431,64.435,64.439,64.443,64.44699999999999,64.451,64.455,64.45899999999999,64.463,64.467,64.47099999999999,64.475,64.479,64.48299999999999,64.487,64.491,64.49499999999999,64.499,64.503,64.50699999999999,64.511,64.515,64.51899999999999,64.523,64.527,64.53099999999999,64.535,64.539,64.54299999999999,64.547,64.551,64.55499999999999,64.559,64.563,64.567,64.571,64.57499999999999,64.579,64.583,64.58699999999999,64.591,64.595,64.59899999999999,64.603,64.607,64.61099999999999,64.615,64.619,64.62299999999999,64.627,64.631,64.63499999999999,64.639,64.643,64.64699999999999,64.651,64.655,64.65899999999999,64.663,64.667,64.67099999999999,64.675,64.679,64.68299999999999,64.687,64.691,64.695,64.699,64.70299999999999,64.707,64.711,64.71499999999999,64.719,64.723,64.72699999999999,64.731,64.735,64.73899999999999,64.743,64.747,64.75099999999999,64.755,64.759,64.76299999999999,64.767,64.771,64.77499999999999,64.779,64.779,65.243,65.247,65.25099999999999,65.255,65.259,65.26299999999999,65.267,65.271,65.27499999999999,65.279,65.283,65.28699999999999,65.291,65.295,65.29899999999999,65.303,65.30699999999999,65.31099999999999,65.315,65.31899999999999,65.323,65.327,65.33099999999999,65.335,65.339,65.34299999999999,65.347,65.351,65.35499999999999,65.359,65.363,65.36699999999999,65.371,65.375,65.37899999999999,65.383,65.387,65.39099999999999,65.395,65.399,65.40299999999999,65.407,65.411,65.41499999999999,65.419,65.423,65.42699999999999,65.431,65.43499999999999,65.439,65.443,65.44699999999999,65.451,65.455,65.45899999999999,65.463,65.467,65.47099999999999,65.475,65.479,65.48299999999999,65.487,65.491,65.49499999999999,65.499,65.503,65.50699999999999,65.511,65.515,65.51899999999999,65.523,65.527,65.53099999999999,65.535,65.539,65.54299999999999,65.547,65.551,65.55499999999999,65.559,65.56299999999999,65.567,65.571,65.57499999999999,65.579,65.583,65.58699999999999,65.591,65.595,65.59899999999999,65.603,65.607,65.61099999999999,65.615,65.619,65.62299999999999,65.627,65.631,65.63499999999999,65.639,65.639,66.103,66.107,66.11099999999999,66.115,66.119,66.12299999999999,66.127,66.131,66.13499999999999,66.139,66.143,66.14699999999999,66.151,66.155,66.15899999999999,66.163,66.16699999999999,66.17099999999999,66.175,66.17899999999999,66.18299999999999,66.187,66.19099999999999,66.195,66.199,66.20299999999999,66.207,66.211,66.21499999999999,66.219,66.223,66.22699999999999,66.231,66.235,66.23899999999999,66.243,66.247,66.25099999999999,66.255,66.259,66.26299999999999,66.267,66.271,66.27499999999999,66.279,66.283,66.28699999999999,66.291,66.29499999999999,66.29899999999999,66.303,66.30699999999999,66.31099999999999,66.315,66.31899999999999,66.323,66.327,66.33099999999999,66.335,66.339,66.34299999999999,66.347,66.351,66.35499999999999,66.359,66.363,66.36699999999999,66.371,66.375,66.37899999999999,66.383,66.387,66.39099999999999,66.395,66.399,66.40299999999999,66.407,66.411,66.41499999999999,66.419,66.42299999999999,66.42699999999999,66.431,66.43499999999999,66.439,66.443,66.44699999999999,66.451,66.455,66.45899999999999,66.463,66.467,66.47099999999999,66.475,66.479,66.48299999999999,66.487,66.491,66.49499999999999,66.499,66.499,66.96300000000001,66.96700000000001,66.971,66.97500000000001,66.97900000000001,66.983,66.98700000000001,66.99100000000001,66.995,66.99900000000001,67.00300000000001,67.007,67.01100000000001,67.01500000000001,67.019,67.02300000000001,67.027,67.031,67.03500000000001,67.039,67.043,67.04700000000001,67.051,67.055,67.05900000000001,67.063,67.06700000000001,67.07100000000001,67.075,67.07900000000001,67.08300000000001,67.087,67.09100000000001,67.09500000000001,67.099,67.10300000000001,67.10700000000001,67.111,67.11500000000001,67.11900000000001,67.123,67.12700000000001,67.13100000000001,67.135,67.13900000000001,67.14300000000001,67.147,67.15100000000001,67.155,67.159,67.16300000000001,67.167,67.171,67.17500000000001,67.179,67.183,67.18700000000001,67.191,67.19500000000001,67.19900000000001,67.203,67.20700000000001,67.21100000000001,67.215,67.21900000000001,67.22300000000001,67.227,67.23100000000001,67.23500000000001,67.239,67.24300000000001,67.24700000000001,67.251,67.25500000000001,67.25900000000001,67.263,67.26700000000001,67.27100000000002,67.275,67.27900000000001,67.283,67.287,67.29100000000001,67.295,67.299,67.30300000000001,67.307,67.311,67.31500000000001,67.319,67.32300000000001,67.32700000000001,67.331,67.33500000000001,67.33900000000001,67.343,67.34700000000001,67.35100000000001,67.355,67.35900000000001,67.35900000000001,67.82300000000001,67.82700000000001,67.831,67.83500000000001,67.83900000000001,67.843,67.84700000000001,67.85100000000001,67.855,67.85900000000001,67.86300000000001,67.867,67.87100000000001,67.87500000000001,67.879,67.88300000000001,67.887,67.891,67.89500000000001,67.899,67.903,67.90700000000001,67.911,67.915,67.91900000000001,67.923,67.927,67.93100000000001,67.935,67.93900000000001,67.94300000000001,67.947,67.95100000000001,67.95500000000001,67.959,67.96300000000001,67.96700000000001,67.971,67.97500000000001,67.97900000000001,67.983,67.98700000000001,67.99100000000001,67.995,67.99900000000001,68.00300000000001,68.007,68.01100000000001,68.015,68.019,68.02300000000001,68.027,68.031,68.03500000000001,68.039,68.043,68.04700000000001,68.051,68.055,68.05900000000001,68.063,68.06700000000001,68.07100000000001,68.075,68.07900000000001,68.08300000000001,68.087,68.09100000000001,68.09500000000001,68.099,68.10300000000001,68.10700000000001,68.111,68.11500000000001,68.11900000000001,68.123,68.12700000000001,68.13100000000001,68.135,68.13900000000001,68.143,68.147,68.15100000000001,68.155,68.159,68.16300000000001,68.167,68.171,68.17500000000001,68.179,68.183,68.18700000000001,68.191,68.19500000000001,68.19900000000001,68.203,68.20700000000001,68.21100000000001,68.215,68.21900000000001,68.21900000000001,68.683,68.68700000000001,68.691,68.69500000000001,68.69900000000001,68.703,68.70700000000001,68.71100000000001,68.715,68.71900000000001,68.72300000000001,68.727,68.73100000000001,68.73500000000001,68.739,68.74300000000001,68.747,68.751,68.75500000000001,68.759,68.763,68.76700000000001,68.771,68.775,68.77900000000001,68.783,68.787,68.79100000000001,68.795,68.799,68.80300000000001,68.807,68.811,68.81500000000001,68.819,68.82300000000001,68.82700000000001,68.831,68.83500000000001,68.83900000000001,68.843,68.84700000000001,68.85100000000001,68.855,68.85900000000001,68.86300000000001,68.867,68.87100000000001,68.875,68.879,68.88300000000001,68.887,68.891,68.89500000000001,68.899,68.903,68.90700000000001,68.911,68.915,68.91900000000001,68.923,68.927,68.93100000000001,68.935,68.93900000000001,68.94300000000001,68.947,68.95100000000001,68.95500000000001,68.959,68.96300000000001,68.96700000000001,68.971,68.97500000000001,68.97900000000001,68.983,68.98700000000001,68.99100000000001,68.995,68.99900000000001,69.003,69.007,69.01100000000001,69.015,69.019,69.02300000000001,69.027,69.031,69.03500000000001,69.039,69.043,69.04700000000001,69.051,69.055,69.05900000000001,69.063,69.06700000000001,69.07100000000001,69.075,69.07900000000001,69.07900000000001,69.543,69.54700000000001,69.551,69.555,69.55900000000001,69.563,69.56700000000001,69.57100000000001,69.575,69.57900000000001,69.58300000000001,69.587,69.59100000000001,69.59500000000001,69.599,69.60300000000001,69.607,69.611,69.61500000000001,69.619,69.623,69.62700000000001,69.631,69.635,69.63900000000001,69.643,69.647,69.65100000000001,69.655,69.659,69.66300000000001,69.667,69.671,69.67500000000001,69.679,69.683,69.68700000000001,69.691,69.69500000000001,69.69900000000001,69.703,69.70700000000001,69.71100000000001,69.715,69.71900000000001,69.72300000000001,69.727,69.73100000000001,69.735,69.739,69.74300000000001,69.747,69.751,69.75500000000001,69.759,69.763,69.76700000000001,69.771,69.775,69.77900000000001,69.783,69.787,69.79100000000001,69.795,69.799,69.80300000000001,69.807,69.811,69.81500000000001,69.819,69.82300000000001,69.82700000000001,69.831,69.83500000000001,69.83900000000001,69.843,69.84700000000001,69.85100000000001,69.855,69.85900000000001,69.863,69.867,69.87100000000001,69.875,69.879,69.88300000000001,69.887,69.891,69.89500000000001,69.899,69.903,69.90700000000001,69.911,69.915,69.91900000000001,69.923,69.927,69.93100000000001,69.935,69.93900000000001,69.93900000000001,70.403,70.40700000000001,70.411,70.415,70.41900000000001,70.423,70.427,70.43100000000001,70.435,70.43900000000001,70.44300000000001,70.447,70.45100000000001,70.45500000000001,70.459,70.46300000000001,70.467,70.471,70.47500000000001,70.479,70.483,70.48700000000001,70.491,70.495,70.49900000000001,70.503,70.507,70.51100000000001,70.515,70.519,70.52300000000001,70.527,70.531,70.53500000000001,70.539,70.543,70.54700000000001,70.551,70.555,70.55900000000001,70.563,70.56700000000001,70.57100000000001,70.575,70.57900000000001,70.58300000000001,70.587,70.59100000000001,70.595,70.599,70.60300000000001,70.607,70.611,70.61500000000001,70.619,70.623,70.62700000000001,70.631,70.635,70.63900000000001,70.643,70.647,70.65100000000001,70.655,70.659,70.66300000000001,70.667,70.671,70.67500000000001,70.679,70.683,70.68700000000001,70.691,70.69500000000001,70.69900000000001,70.703,70.70700000000001,70.71100000000001,70.715,70.71900000000001,70.723,70.727,70.73100000000001,70.735,70.739,70.74300000000001,70.747,70.751,70.75500000000001,70.759,70.763,70.76700000000001,70.771,70.775,70.77900000000001,70.783,70.787,70.79100000000001,70.795,70.799,70.799,71.263,71.26700000000001,71.271,71.275,71.27900000000001,71.283,71.287,71.29100000000001,71.295,71.299,71.30300000000001,71.307,71.311,71.31500000000001,71.319,71.32300000000001,71.327,71.331,71.33500000000001,71.339,71.343,71.34700000000001,71.351,71.355,71.35900000000001,71.363,71.367,71.37100000000001,71.375,71.379,71.38300000000001,71.387,71.391,71.39500000000001,71.399,71.403,71.40700000000001,71.411,71.415,71.41900000000001,71.423,71.427,71.43100000000001,71.435,71.43900000000001,71.44300000000001,71.447,71.45100000000001,71.455,71.459,71.46300000000001,71.467,71.471,71.47500000000001,71.479,71.483,71.48700000000001,71.491,71.495,71.49900000000001,71.503,71.507,71.51100000000001,71.515,71.519,71.52300000000001,71.527,71.531,71.53500000000001,71.539,71.543,71.54700000000001,71.551,71.555,71.55900000000001,71.563,71.56700000000001,71.57100000000001,71.575,71.57900000000001,71.583,71.587,71.59100000000001,71.595,71.599,71.60300000000001,71.607,71.611,71.61500000000001,71.619,71.623,71.62700000000001,71.631,71.635,71.63900000000001,71.643,71.647,71.65100000000001,71.655,71.659,71.659,72.123,72.12700000000001,72.131,72.135,72.13900000000001,72.143,72.147,72.15100000000001,72.155,72.159,72.16300000000001,72.167,72.171,72.17500000000001,72.179,72.183,72.187,72.191,72.19500000000001,72.199,72.203,72.20700000000001,72.211,72.215,72.21900000000001,72.223,72.227,72.23100000000001,72.235,72.239,72.24300000000001,72.247,72.251,72.25500000000001,72.259,72.263,72.26700000000001,72.271,72.275,72.27900000000001,72.283,72.287,72.29100000000001,72.295,72.299,72.30300000000001,72.307,72.311,72.315,72.319,72.32300000000001,72.327,72.331,72.33500000000001,72.339,72.343,72.34700000000001,72.351,72.355,72.35900000000001,72.363,72.367,72.37100000000001,72.375,72.379,72.38300000000001,72.387,72.391,72.39500000000001,72.399,72.403,72.40700000000001,72.411,72.415,72.41900000000001,72.423,72.427,72.43100000000001,72.435,72.43900000000001,72.443,72.447,72.45100000000001,72.455,72.459,72.46300000000001,72.467,72.471,72.47500000000001,72.479,72.483,72.48700000000001,72.491,72.495,72.49900000000001,72.503,72.507,72.51100000000001,72.515,72.519,72.519,72.983,72.98700000000001,72.991,72.995,72.99900000000001,73.003,73.007,73.01100000000001,73.015,73.019,73.02300000000001,73.027,73.031,73.03500000000001,73.039,73.043,73.047,73.051,73.055,73.059,73.063,73.06700000000001,73.071,73.075,73.07900000000001,73.083,73.087,73.09100000000001,73.095,73.099,73.10300000000001,73.107,73.111,73.11500000000001,73.119,73.123,73.12700000000001,73.131,73.135,73.13900000000001,73.143,73.147,73.15100000000001,73.155,73.159,73.16300000000001,73.167,73.171,73.175,73.179,73.183,73.187,73.191,73.19500000000001,73.199,73.203,73.20700000000001,73.211,73.215,73.21900000000001,73.223,73.227,73.23100000000001,73.235,73.239,73.24300000000001,73.247,73.251,73.25500000000001,73.259,73.263,73.26700000000001,73.271,73.275,73.27900000000001,73.283,73.287,73.29100000000001,73.295,73.299,73.303,73.307,73.311,73.315,73.319,73.32300000000001,73.327,73.331,73.33500000000001,73.339,73.343,73.34700000000001,73.351,73.355,73.35900000000001,73.363,73.367,73.37100000000001,73.375,73.379,73.379,73.843,73.84700000000001,73.851,73.855,73.85900000000001,73.863,73.867,73.87100000000001,73.875,73.879,73.88300000000001,73.887,73.891,73.89500000000001,73.899,73.903,73.907,73.911,73.915,73.919,73.923,73.927,73.931,73.935,73.93900000000001,73.943,73.947,73.95100000000001,73.955,73.959,73.96300000000001,73.967,73.971,73.97500000000001,73.979,73.983,73.98700000000001,73.991,73.995,73.99900000000001,74.003,74.007,74.01100000000001,74.015,74.019,74.02300000000001,74.027,74.031,74.035,74.039,74.043,74.047,74.051,74.055,74.059,74.063,74.06700000000001,74.071,74.075,74.07900000000001,74.083,74.087,74.09100000000001,74.095,74.099,74.10300000000001,74.107,74.111,74.11500000000001,74.119,74.123,74.12700000000001,74.131,74.135,74.13900000000001,74.143,74.147,74.15100000000001,74.155,74.159,74.163,74.167,74.171,74.175,74.179,74.183,74.187,74.191,74.19500000000001,74.199,74.203,74.20700000000001,74.211,74.215,74.21900000000001,74.223,74.227,74.23100000000001,74.235,74.239,74.239,74.703,74.70700000000001,74.711,74.715,74.71900000000001,74.723,74.727,74.73100000000001,74.735,74.739,74.74300000000001,74.747,74.751,74.75500000000001,74.759,74.763,74.767,74.771,74.775,74.779,74.783,74.787,74.791,74.795,74.799,74.803,74.807,74.811,74.815,74.819,74.82300000000001,74.827,74.831,74.83500000000001,74.839,74.843,74.84700000000001,74.851,74.855,74.85900000000001,74.863,74.867,74.87100000000001,74.875,74.879,74.88300000000001,74.887,74.891,74.895,74.899,74.903,74.907,74.911,74.915,74.919,74.923,74.927,74.931,74.935,74.93900000000001,74.943,74.947,74.95100000000001,74.955,74.959,74.96300000000001,74.967,74.971,74.97500000000001,74.979,74.983,74.98700000000001,74.991,74.995,74.99900000000001,75.003,75.007,75.01100000000001,75.015,75.019,75.023,75.027,75.031,75.035,75.039,75.043,75.047,75.051,75.055,75.059,75.063,75.06700000000001,75.071,75.075,75.07900000000001,75.083,75.087,75.09100000000001,75.095,75.099,75.099,75.563,75.56700000000001,75.571,75.575,75.57900000000001,75.583,75.587,75.59100000000001,75.595,75.599,75.60300000000001,75.607,75.611,75.61500000000001,75.619,75.623,75.627,75.631,75.635,75.639,75.643,75.647,75.651,75.655,75.659,75.663,75.667,75.671,75.675,75.679,75.683,75.687,75.691,75.69500000000001,75.699,75.703,75.70700000000001,75.711,75.715,75.71900000000001,75.723,75.727,75.73100000000001,75.735,75.739,75.74300000000001,75.747,75.751,75.755,75.759,75.763,75.767,75.771,75.775,75.779,75.783,75.787,75.791,75.795,75.799,75.803,75.807,75.811,75.815,75.819,75.82300000000001,75.827,75.831,75.83500000000001,75.839,75.843,75.84700000000001,75.851,75.855,75.85900000000001,75.863,75.867,75.87100000000001,75.875,75.879,75.883,75.887,75.891,75.895,75.899,75.903,75.907,75.911,75.915,75.919,75.923,75.927,75.931,75.935,75.93900000000001,75.943,75.947,75.95100000000001,75.955,75.959,75.959,76.423,76.427,76.431,76.435,76.43900000000001,76.443,76.447,76.45100000000001,76.455,76.459,76.46300000000001,76.467,76.471,76.47500000000001,76.479,76.483,76.487,76.491,76.495,76.499,76.503,76.507,76.511,76.515,76.519,76.523,76.527,76.531,76.535,76.539,76.543,76.547,76.551,76.555,76.559,76.563,76.56700000000001,76.571,76.575,76.57900000000001,76.583,76.587,76.59100000000001,76.595,76.599,76.60300000000001,76.607,76.611,76.615,76.619,76.623,76.627,76.631,76.635,76.639,76.643,76.647,76.651,76.655,76.659,76.663,76.667,76.671,76.675,76.679,76.683,76.687,76.691,76.69500000000001,76.699,76.703,76.70700000000001,76.711,76.715,76.71900000000001,76.723,76.727,76.73100000000001,76.735,76.739,76.743,76.747,76.751,76.755,76.759,76.763,76.767,76.771,76.775,76.779,76.783,76.787,76.791,76.795,76.799,76.803,76.807,76.811,76.815,76.819,76.819,77.283,77.287,77.291,77.295,77.299,77.303,77.307,77.311,77.315,77.319,77.32300000000001,77.327,77.331,77.33500000000001,77.339,77.343,77.347,77.351,77.355,77.359,77.363,77.367,77.371,77.375,77.379,77.383,77.387,77.391,77.395,77.399,77.403,77.407,77.411,77.415,77.419,77.423,77.427,77.431,77.435,77.43900000000001,77.443,77.447,77.45100000000001,77.455,77.459,77.46300000000001,77.467,77.471,77.475,77.479,77.483,77.487,77.491,77.495,77.499,77.503,77.507,77.511,77.515,77.519,77.523,77.527,77.531,77.535,77.539,77.543,77.547,77.551,77.555,77.559,77.563,77.56700000000001,77.571,77.575,77.57900000000001,77.583,77.587,77.59100000000001,77.595,77.599,77.603,77.607,77.611,77.615,77.619,77.623,77.627,77.631,77.635,77.639,77.643,77.647,77.651,77.655,77.659,77.663,77.667,77.671,77.675,77.679,77.679,78.143,78.147,78.151,78.155,78.159,78.163,78.167,78.171,78.175,78.179,78.183,78.187,78.191,78.19500000000001,78.199,78.203,78.207,78.211,78.215,78.219,78.223,78.227,78.231,78.235,78.239,78.243,78.247,78.251,78.255,78.259,78.263,78.267,78.271,78.275,78.279,78.283,78.287,78.291,78.295,78.299,78.303,78.307,78.311,78.315,78.319,78.32300000000001,78.327,78.331,78.335,78.339,78.343,78.347,78.351,78.355,78.359,78.363,78.367,78.371,78.375,78.379,78.383,78.387,78.391,78.395,78.399,78.403,78.407,78.411,78.415,78.419,78.423,78.427,78.431,78.435,78.43900000000001,78.443,78.447,78.45100000000001,78.455,78.459,78.463,78.467,78.471,78.475,78.479,78.483,78.487,78.491,78.495,78.499,78.503,78.507,78.511,78.515,78.519,78.523,78.527,78.531,78.535,78.539,78.539,79.003,79.007,79.011,79.015,79.019,79.023,79.027,79.031,79.035,79.039,79.043,79.047,79.051,79.055,79.059,79.063,79.067,79.071,79.075,79.079,79.083,79.087,79.091,79.095,79.099,79.103,79.107,79.111,79.115,79.119,79.123,79.127,79.131,79.135,79.139,79.143,79.147,79.151,79.155,79.159,79.163,79.167,79.171,79.175,79.179,79.183,79.187,79.191,79.195,79.199,79.203,79.207,79.211,79.215,79.219,79.223,79.227,79.231,79.235,79.239,79.243,79.247,79.251,79.255,79.259,79.263,79.267,79.271,79.275,79.279,79.283,79.287,79.291,79.295,79.299,79.303,79.307,79.311,79.315,79.319,79.323,79.327,79.331,79.335,79.339,79.343,79.347,79.351,79.355,79.359,79.363,79.367,79.371,79.375,79.379,79.383,79.387,79.391,79.395,79.399,79.399,79.863,79.867,79.871,79.875,79.879,79.883,79.887,79.891,79.895,79.899,79.903,79.907,79.911,79.915,79.919,79.923,79.92699999999999,79.931,79.935,79.939,79.943,79.947,79.951,79.955,79.959,79.963,79.967,79.971,79.975,79.979,79.983,79.987,79.991,79.995,79.999,80.003,80.007,80.011,80.015,80.019,80.023,80.027,80.031,80.035,80.039,80.043,80.047,80.051,80.05499999999999,80.059,80.063,80.067,80.071,80.075,80.079,80.083,80.087,80.091,80.095,80.099,80.103,80.107,80.111,80.115,80.119,80.123,80.127,80.131,80.135,80.139,80.143,80.147,80.151,80.155,80.159,80.163,80.167,80.171,80.175,80.179,80.18299999999999,80.187,80.191,80.195,80.199,80.203,80.207,80.211,80.215,80.219,80.223,80.227,80.231,80.235,80.239,80.243,80.247,80.251,80.255,80.259,80.259,80.723,80.727,80.731,80.735,80.739,80.743,80.747,80.751,80.755,80.759,80.763,80.767,80.771,80.775,80.779,80.783,80.78699999999999,80.791,80.795,80.79899999999999,80.803,80.807,80.81099999999999,80.815,80.819,80.823,80.827,80.831,80.835,80.839,80.843,80.847,80.851,80.855,80.859,80.863,80.867,80.871,80.875,80.879,80.883,80.887,80.891,80.895,80.899,80.903,80.907,80.911,80.91499999999999,80.919,80.923,80.92699999999999,80.931,80.935,80.939,80.943,80.947,80.951,80.955,80.959,80.963,80.967,80.971,80.975,80.979,80.983,80.987,80.991,80.995,80.999,81.003,81.007,81.011,81.015,81.019,81.023,81.027,81.031,81.035,81.039,81.04299999999999,81.047,81.051,81.05499999999999,81.059,81.063,81.067,81.071,81.075,81.079,81.083,81.087,81.091,81.095,81.099,81.103,81.107,81.111,81.115,81.119,81.119,81.583,81.587,81.591,81.595,81.599,81.603,81.607,81.611,81.615,81.619,81.623,81.627,81.631,81.635,81.639,81.643,81.64699999999999,81.651,81.655,81.65899999999999,81.663,81.667,81.67099999999999,81.675,81.679,81.68299999999999,81.687,81.691,81.695,81.699,81.703,81.707,81.711,81.715,81.719,81.723,81.727,81.731,81.735,81.739,81.743,81.747,81.751,81.755,81.759,81.763,81.767,81.771,81.77499999999999,81.779,81.783,81.78699999999999,81.791,81.795,81.79899999999999,81.803,81.807,81.81099999999999,81.815,81.819,81.823,81.827,81.831,81.835,81.839,81.843,81.847,81.851,81.855,81.859,81.863,81.867,81.871,81.875,81.879,81.883,81.887,81.891,81.895,81.899,81.90299999999999,81.907,81.911,81.91499999999999,81.919,81.923,81.92699999999999,81.931,81.935,81.939,81.943,81.947,81.951,81.955,81.959,81.963,81.967,81.971,81.975,81.979,81.979,82.443,82.447,82.451,82.455,82.459,82.463,82.467,82.471,82.475,82.479,82.483,82.487,82.491,82.495,82.499,82.503,82.50699999999999,82.511,82.515,82.51899999999999,82.523,82.527,82.53099999999999,82.535,82.539,82.54299999999999,82.547,82.551,82.55499999999999,82.559,82.563,82.567,82.571,82.575,82.579,82.583,82.587,82.591,82.595,82.599,82.603,82.607,82.611,82.615,82.619,82.623,82.627,82.631,82.63499999999999,82.639,82.643,82.64699999999999,82.651,82.655,82.65899999999999,82.663,82.667,82.67099999999999,82.675,82.679,82.68299999999999,82.687,82.691,82.695,82.699,82.703,82.707,82.711,82.715,82.719,82.723,82.727,82.731,82.735,82.739,82.743,82.747,82.751,82.755,82.759,82.76299999999999,82.767,82.771,82.77499999999999,82.779,82.783,82.78699999999999,82.791,82.795,82.79899999999999,82.803,82.807,82.81099999999999,82.815,82.819,82.823,82.827,82.831,82.835,82.839,82.839,83.303,83.307,83.31099999999999,83.315,83.319,83.323,83.327,83.331,83.335,83.339,83.343,83.347,83.351,83.355,83.359,83.363,83.36699999999999,83.371,83.375,83.37899999999999,83.383,83.387,83.39099999999999,83.395,83.399,83.40299999999999,83.407,83.411,83.41499999999999,83.419,83.423,83.42699999999999,83.431,83.435,83.439,83.443,83.447,83.451,83.455,83.459,83.463,83.467,83.471,83.475,83.479,83.483,83.487,83.491,83.49499999999999,83.499,83.503,83.50699999999999,83.511,83.515,83.51899999999999,83.523,83.527,83.53099999999999,83.535,83.539,83.54299999999999,83.547,83.551,83.55499999999999,83.559,83.563,83.567,83.571,83.575,83.579,83.583,83.587,83.591,83.595,83.599,83.603,83.607,83.611,83.615,83.619,83.62299999999999,83.627,83.631,83.63499999999999,83.639,83.643,83.64699999999999,83.651,83.655,83.65899999999999,83.663,83.667,83.67099999999999,83.675,83.679,83.68299999999999,83.687,83.691,83.695,83.699,83.699,84.163,84.167,84.17099999999999,84.175,84.179,84.18299999999999,84.187,84.191,84.195,84.199,84.203,84.207,84.211,84.215,84.219,84.223,84.22699999999999,84.231,84.235,84.23899999999999,84.243,84.247,84.25099999999999,84.255,84.259,84.26299999999999,84.267,84.271,84.27499999999999,84.279,84.283,84.28699999999999,84.291,84.295,84.29899999999999,84.303,84.307,84.31099999999999,84.315,84.319,84.323,84.327,84.331,84.335,84.339,84.343,84.347,84.351,84.35499999999999,84.359,84.363,84.36699999999999,84.371,84.375,84.37899999999999,84.383,84.387,84.39099999999999,84.395,84.399,84.40299999999999,84.407,84.411,84.41499999999999,84.419,84.423,84.42699999999999,84.431,84.435,84.439,84.443,84.447,84.451,84.455,84.459,84.463,84.467,84.471,84.475,84.479,84.48299999999999,84.487,84.491,84.49499999999999,84.499,84.503,84.50699999999999,84.511,84.515,84.51899999999999,84.523,84.527,84.53099999999999,84.535,84.539,84.54299999999999,84.547,84.551,84.55499999999999,84.559,84.559,85.023,85.027,85.03099999999999,85.035,85.039,85.04299999999999,85.047,85.051,85.05499999999999,85.059,85.063,85.067,85.071,85.075,85.079,85.083,85.08699999999999,85.091,85.095,85.09899999999999,85.103,85.107,85.11099999999999,85.115,85.119,85.12299999999999,85.127,85.131,85.13499999999999,85.139,85.143,85.14699999999999,85.151,85.155,85.15899999999999,85.163,85.167,85.17099999999999,85.175,85.179,85.18299999999999,85.187,85.191,85.195,85.199,85.203,85.207,85.211,85.21499999999999,85.219,85.223,85.22699999999999,85.231,85.235,85.23899999999999,85.243,85.247,85.25099999999999,85.255,85.259,85.26299999999999,85.267,85.271,85.27499999999999,85.279,85.283,85.28699999999999,85.291,85.295,85.29899999999999,85.303,85.307,85.31099999999999,85.315,85.319,85.323,85.327,85.331,85.335,85.339,85.34299999999999,85.347,85.351,85.35499999999999,85.359,85.363,85.36699999999999,85.371,85.375,85.37899999999999,85.383,85.387,85.39099999999999,85.395,85.399,85.40299999999999,85.407,85.411,85.41499999999999,85.419,85.419,85.883,85.887,85.89099999999999,85.895,85.899,85.90299999999999,85.907,85.911,85.91499999999999,85.919,85.923,85.92699999999999,85.931,85.935,85.939,85.943,85.94699999999999,85.951,85.955,85.95899999999999,85.963,85.967,85.97099999999999,85.975,85.979,85.98299999999999,85.987,85.991,85.99499999999999,85.999,86.003,86.00699999999999,86.011,86.015,86.01899999999999,86.023,86.027,86.03099999999999,86.035,86.039,86.04299999999999,86.047,86.051,86.05499999999999,86.059,86.063,86.067,86.071,86.07499999999999,86.079,86.083,86.08699999999999,86.091,86.095,86.09899999999999,86.103,86.107,86.11099999999999,86.115,86.119,86.12299999999999,86.127,86.131,86.13499999999999,86.139,86.143,86.14699999999999,86.151,86.155,86.15899999999999,86.163,86.167,86.17099999999999,86.175,86.179,86.18299999999999,86.187,86.191,86.195,86.199,86.20299999999999,86.207,86.211,86.21499999999999,86.219,86.223,86.22699999999999,86.231,86.235,86.23899999999999,86.243,86.247,86.25099999999999,86.255,86.259,86.26299999999999,86.267,86.271,86.27499999999999,86.279,86.279,86.743,86.747,86.75099999999999,86.755,86.759,86.76299999999999,86.767,86.771,86.77499999999999,86.779,86.783,86.78699999999999,86.791,86.795,86.79899999999999,86.803,86.80699999999999,86.81099999999999,86.815,86.81899999999999,86.823,86.827,86.83099999999999,86.835,86.839,86.84299999999999,86.847,86.851,86.85499999999999,86.859,86.863,86.86699999999999,86.871,86.875,86.87899999999999,86.883,86.887,86.89099999999999,86.895,86.899,86.90299999999999,86.907,86.911,86.91499999999999,86.919,86.923,86.92699999999999,86.931,86.93499999999999,86.939,86.943,86.94699999999999,86.951,86.955,86.95899999999999,86.963,86.967,86.97099999999999,86.975,86.979,86.98299999999999,86.987,86.991,86.99499999999999,86.999,87.003,87.00699999999999,87.011,87.015,87.01899999999999,87.023,87.027,87.03099999999999,87.035,87.039,87.04299999999999,87.047,87.051,87.05499999999999,87.059,87.06299999999999,87.067,87.071,87.07499999999999,87.079,87.083,87.08699999999999,87.091,87.095,87.09899999999999,87.103,87.107,87.11099999999999,87.115,87.119,87.12299999999999,87.127,87.131,87.13499999999999,87.139,87.139,87.60300000000001,87.60700000000001,87.611,87.61500000000001,87.61900000000001,87.623,87.62700000000001,87.63100000000001,87.635,87.63900000000001,87.64300000000001,87.647,87.65100000000001,87.65500000000002,87.659,87.66300000000001,87.667,87.671,87.67500000000001,87.679,87.683,87.68700000000001,87.691,87.69500000000001,87.69900000000001,87.703,87.70700000000001,87.71100000000001,87.715,87.71900000000001,87.72300000000001,87.727,87.73100000000001,87.73500000000001,87.739,87.74300000000001,87.74700000000001,87.751,87.75500000000001,87.75900000000001,87.763,87.76700000000001,87.77100000000002,87.775,87.77900000000001,87.78300000000002,87.787,87.79100000000001,87.795,87.799,87.80300000000001,87.807,87.811,87.81500000000001,87.819,87.82300000000001,87.82700000000001,87.831,87.83500000000001,87.83900000000001,87.843,87.84700000000001,87.85100000000001,87.855,87.85900000000001,87.86300000000001,87.867,87.87100000000001,87.87500000000001,87.879,87.88300000000001,87.88700000000001,87.891,87.89500000000001,87.89900000000002,87.903,87.90700000000001,87.91100000000002,87.915,87.91900000000001,87.923,87.927,87.93100000000001,87.935,87.93900000000001,87.94300000000001,87.947,87.95100000000001,87.95500000000001,87.959,87.96300000000001,87.96700000000001,87.971,87.97500000000001,87.97900000000001,87.983,87.98700000000001,87.99100000000001,87.995,87.99900000000001,87.99900000000001,88.46300000000001,88.46700000000001,88.471,88.47500000000001,88.47900000000001,88.483,88.48700000000001,88.49100000000001,88.495,88.49900000000001,88.50300000000001,88.507,88.51100000000001,88.51500000000001,88.519,88.52300000000001,88.527,88.531,88.53500000000001,88.539,88.543,88.54700000000001,88.551,88.555,88.55900000000001,88.563,88.56700000000001,88.57100000000001,88.575,88.57900000000001,88.58300000000001,88.587,88.59100000000001,88.59500000000001,88.599,88.60300000000001,88.60700000000001,88.611,88.61500000000001,88.61900000000001,88.623,88.62700000000001,88.63100000000001,88.635,88.63900000000001,88.64300000000001,88.647,88.65100000000001,88.655,88.659,88.66300000000001,88.667,88.671,88.67500000000001,88.679,88.683,88.68700000000001,88.691,88.69500000000001,88.69900000000001,88.703,88.70700000000001,88.71100000000001,88.715,88.71900000000001,88.72300000000001,88.727,88.73100000000001,88.73500000000001,88.739,88.74300000000001,88.74700000000001,88.751,88.75500000000001,88.75900000000001,88.763,88.76700000000001,88.77100000000002,88.775,88.77900000000001,88.783,88.787,88.79100000000001,88.795,88.799,88.80300000000001,88.807,88.811,88.81500000000001,88.819,88.82300000000001,88.82700000000001,88.831,88.83500000000001,88.83900000000001,88.843,88.84700000000001,88.85100000000001,88.855,88.85900000000001,88.85900000000001,89.32300000000001,89.32700000000001,89.331,89.33500000000001,89.33900000000001,89.343,89.34700000000001,89.35100000000001,89.355,89.35900000000001,89.36300000000001,89.367,89.37100000000001,89.37500000000001,89.379,89.38300000000001,89.387,89.391,89.39500000000001,89.399,89.403,89.40700000000001,89.411,89.415,89.41900000000001,89.423,89.427,89.43100000000001,89.435,89.43900000000001,89.44300000000001,89.447,89.45100000000001,89.45500000000001,89.459,89.46300000000001,89.46700000000001,89.471,89.47500000000001,89.47900000000001,89.483,89.48700000000001,89.49100000000001,89.495,89.49900000000001,89.50300000000001,89.507,89.51100000000001,89.515,89.519,89.52300000000001,89.527,89.531,89.53500000000001,89.539,89.543,89.54700000000001,89.551,89.555,89.55900000000001,89.563,89.56700000000001,89.57100000000001,89.575,89.57900000000001,89.58300000000001,89.587,89.59100000000001,89.59500000000001,89.599,89.60300000000001,89.60700000000001,89.611,89.61500000000001,89.61900000000001,89.623,89.62700000000001,89.63100000000001,89.635,89.63900000000001,89.643,89.647,89.65100000000001,89.655,89.659,89.66300000000001,89.667,89.671,89.67500000000001,89.679,89.683,89.68700000000001,89.691,89.69500000000001,89.69900000000001,89.703,89.70700000000001,89.71100000000001,89.715,89.71900000000001,89.71900000000001,114.903,114.90700000000001,114.911,114.915,114.91900000000001,114.923,114.927,114.93100000000001,114.935,114.93900000000001,114.94300000000001,114.947,114.95100000000001,114.95500000000001,114.959,114.96300000000001,114.967,114.971,114.97500000000001,114.979,114.983,114.98700000000001,114.991,114.995,114.99900000000001,115.003,115.007,115.01100000000001,115.015,115.019,115.02300000000001,115.027,115.031,115.03500000000001,115.039,115.043,115.04700000000001,115.051,115.055,115.05900000000001,115.063,115.06700000000001,115.07100000000001,115.075,115.07900000000001,115.08300000000001,115.087,115.09100000000001,115.095,115.099,115.10300000000001,115.107,115.111,115.11500000000001,115.119,115.123,115.12700000000001,115.131,115.135,115.13900000000001,115.143,115.147,115.15100000000001,115.155,115.159,115.16300000000001,115.167,115.171,115.17500000000001,115.179,115.183,115.18700000000001,115.191,115.19500000000001,115.19900000000001,115.203,115.20700000000001,115.21100000000001,115.215,115.21900000000001,115.223,115.227,115.23100000000001,115.235,115.239,115.24300000000001,115.247,115.251,115.25500000000001,115.259,115.263,115.26700000000001,115.271,115.275,115.27900000000001,115.283,115.287,115.29100000000001,115.295,115.299,115.299,115.763,115.76700000000001,115.771,115.775,115.77900000000001,115.783,115.787,115.79100000000001,115.795,115.799,115.80300000000001,115.807,115.811,115.81500000000001,115.819,115.82300000000001,115.827,115.831,115.83500000000001,115.839,115.843,115.84700000000001,115.851,115.855,115.85900000000001,115.863,115.867,115.87100000000001,115.875,115.879,115.88300000000001,115.887,115.891,115.89500000000001,115.899,115.903,115.90700000000001,115.911,115.915,115.91900000000001,115.923,115.927,115.93100000000001,115.935,115.93900000000001,115.94300000000001,115.947,115.95100000000001,115.955,115.959,115.96300000000001,115.967,115.971,115.97500000000001,115.979,115.983,115.98700000000001,115.991,115.995,115.99900000000001,116.003,116.007,116.01100000000001,116.015,116.019,116.02300000000001,116.027,116.031,116.03500000000001,116.039,116.043,116.04700000000001,116.051,116.055,116.05900000000001,116.063,116.06700000000001,116.07100000000001,116.075,116.07900000000001,116.083,116.087,116.09100000000001,116.095,116.099,116.10300000000001,116.107,116.111,116.11500000000001,116.119,116.123,116.12700000000001,116.131,116.135,116.13900000000001,116.143,116.147,116.15100000000001,116.155,116.159,116.159,116.623,116.62700000000001,116.631,116.635,116.63900000000001,116.643,116.647,116.65100000000001,116.655,116.659,116.66300000000001,116.667,116.671,116.67500000000001,116.679,116.683,116.687,116.691,116.69500000000001,116.699,116.703,116.70700000000001,116.711,116.715,116.71900000000001,116.723,116.727,116.73100000000001,116.735,116.739,116.74300000000001,116.747,116.751,116.75500000000001,116.759,116.763,116.76700000000001,116.771,116.775,116.77900000000001,116.783,116.787,116.79100000000001,116.795,116.799,116.80300000000001,116.807,116.811,116.815,116.819,116.82300000000001,116.827,116.831,116.83500000000001,116.839,116.843,116.84700000000001,116.851,116.855,116.85900000000001,116.863,116.867,116.87100000000001,116.875,116.879,116.88300000000001,116.887,116.891,116.89500000000001,116.899,116.903,116.90700000000001,116.911,116.915,116.91900000000001,116.923,116.927,116.93100000000001,116.935,116.93900000000001,116.943,116.947,116.95100000000001,116.955,116.959,116.96300000000001,116.967,116.971,116.97500000000001,116.979,116.983,116.98700000000001,116.991,116.995,116.99900000000001,117.003,117.007,117.01100000000001,117.015,117.019,117.019,117.483,117.48700000000001,117.491,117.495,117.49900000000001,117.503,117.507,117.51100000000001,117.515,117.519,117.52300000000001,117.527,117.531,117.53500000000001,117.539,117.543,117.547,117.551,117.555,117.559,117.563,117.56700000000001,117.571,117.575,117.57900000000001,117.583,117.587,117.59100000000001,117.595,117.599,117.60300000000001,117.607,117.611,117.61500000000001,117.619,117.623,117.62700000000001,117.631,117.635,117.63900000000001,117.643,117.647,117.65100000000001,117.655,117.659,117.66300000000001,117.667,117.671,117.675,117.679,117.683,117.687,117.691,117.69500000000001,117.699,117.703,117.70700000000001,117.711,117.715,117.71900000000001,117.723,117.727,117.73100000000001,117.735,117.739,117.74300000000001,117.747,117.751,117.75500000000001,117.759,117.763,117.76700000000001,117.771,117.775,117.77900000000001,117.783,117.787,117.79100000000001,117.795,117.799,117.803,117.807,117.811,117.815,117.819,117.82300000000001,117.827,117.831,117.83500000000001,117.839,117.843,117.84700000000001,117.851,117.855,117.85900000000001,117.863,117.867,117.87100000000001,117.875,117.879,117.879,118.343,118.34700000000001,118.351,118.355,118.35900000000001,118.363,118.367,118.37100000000001,118.375,118.379,118.38300000000001,118.387,118.391,118.39500000000001,118.399,118.403,118.407,118.411,118.415,118.419,118.423,118.427,118.431,118.435,118.43900000000001,118.443,118.447,118.45100000000001,118.455,118.459,118.46300000000001,118.467,118.471,118.47500000000001,118.479,118.483,118.48700000000001,118.491,118.495,118.49900000000001,118.503,118.507,118.51100000000001,118.515,118.519,118.52300000000001,118.527,118.531,118.535,118.539,118.543,118.547,118.551,118.555,118.559,118.563,118.56700000000001,118.571,118.575,118.57900000000001,118.583,118.587,118.59100000000001,118.595,118.599,118.60300000000001,118.607,118.611,118.61500000000001,118.619,118.623,118.62700000000001,118.631,118.635,118.63900000000001,118.643,118.647,118.65100000000001,118.655,118.659,118.663,118.667,118.671,118.675,118.679,118.683,118.687,118.691,118.69500000000001,118.699,118.703,118.70700000000001,118.711,118.715,118.71900000000001,118.723,118.727,118.73100000000001,118.735,118.739,118.739,119.203,119.20700000000001,119.211,119.215,119.21900000000001,119.223,119.227,119.23100000000001,119.235,119.239,119.24300000000001,119.247,119.251,119.25500000000001,119.259,119.263,119.267,119.271,119.275,119.279,119.283,119.287,119.291,119.295,119.299,119.303,119.307,119.311,119.315,119.319,119.32300000000001,119.327,119.331,119.33500000000001,119.339,119.343,119.34700000000001,119.351,119.355,119.35900000000001,119.363,119.367,119.37100000000001,119.375,119.379,119.38300000000001,119.387,119.391,119.395,119.399,119.403,119.407,119.411,119.415,119.419,119.423,119.427,119.431,119.435,119.43900000000001,119.443,119.447,119.45100000000001,119.455,119.459,119.46300000000001,119.467,119.471,119.47500000000001,119.479,119.483,119.48700000000001,119.491,119.495,119.49900000000001,119.503,119.507,119.51100000000001,119.515,119.519,119.523,119.527,119.531,119.535,119.539,119.543,119.547,119.551,119.555,119.559,119.563,119.56700000000001,119.571,119.575,119.57900000000001,119.583,119.587,119.59100000000001,119.595,119.599,119.599,120.063,120.06700000000001,120.071,120.075,120.07900000000001,120.083,120.087,120.09100000000001,120.095,120.099,120.10300000000001,120.107,120.111,120.11500000000001,120.119,120.123,120.127,120.131,120.135,120.139,120.143,120.147,120.151,120.155,120.159,120.163,120.167,120.171,120.175,120.179,120.183,120.187,120.191,120.19500000000001,120.199,120.203,120.20700000000001,120.211,120.215,120.21900000000001,120.223,120.227,120.23100000000001,120.235,120.239,120.24300000000001,120.247,120.251,120.255,120.259,120.263,120.267,120.271,120.275,120.279,120.283,120.287,120.291,120.295,120.299,120.303,120.307,120.311,120.315,120.319,120.32300000000001,120.327,120.331,120.33500000000001,120.339,120.343,120.34700000000001,120.351,120.355,120.35900000000001,120.363,120.367,120.37100000000001,120.375,120.379,120.383,120.387,120.391,120.395,120.399,120.403,120.407,120.411,120.415,120.419,120.423,120.427,120.431,120.435,120.43900000000001,120.443,120.447,120.45100000000001,120.455,120.459,120.459,120.923,120.927,120.931,120.935,120.93900000000001,120.943,120.947,120.95100000000001,120.955,120.959,120.96300000000001,120.967,120.971,120.97500000000001,120.979,120.983,120.987,120.991,120.995,120.999,121.003,121.007,121.011,121.015,121.019,121.023,121.027,121.031,121.035,121.039,121.043,121.047,121.051,121.055,121.059,121.063,121.06700000000001,121.071,121.075,121.07900000000001,121.083,121.087,121.09100000000001,121.095,121.099,121.10300000000001,121.107,121.111,121.115,121.119,121.123,121.127,121.131,121.135,121.139,121.143,121.147,121.151,121.155,121.159,121.163,121.167,121.171,121.175,121.179,121.183,121.187,121.191,121.19500000000001,121.199,121.203,121.20700000000001,121.211,121.215,121.21900000000001,121.223,121.227,121.23100000000001,121.235,121.239,121.243,121.247,121.251,121.255,121.259,121.263,121.267,121.271,121.275,121.279,121.283,121.287,121.291,121.295,121.299,121.303,121.307,121.311,121.315,121.319,121.319,121.783,121.787,121.791,121.795,121.799,121.803,121.807,121.811,121.815,121.819,121.82300000000001,121.827,121.831,121.83500000000001,121.839,121.843,121.847,121.851,121.855,121.859,121.863,121.867,121.871,121.875,121.879,121.883,121.887,121.891,121.895,121.899,121.903,121.907,121.911,121.915,121.919,121.923,121.927,121.931,121.935,121.93900000000001,121.943,121.947,121.95100000000001,121.955,121.959,121.96300000000001,121.967,121.971,121.975,121.979,121.983,121.987,121.991,121.995,121.999,122.003,122.007,122.011,122.015,122.019,122.023,122.027,122.031,122.035,122.039,122.043,122.047,122.051,122.055,122.059,122.063,122.06700000000001,122.071,122.075,122.07900000000001,122.083,122.087,122.09100000000001,122.095,122.099,122.103,122.107,122.111,122.115,122.119,122.123,122.127,122.131,122.135,122.139,122.143,122.147,122.151,122.155,122.159,122.163,122.167,122.171,122.175,122.179,122.179,122.643,122.647,122.651,122.655,122.659,122.663,122.667,122.671,122.675,122.679,122.683,122.687,122.691,122.69500000000001,122.699,122.703,122.707,122.711,122.715,122.719,122.723,122.727,122.731,122.735,122.739,122.743,122.747,122.751,122.755,122.759,122.763,122.767,122.771,122.775,122.779,122.783,122.787,122.791,122.795,122.799,122.803,122.807,122.811,122.815,122.819,122.82300000000001,122.827,122.831,122.835,122.839,122.843,122.847,122.851,122.855,122.859,122.863,122.867,122.871,122.875,122.879,122.883,122.887,122.891,122.895,122.899,122.903,122.907,122.911,122.915,122.919,122.923,122.927,122.931,122.935,122.93900000000001,122.943,122.947,122.95100000000001,122.955,122.959,122.963,122.967,122.971,122.975,122.979,122.983,122.987,122.991,122.995,122.999,123.003,123.007,123.011,123.015,123.019,123.023,123.027,123.031,123.035,123.039,123.039,123.503,123.507,123.511,123.515,123.519,123.523,123.527,123.531,123.535,123.539,123.543,123.547,123.551,123.555,123.559,123.563,123.567,123.571,123.575,123.579,123.583,123.587,123.591,123.595,123.599,123.603,123.607,123.611,123.615,123.619,123.623,123.627,123.631,123.635,123.639,123.643,123.647,123.651,123.655,123.659,123.663,123.667,123.671,123.675,123.679,123.683,123.687,123.691,123.695,123.699,123.703,123.707,123.711,123.715,123.719,123.723,123.727,123.731,123.735,123.739,123.743,123.747,123.751,123.755,123.759,123.763,123.767,123.771,123.775,123.779,123.783,123.787,123.791,123.795,123.799,123.803,123.807,123.811,123.815,123.819,123.823,123.827,123.831,123.835,123.839,123.843,123.847,123.851,123.855,123.859,123.863,123.867,123.871,123.875,123.879,123.883,123.887,123.891,123.895,123.899,123.899,124.363,124.367,124.371,124.375,124.379,124.383,124.387,124.391,124.395,124.399,124.403,124.407,124.411,124.415,124.419,124.423,124.42699999999999,124.431,124.435,124.439,124.443,124.447,124.451,124.455,124.459,124.463,124.467,124.471,124.475,124.479,124.483,124.487,124.491,124.495,124.499,124.503,124.507,124.511,124.515,124.519,124.523,124.527,124.531,124.535,124.539,124.543,124.547,124.551,124.55499999999999,124.559,124.563,124.567,124.571,124.575,124.579,124.583,124.587,124.591,124.595,124.599,124.603,124.607,124.611,124.615,124.619,124.623,124.627,124.631,124.635,124.639,124.643,124.647,124.651,124.655,124.659,124.663,124.667,124.671,124.675,124.679,124.68299999999999,124.687,124.691,124.695,124.699,124.703,124.707,124.711,124.715,124.719,124.723,124.727,124.731,124.735,124.739,124.743,124.747,124.751,124.755,124.759,124.759,125.224,125.22800000000001,125.232,125.236,125.24000000000001,125.244,125.248,125.25200000000001,125.256,125.26,125.26400000000001,125.268,125.272,125.27600000000001,125.28,125.284,125.288,125.292,125.296,125.3,125.304,125.308,125.312,125.316,125.32000000000001,125.324,125.328,125.33200000000001,125.336,125.34,125.34400000000001,125.348,125.352,125.35600000000001,125.36,125.364,125.36800000000001,125.372,125.376,125.38000000000001,125.384,125.388,125.39200000000001,125.396,125.4,125.40400000000001,125.408,125.412,125.416,125.42,125.424,125.428,125.432,125.436,125.44,125.444,125.44800000000001,125.452,125.456,125.46000000000001,125.464,125.468,125.47200000000001,125.476,125.48,125.48400000000001,125.488,125.492,125.49600000000001,125.5,125.504,125.50800000000001,125.512,125.516,125.52000000000001,125.524,125.528,125.53200000000001,125.536,125.54,125.544,125.548,125.552,125.556,125.56,125.56400000000001,125.568,125.572,125.57600000000001,125.58,125.584,125.58800000000001,125.592,125.596,125.60000000000001,125.604,125.608,125.61200000000001,125.616,125.62,125.62,126.084,126.08800000000001,126.092,126.096,126.10000000000001,126.104,126.108,126.11200000000001,126.116,126.12,126.12400000000001,126.128,126.132,126.13600000000001,126.14,126.144,126.148,126.152,126.156,126.16,126.164,126.168,126.172,126.176,126.18,126.184,126.188,126.19200000000001,126.196,126.2,126.20400000000001,126.208,126.212,126.21600000000001,126.22,126.224,126.22800000000001,126.232,126.236,126.24000000000001,126.244,126.248,126.25200000000001,126.256,126.26,126.26400000000001,126.268,126.272,126.276,126.28,126.284,126.288,126.292,126.296,126.3,126.304,126.308,126.312,126.316,126.32000000000001,126.324,126.328,126.33200000000001,126.336,126.34,126.34400000000001,126.348,126.352,126.35600000000001,126.36,126.364,126.36800000000001,126.372,126.376,126.38000000000001,126.384,126.388,126.39200000000001,126.396,126.4,126.404,126.408,126.412,126.416,126.42,126.424,126.428,126.432,126.436,126.44,126.444,126.44800000000001,126.452,126.456,126.46000000000001,126.464,126.468,126.47200000000001,126.476,126.48,126.48,126.944,126.94800000000001,126.952,126.956,126.96000000000001,126.964,126.968,126.97200000000001,126.976,126.98,126.98400000000001,126.988,126.992,126.99600000000001,127.0,127.004,127.008,127.012,127.016,127.02,127.024,127.028,127.032,127.036,127.04,127.044,127.048,127.052,127.056,127.06,127.06400000000001,127.068,127.072,127.07600000000001,127.08,127.084,127.08800000000001,127.092,127.096,127.10000000000001,127.104,127.108,127.11200000000001,127.116,127.12,127.12400000000001,127.128,127.132,127.136,127.14,127.144,127.148,127.152,127.156,127.16,127.164,127.168,127.172,127.176,127.18,127.184,127.188,127.19200000000001,127.196,127.2,127.20400000000001,127.208,127.212,127.21600000000001,127.22,127.224,127.22800000000001,127.232,127.236,127.24000000000001,127.244,127.248,127.25200000000001,127.256,127.26,127.264,127.268,127.272,127.276,127.28,127.284,127.288,127.292,127.296,127.3,127.304,127.308,127.312,127.316,127.32000000000001,127.324,127.328,127.33200000000001,127.336,127.34,127.34,127.804,127.808,127.812,127.816,127.82000000000001,127.824,127.828,127.83200000000001,127.836,127.84,127.84400000000001,127.848,127.852,127.85600000000001,127.86,127.864,127.868,127.872,127.876,127.88,127.884,127.888,127.892,127.896,127.9,127.904,127.908,127.912,127.916,127.92,127.924,127.928,127.932,127.936,127.94,127.944,127.94800000000001,127.952,127.956,127.96000000000001,127.964,127.968,127.97200000000001,127.976,127.98,127.98400000000001,127.988,127.992,127.996,128.0,128.004,128.008,128.012,128.016,128.02,128.024,128.028,128.032,128.036,128.04,128.044,128.048,128.052,128.056,128.06,128.064,128.068,128.072,128.076,128.08,128.084,128.088,128.092,128.096,128.1,128.104,128.108,128.112,128.116,128.12,128.124,128.12800000000001,128.132,128.136,128.14000000000001,128.144,128.148,128.15200000000002,128.156,128.16,128.16400000000002,128.168,128.172,128.17600000000002,128.18,128.184,128.188,128.192,128.196,128.2,128.2,128.66400000000002,128.668,128.67200000000003,128.67600000000002,128.68,128.68400000000003,128.68800000000002,128.692,128.69600000000003,128.70000000000002,128.704,128.70800000000003,128.71200000000002,128.716,128.72000000000003,128.72400000000002,128.728,128.73200000000003,128.73600000000002,128.74,128.74400000000003,128.74800000000002,128.752,128.75600000000003,128.76000000000002,128.764,128.76800000000003,128.77200000000002,128.776,128.78000000000003,128.78400000000002,128.788,128.792,128.79600000000002,128.8,128.804,128.80800000000002,128.812,128.816,128.82000000000002,128.824,128.828,128.83200000000002,128.836,128.84,128.84400000000002,128.848,128.852,128.85600000000002,128.86,128.864,128.86800000000002,128.872,128.876,128.88000000000002,128.88400000000001,128.888,128.89200000000002,128.89600000000002,128.9,128.90400000000002,128.90800000000002,128.912,128.91600000000003,128.92000000000002,128.924,128.92800000000003,128.93200000000002,128.936,128.94000000000003,128.94400000000002,128.948,128.95200000000003,128.95600000000002,128.96,128.96400000000003,128.96800000000002,128.972,128.97600000000003,128.98000000000002,128.984,128.98800000000003,128.99200000000002,128.996,129.00000000000003,129.00400000000002,129.008,129.01200000000003,129.01600000000002,129.02,129.02400000000003,129.02800000000002,129.032,129.03600000000003,129.04000000000002,129.044,129.048,129.05200000000002,129.056,129.06,129.06,129.524,129.528,129.532,129.536,129.54,129.544,129.548,129.552,129.556,129.56,129.564,129.568,129.572,129.576,129.58,129.584,129.588,129.592,129.596,129.6,129.604,129.608,129.612,129.616,129.62,129.624,129.62800000000001,129.632,129.636,129.64000000000001,129.644,129.648,129.652,129.656,129.66,129.664,129.668,129.672,129.676,129.68,129.684,129.688,129.692,129.696,129.7,129.704,129.708,129.712,129.716,129.72,129.724,129.728,129.732,129.736,129.74,129.744,129.748,129.752,129.756,129.76,129.764,129.768,129.772,129.776,129.78,129.784,129.788,129.792,129.796,129.8,129.804,129.808,129.812,129.816,129.82,129.824,129.828,129.832,129.836,129.84,129.844,129.848,129.852,129.856,129.86,129.864,129.868,129.872,129.876,129.88,129.88400000000001,129.888,129.892,129.89600000000002,129.9,129.904,129.908,129.912,129.916,129.92,129.92,130.38400000000001,130.388,130.39200000000002,130.39600000000002,130.4,130.40400000000002,130.40800000000002,130.412,130.41600000000003,130.42000000000002,130.424,130.42800000000003,130.43200000000002,130.436,130.44000000000003,130.44400000000002,130.448,130.45200000000003,130.45600000000002,130.46,130.46400000000003,130.46800000000002,130.472,130.47600000000003,130.48000000000002,130.484,130.48800000000003,130.49200000000002,130.496,130.50000000000003,130.50400000000002,130.508,130.512,130.51600000000002,130.52,130.524,130.52800000000002,130.532,130.536,130.54000000000002,130.544,130.548,130.55200000000002,130.556,130.56,130.56400000000002,130.568,130.572,130.57600000000002,130.58,130.584,130.58800000000002,130.592,130.596,130.60000000000002,130.604,130.608,130.61200000000002,130.616,130.62,130.62400000000002,130.62800000000001,130.632,130.63600000000002,130.64000000000001,130.644,130.64800000000002,130.65200000000002,130.656,130.66000000000003,130.66400000000002,130.668,130.67200000000003,130.67600000000002,130.68,130.68400000000003,130.68800000000002,130.692,130.69600000000003,130.70000000000002,130.704,130.70800000000003,130.71200000000002,130.716,130.72000000000003,130.72400000000002,130.728,130.73200000000003,130.73600000000002,130.74,130.74400000000003,130.74800000000002,130.752,130.75600000000003,130.76000000000002,130.764,130.768,130.77200000000002,130.776,130.78,130.78,131.244,131.248,131.252,131.256,131.26,131.264,131.268,131.272,131.276,131.28,131.284,131.288,131.292,131.296,131.3,131.304,131.308,131.312,131.316,131.32,131.324,131.328,131.332,131.336,131.34,131.344,131.348,131.352,131.356,131.36,131.364,131.368,131.37199999999999,131.376,131.38,131.384,131.388,131.392,131.396,131.4,131.404,131.408,131.412,131.416,131.42,131.424,131.428,131.432,131.436,131.44,131.444,131.448,131.452,131.456,131.46,131.464,131.468,131.472,131.476,131.48,131.484,131.488,131.492,131.496,131.5,131.504,131.508,131.512,131.516,131.52,131.524,131.528,131.532,131.536,131.54,131.544,131.548,131.552,131.556,131.56,131.564,131.568,131.572,131.576,131.58,131.584,131.588,131.592,131.596,131.6,131.604,131.608,131.612,131.616,131.62,131.624,131.628,131.632,131.636,131.64,131.64,132.104,132.108,132.11200000000002,132.116,132.12,132.12400000000002,132.12800000000001,132.132,132.13600000000002,132.14000000000001,132.144,132.14800000000002,132.15200000000002,132.156,132.16000000000003,132.16400000000002,132.168,132.17200000000003,132.17600000000002,132.18,132.18400000000003,132.18800000000002,132.192,132.19600000000003,132.20000000000002,132.204,132.20800000000003,132.21200000000002,132.216,132.22000000000003,132.22400000000002,132.228,132.232,132.23600000000002,132.24,132.244,132.24800000000002,132.252,132.256,132.26000000000002,132.264,132.268,132.27200000000002,132.276,132.28,132.28400000000002,132.288,132.292,132.29600000000002,132.3,132.304,132.30800000000002,132.312,132.316,132.32000000000002,132.324,132.328,132.33200000000002,132.336,132.34,132.34400000000002,132.348,132.352,132.35600000000002,132.36,132.364,132.36800000000002,132.372,132.376,132.38000000000002,132.38400000000001,132.388,132.39200000000002,132.39600000000002,132.4,132.40400000000002,132.40800000000002,132.412,132.41600000000003,132.42000000000002,132.424,132.42800000000003,132.43200000000002,132.436,132.44000000000003,132.44400000000002,132.448,132.45200000000003,132.45600000000002,132.46,132.46400000000003,132.46800000000002,132.472,132.47600000000003,132.48000000000002,132.484,132.488,132.49200000000002,132.496,132.5,132.5,132.964,132.968,132.972,132.976,132.98,132.984,132.988,132.992,132.996,133.0,133.004,133.008,133.012,133.016,133.02,133.024,133.028,133.032,133.036,133.04,133.044,133.048,133.052,133.056,133.06,133.064,133.068,133.072,133.076,133.08,133.084,133.088,133.09199999999998,133.096,133.1,133.10399999999998,133.108,133.112,133.11599999999999,133.12,133.124,133.128,133.132,133.136,133.14,133.144,133.148,133.152,133.156,133.16,133.164,133.168,133.172,133.176,133.18,133.184,133.188,133.192,133.196,133.2,133.204,133.208,133.212,133.216,133.22,133.224,133.228,133.232,133.236,133.24,133.244,133.248,133.252,133.256,133.26,133.264,133.268,133.272,133.276,133.28,133.284,133.288,133.292,133.296,133.3,133.304,133.308,133.312,133.316,133.32,133.324,133.328,133.332,133.336,133.34,133.344,133.34799999999998,133.352,133.356,133.35999999999999,133.35999999999999,133.824,133.828,133.83200000000002,133.836,133.84,133.84400000000002,133.848,133.852,133.85600000000002,133.86,133.864,133.86800000000002,133.872,133.876,133.88000000000002,133.88400000000001,133.888,133.89200000000002,133.89600000000002,133.9,133.90400000000002,133.90800000000002,133.912,133.91600000000003,133.92000000000002,133.924,133.92800000000003,133.93200000000002,133.936,133.94000000000003,133.94400000000002,133.948,133.952,133.95600000000002,133.96,133.964,133.96800000000002,133.972,133.976,133.98000000000002,133.984,133.988,133.99200000000002,133.996,134.0,134.00400000000002,134.008,134.012,134.01600000000002,134.02,134.024,134.02800000000002,134.032,134.036,134.04000000000002,134.044,134.048,134.05200000000002,134.056,134.06,134.06400000000002,134.068,134.072,134.07600000000002,134.08,134.084,134.08800000000002,134.092,134.096,134.10000000000002,134.104,134.108,134.11200000000002,134.116,134.12,134.12400000000002,134.12800000000001,134.132,134.13600000000002,134.14000000000001,134.144,134.14800000000002,134.15200000000002,134.156,134.16000000000003,134.16400000000002,134.168,134.17200000000003,134.17600000000002,134.18,134.18400000000003,134.18800000000002,134.192,134.19600000000003,134.20000000000002,134.204,134.208,134.21200000000002,134.216,134.22,134.22,134.684,134.688,134.692,134.696,134.7,134.704,134.708,134.712,134.716,134.72,134.724,134.728,134.732,134.736,134.74,134.744,134.748,134.752,134.756,134.76,134.764,134.768,134.772,134.776,134.78,134.784,134.788,134.792,134.796,134.8,134.804,134.808,134.81199999999998,134.816,134.82,134.82399999999998,134.828,134.832,134.83599999999998,134.84,134.844,134.84799999999998,134.852,134.856,134.85999999999999,134.864,134.868,134.87199999999999,134.876,134.88,134.884,134.888,134.892,134.896,134.9,134.904,134.908,134.912,134.916,134.92,134.924,134.928,134.932,134.936,134.94,134.944,134.948,134.952,134.956,134.96,134.964,134.968,134.972,134.976,134.98,134.984,134.988,134.992,134.996,135.0,135.004,135.008,135.012,135.016,135.02,135.024,135.028,135.032,135.036,135.04,135.044,135.048,135.052,135.056,135.06,135.064,135.06799999999998,135.072,135.076,135.07999999999998,135.07999999999998,135.544,135.548,135.55200000000002,135.556,135.56,135.56400000000002,135.568,135.572,135.57600000000002,135.58,135.584,135.58800000000002,135.592,135.596,135.60000000000002,135.604,135.608,135.61200000000002,135.616,135.62,135.62400000000002,135.62800000000001,135.632,135.63600000000002,135.64000000000001,135.644,135.64800000000002,135.65200000000002,135.656,135.66000000000003,135.66400000000002,135.668,135.672,135.67600000000002,135.68,135.684,135.68800000000002,135.692,135.696,135.70000000000002,135.704,135.708,135.71200000000002,135.716,135.72,135.72400000000002,135.728,135.732,135.73600000000002,135.74,135.744,135.74800000000002,135.752,135.756,135.76000000000002,135.764,135.768,135.77200000000002,135.776,135.78,135.78400000000002,135.788,135.792,135.79600000000002,135.8,135.804,135.80800000000002,135.812,135.816,135.82000000000002,135.824,135.828,135.83200000000002,135.836,135.84,135.84400000000002,135.848,135.852,135.85600000000002,135.86,135.864,135.86800000000002,135.872,135.876,135.88000000000002,135.88400000000001,135.888,135.89200000000002,135.89600000000002,135.9,135.90400000000002,135.90800000000002,135.912,135.91600000000003,135.92000000000002,135.924,135.928,135.93200000000002,135.936,135.94,135.94,136.404,136.408,136.412,136.416,136.42,136.424,136.428,136.432,136.436,136.44,136.444,136.448,136.452,136.456,136.46,136.464,136.468,136.472,136.476,136.48,136.484,136.488,136.492,136.496,136.5,136.504,136.508,136.512,136.516,136.52,136.524,136.528,136.53199999999998,136.536,136.54,136.54399999999998,136.548,136.552,136.55599999999998,136.56,136.564,136.56799999999998,136.572,136.576,136.57999999999998,136.584,136.588,136.59199999999998,136.596,136.6,136.60399999999998,136.608,136.612,136.61599999999999,136.62,136.624,136.628,136.632,136.636,136.64,136.644,136.648,136.652,136.656,136.66,136.664,136.668,136.672,136.676,136.68,136.684,136.688,136.692,136.696,136.7,136.704,136.708,136.712,136.716,136.72,136.724,136.728,136.732,136.736,136.74,136.744,136.748,136.752,136.756,136.76,136.764,136.768,136.772,136.776,136.78,136.784,136.78799999999998,136.792,136.796,136.79999999999998,136.79999999999998,137.264,137.268,137.27200000000002,137.276,137.28,137.28400000000002,137.288,137.292,137.29600000000002,137.3,137.304,137.30800000000002,137.312,137.316,137.32000000000002,137.324,137.328,137.33200000000002,137.336,137.34,137.34400000000002,137.348,137.352,137.35600000000002,137.36,137.364,137.36800000000002,137.372,137.376,137.38000000000002,137.38400000000001,137.388,137.392,137.39600000000002,137.4,137.404,137.40800000000002,137.412,137.416,137.42000000000002,137.424,137.428,137.43200000000002,137.436,137.44,137.44400000000002,137.448,137.452,137.45600000000002,137.46,137.464,137.46800000000002,137.472,137.476,137.48000000000002,137.484,137.488,137.49200000000002,137.496,137.5,137.50400000000002,137.508,137.512,137.51600000000002,137.52,137.524,137.52800000000002,137.532,137.536,137.54000000000002,137.544,137.548,137.55200000000002,137.556,137.56,137.56400000000002,137.568,137.572,137.57600000000002,137.58,137.584,137.58800000000002,137.592,137.596,137.60000000000002,137.604,137.608,137.61200000000002,137.616,137.62,137.62400000000002,137.62800000000001,137.632,137.63600000000002,137.64000000000001,137.644,137.648,137.65200000000002,137.656,137.66,137.66,138.124,138.128,138.132,138.136,138.14,138.144,138.148,138.152,138.156,138.16,138.164,138.168,138.172,138.176,138.18,138.184,138.188,138.192,138.196,138.2,138.204,138.208,138.212,138.216,138.22,138.224,138.228,138.232,138.236,138.24,138.244,138.248,138.25199999999998,138.256,138.26,138.26399999999998,138.268,138.272,138.27599999999998,138.28,138.284,138.28799999999998,138.292,138.296,138.29999999999998,138.304,138.308,138.31199999999998,138.316,138.32,138.32399999999998,138.328,138.332,138.33599999999998,138.34,138.344,138.34799999999998,138.352,138.356,138.35999999999999,138.364,138.368,138.37199999999999,138.376,138.38,138.384,138.388,138.392,138.396,138.4,138.404,138.408,138.412,138.416,138.42,138.424,138.428,138.432,138.436,138.44,138.444,138.448,138.452,138.456,138.46,138.464,138.468,138.472,138.476,138.48,138.484,138.488,138.492,138.496,138.5,138.504,138.50799999999998,138.512,138.516,138.51999999999998,138.51999999999998,138.984,138.988,138.99200000000002,138.996,139.0,139.00400000000002,139.008,139.012,139.01600000000002,139.02,139.024,139.02800000000002,139.032,139.036,139.04000000000002,139.044,139.048,139.05200000000002,139.056,139.06,139.06400000000002,139.068,139.072,139.07600000000002,139.08,139.084,139.08800000000002,139.092,139.096,139.10000000000002,139.104,139.108,139.112,139.116,139.12,139.124,139.12800000000001,139.132,139.136,139.14000000000001,139.144,139.148,139.15200000000002,139.156,139.16,139.16400000000002,139.168,139.172,139.17600000000002,139.18,139.184,139.18800000000002,139.192,139.196,139.20000000000002,139.204,139.208,139.21200000000002,139.216,139.22,139.22400000000002,139.228,139.232,139.23600000000002,139.24,139.244,139.24800000000002,139.252,139.256,139.26000000000002,139.264,139.268,139.27200000000002,139.276,139.28,139.28400000000002,139.288,139.292,139.29600000000002,139.3,139.304,139.30800000000002,139.312,139.316,139.32000000000002,139.324,139.328,139.33200000000002,139.336,139.34,139.34400000000002,139.348,139.352,139.35600000000002,139.36,139.364,139.368,139.372,139.376,139.38,139.38,139.844,139.84799999999998,139.852,139.856,139.85999999999999,139.864,139.868,139.87199999999999,139.876,139.88,139.884,139.888,139.892,139.896,139.9,139.904,139.908,139.912,139.916,139.92,139.924,139.928,139.932,139.936,139.94,139.944,139.948,139.952,139.956,139.96,139.964,139.968,139.97199999999998,139.976,139.98,139.98399999999998,139.988,139.992,139.99599999999998,140.0,140.004,140.00799999999998,140.012,140.016,140.01999999999998,140.024,140.028,140.03199999999998,140.036,140.04,140.04399999999998,140.048,140.052,140.05599999999998,140.06,140.064,140.06799999999998,140.072,140.076,140.07999999999998,140.084,140.088,140.09199999999998,140.096,140.1,140.10399999999998,140.108,140.112,140.11599999999999,140.12,140.124,140.128,140.132,140.136,140.14,140.144,140.148,140.152,140.156,140.16,140.164,140.168,140.172,140.176,140.18,140.184,140.188,140.192,140.196,140.2,140.204,140.208,140.212,140.216,140.22,140.224,140.22799999999998,140.232,140.236,140.23999999999998,140.23999999999998,140.704,140.708,140.71200000000002,140.716,140.72,140.72400000000002,140.728,140.732,140.73600000000002,140.74,140.744,140.74800000000002,140.752,140.756,140.76000000000002,140.764,140.768,140.77200000000002,140.776,140.78,140.78400000000002,140.788,140.792,140.79600000000002,140.8,140.804,140.80800000000002,140.812,140.816,140.82000000000002,140.824,140.828,140.832,140.836,140.84,140.844,140.848,140.852,140.856,140.86,140.864,140.868,140.872,140.876,140.88,140.88400000000001,140.888,140.892,140.89600000000002,140.9,140.904,140.90800000000002,140.912,140.916,140.92000000000002,140.924,140.928,140.93200000000002,140.936,140.94,140.94400000000002,140.948,140.952,140.95600000000002,140.96,140.964,140.96800000000002,140.972,140.976,140.98000000000002,140.984,140.988,140.99200000000002,140.996,141.0,141.00400000000002,141.008,141.012,141.01600000000002,141.02,141.024,141.02800000000002,141.032,141.036,141.04000000000002,141.044,141.048,141.05200000000002,141.056,141.06,141.06400000000002,141.068,141.072,141.07600000000002,141.08,141.084,141.088,141.092,141.096,141.1,141.1,141.564,141.56799999999998,141.572,141.576,141.57999999999998,141.584,141.588,141.59199999999998,141.596,141.6,141.60399999999998,141.608,141.612,141.61599999999999,141.62,141.624,141.628,141.632,141.636,141.64,141.644,141.648,141.652,141.656,141.66,141.664,141.668,141.672,141.676,141.68,141.684,141.688,141.69199999999998,141.696,141.7,141.70399999999998,141.708,141.712,141.71599999999998,141.72,141.724,141.72799999999998,141.732,141.736,141.73999999999998,141.744,141.748,141.75199999999998,141.756,141.76,141.76399999999998,141.768,141.772,141.77599999999998,141.78,141.784,141.78799999999998,141.792,141.796,141.79999999999998,141.804,141.808,141.81199999999998,141.816,141.82,141.82399999999998,141.828,141.832,141.83599999999998,141.84,141.844,141.84799999999998,141.852,141.856,141.85999999999999,141.864,141.868,141.87199999999999,141.876,141.88,141.884,141.888,141.892,141.896,141.9,141.904,141.908,141.912,141.916,141.92,141.924,141.928,141.932,141.936,141.94,141.944,141.94799999999998,141.952,141.956,141.95999999999998,141.95999999999998,142.424,142.428,142.43200000000002,142.436,142.44,142.44400000000002,142.448,142.452,142.45600000000002,142.46,142.464,142.46800000000002,142.472,142.476,142.48000000000002,142.484,142.488,142.49200000000002,142.496,142.5,142.50400000000002,142.508,142.512,142.51600000000002,142.52,142.524,142.52800000000002,142.532,142.536,142.54000000000002,142.544,142.548,142.552,142.556,142.56,142.564,142.568,142.572,142.576,142.58,142.584,142.588,142.592,142.596,142.6,142.604,142.608,142.612,142.616,142.62,142.624,142.62800000000001,142.632,142.636,142.64000000000001,142.644,142.648,142.65200000000002,142.656,142.66,142.66400000000002,142.668,142.672,142.67600000000002,142.68,142.684,142.68800000000002,142.692,142.696,142.70000000000002,142.704,142.708,142.71200000000002,142.716,142.72,142.72400000000002,142.728,142.732,142.73600000000002,142.74,142.744,142.74800000000002,142.752,142.756,142.76000000000002,142.764,142.768,142.77200000000002,142.776,142.78,142.78400000000002,142.788,142.792,142.79600000000002,142.8,142.804,142.808,142.812,142.816,142.82,142.82,143.284,143.28799999999998,143.292,143.296,143.29999999999998,143.304,143.308,143.31199999999998,143.316,143.32,143.32399999999998,143.328,143.332,143.33599999999998,143.34,143.344,143.34799999999998,143.352,143.356,143.35999999999999,143.364,143.368,143.37199999999999,143.376,143.38,143.384,143.388,143.392,143.396,143.4,143.404,143.408,143.41199999999998,143.416,143.42,143.42399999999998,143.428,143.432,143.43599999999998,143.44,143.444,143.44799999999998,143.452,143.456,143.45999999999998,143.464,143.468,143.47199999999998,143.476,143.48,143.48399999999998,143.488,143.492,143.49599999999998,143.5,143.504,143.50799999999998,143.512,143.516,143.51999999999998,143.524,143.528,143.53199999999998,143.536,143.54,143.54399999999998,143.548,143.552,143.55599999999998,143.56,143.564,143.56799999999998,143.572,143.576,143.57999999999998,143.584,143.588,143.59199999999998,143.596,143.6,143.60399999999998,143.608,143.612,143.61599999999999,143.62,143.624,143.628,143.632,143.636,143.64,143.644,143.648,143.652,143.656,143.66,143.664,143.66799999999998,143.672,143.676,143.67999999999998,143.67999999999998,144.144,144.148,144.15200000000002,144.156,144.16,144.16400000000002,144.168,144.172,144.17600000000002,144.18,144.184,144.18800000000002,144.192,144.196,144.20000000000002,144.204,144.208,144.21200000000002,144.216,144.22,144.22400000000002,144.228,144.232,144.23600000000002,144.24,144.244,144.24800000000002,144.252,144.256,144.26000000000002,144.264,144.268,144.272,144.276,144.28,144.284,144.288,144.292,144.296,144.3,144.304,144.308,144.312,144.316,144.32,144.324,144.328,144.332,144.336,144.34,144.344,144.348,144.352,144.356,144.36,144.364,144.368,144.372,144.376,144.38,144.38400000000001,144.388,144.392,144.39600000000002,144.4,144.404,144.40800000000002,144.412,144.416,144.42000000000002,144.424,144.428,144.43200000000002,144.436,144.44,144.44400000000002,144.448,144.452,144.45600000000002,144.46,144.464,144.46800000000002,144.472,144.476,144.48000000000002,144.484,144.488,144.49200000000002,144.496,144.5,144.50400000000002,144.508,144.512,144.51600000000002,144.52,144.524,144.528,144.532,144.536,144.54,144.54,145.004,145.00799999999998,145.012,145.016,145.01999999999998,145.024,145.028,145.03199999999998,145.036,145.04,145.04399999999998,145.048,145.052,145.05599999999998,145.06,145.064,145.06799999999998,145.072,145.076,145.07999999999998,145.084,145.088,145.09199999999998,145.096,145.1,145.10399999999998,145.108,145.112,145.11599999999999,145.12,145.124,145.128,145.13199999999998,145.136,145.14,145.14399999999998,145.148,145.152,145.15599999999998,145.16,145.164,145.16799999999998,145.172,145.176,145.17999999999998,145.184,145.188,145.19199999999998,145.196,145.2,145.20399999999998,145.208,145.212,145.21599999999998,145.22,145.224,145.22799999999998,145.232,145.236,145.23999999999998,145.244,145.248,145.25199999999998,145.256,145.26,145.26399999999998,145.268,145.272,145.27599999999998,145.28,145.284,145.28799999999998,145.292,145.296,145.29999999999998,145.304,145.308,145.31199999999998,145.316,145.32,145.32399999999998,145.328,145.332,145.33599999999998,145.34,145.344,145.34799999999998,145.352,145.356,145.35999999999999,145.364,145.368,145.37199999999999,145.376,145.38,145.384,145.38799999999998,145.392,145.396,145.39999999999998,145.39999999999998,145.864,145.868,145.872,145.876,145.88,145.88400000000001,145.888,145.892,145.89600000000002,145.9,145.904,145.90800000000002,145.912,145.916,145.92000000000002,145.924,145.928,145.93200000000002,145.936,145.94,145.94400000000002,145.948,145.952,145.95600000000002,145.96,145.964,145.96800000000002,145.972,145.976,145.98000000000002,145.984,145.988,145.992,145.996,146.0,146.004,146.008,146.012,146.016,146.02,146.024,146.028,146.032,146.036,146.04,146.044,146.048,146.052,146.056,146.06,146.064,146.068,146.072,146.076,146.08,146.084,146.088,146.092,146.096,146.1,146.104,146.108,146.112,146.116,146.12,146.124,146.12800000000001,146.132,146.136,146.14000000000001,146.144,146.148,146.15200000000002,146.156,146.16,146.16400000000002,146.168,146.172,146.17600000000002,146.18,146.184,146.18800000000002,146.192,146.196,146.20000000000002,146.204,146.208,146.21200000000002,146.216,146.22,146.22400000000002,146.228,146.232,146.23600000000002,146.24,146.244,146.248,146.252,146.256,146.26,146.26,146.724,146.72799999999998,146.732,146.736,146.73999999999998,146.744,146.748,146.75199999999998,146.756,146.76,146.76399999999998,146.768,146.772,146.77599999999998,146.78,146.784,146.78799999999998,146.792,146.796,146.79999999999998,146.804,146.808,146.81199999999998,146.816,146.82,146.82399999999998,146.828,146.832,146.83599999999998,146.84,146.844,146.84799999999998,146.85199999999998,146.856,146.85999999999999,146.86399999999998,146.868,146.87199999999999,146.87599999999998,146.88,146.884,146.88799999999998,146.892,146.896,146.89999999999998,146.904,146.908,146.91199999999998,146.916,146.92,146.92399999999998,146.928,146.932,146.93599999999998,146.94,146.944,146.94799999999998,146.952,146.956,146.95999999999998,146.964,146.968,146.97199999999998,146.976,146.98,146.98399999999998,146.988,146.992,146.99599999999998,147.0,147.004,147.00799999999998,147.012,147.016,147.01999999999998,147.024,147.028,147.03199999999998,147.036,147.04,147.04399999999998,147.048,147.052,147.05599999999998,147.06,147.064,147.06799999999998,147.072,147.076,147.07999999999998,147.084,147.088,147.09199999999998,147.096,147.1,147.10399999999998,147.10799999999998,147.112,147.11599999999999,147.11999999999998,147.11999999999998,147.584,147.588,147.592,147.596,147.6,147.604,147.608,147.612,147.616,147.62,147.624,147.62800000000001,147.632,147.636,147.64000000000001,147.644,147.648,147.65200000000002,147.656,147.66,147.66400000000002,147.668,147.672,147.67600000000002,147.68,147.684,147.68800000000002,147.692,147.696,147.70000000000002,147.704,147.708,147.712,147.716,147.72,147.724,147.728,147.732,147.736,147.74,147.744,147.748,147.752,147.756,147.76,147.764,147.768,147.772,147.776,147.78,147.784,147.788,147.792,147.796,147.8,147.804,147.808,147.812,147.816,147.82,147.824,147.828,147.832,147.836,147.84,147.844,147.848,147.852,147.856,147.86,147.864,147.868,147.872,147.876,147.88,147.88400000000001,147.888,147.892,147.89600000000002,147.9,147.904,147.90800000000002,147.912,147.916,147.92000000000002,147.924,147.928,147.93200000000002,147.936,147.94,147.94400000000002,147.948,147.952,147.95600000000002,147.96,147.964,147.968,147.972,147.976,147.98,147.98,148.44400000000002,148.448,148.45200000000003,148.45600000000002,148.46,148.46400000000003,148.46800000000002,148.472,148.47600000000003,148.48000000000002,148.484,148.48800000000003,148.49200000000002,148.496,148.50000000000003,148.50400000000002,148.508,148.51200000000003,148.51600000000002,148.52,148.52400000000003,148.52800000000002,148.532,148.53600000000003,148.54000000000002,148.544,148.54800000000003,148.55200000000002,148.556,148.56000000000003,148.56400000000002,148.568,148.572,148.57600000000002,148.58,148.584,148.58800000000002,148.592,148.596,148.60000000000002,148.604,148.608,148.61200000000002,148.616,148.62,148.62400000000002,148.62800000000001,148.632,148.63600000000002,148.64000000000001,148.644,148.64800000000002,148.65200000000002,148.656,148.66000000000003,148.66400000000002,148.668,148.67200000000003,148.67600000000002,148.68,148.68400000000003,148.68800000000002,148.692,148.69600000000003,148.70000000000002,148.704,148.70800000000003,148.71200000000002,148.716,148.72000000000003,148.72400000000002,148.728,148.73200000000003,148.73600000000002,148.74,148.74400000000003,148.74800000000002,148.752,148.75600000000003,148.76000000000002,148.764,148.76800000000003,148.77200000000002,148.776,148.78000000000003,148.78400000000002,148.788,148.79200000000003,148.79600000000002,148.8,148.80400000000003,148.80800000000002,148.812,148.81600000000003,148.82000000000002,148.824,148.828,148.83200000000002,148.836,148.84,148.84,149.304,149.308,149.312,149.316,149.32,149.324,149.328,149.332,149.336,149.34,149.344,149.348,149.352,149.356,149.36,149.364,149.368,149.372,149.376,149.38,149.38400000000001,149.388,149.392,149.39600000000002,149.4,149.404,149.40800000000002,149.412,149.416,149.42000000000002,149.424,149.428,149.432,149.436,149.44,149.444,149.448,149.452,149.456,149.46,149.464,149.468,149.472,149.476,149.48,149.484,149.488,149.492,149.496,149.5,149.504,149.508,149.512,149.516,149.52,149.524,149.528,149.532,149.536,149.54,149.544,149.548,149.552,149.556,149.56,149.564,149.568,149.572,149.576,149.58,149.584,149.588,149.592,149.596,149.6,149.604,149.608,149.612,149.616,149.62,149.624,149.62800000000001,149.632,149.636,149.64000000000001,149.644,149.648,149.65200000000002,149.656,149.66,149.66400000000002,149.668,149.672,149.67600000000002,149.68,149.684,149.688,149.692,149.696,149.7,149.7,150.16400000000002,150.168,150.17200000000003,150.17600000000002,150.18,150.18400000000003,150.18800000000002,150.192,150.19600000000003,150.20000000000002,150.204,150.20800000000003,150.21200000000002,150.216,150.22000000000003,150.22400000000002,150.228,150.23200000000003,150.23600000000002,150.24,150.24400000000003,150.24800000000002,150.252,150.25600000000003,150.26000000000002,150.264,150.26800000000003,150.27200000000002,150.276,150.28000000000003,150.28400000000002,150.288,150.292,150.29600000000002,150.3,150.304,150.30800000000002,150.312,150.316,150.32000000000002,150.324,150.328,150.33200000000002,150.336,150.34,150.34400000000002,150.348,150.352,150.35600000000002,150.36,150.364,150.36800000000002,150.372,150.376,150.38000000000002,150.38400000000001,150.388,150.39200000000002,150.39600000000002,150.4,150.40400000000002,150.40800000000002,150.412,150.41600000000003,150.42000000000002,150.424,150.42800000000003,150.43200000000002,150.436,150.44000000000003,150.44400000000002,150.448,150.45200000000003,150.45600000000002,150.46,150.46400000000003,150.46800000000002,150.472,150.47600000000003,150.48000000000002,150.484,150.48800000000003,150.49200000000002,150.496,150.50000000000003,150.50400000000002,150.508,150.51200000000003,150.51600000000002,150.52,150.52400000000003,150.52800000000002,150.532,150.53600000000003,150.54000000000002,150.544,150.548,150.55200000000002,150.556,150.56,150.56,151.024,151.028,151.032,151.036,151.04,151.044,151.048,151.052,151.056,151.06,151.064,151.068,151.072,151.076,151.08,151.084,151.088,151.092,151.096,151.1,151.104,151.108,151.112,151.116,151.12,151.124,151.12800000000001,151.132,151.136,151.14000000000001,151.144,151.148,151.152,151.156,151.16,151.164,151.168,151.172,151.176,151.18,151.184,151.188,151.192,151.196,151.2,151.204,151.208,151.212,151.216,151.22,151.224,151.228,151.232,151.236,151.24,151.244,151.248,151.252,151.256,151.26,151.264,151.268,151.272,151.276,151.28,151.284,151.288,151.292,151.296,151.3,151.304,151.308,151.312,151.316,151.32,151.324,151.328,151.332,151.336,151.34,151.344,151.348,151.352,151.356,151.36,151.364,151.368,151.372,151.376,151.38,151.38400000000001,151.388,151.392,151.39600000000002,151.4,151.404,151.408,151.412,151.416,151.42,151.42,151.88400000000001,151.888,151.89200000000002,151.89600000000002,151.9,151.90400000000002,151.90800000000002,151.912,151.91600000000003,151.92000000000002,151.924,151.92800000000003,151.93200000000002,151.936,151.94000000000003,151.94400000000002,151.948,151.95200000000003,151.95600000000002,151.96,151.96400000000003,151.96800000000002,151.972,151.97600000000003,151.98000000000002,151.984,151.98800000000003,151.99200000000002,151.996,152.00000000000003,152.00400000000002,152.008,152.012,152.01600000000002,152.02,152.024,152.02800000000002,152.032,152.036,152.04000000000002,152.044,152.048,152.05200000000002,152.056,152.06,152.06400000000002,152.068,152.072,152.07600000000002,152.08,152.084,152.08800000000002,152.092,152.096,152.10000000000002,152.104,152.108,152.11200000000002,152.116,152.12,152.12400000000002,152.12800000000001,152.132,152.13600000000002,152.14000000000001,152.144,152.14800000000002,152.15200000000002,152.156,152.16000000000003,152.16400000000002,152.168,152.17200000000003,152.17600000000002,152.18,152.18400000000003,152.18800000000002,152.192,152.19600000000003,152.20000000000002,152.204,152.20800000000003,152.21200000000002,152.216,152.22000000000003,152.22400000000002,152.228,152.23200000000003,152.23600000000002,152.24,152.24400000000003,152.24800000000002,152.252,152.25600000000003,152.26000000000002,152.264,152.268,152.27200000000002,152.276,152.28,152.28,152.744,152.748,152.752,152.756,152.76,152.764,152.768,152.772,152.776,152.78,152.784,152.788,152.792,152.796,152.8,152.804,152.808,152.812,152.816,152.82,152.824,152.828,152.832,152.836,152.84,152.844,152.848,152.852,152.856,152.86,152.864,152.868,152.87199999999999,152.876,152.88,152.884,152.888,152.892,152.896,152.9,152.904,152.908,152.912,152.916,152.92,152.924,152.928,152.932,152.936,152.94,152.944,152.948,152.952,152.956,152.96,152.964,152.968,152.972,152.976,152.98,152.984,152.988,152.992,152.996,153.0,153.004,153.008,153.012,153.016,153.02,153.024,153.028,153.032,153.036,153.04,153.044,153.048,153.052,153.056,153.06,153.064,153.068,153.072,153.076,153.08,153.084,153.088,153.092,153.096,153.1,153.104,153.108,153.112,153.116,153.12,153.124,153.128,153.132,153.136,153.14,153.14,153.604,153.608,153.61200000000002,153.616,153.62,153.62400000000002,153.62800000000001,153.632,153.63600000000002,153.64000000000001,153.644,153.64800000000002,153.65200000000002,153.656,153.66000000000003,153.66400000000002,153.668,153.67200000000003,153.67600000000002,153.68,153.68400000000003,153.68800000000002,153.692,153.69600000000003,153.70000000000002,153.704,153.70800000000003,153.71200000000002,153.716,153.72000000000003,153.72400000000002,153.728,153.732,153.73600000000002,153.74,153.744,153.74800000000002,153.752,153.756,153.76000000000002,153.764,153.768,153.77200000000002,153.776,153.78,153.78400000000002,153.788,153.792,153.79600000000002,153.8,153.804,153.80800000000002,153.812,153.816,153.82000000000002,153.824,153.828,153.83200000000002,153.836,153.84,153.84400000000002,153.848,153.852,153.85600000000002,153.86,153.864,153.86800000000002,153.872,153.876,153.88000000000002,153.88400000000001,153.888,153.89200000000002,153.89600000000002,153.9,153.90400000000002,153.90800000000002,153.912,153.91600000000003,153.92000000000002,153.924,153.92800000000003,153.93200000000002,153.936,153.94000000000003,153.94400000000002,153.948,153.95200000000003,153.95600000000002,153.96,153.96400000000003,153.96800000000002,153.972,153.97600000000003,153.98000000000002,153.984,153.988,153.99200000000002,153.996,154.0,154.0,154.464,154.468,154.472,154.476,154.48,154.484,154.488,154.492,154.496,154.5,154.504,154.508,154.512,154.516,154.52,154.524,154.528,154.532,154.536,154.54,154.544,154.548,154.552,154.556,154.56,154.564,154.568,154.572,154.576,154.58,154.584,154.588,154.59199999999998,154.596,154.6,154.60399999999998,154.608,154.612,154.61599999999999,154.62,154.624,154.628,154.632,154.636,154.64,154.644,154.648,154.652,154.656,154.66,154.664,154.668,154.672,154.676,154.68,154.684,154.688,154.692,154.696,154.7,154.704,154.708,154.712,154.716,154.72,154.724,154.728,154.732,154.736,154.74,154.744,154.748,154.752,154.756,154.76,154.764,154.768,154.772,154.776,154.78,154.784,154.788,154.792,154.796,154.8,154.804,154.808,154.812,154.816,154.82,154.824,154.828,154.832,154.836,154.84,154.844,154.84799999999998,154.852,154.856,154.85999999999999,154.85999999999999,155.324,155.328,155.33200000000002,155.336,155.34,155.34400000000002,155.348,155.352,155.35600000000002,155.36,155.364,155.36800000000002,155.372,155.376,155.38000000000002,155.38400000000001,155.388,155.39200000000002,155.39600000000002,155.4,155.40400000000002,155.40800000000002,155.412,155.41600000000003,155.42000000000002,155.424,155.42800000000003,155.43200000000002,155.436,155.44000000000003,155.44400000000002,155.448,155.452,155.45600000000002,155.46,155.464,155.46800000000002,155.472,155.476,155.48000000000002,155.484,155.488,155.49200000000002,155.496,155.5,155.50400000000002,155.508,155.512,155.51600000000002,155.52,155.524,155.52800000000002,155.532,155.536,155.54000000000002,155.544,155.548,155.55200000000002,155.556,155.56,155.56400000000002,155.568,155.572,155.57600000000002,155.58,155.584,155.58800000000002,155.592,155.596,155.60000000000002,155.604,155.608,155.61200000000002,155.616,155.62,155.62400000000002,155.62800000000001,155.632,155.63600000000002,155.64000000000001,155.644,155.64800000000002,155.65200000000002,155.656,155.66000000000003,155.66400000000002,155.668,155.67200000000003,155.67600000000002,155.68,155.68400000000003,155.68800000000002,155.692,155.69600000000003,155.70000000000002,155.704,155.708,155.71200000000002,155.716,155.72,155.72,156.184,156.188,156.192,156.196,156.2,156.204,156.208,156.212,156.216,156.22,156.224,156.228,156.232,156.236,156.24,156.244,156.248,156.252,156.256,156.26,156.264,156.268,156.272,156.276,156.28,156.284,156.288,156.292,156.296,156.3,156.304,156.308,156.31199999999998,156.316,156.32,156.32399999999998,156.328,156.332,156.33599999999998,156.34,156.344,156.34799999999998,156.352,156.356,156.35999999999999,156.364,156.368,156.37199999999999,156.376,156.38,156.384,156.388,156.392,156.396,156.4,156.404,156.408,156.412,156.416,156.42,156.424,156.428,156.432,156.436,156.44,156.444,156.448,156.452,156.456,156.46,156.464,156.468,156.472,156.476,156.48,156.484,156.488,156.492,156.496,156.5,156.504,156.508,156.512,156.516,156.52,156.524,156.528,156.532,156.536,156.54,156.544,156.548,156.552,156.556,156.56,156.564,156.56799999999998,156.572,156.576,156.57999999999998,156.57999999999998,157.044,157.048,157.05200000000002,157.056,157.06,157.06400000000002,157.068,157.072,157.07600000000002,157.08,157.084,157.08800000000002,157.092,157.096,157.10000000000002,157.104,157.108,157.11200000000002,157.116,157.12,157.12400000000002,157.12800000000001,157.132,157.13600000000002,157.14000000000001,157.144,157.14800000000002,157.15200000000002,157.156,157.16000000000003,157.16400000000002,157.168,157.172,157.17600000000002,157.18,157.184,157.18800000000002,157.192,157.196,157.20000000000002,157.204,157.208,157.21200000000002,157.216,157.22,157.22400000000002,157.228,157.232,157.23600000000002,157.24,157.244,157.24800000000002,157.252,157.256,157.26000000000002,157.264,157.268,157.27200000000002,157.276,157.28,157.28400000000002,157.288,157.292,157.29600000000002,157.3,157.304,157.30800000000002,157.312,157.316,157.32000000000002,157.324,157.328,157.33200000000002,157.336,157.34,157.34400000000002,157.348,157.352,157.35600000000002,157.36,157.364,157.36800000000002,157.372,157.376,157.38000000000002,157.38400000000001,157.388,157.39200000000002,157.39600000000002,157.4,157.40400000000002,157.40800000000002,157.412,157.41600000000003,157.42000000000002,157.424,157.428,157.43200000000002,157.436,157.44,157.44,157.904,157.908,157.912,157.916,157.92,157.924,157.928,157.932,157.936,157.94,157.944,157.948,157.952,157.956,157.96,157.964,157.968,157.972,157.976,157.98,157.984,157.988,157.992,157.996,158.0,158.004,158.008,158.012,158.016,158.02,158.024,158.028,158.03199999999998,158.036,158.04,158.04399999999998,158.048,158.052,158.05599999999998,158.06,158.064,158.06799999999998,158.072,158.076,158.07999999999998,158.084,158.088,158.09199999999998,158.096,158.1,158.10399999999998,158.108,158.112,158.11599999999999,158.12,158.124,158.128,158.132,158.136,158.14,158.144,158.148,158.152,158.156,158.16,158.164,158.168,158.172,158.176,158.18,158.184,158.188,158.192,158.196,158.2,158.204,158.208,158.212,158.216,158.22,158.224,158.228,158.232,158.236,158.24,158.244,158.248,158.252,158.256,158.26,158.264,158.268,158.272,158.276,158.28,158.284,158.28799999999998,158.292,158.296,158.29999999999998,158.29999999999998,158.764,158.768,158.77200000000002,158.776,158.78,158.78400000000002,158.788,158.792,158.79600000000002,158.8,158.804,158.80800000000002,158.812,158.816,158.82000000000002,158.824,158.828,158.83200000000002,158.836,158.84,158.84400000000002,158.848,158.852,158.85600000000002,158.86,158.864,158.86800000000002,158.872,158.876,158.88000000000002,158.88400000000001,158.888,158.892,158.89600000000002,158.9,158.904,158.90800000000002,158.912,158.916,158.92000000000002,158.924,158.928,158.93200000000002,158.936,158.94,158.94400000000002,158.948,158.952,158.95600000000002,158.96,158.964,158.96800000000002,158.972,158.976,158.98000000000002,158.984,158.988,158.99200000000002,158.996,159.0,159.00400000000002,159.008,159.012,159.01600000000002,159.02,159.024,159.02800000000002,159.032,159.036,159.04000000000002,159.044,159.048,159.05200000000002,159.056,159.06,159.06400000000002,159.068,159.072,159.07600000000002,159.08,159.084,159.08800000000002,159.092,159.096,159.10000000000002,159.104,159.108,159.11200000000002,159.116,159.12,159.12400000000002,159.12800000000001,159.132,159.13600000000002,159.14000000000001,159.144,159.148,159.15200000000002,159.156,159.16,159.16,159.624,159.628,159.632,159.636,159.64,159.644,159.648,159.652,159.656,159.66,159.664,159.668,159.672,159.676,159.68,159.684,159.688,159.692,159.696,159.7,159.704,159.708,159.712,159.716,159.72,159.724,159.728,159.732,159.736,159.74,159.744,159.748,159.75199999999998,159.756,159.76,159.76399999999998,159.768,159.772,159.77599999999998,159.78,159.784,159.78799999999998,159.792,159.796,159.79999999999998,159.804,159.808,159.81199999999998,159.816,159.82,159.82399999999998,159.828,159.832,159.83599999999998,159.84,159.844,159.84799999999998,159.852,159.856,159.85999999999999,159.864,159.868,159.87199999999999,159.876,159.88,159.884,159.888,159.892,159.896,159.9,159.904,159.908,159.912,159.916,159.92,159.924,159.928,159.932,159.936,159.94,159.944,159.948,159.952,159.956,159.96,159.964,159.968,159.972,159.976,159.98,159.984,159.988,159.992,159.996,160.0,160.004,160.00799999999998,160.012,160.016,160.01999999999998,160.01999999999998,160.484,160.488,160.49200000000002,160.496,160.5,160.50400000000002,160.508,160.512,160.51600000000002,160.52,160.524,160.52800000000002,160.532,160.536,160.54000000000002,160.544,160.548,160.55200000000002,160.556,160.56,160.56400000000002,160.568,160.572,160.57600000000002,160.58,160.584,160.58800000000002,160.592,160.596,160.60000000000002,160.604,160.608,160.612,160.616,160.62,160.624,160.62800000000001,160.632,160.636,160.64000000000001,160.644,160.648,160.65200000000002,160.656,160.66,160.66400000000002,160.668,160.672,160.67600000000002,160.68,160.684,160.68800000000002,160.692,160.696,160.70000000000002,160.704,160.708,160.71200000000002,160.716,160.72,160.72400000000002,160.728,160.732,160.73600000000002,160.74,160.744,160.74800000000002,160.752,160.756,160.76000000000002,160.764,160.768,160.77200000000002,160.776,160.78,160.78400000000002,160.788,160.792,160.79600000000002,160.8,160.804,160.80800000000002,160.812,160.816,160.82000000000002,160.824,160.828,160.83200000000002,160.836,160.84,160.84400000000002,160.848,160.852,160.85600000000002,160.86,160.864,160.868,160.872,160.876,160.88,160.88,161.344,161.34799999999998,161.352,161.356,161.35999999999999,161.364,161.368,161.37199999999999,161.376,161.38,161.384,161.388,161.392,161.396,161.4,161.404,161.408,161.412,161.416,161.42,161.424,161.428,161.432,161.436,161.44,161.444,161.448,161.452,161.456,161.46,161.464,161.468,161.47199999999998,161.476,161.48,161.48399999999998,161.488,161.492,161.49599999999998,161.5,161.504,161.50799999999998,161.512,161.516,161.51999999999998,161.524,161.528,161.53199999999998,161.536,161.54,161.54399999999998,161.548,161.552,161.55599999999998,161.56,161.564,161.56799999999998,161.572,161.576,161.57999999999998,161.584,161.588,161.59199999999998,161.596,161.6,161.60399999999998,161.608,161.612,161.61599999999999,161.62,161.624,161.628,161.632,161.636,161.64,161.644,161.648,161.652,161.656,161.66,161.664,161.668,161.672,161.676,161.68,161.684,161.688,161.692,161.696,161.7,161.704,161.708,161.712,161.716,161.72,161.724,161.72799999999998,161.732,161.736,161.73999999999998,161.73999999999998,162.204,162.208,162.21200000000002,162.216,162.22,162.22400000000002,162.228,162.232,162.23600000000002,162.24,162.244,162.24800000000002,162.252,162.256,162.26000000000002,162.264,162.268,162.27200000000002,162.276,162.28,162.28400000000002,162.288,162.292,162.29600000000002,162.3,162.304,162.30800000000002,162.312,162.316,162.32000000000002,162.324,162.328,162.332,162.336,162.34,162.344,162.348,162.352,162.356,162.36,162.364,162.368,162.372,162.376,162.38,162.38400000000001,162.388,162.392,162.39600000000002,162.4,162.404,162.40800000000002,162.412,162.416,162.42000000000002,162.424,162.428,162.43200000000002,162.436,162.44,162.44400000000002,162.448,162.452,162.45600000000002,162.46,162.464,162.46800000000002,162.472,162.476,162.48000000000002,162.484,162.488,162.49200000000002,162.496,162.5,162.50400000000002,162.508,162.512,162.51600000000002,162.52,162.524,162.52800000000002,162.532,162.536,162.54000000000002,162.544,162.548,162.55200000000002,162.556,162.56,162.56400000000002,162.568,162.572,162.57600000000002,162.58,162.584,162.588,162.592,162.596,162.6,162.6,163.064,163.06799999999998,163.072,163.076,163.07999999999998,163.084,163.088,163.09199999999998,163.096,163.1,163.10399999999998,163.108,163.112,163.11599999999999,163.12,163.124,163.128,163.132,163.136,163.14,163.144,163.148,163.152,163.156,163.16,163.164,163.168,163.172,163.176,163.18,163.184,163.188,163.19199999999998,163.196,163.2,163.20399999999998,163.208,163.212,163.21599999999998,163.22,163.224,163.22799999999998,163.232,163.236,163.23999999999998,163.244,163.248,163.25199999999998,163.256,163.26,163.26399999999998,163.268,163.272,163.27599999999998,163.28,163.284,163.28799999999998,163.292,163.296,163.29999999999998,163.304,163.308,163.31199999999998,163.316,163.32,163.32399999999998,163.328,163.332,163.33599999999998,163.34,163.344,163.34799999999998,163.352,163.356,163.35999999999999,163.364,163.368,163.37199999999999,163.376,163.38,163.384,163.388,163.392,163.396,163.4,163.404,163.408,163.412,163.416,163.42,163.424,163.428,163.432,163.436,163.44,163.444,163.44799999999998,163.452,163.456,163.45999999999998,163.45999999999998,163.924,163.928,163.93200000000002,163.936,163.94,163.94400000000002,163.948,163.952,163.95600000000002,163.96,163.964,163.96800000000002,163.972,163.976,163.98000000000002,163.984,163.988,163.99200000000002,163.996,164.0,164.00400000000002,164.008,164.012,164.01600000000002,164.02,164.024,164.02800000000002,164.032,164.036,164.04000000000002,164.044,164.048,164.052,164.056,164.06,164.064,164.068,164.072,164.076,164.08,164.084,164.088,164.092,164.096,164.1,164.104,164.108,164.112,164.116,164.12,164.124,164.12800000000001,164.132,164.136,164.14000000000001,164.144,164.148,164.15200000000002,164.156,164.16,164.16400000000002,164.168,164.172,164.17600000000002,164.18,164.184,164.18800000000002,164.192,164.196,164.20000000000002,164.204,164.208,164.21200000000002,164.216,164.22,164.22400000000002,164.228,164.232,164.23600000000002,164.24,164.244,164.24800000000002,164.252,164.256,164.26000000000002,164.264,164.268,164.27200000000002,164.276,164.28,164.28400000000002,164.288,164.292,164.29600000000002,164.3,164.304,164.308,164.312,164.316,164.32,164.32,164.784,164.78799999999998,164.792,164.796,164.79999999999998,164.804,164.808,164.81199999999998,164.816,164.82,164.82399999999998,164.828,164.832,164.83599999999998,164.84,164.844,164.84799999999998,164.852,164.856,164.85999999999999,164.864,164.868,164.87199999999999,164.876,164.88,164.884,164.888,164.892,164.896,164.9,164.904,164.908,164.91199999999998,164.916,164.92,164.92399999999998,164.928,164.932,164.93599999999998,164.94,164.944,164.94799999999998,164.952,164.956,164.95999999999998,164.964,164.968,164.97199999999998,164.976,164.98,164.98399999999998,164.988,164.992,164.99599999999998,165.0,165.004,165.00799999999998,165.012,165.016,165.01999999999998,165.024,165.028,165.03199999999998,165.036,165.04,165.04399999999998,165.048,165.052,165.05599999999998,165.06,165.064,165.06799999999998,165.072,165.076,165.07999999999998,165.084,165.088,165.09199999999998,165.096,165.1,165.10399999999998,165.108,165.112,165.11599999999999,165.12,165.124,165.128,165.132,165.136,165.14,165.144,165.148,165.152,165.156,165.16,165.164,165.16799999999998,165.172,165.176,165.17999999999998,165.17999999999998,165.644,165.648,165.65200000000002,165.656,165.66,165.66400000000002,165.668,165.672,165.67600000000002,165.68,165.684,165.68800000000002,165.692,165.696,165.70000000000002,165.704,165.708,165.71200000000002,165.716,165.72,165.72400000000002,165.728,165.732,165.73600000000002,165.74,165.744,165.74800000000002,165.752,165.756,165.76000000000002,165.764,165.768,165.772,165.776,165.78,165.784,165.788,165.792,165.796,165.8,165.804,165.808,165.812,165.816,165.82,165.824,165.828,165.832,165.836,165.84,165.844,165.848,165.852,165.856,165.86,165.864,165.868,165.872,165.876,165.88,165.88400000000001,165.888,165.892,165.89600000000002,165.9,165.904,165.90800000000002,165.912,165.916,165.92000000000002,165.924,165.928,165.93200000000002,165.936,165.94,165.94400000000002,165.948,165.952,165.95600000000002,165.96,165.964,165.96800000000002,165.972,165.976,165.98000000000002,165.984,165.988,165.99200000000002,165.996,166.0,166.00400000000002,166.008,166.012,166.01600000000002,166.02,166.024,166.028,166.032,166.036,166.04,166.04,166.50300000000001,166.507,166.51100000000002,166.51500000000001,166.519,166.52300000000002,166.52700000000002,166.531,166.53500000000003,166.53900000000002,166.543,166.54700000000003,166.55100000000002,166.555,166.55900000000003,166.56300000000002,166.567,166.57100000000003,166.57500000000002,166.579,166.58300000000003,166.58700000000002,166.591,166.59500000000003,166.59900000000002,166.603,166.60700000000003,166.61100000000002,166.615,166.61900000000003,166.62300000000002,166.627,166.631,166.63500000000002,166.639,166.643,166.64700000000002,166.651,166.655,166.65900000000002,166.663,166.667,166.67100000000002,166.675,166.679,166.68300000000002,166.687,166.691,166.69500000000002,166.699,166.703,166.70700000000002,166.711,166.715,166.71900000000002,166.723,166.727,166.73100000000002,166.735,166.739,166.74300000000002,166.747,166.751,166.75500000000002,166.75900000000001,166.763,166.76700000000002,166.77100000000002,166.775,166.77900000000002,166.78300000000002,166.787,166.79100000000003,166.79500000000002,166.799,166.80300000000003,166.80700000000002,166.811,166.81500000000003,166.81900000000002,166.823,166.82700000000003,166.83100000000002,166.835,166.83900000000003,166.84300000000002,166.847,166.85100000000003,166.85500000000002,166.859,166.86300000000003,166.86700000000002,166.871,166.87500000000003,166.87900000000002,166.883,166.887,166.89100000000002,166.895,166.899,166.899,167.363,167.367,167.371,167.375,167.379,167.383,167.387,167.391,167.395,167.399,167.403,167.407,167.411,167.415,167.419,167.423,167.427,167.431,167.435,167.439,167.443,167.447,167.451,167.455,167.459,167.463,167.467,167.471,167.475,167.479,167.483,167.487,167.49099999999999,167.495,167.499,167.503,167.507,167.511,167.515,167.519,167.523,167.527,167.531,167.535,167.539,167.543,167.547,167.551,167.555,167.559,167.563,167.567,167.571,167.575,167.579,167.583,167.587,167.591,167.595,167.599,167.603,167.607,167.611,167.615,167.619,167.623,167.627,167.631,167.635,167.639,167.643,167.647,167.651,167.655,167.659,167.663,167.667,167.671,167.675,167.679,167.683,167.687,167.691,167.695,167.699,167.703,167.707,167.711,167.715,167.719,167.723,167.727,167.731,167.735,167.739,167.743,167.74699999999999,167.751,167.755,167.759,167.759,168.223,168.227,168.23100000000002,168.235,168.239,168.24300000000002,168.247,168.251,168.25500000000002,168.25900000000001,168.263,168.26700000000002,168.27100000000002,168.275,168.27900000000002,168.28300000000002,168.287,168.29100000000003,168.29500000000002,168.299,168.30300000000003,168.30700000000002,168.311,168.31500000000003,168.31900000000002,168.323,168.32700000000003,168.33100000000002,168.335,168.33900000000003,168.34300000000002,168.347,168.351,168.35500000000002,168.359,168.363,168.36700000000002,168.371,168.375,168.37900000000002,168.383,168.387,168.39100000000002,168.395,168.399,168.40300000000002,168.407,168.411,168.41500000000002,168.419,168.423,168.42700000000002,168.431,168.435,168.43900000000002,168.443,168.447,168.45100000000002,168.455,168.459,168.46300000000002,168.467,168.471,168.47500000000002,168.479,168.483,168.48700000000002,168.491,168.495,168.49900000000002,168.50300000000001,168.507,168.51100000000002,168.51500000000001,168.519,168.52300000000002,168.52700000000002,168.531,168.53500000000003,168.53900000000002,168.543,168.54700000000003,168.55100000000002,168.555,168.55900000000003,168.56300000000002,168.567,168.57100000000003,168.57500000000002,168.579,168.58300000000003,168.58700000000002,168.591,168.59500000000003,168.59900000000002,168.603,168.607,168.61100000000002,168.615,168.619,168.619,169.083,169.087,169.091,169.095,169.099,169.103,169.107,169.111,169.115,169.119,169.123,169.127,169.131,169.135,169.139,169.143,169.147,169.151,169.155,169.159,169.163,169.167,169.171,169.175,169.179,169.183,169.187,169.191,169.195,169.199,169.203,169.207,169.21099999999998,169.215,169.219,169.22299999999998,169.227,169.231,169.23499999999999,169.239,169.243,169.24699999999999,169.251,169.255,169.259,169.263,169.267,169.271,169.275,169.279,169.283,169.287,169.291,169.295,169.299,169.303,169.307,169.311,169.315,169.319,169.323,169.327,169.331,169.335,169.339,169.343,169.347,169.351,169.355,169.359,169.363,169.367,169.371,169.375,169.379,169.383,169.387,169.391,169.395,169.399,169.403,169.407,169.411,169.415,169.419,169.423,169.427,169.431,169.435,169.439,169.443,169.447,169.451,169.455,169.459,169.463,169.46699999999998,169.471,169.475,169.47899999999998,169.47899999999998,169.943,169.947,169.95100000000002,169.955,169.959,169.96300000000002,169.967,169.971,169.97500000000002,169.979,169.983,169.98700000000002,169.991,169.995,169.99900000000002,170.00300000000001,170.007,170.01100000000002,170.01500000000001,170.019,170.02300000000002,170.02700000000002,170.031,170.03500000000003,170.03900000000002,170.043,170.04700000000003,170.05100000000002,170.055,170.05900000000003,170.06300000000002,170.067,170.071,170.07500000000002,170.079,170.083,170.08700000000002,170.091,170.095,170.09900000000002,170.103,170.107,170.11100000000002,170.115,170.119,170.12300000000002,170.127,170.131,170.13500000000002,170.139,170.143,170.14700000000002,170.151,170.155,170.15900000000002,170.163,170.167,170.17100000000002,170.175,170.179,170.18300000000002,170.187,170.191,170.19500000000002,170.199,170.203,170.20700000000002,170.211,170.215,170.21900000000002,170.223,170.227,170.23100000000002,170.235,170.239,170.24300000000002,170.247,170.251,170.25500000000002,170.25900000000001,170.263,170.26700000000002,170.27100000000002,170.275,170.27900000000002,170.28300000000002,170.287,170.29100000000003,170.29500000000002,170.299,170.30300000000003,170.30700000000002,170.311,170.31500000000003,170.31900000000002,170.323,170.327,170.33100000000002,170.335,170.339,170.339,170.803,170.807,170.811,170.815,170.819,170.823,170.827,170.831,170.835,170.839,170.843,170.847,170.851,170.855,170.859,170.863,170.867,170.871,170.875,170.879,170.883,170.887,170.891,170.895,170.899,170.903,170.907,170.911,170.915,170.919,170.923,170.927,170.93099999999998,170.935,170.939,170.94299999999998,170.947,170.951,170.95499999999998,170.959,170.963,170.96699999999998,170.971,170.975,170.97899999999998,170.983,170.987,170.99099999999999,170.995,170.999,171.003,171.007,171.011,171.015,171.019,171.023,171.027,171.031,171.035,171.039,171.043,171.047,171.051,171.055,171.059,171.063,171.067,171.071,171.075,171.079,171.083,171.087,171.091,171.095,171.099,171.103,171.107,171.111,171.115,171.119,171.123,171.127,171.131,171.135,171.139,171.143,171.147,171.151,171.155,171.159,171.163,171.167,171.171,171.175,171.179,171.183,171.18699999999998,171.191,171.195,171.19899999999998,171.19899999999998,171.663,171.667,171.67100000000002,171.675,171.679,171.68300000000002,171.687,171.691,171.69500000000002,171.699,171.703,171.70700000000002,171.711,171.715,171.71900000000002,171.723,171.727,171.73100000000002,171.735,171.739,171.74300000000002,171.747,171.751,171.75500000000002,171.75900000000001,171.763,171.76700000000002,171.77100000000002,171.775,171.77900000000002,171.78300000000002,171.787,171.791,171.79500000000002,171.799,171.803,171.80700000000002,171.811,171.815,171.81900000000002,171.823,171.827,171.83100000000002,171.835,171.839,171.84300000000002,171.847,171.851,171.85500000000002,171.859,171.863,171.86700000000002,171.871,171.875,171.87900000000002,171.883,171.887,171.89100000000002,171.895,171.899,171.90300000000002,171.907,171.911,171.91500000000002,171.919,171.923,171.92700000000002,171.931,171.935,171.93900000000002,171.943,171.947,171.95100000000002,171.955,171.959,171.96300000000002,171.967,171.971,171.97500000000002,171.979,171.983,171.98700000000002,171.991,171.995,171.99900000000002,172.00300000000001,172.007,172.01100000000002,172.01500000000001,172.019,172.02300000000002,172.02700000000002,172.031,172.03500000000003,172.03900000000002,172.043,172.047,172.05100000000002,172.055,172.059,172.059,172.523,172.527,172.531,172.535,172.539,172.543,172.547,172.551,172.555,172.559,172.563,172.567,172.571,172.575,172.579,172.583,172.587,172.591,172.595,172.599,172.603,172.607,172.611,172.615,172.619,172.623,172.627,172.631,172.635,172.639,172.643,172.647,172.65099999999998,172.655,172.659,172.66299999999998,172.667,172.671,172.67499999999998,172.679,172.683,172.68699999999998,172.691,172.695,172.69899999999998,172.703,172.707,172.71099999999998,172.715,172.719,172.72299999999998,172.727,172.731,172.73499999999999,172.739,172.743,172.74699999999999,172.751,172.755,172.759,172.763,172.767,172.771,172.775,172.779,172.783,172.787,172.791,172.795,172.799,172.803,172.807,172.811,172.815,172.819,172.823,172.827,172.831,172.835,172.839,172.843,172.847,172.851,172.855,172.859,172.863,172.867,172.871,172.875,172.879,172.883,172.887,172.891,172.895,172.899,172.903,172.90699999999998,172.911,172.915,172.91899999999998,172.91899999999998,173.383,173.387,173.39100000000002,173.395,173.399,173.40300000000002,173.407,173.411,173.41500000000002,173.419,173.423,173.42700000000002,173.431,173.435,173.43900000000002,173.443,173.447,173.45100000000002,173.455,173.459,173.46300000000002,173.467,173.471,173.47500000000002,173.479,173.483,173.48700000000002,173.491,173.495,173.49900000000002,173.50300000000001,173.507,173.511,173.51500000000001,173.519,173.523,173.52700000000002,173.531,173.535,173.53900000000002,173.543,173.547,173.55100000000002,173.555,173.559,173.56300000000002,173.567,173.571,173.57500000000002,173.579,173.583,173.58700000000002,173.591,173.595,173.59900000000002,173.603,173.607,173.61100000000002,173.615,173.619,173.62300000000002,173.627,173.631,173.63500000000002,173.639,173.643,173.64700000000002,173.651,173.655,173.65900000000002,173.663,173.667,173.67100000000002,173.675,173.679,173.68300000000002,173.687,173.691,173.69500000000002,173.699,173.703,173.70700000000002,173.711,173.715,173.71900000000002,173.723,173.727,173.73100000000002,173.735,173.739,173.74300000000002,173.747,173.751,173.75500000000002,173.75900000000001,173.763,173.767,173.77100000000002,173.775,173.779,173.779,174.243,174.24699999999999,174.251,174.255,174.259,174.263,174.267,174.271,174.275,174.279,174.283,174.287,174.291,174.295,174.299,174.303,174.307,174.311,174.315,174.319,174.323,174.327,174.331,174.335,174.339,174.343,174.347,174.351,174.355,174.359,174.363,174.367,174.37099999999998,174.375,174.379,174.38299999999998,174.387,174.391,174.39499999999998,174.399,174.403,174.40699999999998,174.411,174.415,174.41899999999998,174.423,174.427,174.43099999999998,174.435,174.439,174.44299999999998,174.447,174.451,174.45499999999998,174.459,174.463,174.46699999999998,174.471,174.475,174.47899999999998,174.483,174.487,174.49099999999999,174.495,174.499,174.503,174.507,174.511,174.515,174.519,174.523,174.527,174.531,174.535,174.539,174.543,174.547,174.551,174.555,174.559,174.563,174.567,174.571,174.575,174.579,174.583,174.587,174.591,174.595,174.599,174.603,174.607,174.611,174.615,174.619,174.623,174.62699999999998,174.631,174.635,174.63899999999998,174.63899999999998,175.103,175.107,175.11100000000002,175.115,175.119,175.12300000000002,175.127,175.131,175.13500000000002,175.139,175.143,175.14700000000002,175.151,175.155,175.15900000000002,175.163,175.167,175.17100000000002,175.175,175.179,175.18300000000002,175.187,175.191,175.19500000000002,175.199,175.203,175.20700000000002,175.211,175.215,175.21900000000002,175.223,175.227,175.231,175.235,175.239,175.243,175.247,175.251,175.255,175.25900000000001,175.263,175.267,175.27100000000002,175.275,175.279,175.28300000000002,175.287,175.291,175.29500000000002,175.299,175.303,175.30700000000002,175.311,175.315,175.31900000000002,175.323,175.327,175.33100000000002,175.335,175.339,175.34300000000002,175.347,175.351,175.35500000000002,175.359,175.363,175.36700000000002,175.371,175.375,175.37900000000002,175.383,175.387,175.39100000000002,175.395,175.399,175.40300000000002,175.407,175.411,175.41500000000002,175.419,175.423,175.42700000000002,175.431,175.435,175.43900000000002,175.443,175.447,175.45100000000002,175.455,175.459,175.46300000000002,175.467,175.471,175.47500000000002,175.479,175.483,175.487,175.491,175.495,175.499,175.499,175.963,175.96699999999998,175.971,175.975,175.97899999999998,175.983,175.987,175.99099999999999,175.995,175.999,176.003,176.007,176.011,176.015,176.019,176.023,176.027,176.031,176.035,176.039,176.043,176.047,176.051,176.055,176.059,176.063,176.067,176.071,176.075,176.079,176.083,176.087,176.09099999999998,176.095,176.099,176.10299999999998,176.107,176.111,176.11499999999998,176.119,176.123,176.12699999999998,176.131,176.135,176.13899999999998,176.143,176.147,176.15099999999998,176.155,176.159,176.16299999999998,176.167,176.171,176.17499999999998,176.179,176.183,176.18699999999998,176.191,176.195,176.19899999999998,176.203,176.207,176.21099999999998,176.215,176.219,176.22299999999998,176.227,176.231,176.23499999999999,176.239,176.243,176.24699999999999,176.251,176.255,176.259,176.263,176.267,176.271,176.275,176.279,176.283,176.287,176.291,176.295,176.299,176.303,176.307,176.311,176.315,176.319,176.323,176.327,176.331,176.335,176.339,176.343,176.34699999999998,176.351,176.355,176.35899999999998,176.35899999999998,176.823,176.827,176.83100000000002,176.835,176.839,176.84300000000002,176.847,176.851,176.85500000000002,176.859,176.863,176.86700000000002,176.871,176.875,176.87900000000002,176.883,176.887,176.89100000000002,176.895,176.899,176.90300000000002,176.907,176.911,176.91500000000002,176.919,176.923,176.92700000000002,176.931,176.935,176.93900000000002,176.943,176.947,176.951,176.955,176.959,176.963,176.967,176.971,176.975,176.979,176.983,176.987,176.991,176.995,176.999,177.00300000000001,177.007,177.011,177.01500000000001,177.019,177.023,177.02700000000002,177.031,177.035,177.03900000000002,177.043,177.047,177.05100000000002,177.055,177.059,177.06300000000002,177.067,177.071,177.07500000000002,177.079,177.083,177.08700000000002,177.091,177.095,177.09900000000002,177.103,177.107,177.11100000000002,177.115,177.119,177.12300000000002,177.127,177.131,177.13500000000002,177.139,177.143,177.14700000000002,177.151,177.155,177.15900000000002,177.163,177.167,177.17100000000002,177.175,177.179,177.18300000000002,177.187,177.191,177.19500000000002,177.199,177.203,177.207,177.211,177.215,177.219,177.219,177.683,177.68699999999998,177.691,177.695,177.69899999999998,177.703,177.707,177.71099999999998,177.715,177.719,177.72299999999998,177.727,177.731,177.73499999999999,177.739,177.743,177.74699999999999,177.751,177.755,177.759,177.763,177.767,177.771,177.775,177.779,177.783,177.787,177.791,177.795,177.799,177.803,177.807,177.81099999999998,177.815,177.819,177.82299999999998,177.827,177.831,177.83499999999998,177.839,177.843,177.84699999999998,177.851,177.855,177.85899999999998,177.863,177.867,177.87099999999998,177.875,177.879,177.88299999999998,177.887,177.891,177.89499999999998,177.899,177.903,177.90699999999998,177.911,177.915,177.91899999999998,177.923,177.927,177.93099999999998,177.935,177.939,177.94299999999998,177.947,177.951,177.95499999999998,177.959,177.963,177.96699999999998,177.971,177.975,177.97899999999998,177.983,177.987,177.99099999999999,177.995,177.999,178.003,178.007,178.011,178.015,178.019,178.023,178.027,178.031,178.035,178.039,178.043,178.047,178.051,178.055,178.059,178.063,178.06699999999998,178.071,178.075,178.07899999999998,178.07899999999998,178.543,178.547,178.55100000000002,178.555,178.559,178.56300000000002,178.567,178.571,178.57500000000002,178.579,178.583,178.58700000000002,178.591,178.595,178.59900000000002,178.603,178.607,178.61100000000002,178.615,178.619,178.62300000000002,178.627,178.631,178.63500000000002,178.639,178.643,178.64700000000002,178.651,178.655,178.65900000000002,178.663,178.667,178.671,178.675,178.679,178.683,178.687,178.691,178.695,178.699,178.703,178.707,178.711,178.715,178.719,178.723,178.727,178.731,178.735,178.739,178.743,178.747,178.751,178.755,178.75900000000001,178.763,178.767,178.77100000000002,178.775,178.779,178.78300000000002,178.787,178.791,178.79500000000002,178.799,178.803,178.80700000000002,178.811,178.815,178.81900000000002,178.823,178.827,178.83100000000002,178.835,178.839,178.84300000000002,178.847,178.851,178.85500000000002,178.859,178.863,178.86700000000002,178.871,178.875,178.87900000000002,178.883,178.887,178.89100000000002,178.895,178.899,178.90300000000002,178.907,178.911,178.91500000000002,178.919,178.923,178.927,178.931,178.935,178.939,178.939,179.403,179.40699999999998,179.411,179.415,179.41899999999998,179.423,179.427,179.43099999999998,179.435,179.439,179.44299999999998,179.447,179.451,179.45499999999998,179.459,179.463,179.46699999999998,179.471,179.475,179.47899999999998,179.483,179.487,179.49099999999999,179.495,179.499,179.503,179.507,179.511,179.515,179.519,179.523,179.527,179.53099999999998,179.535,179.539,179.54299999999998,179.547,179.551,179.55499999999998,179.559,179.563,179.56699999999998,179.571,179.575,179.57899999999998,179.583,179.587,179.59099999999998,179.595,179.599,179.60299999999998,179.607,179.611,179.61499999999998,179.619,179.623,179.62699999999998,179.631,179.635,179.63899999999998,179.643,179.647,179.65099999999998,179.655,179.659,179.66299999999998,179.667,179.671,179.67499999999998,179.679,179.683,179.68699999999998,179.691,179.695,179.69899999999998,179.703,179.707,179.71099999999998,179.715,179.719,179.72299999999998,179.727,179.731,179.73499999999999,179.739,179.743,179.74699999999999,179.751,179.755,179.759,179.763,179.767,179.771,179.775,179.779,179.783,179.78699999999998,179.791,179.795,179.79899999999998,179.79899999999998,180.263,180.267,180.27100000000002,180.275,180.279,180.28300000000002,180.287,180.291,180.29500000000002,180.299,180.303,180.30700000000002,180.311,180.315,180.31900000000002,180.323,180.327,180.33100000000002,180.335,180.339,180.34300000000002,180.347,180.351,180.35500000000002,180.359,180.363,180.36700000000002,180.371,180.375,180.37900000000002,180.383,180.387,180.391,180.395,180.399,180.403,180.407,180.411,180.415,180.419,180.423,180.427,180.431,180.435,180.439,180.443,180.447,180.451,180.455,180.459,180.463,180.467,180.471,180.475,180.479,180.483,180.487,180.491,180.495,180.499,180.50300000000001,180.507,180.511,180.51500000000001,180.519,180.523,180.52700000000002,180.531,180.535,180.53900000000002,180.543,180.547,180.55100000000002,180.555,180.559,180.56300000000002,180.567,180.571,180.57500000000002,180.579,180.583,180.58700000000002,180.591,180.595,180.59900000000002,180.603,180.607,180.61100000000002,180.615,180.619,180.62300000000002,180.627,180.631,180.63500000000002,180.639,180.643,180.647,180.651,180.655,180.659,180.659,181.123,181.12699999999998,181.131,181.135,181.13899999999998,181.143,181.147,181.15099999999998,181.155,181.159,181.16299999999998,181.167,181.171,181.17499999999998,181.179,181.183,181.18699999999998,181.191,181.195,181.19899999999998,181.203,181.207,181.21099999999998,181.215,181.219,181.22299999999998,181.227,181.231,181.23499999999999,181.239,181.243,181.24699999999999,181.25099999999998,181.255,181.259,181.26299999999998,181.267,181.271,181.27499999999998,181.279,181.283,181.28699999999998,181.291,181.295,181.29899999999998,181.303,181.307,181.31099999999998,181.315,181.319,181.32299999999998,181.327,181.331,181.33499999999998,181.339,181.343,181.34699999999998,181.351,181.355,181.35899999999998,181.363,181.367,181.37099999999998,181.375,181.379,181.38299999999998,181.387,181.391,181.39499999999998,181.399,181.403,181.40699999999998,181.411,181.415,181.41899999999998,181.423,181.427,181.43099999999998,181.435,181.439,181.44299999999998,181.447,181.451,181.45499999999998,181.459,181.463,181.46699999999998,181.471,181.475,181.47899999999998,181.483,181.487,181.49099999999999,181.495,181.499,181.503,181.50699999999998,181.511,181.515,181.51899999999998,181.51899999999998,181.983,181.987,181.991,181.995,181.999,182.00300000000001,182.007,182.011,182.01500000000001,182.019,182.023,182.02700000000002,182.031,182.035,182.03900000000002,182.043,182.047,182.05100000000002,182.055,182.059,182.06300000000002,182.067,182.071,182.07500000000002,182.079,182.083,182.08700000000002,182.091,182.095,182.09900000000002,182.103,182.107,182.111,182.115,182.119,182.123,182.127,182.131,182.135,182.139,182.143,182.147,182.151,182.155,182.159,182.163,182.167,182.171,182.175,182.179,182.183,182.187,182.191,182.195,182.199,182.203,182.207,182.211,182.215,182.219,182.223,182.227,182.231,182.235,182.239,182.243,182.247,182.251,182.255,182.25900000000001,182.263,182.267,182.27100000000002,182.275,182.279,182.28300000000002,182.287,182.291,182.29500000000002,182.299,182.303,182.30700000000002,182.311,182.315,182.31900000000002,182.323,182.327,182.33100000000002,182.335,182.339,182.34300000000002,182.347,182.351,182.35500000000002,182.359,182.363,182.367,182.371,182.375,182.379,182.379,182.84300000000002,182.847,182.85100000000003,182.85500000000002,182.859,182.86300000000003,182.86700000000002,182.871,182.87500000000003,182.87900000000002,182.883,182.88700000000003,182.89100000000002,182.895,182.89900000000003,182.90300000000002,182.907,182.91100000000003,182.91500000000002,182.919,182.92300000000003,182.92700000000002,182.931,182.93500000000003,182.93900000000002,182.943,182.94700000000003,182.95100000000002,182.955,182.95900000000003,182.96300000000002,182.967,182.971,182.97500000000002,182.979,182.983,182.98700000000002,182.991,182.995,182.99900000000002,183.00300000000001,183.007,183.01100000000002,183.01500000000001,183.019,183.02300000000002,183.02700000000002,183.031,183.03500000000003,183.03900000000002,183.043,183.04700000000003,183.05100000000002,183.055,183.05900000000003,183.06300000000002,183.067,183.07100000000003,183.07500000000002,183.079,183.08300000000003,183.08700000000002,183.091,183.09500000000003,183.09900000000002,183.103,183.10700000000003,183.11100000000002,183.115,183.11900000000003,183.12300000000002,183.127,183.13100000000003,183.13500000000002,183.139,183.14300000000003,183.14700000000002,183.151,183.15500000000003,183.15900000000002,183.163,183.16700000000003,183.17100000000002,183.175,183.17900000000003,183.18300000000002,183.187,183.19100000000003,183.19500000000002,183.199,183.20300000000003,183.20700000000002,183.211,183.21500000000003,183.21900000000002,183.223,183.227,183.23100000000002,183.235,183.239,183.239,183.703,183.707,183.711,183.715,183.719,183.723,183.727,183.731,183.735,183.739,183.743,183.747,183.751,183.755,183.75900000000001,183.763,183.767,183.77100000000002,183.775,183.779,183.78300000000002,183.787,183.791,183.79500000000002,183.799,183.803,183.80700000000002,183.811,183.815,183.81900000000002,183.823,183.827,183.831,183.835,183.839,183.843,183.847,183.851,183.855,183.859,183.863,183.867,183.871,183.875,183.879,183.883,183.887,183.891,183.895,183.899,183.903,183.907,183.911,183.915,183.919,183.923,183.927,183.931,183.935,183.939,183.943,183.947,183.951,183.955,183.959,183.963,183.967,183.971,183.975,183.979,183.983,183.987,183.991,183.995,183.999,184.00300000000001,184.007,184.011,184.01500000000001,184.019,184.023,184.02700000000002,184.031,184.035,184.03900000000002,184.043,184.047,184.05100000000002,184.055,184.059,184.06300000000002,184.067,184.071,184.07500000000002,184.079,184.083,184.087,184.091,184.095,184.099,184.099,184.56300000000002,184.567,184.57100000000003,184.57500000000002,184.579,184.58300000000003,184.58700000000002,184.591,184.59500000000003,184.59900000000002,184.603,184.60700000000003,184.61100000000002,184.615,184.61900000000003,184.62300000000002,184.627,184.63100000000003,184.63500000000002,184.639,184.64300000000003,184.64700000000002,184.651,184.65500000000003,184.65900000000002,184.663,184.66700000000003,184.67100000000002,184.675,184.67900000000003,184.68300000000002,184.687,184.691,184.69500000000002,184.699,184.703,184.70700000000002,184.711,184.715,184.71900000000002,184.723,184.727,184.73100000000002,184.735,184.739,184.74300000000002,184.747,184.751,184.75500000000002,184.75900000000001,184.763,184.76700000000002,184.77100000000002,184.775,184.77900000000002,184.78300000000002,184.787,184.79100000000003,184.79500000000002,184.799,184.80300000000003,184.80700000000002,184.811,184.81500000000003,184.81900000000002,184.823,184.82700000000003,184.83100000000002,184.835,184.83900000000003,184.84300000000002,184.847,184.85100000000003,184.85500000000002,184.859,184.86300000000003,184.86700000000002,184.871,184.87500000000003,184.87900000000002,184.883,184.88700000000003,184.89100000000002,184.895,184.89900000000003,184.90300000000002,184.907,184.91100000000003,184.91500000000002,184.919,184.92300000000003,184.92700000000002,184.931,184.93500000000003,184.93900000000002,184.943,184.947,184.95100000000002,184.955,184.959,184.959,185.423,185.427,185.431,185.435,185.439,185.443,185.447,185.451,185.455,185.459,185.463,185.467,185.471,185.475,185.479,185.483,185.487,185.491,185.495,185.499,185.50300000000001,185.507,185.511,185.51500000000001,185.519,185.523,185.52700000000002,185.531,185.535,185.53900000000002,185.543,185.547,185.551,185.555,185.559,185.563,185.567,185.571,185.575,185.579,185.583,185.587,185.591,185.595,185.599,185.603,185.607,185.611,185.615,185.619,185.623,185.627,185.631,185.635,185.639,185.643,185.647,185.651,185.655,185.659,185.663,185.667,185.671,185.675,185.679,185.683,185.687,185.691,185.695,185.699,185.703,185.707,185.711,185.715,185.719,185.723,185.727,185.731,185.735,185.739,185.743,185.747,185.751,185.755,185.75900000000001,185.763,185.767,185.77100000000002,185.775,185.779,185.78300000000002,185.787,185.791,185.79500000000002,185.799,185.803,185.807,185.811,185.815,185.819,185.819,186.28300000000002,186.287,186.29100000000003,186.29500000000002,186.299,186.30300000000003,186.30700000000002,186.311,186.31500000000003,186.31900000000002,186.323,186.32700000000003,186.33100000000002,186.335,186.33900000000003,186.34300000000002,186.347,186.35100000000003,186.35500000000002,186.359,186.36300000000003,186.36700000000002,186.371,186.37500000000003,186.37900000000002,186.383,186.38700000000003,186.39100000000002,186.395,186.39900000000003,186.40300000000002,186.407,186.411,186.41500000000002,186.419,186.423,186.42700000000002,186.431,186.435,186.43900000000002,186.443,186.447,186.45100000000002,186.455,186.459,186.46300000000002,186.467,186.471,186.47500000000002,186.479,186.483,186.48700000000002,186.491,186.495,186.49900000000002,186.50300000000001,186.507,186.51100000000002,186.51500000000001,186.519,186.52300000000002,186.52700000000002,186.531,186.53500000000003,186.53900000000002,186.543,186.54700000000003,186.55100000000002,186.555,186.55900000000003,186.56300000000002,186.567,186.57100000000003,186.57500000000002,186.579,186.58300000000003,186.58700000000002,186.591,186.59500000000003,186.59900000000002,186.603,186.60700000000003,186.61100000000002,186.615,186.61900000000003,186.62300000000002,186.627,186.63100000000003,186.63500000000002,186.639,186.64300000000003,186.64700000000002,186.651,186.65500000000003,186.65900000000002,186.663,186.667,186.67100000000002,186.675,186.679,186.679,187.143,187.147,187.151,187.155,187.159,187.163,187.167,187.171,187.175,187.179,187.183,187.187,187.191,187.195,187.199,187.203,187.207,187.211,187.215,187.219,187.223,187.227,187.231,187.235,187.239,187.243,187.247,187.251,187.255,187.25900000000001,187.263,187.267,187.271,187.275,187.279,187.283,187.287,187.291,187.295,187.299,187.303,187.307,187.311,187.315,187.319,187.323,187.327,187.331,187.335,187.339,187.343,187.347,187.351,187.355,187.359,187.363,187.367,187.371,187.375,187.379,187.383,187.387,187.391,187.395,187.399,187.403,187.407,187.411,187.415,187.419,187.423,187.427,187.431,187.435,187.439,187.443,187.447,187.451,187.455,187.459,187.463,187.467,187.471,187.475,187.479,187.483,187.487,187.491,187.495,187.499,187.50300000000001,187.507,187.511,187.51500000000001,187.519,187.523,187.527,187.531,187.535,187.539,187.539,188.00300000000001,188.007,188.01100000000002,188.01500000000001,188.019,188.02300000000002,188.02700000000002,188.031,188.03500000000003,188.03900000000002,188.043,188.04700000000003,188.05100000000002,188.055,188.05900000000003,188.06300000000002,188.067,188.07100000000003,188.07500000000002,188.079,188.08300000000003,188.08700000000002,188.091,188.09500000000003,188.09900000000002,188.103,188.10700000000003,188.11100000000002,188.115,188.11900000000003,188.12300000000002,188.127,188.131,188.13500000000002,188.139,188.143,188.14700000000002,188.151,188.155,188.15900000000002,188.163,188.167,188.17100000000002,188.175,188.179,188.18300000000002,188.187,188.191,188.19500000000002,188.199,188.203,188.20700000000002,188.211,188.215,188.21900000000002,188.223,188.227,188.23100000000002,188.235,188.239,188.24300000000002,188.247,188.251,188.25500000000002,188.25900000000001,188.263,188.26700000000002,188.27100000000002,188.275,188.27900000000002,188.28300000000002,188.287,188.29100000000003,188.29500000000002,188.299,188.30300000000003,188.30700000000002,188.311,188.31500000000003,188.31900000000002,188.323,188.32700000000003,188.33100000000002,188.335,188.33900000000003,188.34300000000002,188.347,188.35100000000003,188.35500000000002,188.359,188.36300000000003,188.36700000000002,188.371,188.37500000000003,188.37900000000002,188.383,188.387,188.39100000000002,188.395,188.399,188.399,188.863,188.867,188.871,188.875,188.879,188.883,188.887,188.891,188.895,188.899,188.903,188.907,188.911,188.915,188.919,188.923,188.927,188.931,188.935,188.939,188.943,188.947,188.951,188.955,188.959,188.963,188.967,188.971,188.975,188.979,188.983,188.987,188.99099999999999,188.995,188.999,189.003,189.007,189.011,189.015,189.019,189.023,189.027,189.031,189.035,189.039,189.043,189.047,189.051,189.055,189.059,189.063,189.067,189.071,189.075,189.079,189.083,189.087,189.091,189.095,189.099,189.103,189.107,189.111,189.115,189.119,189.123,189.127,189.131,189.135,189.139,189.143,189.147,189.151,189.155,189.159,189.163,189.167,189.171,189.175,189.179,189.183,189.187,189.191,189.195,189.199,189.203,189.207,189.211,189.215,189.219,189.223,189.227,189.231,189.235,189.239,189.243,189.24699999999999,189.251,189.255,189.259,189.259,189.723,189.727,189.73100000000002,189.735,189.739,189.74300000000002,189.747,189.751,189.75500000000002,189.75900000000001,189.763,189.76700000000002,189.77100000000002,189.775,189.77900000000002,189.78300000000002,189.787,189.79100000000003,189.79500000000002,189.799,189.80300000000003,189.80700000000002,189.811,189.81500000000003,189.81900000000002,189.823,189.82700000000003,189.83100000000002,189.835,189.83900000000003,189.84300000000002,189.847,189.851,189.85500000000002,189.859,189.863,189.86700000000002,189.871,189.875,189.87900000000002,189.883,189.887,189.89100000000002,189.895,189.899,189.90300000000002,189.907,189.911,189.91500000000002,189.919,189.923,189.92700000000002,189.931,189.935,189.93900000000002,189.943,189.947,189.95100000000002,189.955,189.959,189.96300000000002,189.967,189.971,189.97500000000002,189.979,189.983,189.98700000000002,189.991,189.995,189.99900000000002,190.00300000000001,190.007,190.01100000000002,190.01500000000001,190.019,190.02300000000002,190.02700000000002,190.031,190.03500000000003,190.03900000000002,190.043,190.04700000000003,190.05100000000002,190.055,190.05900000000003,190.06300000000002,190.067,190.07100000000003,190.07500000000002,190.079,190.08300000000003,190.08700000000002,190.091,190.09500000000003,190.09900000000002,190.103,190.107,190.11100000000002,190.115,190.119,190.119,190.583,190.587,190.591,190.595,190.599,190.603,190.607,190.611,190.615,190.619,190.623,190.627,190.631,190.635,190.639,190.643,190.647,190.651,190.655,190.659,190.663,190.667,190.671,190.675,190.679,190.683,190.687,190.691,190.695,190.699,190.703,190.707,190.71099999999998,190.715,190.719,190.72299999999998,190.727,190.731,190.73499999999999,190.739,190.743,190.74699999999999,190.751,190.755,190.759,190.763,190.767,190.771,190.775,190.779,190.783,190.787,190.791,190.795,190.799,190.803,190.807,190.811,190.815,190.819,190.823,190.827,190.831,190.835,190.839,190.843,190.847,190.851,190.855,190.859,190.863,190.867,190.871,190.875,190.879,190.883,190.887,190.891,190.895,190.899,190.903,190.907,190.911,190.915,190.919,190.923,190.927,190.931,190.935,190.939,190.943,190.947,190.951,190.955,190.959,190.963,190.96699999999998,190.971,190.975,190.97899999999998,190.97899999999998,191.443,191.447,191.45100000000002,191.455,191.459,191.46300000000002,191.467,191.471,191.47500000000002,191.479,191.483,191.48700000000002,191.491,191.495,191.49900000000002,191.50300000000001,191.507,191.51100000000002,191.51500000000001,191.519,191.52300000000002,191.52700000000002,191.531,191.53500000000003,191.53900000000002,191.543,191.54700000000003,191.55100000000002,191.555,191.55900000000003,191.56300000000002,191.567,191.571,191.57500000000002,191.579,191.583,191.58700000000002,191.591,191.595,191.59900000000002,191.603,191.607,191.61100000000002,191.615,191.619,191.62300000000002,191.627,191.631,191.63500000000002,191.639,191.643,191.64700000000002,191.651,191.655,191.65900000000002,191.663,191.667,191.67100000000002,191.675,191.679,191.68300000000002,191.687,191.691,191.69500000000002,191.699,191.703,191.70700000000002,191.711,191.715,191.71900000000002,191.723,191.727,191.73100000000002,191.735,191.739,191.74300000000002,191.747,191.751,191.75500000000002,191.75900000000001,191.763,191.76700000000002,191.77100000000002,191.775,191.77900000000002,191.78300000000002,191.787,191.79100000000003,191.79500000000002,191.799,191.80300000000003,191.80700000000002,191.811,191.81500000000003,191.81900000000002,191.823,191.827,191.83100000000002,191.835,191.839,191.839,192.303,192.307,192.311,192.315,192.319,192.323,192.327,192.331,192.335,192.339,192.343,192.347,192.351,192.355,192.359,192.363,192.367,192.371,192.375,192.379,192.383,192.387,192.391,192.395,192.399,192.403,192.407,192.411,192.415,192.419,192.423,192.427,192.43099999999998,192.435,192.439,192.44299999999998,192.447,192.451,192.45499999999998,192.459,192.463,192.46699999999998,192.471,192.475,192.47899999999998,192.483,192.487,192.49099999999999,192.495,192.499,192.503,192.507,192.511,192.515,192.519,192.523,192.527,192.531,192.535,192.539,192.543,192.547,192.551,192.555,192.559,192.563,192.567,192.571,192.575,192.579,192.583,192.587,192.591,192.595,192.599,192.603,192.607,192.611,192.615,192.619,192.623,192.627,192.631,192.635,192.639,192.643,192.647,192.651,192.655,192.659,192.663,192.667,192.671,192.675,192.679,192.683,192.68699999999998,192.691,192.695,192.69899999999998,192.69899999999998,193.163,193.167,193.17100000000002,193.175,193.179,193.18300000000002,193.187,193.191,193.19500000000002,193.199,193.203,193.20700000000002,193.211,193.215,193.21900000000002,193.223,193.227,193.23100000000002,193.235,193.239,193.24300000000002,193.247,193.251,193.25500000000002,193.25900000000001,193.263,193.26700000000002,193.27100000000002,193.275,193.27900000000002,193.28300000000002,193.287,193.291,193.29500000000002,193.299,193.303,193.30700000000002,193.311,193.315,193.31900000000002,193.323,193.327,193.33100000000002,193.335,193.339,193.34300000000002,193.347,193.351,193.35500000000002,193.359,193.363,193.36700000000002,193.371,193.375,193.37900000000002,193.383,193.387,193.39100000000002,193.395,193.399,193.40300000000002,193.407,193.411,193.41500000000002,193.419,193.423,193.42700000000002,193.431,193.435,193.43900000000002,193.443,193.447,193.45100000000002,193.455,193.459,193.46300000000002,193.467,193.471,193.47500000000002,193.479,193.483,193.48700000000002,193.491,193.495,193.49900000000002,193.50300000000001,193.507,193.51100000000002,193.51500000000001,193.519,193.52300000000002,193.52700000000002,193.531,193.53500000000003,193.53900000000002,193.543,193.547,193.55100000000002,193.555,193.559,193.559,194.023,194.027,194.031,194.035,194.039,194.043,194.047,194.051,194.055,194.059,194.063,194.067,194.071,194.075,194.079,194.083,194.087,194.091,194.095,194.099,194.103,194.107,194.111,194.115,194.119,194.123,194.127,194.131,194.135,194.139,194.143,194.147,194.15099999999998,194.155,194.159,194.16299999999998,194.167,194.171,194.17499999999998,194.179,194.183,194.18699999999998,194.191,194.195,194.19899999999998,194.203,194.207,194.21099999999998,194.215,194.219,194.22299999999998,194.227,194.231,194.23499999999999,194.239,194.243,194.24699999999999,194.251,194.255,194.259,194.263,194.267,194.271,194.275,194.279,194.283,194.287,194.291,194.295,194.299,194.303,194.307,194.311,194.315,194.319,194.323,194.327,194.331,194.335,194.339,194.343,194.347,194.351,194.355,194.359,194.363,194.367,194.371,194.375,194.379,194.383,194.387,194.391,194.395,194.399,194.403,194.40699999999998,194.411,194.415,194.41899999999998,194.41899999999998,194.883,194.887,194.89100000000002,194.895,194.899,194.90300000000002,194.907,194.911,194.91500000000002,194.919,194.923,194.92700000000002,194.931,194.935,194.93900000000002,194.943,194.947,194.95100000000002,194.955,194.959,194.96300000000002,194.967,194.971,194.97500000000002,194.979,194.983,194.98700000000002,194.991,194.995,194.99900000000002,195.00300000000001,195.007,195.011,195.01500000000001,195.019,195.023,195.02700000000002,195.031,195.035,195.03900000000002,195.043,195.047,195.05100000000002,195.055,195.059,195.06300000000002,195.067,195.071,195.07500000000002,195.079,195.083,195.08700000000002,195.091,195.095,195.09900000000002,195.103,195.107,195.11100000000002,195.115,195.119,195.12300000000002,195.127,195.131,195.13500000000002,195.139,195.143,195.14700000000002,195.151,195.155,195.15900000000002,195.163,195.167,195.17100000000002,195.175,195.179,195.18300000000002,195.187,195.191,195.19500000000002,195.199,195.203,195.20700000000002,195.211,195.215,195.21900000000002,195.223,195.227,195.23100000000002,195.235,195.239,195.24300000000002,195.247,195.251,195.25500000000002,195.25900000000001,195.263,195.267,195.27100000000002,195.275,195.279,195.279,195.743,195.74699999999999,195.751,195.755,195.759,195.763,195.767,195.771,195.775,195.779,195.783,195.787,195.791,195.795,195.799,195.803,195.807,195.811,195.815,195.819,195.823,195.827,195.831,195.835,195.839,195.843,195.847,195.851,195.855,195.859,195.863,195.867,195.87099999999998,195.875,195.879,195.88299999999998,195.887,195.891,195.89499999999998,195.899,195.903,195.90699999999998,195.911,195.915,195.91899999999998,195.923,195.927,195.93099999999998,195.935,195.939,195.94299999999998,195.947,195.951,195.95499999999998,195.959,195.963,195.96699999999998,195.971,195.975,195.97899999999998,195.983,195.987,195.99099999999999,195.995,195.999,196.003,196.007,196.011,196.015,196.019,196.023,196.027,196.031,196.035,196.039,196.043,196.047,196.051,196.055,196.059,196.063,196.067,196.071,196.075,196.079,196.083,196.087,196.091,196.095,196.099,196.103,196.107,196.111,196.115,196.119,196.123,196.12699999999998,196.131,196.135,196.13899999999998,196.13899999999998,196.603,196.607,196.61100000000002,196.615,196.619,196.62300000000002,196.627,196.631,196.63500000000002,196.639,196.643,196.64700000000002,196.651,196.655,196.65900000000002,196.663,196.667,196.67100000000002,196.675,196.679,196.68300000000002,196.687,196.691,196.69500000000002,196.699,196.703,196.70700000000002,196.711,196.715,196.71900000000002,196.723,196.727,196.731,196.735,196.739,196.743,196.747,196.751,196.755,196.75900000000001,196.763,196.767,196.77100000000002,196.775,196.779,196.78300000000002,196.787,196.791,196.79500000000002,196.799,196.803,196.80700000000002,196.811,196.815,196.81900000000002,196.823,196.827,196.83100000000002,196.835,196.839,196.84300000000002,196.847,196.851,196.85500000000002,196.859,196.863,196.86700000000002,196.871,196.875,196.87900000000002,196.883,196.887,196.89100000000002,196.895,196.899,196.90300000000002,196.907,196.911,196.91500000000002,196.919,196.923,196.92700000000002,196.931,196.935,196.93900000000002,196.943,196.947,196.95100000000002,196.955,196.959,196.96300000000002,196.967,196.971,196.97500000000002,196.979,196.983,196.987,196.991,196.995,196.999,196.999,197.463,197.46699999999998,197.471,197.475,197.47899999999998,197.483,197.487,197.49099999999999,197.495,197.499,197.503,197.507,197.511,197.515,197.519,197.523,197.527,197.531,197.535,197.539,197.543,197.547,197.551,197.555,197.559,197.563,197.567,197.571,197.575,197.579,197.583,197.587,197.59099999999998,197.595,197.599,197.60299999999998,197.607,197.611,197.61499999999998,197.619,197.623,197.62699999999998,197.631,197.635,197.63899999999998,197.643,197.647,197.65099999999998,197.655,197.659,197.66299999999998,197.667,197.671,197.67499999999998,197.679,197.683,197.68699999999998,197.691,197.695,197.69899999999998,197.703,197.707,197.71099999999998,197.715,197.719,197.72299999999998,197.727,197.731,197.73499999999999,197.739,197.743,197.74699999999999,197.751,197.755,197.759,197.763,197.767,197.771,197.775,197.779,197.783,197.787,197.791,197.795,197.799,197.803,197.807,197.811,197.815,197.819,197.823,197.827,197.831,197.835,197.839,197.843,197.84699999999998,197.851,197.855,197.85899999999998,197.85899999999998,198.323,198.327,198.33100000000002,198.335,198.339,198.34300000000002,198.347,198.351,198.35500000000002,198.359,198.363,198.36700000000002,198.371,198.375,198.37900000000002,198.383,198.387,198.39100000000002,198.395,198.399,198.40300000000002,198.407,198.411,198.41500000000002,198.419,198.423,198.42700000000002,198.431,198.435,198.43900000000002,198.443,198.447,198.451,198.455,198.459,198.463,198.467,198.471,198.475,198.479,198.483,198.487,198.491,198.495,198.499,198.50300000000001,198.507,198.511,198.51500000000001,198.519,198.523,198.52700000000002,198.531,198.535,198.53900000000002,198.543,198.547,198.55100000000002,198.555,198.559,198.56300000000002,198.567,198.571,198.57500000000002,198.579,198.583,198.58700000000002,198.591,198.595,198.59900000000002,198.603,198.607,198.61100000000002,198.615,198.619,198.62300000000002,198.627,198.631,198.63500000000002,198.639,198.643,198.64700000000002,198.651,198.655,198.65900000000002,198.663,198.667,198.67100000000002,198.675,198.679,198.68300000000002,198.687,198.691,198.69500000000002,198.699,198.703,198.707,198.711,198.715,198.719,198.719,199.183,199.18699999999998,199.191,199.195,199.19899999999998,199.203,199.207,199.21099999999998,199.215,199.219,199.22299999999998,199.227,199.231,199.23499999999999,199.239,199.243,199.24699999999999,199.251,199.255,199.259,199.263,199.267,199.271,199.275,199.279,199.283,199.287,199.291,199.295,199.299,199.303,199.307,199.31099999999998,199.315,199.319,199.32299999999998,199.327,199.331,199.33499999999998,199.339,199.343,199.34699999999998,199.351,199.355,199.35899999999998,199.363,199.367,199.37099999999998,199.375,199.379,199.38299999999998,199.387,199.391,199.39499999999998,199.399,199.403,199.40699999999998,199.411,199.415,199.41899999999998,199.423,199.427,199.43099999999998,199.435,199.439,199.44299999999998,199.447,199.451,199.45499999999998,199.459,199.463,199.46699999999998,199.471,199.475,199.47899999999998,199.483,199.487,199.49099999999999,199.495,199.499,199.503,199.507,199.511,199.515,199.519,199.523,199.527,199.531,199.535,199.539,199.543,199.547,199.551,199.555,199.559,199.563,199.56699999999998,199.571,199.575,199.57899999999998,199.57899999999998,200.043,200.047,200.05100000000002,200.055,200.059,200.06300000000002,200.067,200.071,200.07500000000002,200.079,200.083,200.08700000000002,200.091,200.095,200.09900000000002,200.103,200.107,200.11100000000002,200.115,200.119,200.12300000000002,200.127,200.131,200.13500000000002,200.139,200.143,200.14700000000002,200.151,200.155,200.15900000000002,200.163,200.167,200.171,200.175,200.179,200.183,200.187,200.191,200.195,200.199,200.203,200.207,200.211,200.215,200.219,200.223,200.227,200.231,200.235,200.239,200.243,200.247,200.251,200.255,200.25900000000001,200.263,200.267,200.27100000000002,200.275,200.279,200.28300000000002,200.287,200.291,200.29500000000002,200.299,200.303,200.30700000000002,200.311,200.315,200.31900000000002,200.323,200.327,200.33100000000002,200.335,200.339,200.34300000000002,200.347,200.351,200.35500000000002,200.359,200.363,200.36700000000002,200.371,200.375,200.37900000000002,200.383,200.387,200.39100000000002,200.395,200.399,200.40300000000002,200.407,200.411,200.41500000000002,200.419,200.423,200.427,200.431,200.435,200.439,200.439,225.62300000000002,225.627,225.63100000000003,225.63500000000002,225.639,225.64300000000003,225.64700000000002,225.651,225.65500000000003,225.65900000000002,225.663,225.66700000000003,225.67100000000002,225.675,225.67900000000003,225.68300000000002,225.687,225.69100000000003,225.69500000000002,225.699,225.70300000000003,225.70700000000002,225.711,225.71500000000003,225.71900000000002,225.723,225.72700000000003,225.73100000000002,225.735,225.73900000000003,225.74300000000002,225.747,225.751,225.75500000000002,225.75900000000001,225.763,225.76700000000002,225.77100000000002,225.775,225.77900000000002,225.78300000000002,225.787,225.79100000000003,225.79500000000002,225.799,225.80300000000003,225.80700000000002,225.811,225.81500000000003,225.81900000000002,225.823,225.82700000000003,225.83100000000002,225.835,225.83900000000003,225.84300000000002,225.847,225.85100000000003,225.85500000000002,225.859,225.86300000000003,225.86700000000002,225.871,225.87500000000003,225.87900000000002,225.883,225.88700000000003,225.89100000000002,225.895,225.89900000000003,225.90300000000002,225.907,225.91100000000003,225.91500000000002,225.919,225.92300000000003,225.92700000000002,225.931,225.93500000000003,225.93900000000002,225.943,225.94700000000003,225.95100000000002,225.955,225.95900000000003,225.96300000000002,225.967,225.97100000000003,225.97500000000002,225.979,225.98300000000003,225.98700000000002,225.991,225.99500000000003,225.99900000000002,226.00300000000001,226.007,226.01100000000002,226.01500000000001,226.019,226.019,226.484,226.488,226.49200000000002,226.496,226.5,226.50400000000002,226.508,226.512,226.51600000000002,226.52,226.524,226.52800000000002,226.532,226.536,226.54000000000002,226.544,226.548,226.55200000000002,226.556,226.56,226.56400000000002,226.568,226.572,226.57600000000002,226.58,226.584,226.58800000000002,226.592,226.596,226.60000000000002,226.604,226.608,226.612,226.616,226.62,226.624,226.62800000000001,226.632,226.636,226.64000000000001,226.644,226.648,226.65200000000002,226.656,226.66,226.66400000000002,226.668,226.672,226.67600000000002,226.68,226.684,226.68800000000002,226.692,226.696,226.70000000000002,226.704,226.708,226.71200000000002,226.716,226.72,226.72400000000002,226.728,226.732,226.73600000000002,226.74,226.744,226.74800000000002,226.752,226.756,226.76000000000002,226.764,226.768,226.77200000000002,226.776,226.78,226.78400000000002,226.788,226.792,226.79600000000002,226.8,226.804,226.80800000000002,226.812,226.816,226.82000000000002,226.824,226.828,226.83200000000002,226.836,226.84,226.84400000000002,226.848,226.852,226.85600000000002,226.86,226.864,226.868,226.872,226.876,226.88,226.88,227.34300000000002,227.347,227.35100000000003,227.35500000000002,227.359,227.36300000000003,227.36700000000002,227.371,227.37500000000003,227.37900000000002,227.383,227.38700000000003,227.39100000000002,227.395,227.39900000000003,227.40300000000002,227.407,227.41100000000003,227.41500000000002,227.419,227.42300000000003,227.42700000000002,227.431,227.43500000000003,227.43900000000002,227.443,227.44700000000003,227.45100000000002,227.455,227.45900000000003,227.46300000000002,227.467,227.471,227.47500000000002,227.479,227.483,227.48700000000002,227.491,227.495,227.49900000000002,227.50300000000001,227.507,227.51100000000002,227.51500000000001,227.519,227.52300000000002,227.52700000000002,227.531,227.53500000000003,227.53900000000002,227.543,227.54700000000003,227.55100000000002,227.555,227.55900000000003,227.56300000000002,227.567,227.57100000000003,227.57500000000002,227.579,227.58300000000003,227.58700000000002,227.591,227.59500000000003,227.59900000000002,227.603,227.60700000000003,227.61100000000002,227.615,227.61900000000003,227.62300000000002,227.627,227.63100000000003,227.63500000000002,227.639,227.64300000000003,227.64700000000002,227.651,227.65500000000003,227.65900000000002,227.663,227.66700000000003,227.67100000000002,227.675,227.67900000000003,227.68300000000002,227.687,227.69100000000003,227.69500000000002,227.699,227.70300000000003,227.70700000000002,227.711,227.71500000000003,227.71900000000002,227.723,227.727,227.73100000000002,227.735,227.739,227.739,228.204,228.208,228.21200000000002,228.216,228.22,228.22400000000002,228.228,228.232,228.23600000000002,228.24,228.244,228.24800000000002,228.252,228.256,228.26000000000002,228.264,228.268,228.27200000000002,228.276,228.28,228.28400000000002,228.288,228.292,228.29600000000002,228.3,228.304,228.30800000000002,228.312,228.316,228.32000000000002,228.324,228.328,228.332,228.336,228.34,228.344,228.348,228.352,228.356,228.36,228.364,228.368,228.372,228.376,228.38,228.38400000000001,228.388,228.392,228.39600000000002,228.4,228.404,228.40800000000002,228.412,228.416,228.42000000000002,228.424,228.428,228.43200000000002,228.436,228.44,228.44400000000002,228.448,228.452,228.45600000000002,228.46,228.464,228.46800000000002,228.472,228.476,228.48000000000002,228.484,228.488,228.49200000000002,228.496,228.5,228.50400000000002,228.508,228.512,228.51600000000002,228.52,228.524,228.52800000000002,228.532,228.536,228.54000000000002,228.544,228.548,228.55200000000002,228.556,228.56,228.56400000000002,228.568,228.572,228.57600000000002,228.58,228.584,228.588,228.592,228.596,228.6,228.6,229.06300000000002,229.067,229.07100000000003,229.07500000000002,229.079,229.08300000000003,229.08700000000002,229.091,229.09500000000003,229.09900000000002,229.103,229.10700000000003,229.11100000000002,229.115,229.11900000000003,229.12300000000002,229.127,229.13100000000003,229.13500000000002,229.139,229.14300000000003,229.14700000000002,229.151,229.15500000000003,229.15900000000002,229.163,229.16700000000003,229.17100000000002,229.175,229.17900000000003,229.18300000000002,229.187,229.191,229.19500000000002,229.199,229.203,229.20700000000002,229.211,229.215,229.21900000000002,229.223,229.227,229.23100000000002,229.235,229.239,229.24300000000002,229.247,229.251,229.25500000000002,229.25900000000001,229.263,229.26700000000002,229.27100000000002,229.275,229.27900000000002,229.28300000000002,229.287,229.29100000000003,229.29500000000002,229.299,229.30300000000003,229.30700000000002,229.311,229.31500000000003,229.31900000000002,229.323,229.32700000000003,229.33100000000002,229.335,229.33900000000003,229.34300000000002,229.347,229.35100000000003,229.35500000000002,229.359,229.36300000000003,229.36700000000002,229.371,229.37500000000003,229.37900000000002,229.383,229.38700000000003,229.39100000000002,229.395,229.39900000000003,229.40300000000002,229.407,229.41100000000003,229.41500000000002,229.419,229.42300000000003,229.42700000000002,229.431,229.43500000000003,229.43900000000002,229.443,229.447,229.45100000000002,229.455,229.459,229.459,229.924,229.928,229.93200000000002,229.936,229.94,229.94400000000002,229.948,229.952,229.95600000000002,229.96,229.964,229.96800000000002,229.972,229.976,229.98000000000002,229.984,229.988,229.99200000000002,229.996,230.0,230.00400000000002,230.008,230.012,230.01600000000002,230.02,230.024,230.02800000000002,230.032,230.036,230.04000000000002,230.044,230.048,230.052,230.056,230.06,230.064,230.068,230.072,230.076,230.08,230.084,230.088,230.092,230.096,230.1,230.104,230.108,230.112,230.116,230.12,230.124,230.12800000000001,230.132,230.136,230.14000000000001,230.144,230.148,230.15200000000002,230.156,230.16,230.16400000000002,230.168,230.172,230.17600000000002,230.18,230.184,230.18800000000002,230.192,230.196,230.20000000000002,230.204,230.208,230.21200000000002,230.216,230.22,230.22400000000002,230.228,230.232,230.23600000000002,230.24,230.244,230.24800000000002,230.252,230.256,230.26000000000002,230.264,230.268,230.27200000000002,230.276,230.28,230.28400000000002,230.288,230.292,230.29600000000002,230.3,230.304,230.308,230.312,230.316,230.32,230.32,230.78300000000002,230.787,230.79100000000003,230.79500000000002,230.799,230.80300000000003,230.80700000000002,230.811,230.81500000000003,230.81900000000002,230.823,230.82700000000003,230.83100000000002,230.835,230.83900000000003,230.84300000000002,230.847,230.85100000000003,230.85500000000002,230.859,230.86300000000003,230.86700000000002,230.871,230.87500000000003,230.87900000000002,230.883,230.88700000000003,230.89100000000002,230.895,230.89900000000003,230.90300000000002,230.907,230.911,230.91500000000002,230.919,230.923,230.92700000000002,230.931,230.935,230.93900000000002,230.943,230.947,230.95100000000002,230.955,230.959,230.96300000000002,230.967,230.971,230.97500000000002,230.979,230.983,230.98700000000002,230.991,230.995,230.99900000000002,231.00300000000001,231.007,231.01100000000002,231.01500000000001,231.019,231.02300000000002,231.02700000000002,231.031,231.03500000000003,231.03900000000002,231.043,231.04700000000003,231.05100000000002,231.055,231.05900000000003,231.06300000000002,231.067,231.07100000000003,231.07500000000002,231.079,231.08300000000003,231.08700000000002,231.091,231.09500000000003,231.09900000000002,231.103,231.10700000000003,231.11100000000002,231.115,231.11900000000003,231.12300000000002,231.127,231.13100000000003,231.13500000000002,231.139,231.14300000000003,231.14700000000002,231.151,231.15500000000003,231.15900000000002,231.163,231.167,231.17100000000002,231.175,231.179,231.179,231.644,231.648,231.65200000000002,231.656,231.66,231.66400000000002,231.668,231.672,231.67600000000002,231.68,231.684,231.68800000000002,231.692,231.696,231.70000000000002,231.704,231.708,231.71200000000002,231.716,231.72,231.72400000000002,231.728,231.732,231.73600000000002,231.74,231.744,231.74800000000002,231.752,231.756,231.76000000000002,231.764,231.768,231.772,231.776,231.78,231.784,231.788,231.792,231.796,231.8,231.804,231.808,231.812,231.816,231.82,231.824,231.828,231.832,231.836,231.84,231.844,231.848,231.852,231.856,231.86,231.864,231.868,231.872,231.876,231.88,231.88400000000001,231.888,231.892,231.89600000000002,231.9,231.904,231.90800000000002,231.912,231.916,231.92000000000002,231.924,231.928,231.93200000000002,231.936,231.94,231.94400000000002,231.948,231.952,231.95600000000002,231.96,231.964,231.96800000000002,231.972,231.976,231.98000000000002,231.984,231.988,231.99200000000002,231.996,232.0,232.00400000000002,232.008,232.012,232.01600000000002,232.02,232.024,232.028,232.032,232.036,232.04,232.04,232.50300000000001,232.507,232.51100000000002,232.51500000000001,232.519,232.52300000000002,232.52700000000002,232.531,232.53500000000003,232.53900000000002,232.543,232.54700000000003,232.55100000000002,232.555,232.55900000000003,232.56300000000002,232.567,232.57100000000003,232.57500000000002,232.579,232.58300000000003,232.58700000000002,232.591,232.59500000000003,232.59900000000002,232.603,232.60700000000003,232.61100000000002,232.615,232.61900000000003,232.62300000000002,232.627,232.631,232.63500000000002,232.639,232.643,232.64700000000002,232.651,232.655,232.65900000000002,232.663,232.667,232.67100000000002,232.675,232.679,232.68300000000002,232.687,232.691,232.69500000000002,232.699,232.703,232.70700000000002,232.711,232.715,232.71900000000002,232.723,232.727,232.73100000000002,232.735,232.739,232.74300000000002,232.747,232.751,232.75500000000002,232.75900000000001,232.763,232.76700000000002,232.77100000000002,232.775,232.77900000000002,232.78300000000002,232.787,232.79100000000003,232.79500000000002,232.799,232.80300000000003,232.80700000000002,232.811,232.81500000000003,232.81900000000002,232.823,232.82700000000003,232.83100000000002,232.835,232.83900000000003,232.84300000000002,232.847,232.85100000000003,232.85500000000002,232.859,232.86300000000003,232.86700000000002,232.871,232.87500000000003,232.87900000000002,232.883,232.887,232.89100000000002,232.895,232.899,232.899,233.364,233.368,233.372,233.376,233.38,233.38400000000001,233.388,233.392,233.39600000000002,233.4,233.404,233.40800000000002,233.412,233.416,233.42000000000002,233.424,233.428,233.43200000000002,233.436,233.44,233.44400000000002,233.448,233.452,233.45600000000002,233.46,233.464,233.46800000000002,233.472,233.476,233.48000000000002,233.484,233.488,233.492,233.496,233.5,233.504,233.508,233.512,233.516,233.52,233.524,233.528,233.532,233.536,233.54,233.544,233.548,233.552,233.556,233.56,233.564,233.568,233.572,233.576,233.58,233.584,233.588,233.592,233.596,233.6,233.604,233.608,233.612,233.616,233.62,233.624,233.62800000000001,233.632,233.636,233.64000000000001,233.644,233.648,233.65200000000002,233.656,233.66,233.66400000000002,233.668,233.672,233.67600000000002,233.68,233.684,233.68800000000002,233.692,233.696,233.70000000000002,233.704,233.708,233.71200000000002,233.716,233.72,233.72400000000002,233.728,233.732,233.73600000000002,233.74,233.744,233.748,233.752,233.756,233.76,233.76,234.223,234.227,234.23100000000002,234.235,234.239,234.24300000000002,234.247,234.251,234.25500000000002,234.25900000000001,234.263,234.26700000000002,234.27100000000002,234.275,234.27900000000002,234.28300000000002,234.287,234.29100000000003,234.29500000000002,234.299,234.30300000000003,234.30700000000002,234.311,234.31500000000003,234.31900000000002,234.323,234.32700000000003,234.33100000000002,234.335,234.33900000000003,234.34300000000002,234.347,234.351,234.35500000000002,234.359,234.363,234.36700000000002,234.371,234.375,234.37900000000002,234.383,234.387,234.39100000000002,234.395,234.399,234.40300000000002,234.407,234.411,234.41500000000002,234.419,234.423,234.42700000000002,234.431,234.435,234.43900000000002,234.443,234.447,234.45100000000002,234.455,234.459,234.46300000000002,234.467,234.471,234.47500000000002,234.479,234.483,234.48700000000002,234.491,234.495,234.49900000000002,234.50300000000001,234.507,234.51100000000002,234.51500000000001,234.519,234.52300000000002,234.52700000000002,234.531,234.53500000000003,234.53900000000002,234.543,234.54700000000003,234.55100000000002,234.555,234.55900000000003,234.56300000000002,234.567,234.57100000000003,234.57500000000002,234.579,234.58300000000003,234.58700000000002,234.591,234.59500000000003,234.59900000000002,234.603,234.607,234.61100000000002,234.615,234.619,234.619,235.084,235.088,235.092,235.096,235.1,235.104,235.108,235.112,235.116,235.12,235.124,235.12800000000001,235.132,235.136,235.14000000000001,235.144,235.148,235.15200000000002,235.156,235.16,235.16400000000002,235.168,235.172,235.17600000000002,235.18,235.184,235.18800000000002,235.192,235.196,235.20000000000002,235.204,235.208,235.212,235.216,235.22,235.224,235.228,235.232,235.236,235.24,235.244,235.248,235.252,235.256,235.26,235.264,235.268,235.272,235.276,235.28,235.284,235.288,235.292,235.296,235.3,235.304,235.308,235.312,235.316,235.32,235.324,235.328,235.332,235.336,235.34,235.344,235.348,235.352,235.356,235.36,235.364,235.368,235.372,235.376,235.38,235.38400000000001,235.388,235.392,235.39600000000002,235.4,235.404,235.40800000000002,235.412,235.416,235.42000000000002,235.424,235.428,235.43200000000002,235.436,235.44,235.44400000000002,235.448,235.452,235.45600000000002,235.46,235.464,235.468,235.472,235.476,235.48,235.48,235.943,235.947,235.95100000000002,235.955,235.959,235.96300000000002,235.967,235.971,235.97500000000002,235.979,235.983,235.98700000000002,235.991,235.995,235.99900000000002,236.00300000000001,236.007,236.01100000000002,236.01500000000001,236.019,236.02300000000002,236.02700000000002,236.031,236.03500000000003,236.03900000000002,236.043,236.04700000000003,236.05100000000002,236.055,236.05900000000003,236.06300000000002,236.067,236.071,236.07500000000002,236.079,236.083,236.08700000000002,236.091,236.095,236.09900000000002,236.103,236.107,236.11100000000002,236.115,236.119,236.12300000000002,236.127,236.131,236.13500000000002,236.139,236.143,236.14700000000002,236.151,236.155,236.15900000000002,236.163,236.167,236.17100000000002,236.175,236.179,236.18300000000002,236.187,236.191,236.19500000000002,236.199,236.203,236.20700000000002,236.211,236.215,236.21900000000002,236.223,236.227,236.23100000000002,236.235,236.239,236.24300000000002,236.247,236.251,236.25500000000002,236.25900000000001,236.263,236.26700000000002,236.27100000000002,236.275,236.27900000000002,236.28300000000002,236.287,236.29100000000003,236.29500000000002,236.299,236.30300000000003,236.30700000000002,236.311,236.31500000000003,236.31900000000002,236.323,236.327,236.33100000000002,236.335,236.339,236.339,236.804,236.808,236.812,236.816,236.82,236.824,236.828,236.832,236.836,236.84,236.844,236.848,236.852,236.856,236.86,236.864,236.868,236.872,236.876,236.88,236.88400000000001,236.888,236.892,236.89600000000002,236.9,236.904,236.90800000000002,236.912,236.916,236.92000000000002,236.924,236.928,236.932,236.936,236.94,236.944,236.948,236.952,236.956,236.96,236.964,236.968,236.972,236.976,236.98,236.984,236.988,236.992,236.996,237.0,237.004,237.008,237.012,237.016,237.02,237.024,237.028,237.032,237.036,237.04,237.044,237.048,237.052,237.056,237.06,237.064,237.068,237.072,237.076,237.08,237.084,237.088,237.092,237.096,237.1,237.104,237.108,237.112,237.116,237.12,237.124,237.12800000000001,237.132,237.136,237.14000000000001,237.144,237.148,237.15200000000002,237.156,237.16,237.16400000000002,237.168,237.172,237.17600000000002,237.18,237.184,237.188,237.192,237.196,237.2,237.2,237.663,237.667,237.67100000000002,237.675,237.679,237.68300000000002,237.687,237.691,237.69500000000002,237.699,237.703,237.70700000000002,237.711,237.715,237.71900000000002,237.723,237.727,237.73100000000002,237.735,237.739,237.74300000000002,237.747,237.751,237.75500000000002,237.75900000000001,237.763,237.76700000000002,237.77100000000002,237.775,237.77900000000002,237.78300000000002,237.787,237.791,237.79500000000002,237.799,237.803,237.80700000000002,237.811,237.815,237.81900000000002,237.823,237.827,237.83100000000002,237.835,237.839,237.84300000000002,237.847,237.851,237.85500000000002,237.859,237.863,237.86700000000002,237.871,237.875,237.87900000000002,237.883,237.887,237.89100000000002,237.895,237.899,237.90300000000002,237.907,237.911,237.91500000000002,237.919,237.923,237.92700000000002,237.931,237.935,237.93900000000002,237.943,237.947,237.95100000000002,237.955,237.959,237.96300000000002,237.967,237.971,237.97500000000002,237.979,237.983,237.98700000000002,237.991,237.995,237.99900000000002,238.00300000000001,238.007,238.01100000000002,238.01500000000001,238.019,238.02300000000002,238.02700000000002,238.031,238.03500000000003,238.03900000000002,238.043,238.047,238.05100000000002,238.055,238.059,238.059,238.524,238.528,238.532,238.536,238.54,238.544,238.548,238.552,238.556,238.56,238.564,238.568,238.572,238.576,238.58,238.584,238.588,238.592,238.596,238.6,238.604,238.608,238.612,238.616,238.62,238.624,238.62800000000001,238.632,238.636,238.64000000000001,238.644,238.648,238.652,238.656,238.66,238.664,238.668,238.672,238.676,238.68,238.684,238.688,238.692,238.696,238.7,238.704,238.708,238.712,238.716,238.72,238.724,238.728,238.732,238.736,238.74,238.744,238.748,238.752,238.756,238.76,238.764,238.768,238.772,238.776,238.78,238.784,238.788,238.792,238.796,238.8,238.804,238.808,238.812,238.816,238.82,238.824,238.828,238.832,238.836,238.84,238.844,238.848,238.852,238.856,238.86,238.864,238.868,238.872,238.876,238.88,238.88400000000001,238.888,238.892,238.89600000000002,238.9,238.904,238.908,238.912,238.916,238.92,238.92,239.383,239.387,239.39100000000002,239.395,239.399,239.40300000000002,239.407,239.411,239.41500000000002,239.419,239.423,239.42700000000002,239.431,239.435,239.43900000000002,239.443,239.447,239.45100000000002,239.455,239.459,239.46300000000002,239.467,239.471,239.47500000000002,239.479,239.483,239.48700000000002,239.491,239.495,239.49900000000002,239.50300000000001,239.507,239.511,239.51500000000001,239.519,239.523,239.52700000000002,239.531,239.535,239.53900000000002,239.543,239.547,239.55100000000002,239.555,239.559,239.56300000000002,239.567,239.571,239.57500000000002,239.579,239.583,239.58700000000002,239.591,239.595,239.59900000000002,239.603,239.607,239.61100000000002,239.615,239.619,239.62300000000002,239.627,239.631,239.63500000000002,239.639,239.643,239.64700000000002,239.651,239.655,239.65900000000002,239.663,239.667,239.67100000000002,239.675,239.679,239.68300000000002,239.687,239.691,239.69500000000002,239.699,239.703,239.70700000000002,239.711,239.715,239.71900000000002,239.723,239.727,239.73100000000002,239.735,239.739,239.74300000000002,239.747,239.751,239.75500000000002,239.75900000000001,239.763,239.767,239.77100000000002,239.775,239.779,239.779,240.243,240.24699999999999,240.251,240.255,240.259,240.263,240.267,240.271,240.275,240.279,240.283,240.287,240.291,240.295,240.299,240.303,240.307,240.311,240.315,240.319,240.323,240.327,240.331,240.335,240.339,240.343,240.347,240.351,240.355,240.359,240.363,240.367,240.37099999999998,240.375,240.379,240.38299999999998,240.387,240.391,240.39499999999998,240.399,240.403,240.40699999999998,240.411,240.415,240.41899999999998,240.423,240.427,240.43099999999998,240.435,240.439,240.44299999999998,240.447,240.451,240.45499999999998,240.459,240.463,240.46699999999998,240.471,240.475,240.47899999999998,240.483,240.487,240.49099999999999,240.495,240.499,240.503,240.507,240.511,240.515,240.519,240.523,240.527,240.531,240.535,240.539,240.543,240.547,240.551,240.555,240.559,240.563,240.567,240.571,240.575,240.579,240.583,240.587,240.591,240.595,240.599,240.603,240.607,240.611,240.615,240.619,240.623,240.62699999999998,240.631,240.635,240.63899999999998,240.63899999999998,241.103,241.107,241.11100000000002,241.115,241.119,241.12300000000002,241.127,241.131,241.13500000000002,241.139,241.143,241.14700000000002,241.151,241.155,241.15900000000002,241.163,241.167,241.17100000000002,241.175,241.179,241.18300000000002,241.187,241.191,241.19500000000002,241.199,241.203,241.20700000000002,241.211,241.215,241.21900000000002,241.223,241.227,241.231,241.235,241.239,241.243,241.247,241.251,241.255,241.25900000000001,241.263,241.267,241.27100000000002,241.275,241.279,241.28300000000002,241.287,241.291,241.29500000000002,241.299,241.303,241.30700000000002,241.311,241.315,241.31900000000002,241.323,241.327,241.33100000000002,241.335,241.339,241.34300000000002,241.347,241.351,241.35500000000002,241.359,241.363,241.36700000000002,241.371,241.375,241.37900000000002,241.383,241.387,241.39100000000002,241.395,241.399,241.40300000000002,241.407,241.411,241.41500000000002,241.419,241.423,241.42700000000002,241.431,241.435,241.43900000000002,241.443,241.447,241.45100000000002,241.455,241.459,241.46300000000002,241.467,241.471,241.47500000000002,241.479,241.483,241.487,241.491,241.495,241.499,241.499,241.963,241.96699999999998,241.971,241.975,241.97899999999998,241.983,241.987,241.99099999999999,241.995,241.999,242.003,242.007,242.011,242.015,242.019,242.023,242.027,242.031,242.035,242.039,242.043,242.047,242.051,242.055,242.059,242.063,242.067,242.071,242.075,242.079,242.083,242.087,242.09099999999998,242.095,242.099,242.10299999999998,242.107,242.111,242.11499999999998,242.119,242.123,242.12699999999998,242.131,242.135,242.13899999999998,242.143,242.147,242.15099999999998,242.155,242.159,242.16299999999998,242.167,242.171,242.17499999999998,242.179,242.183,242.18699999999998,242.191,242.195,242.19899999999998,242.203,242.207,242.21099999999998,242.215,242.219,242.22299999999998,242.227,242.231,242.23499999999999,242.239,242.243,242.24699999999999,242.251,242.255,242.259,242.263,242.267,242.271,242.275,242.279,242.283,242.287,242.291,242.295,242.299,242.303,242.307,242.311,242.315,242.319,242.323,242.327,242.331,242.335,242.339,242.343,242.34699999999998,242.351,242.355,242.35899999999998,242.35899999999998,242.823,242.827,242.83100000000002,242.835,242.839,242.84300000000002,242.847,242.851,242.85500000000002,242.859,242.863,242.86700000000002,242.871,242.875,242.87900000000002,242.883,242.887,242.89100000000002,242.895,242.899,242.90300000000002,242.907,242.911,242.91500000000002,242.919,242.923,242.92700000000002,242.931,242.935,242.93900000000002,242.943,242.947,242.951,242.955,242.959,242.963,242.967,242.971,242.975,242.979,242.983,242.987,242.991,242.995,242.999,243.00300000000001,243.007,243.011,243.01500000000001,243.019,243.023,243.02700000000002,243.031,243.035,243.03900000000002,243.043,243.047,243.05100000000002,243.055,243.059,243.06300000000002,243.067,243.071,243.07500000000002,243.079,243.083,243.08700000000002,243.091,243.095,243.09900000000002,243.103,243.107,243.11100000000002,243.115,243.119,243.12300000000002,243.127,243.131,243.13500000000002,243.139,243.143,243.14700000000002,243.151,243.155,243.15900000000002,243.163,243.167,243.17100000000002,243.175,243.179,243.18300000000002,243.187,243.191,243.19500000000002,243.199,243.203,243.207,243.211,243.215,243.219,243.219,243.683,243.68699999999998,243.691,243.695,243.69899999999998,243.703,243.707,243.71099999999998,243.715,243.719,243.72299999999998,243.727,243.731,243.73499999999999,243.739,243.743,243.74699999999999,243.751,243.755,243.759,243.763,243.767,243.771,243.775,243.779,243.783,243.787,243.791,243.795,243.799,243.803,243.807,243.81099999999998,243.815,243.819,243.82299999999998,243.827,243.831,243.83499999999998,243.839,243.843,243.84699999999998,243.851,243.855,243.85899999999998,243.863,243.867,243.87099999999998,243.875,243.879,243.88299999999998,243.887,243.891,243.89499999999998,243.899,243.903,243.90699999999998,243.911,243.915,243.91899999999998,243.923,243.927,243.93099999999998,243.935,243.939,243.94299999999998,243.947,243.951,243.95499999999998,243.959,243.963,243.96699999999998,243.971,243.975,243.97899999999998,243.983,243.987,243.99099999999999,243.995,243.999,244.003,244.007,244.011,244.015,244.019,244.023,244.027,244.031,244.035,244.039,244.043,244.047,244.051,244.055,244.059,244.063,244.06699999999998,244.071,244.075,244.07899999999998,244.07899999999998,244.543,244.547,244.55100000000002,244.555,244.559,244.56300000000002,244.567,244.571,244.57500000000002,244.579,244.583,244.58700000000002,244.591,244.595,244.59900000000002,244.603,244.607,244.61100000000002,244.615,244.619,244.62300000000002,244.627,244.631,244.63500000000002,244.639,244.643,244.64700000000002,244.651,244.655,244.65900000000002,244.663,244.667,244.671,244.675,244.679,244.683,244.687,244.691,244.695,244.699,244.703,244.707,244.711,244.715,244.719,244.723,244.727,244.731,244.735,244.739,244.743,244.747,244.751,244.755,244.75900000000001,244.763,244.767,244.77100000000002,244.775,244.779,244.78300000000002,244.787,244.791,244.79500000000002,244.799,244.803,244.80700000000002,244.811,244.815,244.81900000000002,244.823,244.827,244.83100000000002,244.835,244.839,244.84300000000002,244.847,244.851,244.85500000000002,244.859,244.863,244.86700000000002,244.871,244.875,244.87900000000002,244.883,244.887,244.89100000000002,244.895,244.899,244.90300000000002,244.907,244.911,244.91500000000002,244.919,244.923,244.927,244.931,244.935,244.939,244.939,245.403,245.40699999999998,245.411,245.415,245.41899999999998,245.423,245.427,245.43099999999998,245.435,245.439,245.44299999999998,245.447,245.451,245.45499999999998,245.459,245.463,245.46699999999998,245.471,245.475,245.47899999999998,245.483,245.487,245.49099999999999,245.495,245.499,245.503,245.507,245.511,245.515,245.519,245.523,245.527,245.53099999999998,245.535,245.539,245.54299999999998,245.547,245.551,245.55499999999998,245.559,245.563,245.56699999999998,245.571,245.575,245.57899999999998,245.583,245.587,245.59099999999998,245.595,245.599,245.60299999999998,245.607,245.611,245.61499999999998,245.619,245.623,245.62699999999998,245.631,245.635,245.63899999999998,245.643,245.647,245.65099999999998,245.655,245.659,245.66299999999998,245.667,245.671,245.67499999999998,245.679,245.683,245.68699999999998,245.691,245.695,245.69899999999998,245.703,245.707,245.71099999999998,245.715,245.719,245.72299999999998,245.727,245.731,245.73499999999999,245.739,245.743,245.74699999999999,245.751,245.755,245.759,245.763,245.767,245.771,245.775,245.779,245.783,245.78699999999998,245.791,245.795,245.79899999999998,245.79899999999998,246.263,246.267,246.27100000000002,246.275,246.279,246.28300000000002,246.287,246.291,246.29500000000002,246.299,246.303,246.30700000000002,246.311,246.315,246.31900000000002,246.323,246.327,246.33100000000002,246.335,246.339,246.34300000000002,246.347,246.351,246.35500000000002,246.359,246.363,246.36700000000002,246.371,246.375,246.37900000000002,246.383,246.387,246.391,246.395,246.399,246.403,246.407,246.411,246.415,246.419,246.423,246.427,246.431,246.435,246.439,246.443,246.447,246.451,246.455,246.459,246.463,246.467,246.471,246.475,246.479,246.483,246.487,246.491,246.495,246.499,246.50300000000001,246.507,246.511,246.51500000000001,246.519,246.523,246.52700000000002,246.531,246.535,246.53900000000002,246.543,246.547,246.55100000000002,246.555,246.559,246.56300000000002,246.567,246.571,246.57500000000002,246.579,246.583,246.58700000000002,246.591,246.595,246.59900000000002,246.603,246.607,246.61100000000002,246.615,246.619,246.62300000000002,246.627,246.631,246.63500000000002,246.639,246.643,246.647,246.651,246.655,246.659,246.659,247.12300000000002,247.127,247.13100000000003,247.13500000000002,247.139,247.14300000000003,247.14700000000002,247.151,247.15500000000003,247.15900000000002,247.163,247.16700000000003,247.17100000000002,247.175,247.17900000000003,247.18300000000002,247.187,247.19100000000003,247.19500000000002,247.199,247.20300000000003,247.20700000000002,247.211,247.21500000000003,247.21900000000002,247.223,247.22700000000003,247.23100000000002,247.235,247.23900000000003,247.24300000000002,247.247,247.251,247.25500000000002,247.25900000000001,247.263,247.26700000000002,247.27100000000002,247.275,247.27900000000002,247.28300000000002,247.287,247.29100000000003,247.29500000000002,247.299,247.30300000000003,247.30700000000002,247.311,247.31500000000003,247.31900000000002,247.323,247.32700000000003,247.33100000000002,247.335,247.33900000000003,247.34300000000002,247.347,247.35100000000003,247.35500000000002,247.359,247.36300000000003,247.36700000000002,247.371,247.37500000000003,247.37900000000002,247.383,247.38700000000003,247.39100000000002,247.395,247.39900000000003,247.40300000000002,247.407,247.41100000000003,247.41500000000002,247.419,247.42300000000003,247.42700000000002,247.431,247.43500000000003,247.43900000000002,247.443,247.44700000000003,247.45100000000002,247.455,247.45900000000003,247.46300000000002,247.467,247.47100000000003,247.47500000000002,247.479,247.48300000000003,247.48700000000002,247.491,247.49500000000003,247.49900000000002,247.50300000000001,247.507,247.51100000000002,247.51500000000001,247.519,247.519,247.983,247.987,247.991,247.995,247.999,248.00300000000001,248.007,248.011,248.01500000000001,248.019,248.023,248.02700000000002,248.031,248.035,248.03900000000002,248.043,248.047,248.05100000000002,248.055,248.059,248.06300000000002,248.067,248.071,248.07500000000002,248.079,248.083,248.08700000000002,248.091,248.095,248.09900000000002,248.103,248.107,248.111,248.115,248.119,248.123,248.127,248.131,248.135,248.139,248.143,248.147,248.151,248.155,248.159,248.163,248.167,248.171,248.175,248.179,248.183,248.187,248.191,248.195,248.199,248.203,248.207,248.211,248.215,248.219,248.223,248.227,248.231,248.235,248.239,248.243,248.247,248.251,248.255,248.25900000000001,248.263,248.267,248.27100000000002,248.275,248.279,248.28300000000002,248.287,248.291,248.29500000000002,248.299,248.303,248.30700000000002,248.311,248.315,248.31900000000002,248.323,248.327,248.33100000000002,248.335,248.339,248.34300000000002,248.347,248.351,248.35500000000002,248.359,248.363,248.367,248.371,248.375,248.379,248.379,248.84300000000002,248.847,248.85100000000003,248.85500000000002,248.859,248.86300000000003,248.86700000000002,248.871,248.87500000000003,248.87900000000002,248.883,248.88700000000003,248.89100000000002,248.895,248.89900000000003,248.90300000000002,248.907,248.91100000000003,248.91500000000002,248.919,248.92300000000003,248.92700000000002,248.931,248.93500000000003,248.93900000000002,248.943,248.94700000000003,248.95100000000002,248.955,248.95900000000003,248.96300000000002,248.967,248.971,248.97500000000002,248.979,248.983,248.98700000000002,248.991,248.995,248.99900000000002,249.00300000000001,249.007,249.01100000000002,249.01500000000001,249.019,249.02300000000002,249.02700000000002,249.031,249.03500000000003,249.03900000000002,249.043,249.04700000000003,249.05100000000002,249.055,249.05900000000003,249.06300000000002,249.067,249.07100000000003,249.07500000000002,249.079,249.08300000000003,249.08700000000002,249.091,249.09500000000003,249.09900000000002,249.103,249.10700000000003,249.11100000000002,249.115,249.11900000000003,249.12300000000002,249.127,249.13100000000003,249.13500000000002,249.139,249.14300000000003,249.14700000000002,249.151,249.15500000000003,249.15900000000002,249.163,249.16700000000003,249.17100000000002,249.175,249.17900000000003,249.18300000000002,249.187,249.19100000000003,249.19500000000002,249.199,249.20300000000003,249.20700000000002,249.211,249.21500000000003,249.21900000000002,249.223,249.227,249.23100000000002,249.235,249.239,249.239,249.703,249.707,249.711,249.715,249.719,249.723,249.727,249.731,249.735,249.739,249.743,249.747,249.751,249.755,249.75900000000001,249.763,249.767,249.77100000000002,249.775,249.779,249.78300000000002,249.787,249.791,249.79500000000002,249.799,249.803,249.80700000000002,249.811,249.815,249.81900000000002,249.823,249.827,249.831,249.835,249.839,249.843,249.847,249.851,249.855,249.859,249.863,249.867,249.871,249.875,249.879,249.883,249.887,249.891,249.895,249.899,249.903,249.907,249.911,249.915,249.919,249.923,249.927,249.931,249.935,249.939,249.943,249.947,249.951,249.955,249.959,249.963,249.967,249.971,249.975,249.979,249.983,249.987,249.991,249.995,249.999,250.00300000000001,250.007,250.011,250.01500000000001,250.019,250.023,250.02700000000002,250.031,250.035,250.03900000000002,250.043,250.047,250.05100000000002,250.055,250.059,250.06300000000002,250.067,250.071,250.07500000000002,250.079,250.083,250.087,250.091,250.095,250.099,250.099,250.56300000000002,250.567,250.57100000000003,250.57500000000002,250.579,250.58300000000003,250.58700000000002,250.591,250.59500000000003,250.59900000000002,250.603,250.60700000000003,250.61100000000002,250.615,250.61900000000003,250.62300000000002,250.627,250.63100000000003,250.63500000000002,250.639,250.64300000000003,250.64700000000002,250.651,250.65500000000003,250.65900000000002,250.663,250.66700000000003,250.67100000000002,250.675,250.67900000000003,250.68300000000002,250.687,250.691,250.69500000000002,250.699,250.703,250.70700000000002,250.711,250.715,250.71900000000002,250.723,250.727,250.73100000000002,250.735,250.739,250.74300000000002,250.747,250.751,250.75500000000002,250.75900000000001,250.763,250.76700000000002,250.77100000000002,250.775,250.77900000000002,250.78300000000002,250.787,250.79100000000003,250.79500000000002,250.799,250.80300000000003,250.80700000000002,250.811,250.81500000000003,250.81900000000002,250.823,250.82700000000003,250.83100000000002,250.835,250.83900000000003,250.84300000000002,250.847,250.85100000000003,250.85500000000002,250.859,250.86300000000003,250.86700000000002,250.871,250.87500000000003,250.87900000000002,250.883,250.88700000000003,250.89100000000002,250.895,250.89900000000003,250.90300000000002,250.907,250.91100000000003,250.91500000000002,250.919,250.92300000000003,250.92700000000002,250.931,250.93500000000003,250.93900000000002,250.943,250.947,250.95100000000002,250.955,250.959,250.959,251.423,251.427,251.431,251.435,251.439,251.443,251.447,251.451,251.455,251.459,251.463,251.467,251.471,251.475,251.479,251.483,251.487,251.491,251.495,251.499,251.50300000000001,251.507,251.511,251.51500000000001,251.519,251.523,251.52700000000002,251.531,251.535,251.53900000000002,251.543,251.547,251.551,251.555,251.559,251.563,251.567,251.571,251.575,251.579,251.583,251.587,251.591,251.595,251.599,251.603,251.607,251.611,251.615,251.619,251.623,251.627,251.631,251.635,251.639,251.643,251.647,251.651,251.655,251.659,251.663,251.667,251.671,251.675,251.679,251.683,251.687,251.691,251.695,251.699,251.703,251.707,251.711,251.715,251.719,251.723,251.727,251.731,251.735,251.739,251.743,251.747,251.751,251.755,251.75900000000001,251.763,251.767,251.77100000000002,251.775,251.779,251.78300000000002,251.787,251.791,251.79500000000002,251.799,251.803,251.807,251.811,251.815,251.819,251.819,252.28300000000002,252.287,252.29100000000003,252.29500000000002,252.299,252.30300000000003,252.30700000000002,252.311,252.31500000000003,252.31900000000002,252.323,252.32700000000003,252.33100000000002,252.335,252.33900000000003,252.34300000000002,252.347,252.35100000000003,252.35500000000002,252.359,252.36300000000003,252.36700000000002,252.371,252.37500000000003,252.37900000000002,252.383,252.38700000000003,252.39100000000002,252.395,252.39900000000003,252.40300000000002,252.407,252.411,252.41500000000002,252.419,252.423,252.42700000000002,252.431,252.435,252.43900000000002,252.443,252.447,252.45100000000002,252.455,252.459,252.46300000000002,252.467,252.471,252.47500000000002,252.479,252.483,252.48700000000002,252.491,252.495,252.49900000000002,252.50300000000001,252.507,252.51100000000002,252.51500000000001,252.519,252.52300000000002,252.52700000000002,252.531,252.53500000000003,252.53900000000002,252.543,252.54700000000003,252.55100000000002,252.555,252.55900000000003,252.56300000000002,252.567,252.57100000000003,252.57500000000002,252.579,252.58300000000003,252.58700000000002,252.591,252.59500000000003,252.59900000000002,252.603,252.60700000000003,252.61100000000002,252.615,252.61900000000003,252.62300000000002,252.627,252.63100000000003,252.63500000000002,252.639,252.64300000000003,252.64700000000002,252.651,252.65500000000003,252.65900000000002,252.663,252.667,252.67100000000002,252.675,252.679,252.679,253.143,253.147,253.151,253.155,253.159,253.163,253.167,253.171,253.175,253.179,253.183,253.187,253.191,253.195,253.199,253.203,253.207,253.211,253.215,253.219,253.223,253.227,253.231,253.235,253.239,253.243,253.247,253.251,253.255,253.25900000000001,253.263,253.267,253.271,253.275,253.279,253.283,253.287,253.291,253.295,253.299,253.303,253.307,253.311,253.315,253.319,253.323,253.327,253.331,253.335,253.339,253.343,253.347,253.351,253.355,253.359,253.363,253.367,253.371,253.375,253.379,253.383,253.387,253.391,253.395,253.399,253.403,253.407,253.411,253.415,253.419,253.423,253.427,253.431,253.435,253.439,253.443,253.447,253.451,253.455,253.459,253.463,253.467,253.471,253.475,253.479,253.483,253.487,253.491,253.495,253.499,253.50300000000001,253.507,253.511,253.51500000000001,253.519,253.523,253.527,253.531,253.535,253.539,253.539,254.00300000000001,254.007,254.01100000000002,254.01500000000001,254.019,254.02300000000002,254.02700000000002,254.031,254.03500000000003,254.03900000000002,254.043,254.04700000000003,254.05100000000002,254.055,254.05900000000003,254.06300000000002,254.067,254.07100000000003,254.07500000000002,254.079,254.08300000000003,254.08700000000002,254.091,254.09500000000003,254.09900000000002,254.103,254.10700000000003,254.11100000000002,254.115,254.11900000000003,254.12300000000002,254.127,254.131,254.13500000000002,254.139,254.143,254.14700000000002,254.151,254.155,254.15900000000002,254.163,254.167,254.17100000000002,254.175,254.179,254.18300000000002,254.187,254.191,254.19500000000002,254.199,254.203,254.20700000000002,254.211,254.215,254.21900000000002,254.223,254.227,254.23100000000002,254.235,254.239,254.24300000000002,254.247,254.251,254.25500000000002,254.25900000000001,254.263,254.26700000000002,254.27100000000002,254.275,254.27900000000002,254.28300000000002,254.287,254.29100000000003,254.29500000000002,254.299,254.30300000000003,254.30700000000002,254.311,254.31500000000003,254.31900000000002,254.323,254.32700000000003,254.33100000000002,254.335,254.33900000000003,254.34300000000002,254.347,254.35100000000003,254.35500000000002,254.359,254.36300000000003,254.36700000000002,254.371,254.37500000000003,254.37900000000002,254.383,254.387,254.39100000000002,254.395,254.399,254.399,254.863,254.867,254.871,254.875,254.879,254.883,254.887,254.891,254.895,254.899,254.903,254.907,254.911,254.915,254.919,254.923,254.927,254.931,254.935,254.939,254.943,254.947,254.951,254.955,254.959,254.963,254.967,254.971,254.975,254.979,254.983,254.987,254.99099999999999,254.995,254.999,255.003,255.007,255.011,255.015,255.019,255.023,255.027,255.031,255.035,255.039,255.043,255.047,255.051,255.055,255.059,255.063,255.067,255.071,255.075,255.079,255.083,255.087,255.091,255.095,255.099,255.103,255.107,255.111,255.115,255.119,255.123,255.127,255.131,255.135,255.139,255.143,255.147,255.151,255.155,255.159,255.163,255.167,255.171,255.175,255.179,255.183,255.187,255.191,255.195,255.199,255.203,255.207,255.211,255.215,255.219,255.223,255.227,255.231,255.235,255.239,255.243,255.24699999999999,255.251,255.255,255.259,255.259,255.723,255.727,255.73100000000002,255.735,255.739,255.74300000000002,255.747,255.751,255.75500000000002,255.75900000000001,255.763,255.76700000000002,255.77100000000002,255.775,255.77900000000002,255.78300000000002,255.787,255.79100000000003,255.79500000000002,255.799,255.80300000000003,255.80700000000002,255.811,255.81500000000003,255.81900000000002,255.823,255.82700000000003,255.83100000000002,255.835,255.83900000000003,255.84300000000002,255.847,255.851,255.85500000000002,255.859,255.863,255.86700000000002,255.871,255.875,255.87900000000002,255.883,255.887,255.89100000000002,255.895,255.899,255.90300000000002,255.907,255.911,255.91500000000002,255.919,255.923,255.92700000000002,255.931,255.935,255.93900000000002,255.943,255.947,255.95100000000002,255.955,255.959,255.96300000000002,255.967,255.971,255.97500000000002,255.979,255.983,255.98700000000002,255.991,255.995,255.99900000000002,256.003,256.007,256.011,256.015,256.019,256.023,256.027,256.031,256.035,256.039,256.043,256.047,256.051,256.055,256.059,256.063,256.067,256.071,256.075,256.079,256.083,256.087,256.091,256.095,256.099,256.103,256.107,256.111,256.115,256.119,256.119,256.583,256.58700000000005,256.591,256.595,256.59900000000005,256.603,256.607,256.61100000000005,256.615,256.619,256.62300000000005,256.627,256.63100000000003,256.63500000000005,256.639,256.64300000000003,256.64700000000005,256.651,256.65500000000003,256.65900000000005,256.663,256.66700000000003,256.67100000000005,256.675,256.67900000000003,256.68300000000005,256.687,256.69100000000003,256.69500000000005,256.699,256.70300000000003,256.70700000000005,256.711,256.71500000000003,256.71900000000005,256.723,256.72700000000003,256.73100000000005,256.735,256.73900000000003,256.74300000000005,256.747,256.75100000000003,256.75500000000005,256.759,256.76300000000003,256.76700000000005,256.771,256.77500000000003,256.77900000000005,256.783,256.78700000000003,256.79100000000005,256.795,256.79900000000004,256.80300000000005,256.807,256.81100000000004,256.81500000000005,256.819,256.82300000000004,256.82700000000006,256.831,256.83500000000004,256.839,256.843,256.84700000000004,256.851,256.855,256.85900000000004,256.863,256.867,256.87100000000004,256.875,256.879,256.88300000000004,256.887,256.891,256.89500000000004,256.899,256.903,256.90700000000004,256.911,256.915,256.91900000000004,256.923,256.927,256.93100000000004,256.935,256.939,256.94300000000004,256.947,256.951,256.95500000000004,256.959,256.963,256.96700000000004,256.971,256.975,256.97900000000004,256.97900000000004,257.443,257.447,257.45099999999996,257.455,257.459,257.46299999999997,257.467,257.471,257.47499999999997,257.479,257.483,257.48699999999997,257.491,257.495,257.49899999999997,257.503,257.507,257.51099999999997,257.515,257.519,257.52299999999997,257.527,257.531,257.53499999999997,257.539,257.543,257.54699999999997,257.551,257.555,257.55899999999997,257.563,257.567,257.57099999999997,257.575,257.579,257.58299999999997,257.587,257.591,257.59499999999997,257.599,257.603,257.60699999999997,257.611,257.615,257.61899999999997,257.623,257.627,257.631,257.635,257.639,257.643,257.647,257.651,257.655,257.659,257.663,257.667,257.671,257.675,257.679,257.683,257.687,257.691,257.695,257.69899999999996,257.703,257.707,257.71099999999996,257.715,257.719,257.72299999999996,257.727,257.731,257.73499999999996,257.739,257.743,257.74699999999996,257.751,257.755,257.75899999999996,257.763,257.767,257.77099999999996,257.775,257.779,257.78299999999996,257.787,257.791,257.79499999999996,257.799,257.803,257.80699999999996,257.811,257.815,257.81899999999996,257.823,257.827,257.83099999999996,257.835,257.839,257.839,258.303,258.307,258.311,258.315,258.319,258.323,258.327,258.331,258.335,258.339,258.343,258.347,258.351,258.355,258.359,258.363,258.367,258.371,258.375,258.379,258.383,258.387,258.391,258.395,258.399,258.403,258.407,258.411,258.415,258.419,258.423,258.427,258.431,258.435,258.439,258.443,258.447,258.451,258.455,258.459,258.463,258.467,258.471,258.475,258.479,258.483,258.487,258.491,258.495,258.499,258.503,258.507,258.511,258.515,258.519,258.523,258.527,258.531,258.535,258.539,258.543,258.547,258.551,258.555,258.55899999999997,258.563,258.567,258.57099999999997,258.575,258.579,258.58299999999997,258.587,258.591,258.59499999999997,258.599,258.603,258.60699999999997,258.611,258.615,258.61899999999997,258.623,258.627,258.631,258.635,258.639,258.643,258.647,258.651,258.655,258.659,258.663,258.667,258.671,258.675,258.679,258.683,258.687,258.691,258.695,258.699,258.699,259.163,259.16700000000003,259.171,259.175,259.17900000000003,259.183,259.187,259.19100000000003,259.195,259.199,259.20300000000003,259.207,259.211,259.21500000000003,259.219,259.223,259.22700000000003,259.231,259.235,259.23900000000003,259.243,259.247,259.25100000000003,259.255,259.259,259.26300000000003,259.267,259.271,259.27500000000003,259.279,259.283,259.28700000000003,259.291,259.295,259.29900000000004,259.303,259.307,259.31100000000004,259.315,259.319,259.32300000000004,259.327,259.331,259.33500000000004,259.339,259.343,259.34700000000004,259.351,259.355,259.35900000000004,259.363,259.367,259.37100000000004,259.375,259.379,259.38300000000004,259.387,259.391,259.39500000000004,259.399,259.403,259.40700000000004,259.411,259.415,259.419,259.423,259.427,259.431,259.435,259.439,259.443,259.447,259.451,259.455,259.459,259.463,259.467,259.471,259.475,259.479,259.483,259.487,259.491,259.495,259.499,259.503,259.507,259.511,259.515,259.519,259.523,259.527,259.531,259.535,259.539,259.543,259.547,259.551,259.555,259.559,259.559,260.023,260.02700000000004,260.031,260.035,260.03900000000004,260.043,260.047,260.05100000000004,260.055,260.059,260.06300000000005,260.067,260.071,260.07500000000005,260.079,260.083,260.08700000000005,260.091,260.095,260.09900000000005,260.103,260.107,260.11100000000005,260.115,260.119,260.12300000000005,260.127,260.13100000000003,260.13500000000005,260.139,260.14300000000003,260.14700000000005,260.151,260.15500000000003,260.15900000000005,260.163,260.16700000000003,260.17100000000005,260.175,260.17900000000003,260.18300000000005,260.187,260.19100000000003,260.19500000000005,260.199,260.20300000000003,260.20700000000005,260.211,260.21500000000003,260.21900000000005,260.223,260.22700000000003,260.23100000000005,260.235,260.23900000000003,260.24300000000005,260.247,260.25100000000003,260.25500000000005,260.259,260.26300000000003,260.26700000000005,260.271,260.27500000000003,260.279,260.283,260.28700000000003,260.291,260.295,260.29900000000004,260.303,260.307,260.31100000000004,260.315,260.319,260.32300000000004,260.327,260.331,260.33500000000004,260.339,260.343,260.34700000000004,260.351,260.355,260.35900000000004,260.363,260.367,260.37100000000004,260.375,260.379,260.38300000000004,260.387,260.391,260.39500000000004,260.399,260.403,260.40700000000004,260.411,260.415,260.41900000000004,260.41900000000004,260.883,260.887,260.89099999999996,260.895,260.899,260.90299999999996,260.907,260.911,260.91499999999996,260.919,260.923,260.92699999999996,260.931,260.935,260.93899999999996,260.943,260.947,260.95099999999996,260.955,260.959,260.96299999999997,260.967,260.971,260.97499999999997,260.979,260.983,260.98699999999997,260.991,260.995,260.99899999999997,261.003,261.007,261.01099999999997,261.015,261.019,261.02299999999997,261.027,261.031,261.03499999999997,261.039,261.043,261.04699999999997,261.051,261.055,261.05899999999997,261.063,261.067,261.07099999999997,261.075,261.079,261.08299999999997,261.087,261.091,261.09499999999997,261.099,261.103,261.10699999999997,261.111,261.115,261.11899999999997,261.123,261.127,261.131,261.135,261.13899999999995,261.143,261.147,261.15099999999995,261.155,261.159,261.16299999999995,261.167,261.171,261.17499999999995,261.179,261.183,261.18699999999995,261.191,261.195,261.19899999999996,261.203,261.207,261.21099999999996,261.215,261.219,261.22299999999996,261.227,261.231,261.23499999999996,261.239,261.243,261.24699999999996,261.251,261.255,261.25899999999996,261.263,261.267,261.27099999999996,261.275,261.279,261.279,261.743,261.747,261.751,261.755,261.759,261.763,261.767,261.771,261.775,261.779,261.783,261.787,261.791,261.795,261.799,261.803,261.807,261.811,261.815,261.819,261.823,261.827,261.831,261.835,261.839,261.843,261.847,261.851,261.855,261.859,261.863,261.867,261.871,261.875,261.879,261.883,261.887,261.891,261.895,261.899,261.903,261.907,261.911,261.915,261.919,261.923,261.927,261.931,261.935,261.939,261.943,261.947,261.951,261.955,261.959,261.963,261.967,261.971,261.975,261.979,261.983,261.987,261.991,261.995,261.99899999999997,262.003,262.007,262.01099999999997,262.015,262.019,262.02299999999997,262.027,262.031,262.03499999999997,262.039,262.043,262.04699999999997,262.051,262.055,262.05899999999997,262.063,262.067,262.07099999999997,262.075,262.079,262.08299999999997,262.087,262.091,262.09499999999997,262.099,262.103,262.10699999999997,262.111,262.115,262.11899999999997,262.123,262.127,262.131,262.135,262.139,262.139,262.603,262.607,262.611,262.615,262.619,262.623,262.627,262.63100000000003,262.635,262.639,262.64300000000003,262.647,262.651,262.65500000000003,262.659,262.663,262.66700000000003,262.671,262.675,262.67900000000003,262.683,262.687,262.69100000000003,262.695,262.699,262.70300000000003,262.707,262.711,262.71500000000003,262.719,262.723,262.72700000000003,262.731,262.735,262.73900000000003,262.743,262.747,262.75100000000003,262.755,262.759,262.76300000000003,262.767,262.771,262.77500000000003,262.779,262.783,262.78700000000003,262.791,262.795,262.79900000000004,262.803,262.807,262.81100000000004,262.815,262.819,262.82300000000004,262.827,262.831,262.83500000000004,262.839,262.843,262.84700000000004,262.851,262.855,262.859,262.863,262.867,262.871,262.875,262.879,262.883,262.887,262.891,262.895,262.899,262.903,262.907,262.911,262.915,262.919,262.923,262.927,262.931,262.935,262.939,262.943,262.947,262.951,262.955,262.959,262.963,262.967,262.971,262.975,262.979,262.983,262.987,262.991,262.995,262.999,262.999,263.464,263.468,263.472,263.476,263.48,263.484,263.488,263.492,263.496,263.5,263.504,263.508,263.512,263.516,263.52,263.524,263.528,263.532,263.536,263.54,263.544,263.548,263.552,263.556,263.56,263.564,263.568,263.572,263.576,263.58,263.584,263.588,263.592,263.596,263.6,263.604,263.608,263.612,263.616,263.62,263.624,263.628,263.632,263.636,263.64,263.644,263.648,263.652,263.656,263.66,263.664,263.668,263.672,263.676,263.68,263.684,263.688,263.692,263.696,263.7,263.704,263.708,263.712,263.716,263.71999999999997,263.724,263.728,263.73199999999997,263.736,263.74,263.74399999999997,263.748,263.752,263.756,263.76,263.764,263.768,263.772,263.776,263.78,263.784,263.788,263.792,263.796,263.8,263.804,263.808,263.812,263.816,263.82,263.824,263.828,263.832,263.836,263.84,263.844,263.848,263.852,263.856,263.86,263.86,264.323,264.327,264.33099999999996,264.335,264.339,264.34299999999996,264.347,264.351,264.35499999999996,264.359,264.363,264.36699999999996,264.371,264.375,264.37899999999996,264.383,264.387,264.39099999999996,264.395,264.399,264.40299999999996,264.407,264.411,264.41499999999996,264.419,264.423,264.42699999999996,264.431,264.435,264.43899999999996,264.443,264.447,264.45099999999996,264.455,264.459,264.46299999999997,264.467,264.471,264.47499999999997,264.479,264.483,264.48699999999997,264.491,264.495,264.49899999999997,264.503,264.507,264.51099999999997,264.515,264.519,264.52299999999997,264.527,264.531,264.53499999999997,264.539,264.543,264.54699999999997,264.551,264.555,264.55899999999997,264.563,264.567,264.57099999999997,264.575,264.57899999999995,264.58299999999997,264.587,264.59099999999995,264.59499999999997,264.599,264.60299999999995,264.60699999999997,264.611,264.61499999999995,264.61899999999997,264.623,264.62699999999995,264.631,264.635,264.63899999999995,264.643,264.647,264.65099999999995,264.655,264.659,264.66299999999995,264.667,264.671,264.67499999999995,264.679,264.683,264.68699999999995,264.691,264.695,264.69899999999996,264.703,264.707,264.71099999999996,264.715,264.719,264.719,265.184,265.18800000000005,265.192,265.196,265.20000000000005,265.204,265.208,265.21200000000005,265.216,265.22,265.22400000000005,265.228,265.232,265.23600000000005,265.24,265.244,265.24800000000005,265.252,265.25600000000003,265.26000000000005,265.264,265.26800000000003,265.27200000000005,265.276,265.28000000000003,265.28400000000005,265.288,265.29200000000003,265.29600000000005,265.3,265.30400000000003,265.30800000000005,265.312,265.31600000000003,265.32000000000005,265.324,265.32800000000003,265.33200000000005,265.336,265.34000000000003,265.34400000000005,265.348,265.35200000000003,265.35600000000005,265.36,265.36400000000003,265.36800000000005,265.372,265.37600000000003,265.38000000000005,265.384,265.38800000000003,265.39200000000005,265.396,265.40000000000003,265.40400000000005,265.408,265.41200000000003,265.41600000000005,265.42,265.42400000000004,265.42800000000005,265.432,265.43600000000004,265.44,265.444,265.44800000000004,265.452,265.456,265.46000000000004,265.464,265.468,265.47200000000004,265.476,265.48,265.48400000000004,265.488,265.492,265.49600000000004,265.5,265.504,265.50800000000004,265.512,265.516,265.52000000000004,265.524,265.528,265.53200000000004,265.536,265.54,265.54400000000004,265.548,265.552,265.55600000000004,265.56,265.564,265.56800000000004,265.572,265.576,265.58000000000004,265.58000000000004,266.043,266.047,266.051,266.055,266.059,266.063,266.067,266.071,266.075,266.079,266.083,266.087,266.091,266.095,266.099,266.103,266.107,266.111,266.115,266.119,266.123,266.127,266.13100000000003,266.135,266.139,266.14300000000003,266.147,266.151,266.15500000000003,266.159,266.163,266.16700000000003,266.171,266.175,266.17900000000003,266.183,266.187,266.19100000000003,266.195,266.199,266.20300000000003,266.207,266.211,266.21500000000003,266.219,266.223,266.22700000000003,266.231,266.235,266.23900000000003,266.243,266.247,266.25100000000003,266.255,266.259,266.26300000000003,266.267,266.271,266.27500000000003,266.279,266.283,266.28700000000003,266.291,266.295,266.299,266.303,266.307,266.311,266.315,266.319,266.323,266.327,266.331,266.335,266.339,266.343,266.347,266.351,266.355,266.359,266.363,266.367,266.371,266.375,266.379,266.383,266.387,266.391,266.395,266.399,266.403,266.407,266.411,266.415,266.419,266.423,266.427,266.431,266.435,266.439,266.439,266.904,266.908,266.912,266.916,266.92,266.924,266.928,266.932,266.936,266.94,266.944,266.948,266.952,266.956,266.96,266.964,266.968,266.972,266.976,266.98,266.984,266.988,266.992,266.996,267.0,267.004,267.008,267.012,267.016,267.02,267.024,267.028,267.032,267.036,267.04,267.044,267.048,267.052,267.056,267.06,267.064,267.068,267.072,267.076,267.08,267.084,267.088,267.092,267.096,267.1,267.104,267.108,267.112,267.116,267.12,267.124,267.128,267.132,267.136,267.14,267.144,267.148,267.152,267.156,267.15999999999997,267.164,267.168,267.17199999999997,267.176,267.18,267.18399999999997,267.188,267.192,267.19599999999997,267.2,267.204,267.20799999999997,267.212,267.216,267.21999999999997,267.224,267.228,267.23199999999997,267.236,267.24,267.24399999999997,267.248,267.252,267.256,267.26,267.264,267.268,267.272,267.276,267.28,267.284,267.288,267.292,267.296,267.3,267.3,267.76300000000003,267.76700000000005,267.771,267.77500000000003,267.77900000000005,267.783,267.78700000000003,267.79100000000005,267.795,267.79900000000004,267.80300000000005,267.807,267.81100000000004,267.81500000000005,267.819,267.82300000000004,267.82700000000006,267.831,267.83500000000004,267.83900000000006,267.843,267.84700000000004,267.85100000000006,267.855,267.85900000000004,267.86300000000006,267.867,267.87100000000004,267.87500000000006,267.879,267.88300000000004,267.88700000000006,267.891,267.89500000000004,267.89900000000006,267.903,267.90700000000004,267.91100000000006,267.915,267.91900000000004,267.92300000000006,267.927,267.93100000000004,267.93500000000006,267.939,267.94300000000004,267.94700000000006,267.951,267.95500000000004,267.95900000000006,267.963,267.96700000000004,267.97100000000006,267.975,267.97900000000004,267.98300000000006,267.987,267.99100000000004,267.99500000000006,267.999,268.00300000000004,268.00700000000006,268.011,268.01500000000004,268.019,268.023,268.02700000000004,268.031,268.035,268.03900000000004,268.043,268.047,268.05100000000004,268.055,268.059,268.06300000000005,268.067,268.071,268.07500000000005,268.079,268.083,268.08700000000005,268.091,268.095,268.09900000000005,268.103,268.107,268.11100000000005,268.115,268.119,268.12300000000005,268.127,268.13100000000003,268.13500000000005,268.139,268.14300000000003,268.14700000000005,268.151,268.15500000000003,268.15900000000005,268.15900000000005,268.624,268.62800000000004,268.632,268.636,268.64000000000004,268.644,268.648,268.65200000000004,268.656,268.66,268.66400000000004,268.668,268.672,268.67600000000004,268.68,268.684,268.68800000000005,268.692,268.696,268.70000000000005,268.704,268.708,268.71200000000005,268.716,268.72,268.72400000000005,268.728,268.732,268.73600000000005,268.74,268.744,268.74800000000005,268.752,268.75600000000003,268.76000000000005,268.764,268.76800000000003,268.77200000000005,268.776,268.78000000000003,268.78400000000005,268.788,268.79200000000003,268.79600000000005,268.8,268.80400000000003,268.80800000000005,268.812,268.81600000000003,268.82000000000005,268.824,268.82800000000003,268.83200000000005,268.836,268.84000000000003,268.84400000000005,268.848,268.85200000000003,268.85600000000005,268.86,268.86400000000003,268.86800000000005,268.872,268.87600000000003,268.88,268.884,268.88800000000003,268.892,268.896,268.90000000000003,268.904,268.908,268.91200000000003,268.916,268.92,268.92400000000004,268.928,268.932,268.93600000000004,268.94,268.944,268.94800000000004,268.952,268.956,268.96000000000004,268.964,268.968,268.97200000000004,268.976,268.98,268.98400000000004,268.988,268.992,268.99600000000004,269.0,269.004,269.00800000000004,269.012,269.016,269.02000000000004,269.02000000000004,269.483,269.487,269.491,269.495,269.499,269.503,269.507,269.511,269.515,269.519,269.523,269.527,269.531,269.535,269.539,269.543,269.547,269.551,269.555,269.559,269.563,269.567,269.571,269.575,269.579,269.583,269.587,269.591,269.595,269.599,269.603,269.607,269.611,269.615,269.619,269.623,269.627,269.63100000000003,269.635,269.639,269.64300000000003,269.647,269.651,269.65500000000003,269.659,269.663,269.66700000000003,269.671,269.675,269.67900000000003,269.683,269.687,269.69100000000003,269.695,269.699,269.70300000000003,269.707,269.711,269.71500000000003,269.719,269.723,269.72700000000003,269.731,269.735,269.739,269.743,269.747,269.751,269.755,269.759,269.763,269.767,269.771,269.775,269.779,269.783,269.787,269.791,269.795,269.799,269.803,269.807,269.811,269.815,269.819,269.823,269.827,269.831,269.835,269.839,269.843,269.847,269.851,269.855,269.859,269.863,269.867,269.871,269.875,269.879,269.879,270.344,270.348,270.352,270.356,270.36,270.364,270.368,270.372,270.376,270.38,270.384,270.388,270.392,270.396,270.4,270.404,270.408,270.412,270.416,270.42,270.424,270.428,270.432,270.436,270.44,270.444,270.448,270.452,270.456,270.46,270.464,270.468,270.472,270.476,270.48,270.484,270.488,270.492,270.496,270.5,270.504,270.508,270.512,270.516,270.52,270.524,270.528,270.532,270.536,270.54,270.544,270.548,270.552,270.556,270.56,270.564,270.568,270.572,270.576,270.58,270.584,270.588,270.592,270.596,270.59999999999997,270.604,270.608,270.61199999999997,270.616,270.62,270.62399999999997,270.628,270.632,270.63599999999997,270.64,270.644,270.64799999999997,270.652,270.656,270.65999999999997,270.664,270.668,270.67199999999997,270.676,270.68,270.68399999999997,270.688,270.692,270.69599999999997,270.7,270.704,270.70799999999997,270.712,270.716,270.71999999999997,270.724,270.728,270.73199999999997,270.736,270.74,270.74,271.20300000000003,271.20700000000005,271.211,271.21500000000003,271.21900000000005,271.223,271.22700000000003,271.23100000000005,271.235,271.23900000000003,271.24300000000005,271.247,271.25100000000003,271.25500000000005,271.259,271.26300000000003,271.26700000000005,271.271,271.27500000000003,271.27900000000005,271.283,271.28700000000003,271.29100000000005,271.295,271.29900000000004,271.30300000000005,271.307,271.31100000000004,271.31500000000005,271.319,271.32300000000004,271.32700000000006,271.331,271.33500000000004,271.33900000000006,271.343,271.34700000000004,271.35100000000006,271.355,271.35900000000004,271.36300000000006,271.367,271.37100000000004,271.37500000000006,271.379,271.38300000000004,271.38700000000006,271.391,271.39500000000004,271.39900000000006,271.403,271.40700000000004,271.41100000000006,271.415,271.41900000000004,271.42300000000006,271.427,271.43100000000004,271.43500000000006,271.439,271.44300000000004,271.44700000000006,271.451,271.45500000000004,271.459,271.463,271.46700000000004,271.471,271.475,271.47900000000004,271.483,271.487,271.49100000000004,271.495,271.499,271.50300000000004,271.507,271.511,271.51500000000004,271.519,271.523,271.52700000000004,271.531,271.535,271.53900000000004,271.543,271.547,271.55100000000004,271.555,271.559,271.56300000000005,271.567,271.571,271.57500000000005,271.579,271.583,271.58700000000005,271.591,271.595,271.59900000000005,271.59900000000005,272.064,272.06800000000004,272.072,272.076,272.08000000000004,272.084,272.088,272.09200000000004,272.096,272.1,272.10400000000004,272.108,272.112,272.11600000000004,272.12,272.124,272.12800000000004,272.132,272.136,272.14000000000004,272.144,272.148,272.15200000000004,272.156,272.16,272.16400000000004,272.168,272.172,272.17600000000004,272.18,272.184,272.18800000000005,272.192,272.196,272.20000000000005,272.204,272.208,272.21200000000005,272.216,272.22,272.22400000000005,272.228,272.232,272.23600000000005,272.24,272.244,272.24800000000005,272.252,272.25600000000003,272.26000000000005,272.264,272.26800000000003,272.27200000000005,272.276,272.28000000000003,272.28400000000005,272.288,272.29200000000003,272.29600000000005,272.3,272.30400000000003,272.30800000000005,272.312,272.31600000000003,272.32,272.324,272.32800000000003,272.332,272.336,272.34000000000003,272.344,272.348,272.35200000000003,272.356,272.36,272.36400000000003,272.368,272.372,272.37600000000003,272.38,272.384,272.38800000000003,272.392,272.396,272.40000000000003,272.404,272.408,272.41200000000003,272.416,272.42,272.42400000000004,272.428,272.432,272.43600000000004,272.44,272.444,272.44800000000004,272.452,272.456,272.46000000000004,272.46000000000004,272.923,272.927,272.931,272.935,272.939,272.943,272.947,272.951,272.955,272.959,272.963,272.967,272.971,272.975,272.979,272.983,272.987,272.991,272.995,272.999,273.003,273.007,273.011,273.015,273.019,273.023,273.027,273.031,273.035,273.039,273.043,273.047,273.051,273.055,273.059,273.063,273.067,273.071,273.075,273.079,273.083,273.087,273.091,273.095,273.099,273.103,273.107,273.111,273.115,273.119,273.123,273.127,273.13100000000003,273.135,273.139,273.14300000000003,273.147,273.151,273.15500000000003,273.159,273.163,273.16700000000003,273.171,273.175,273.179,273.183,273.187,273.191,273.195,273.199,273.203,273.207,273.211,273.215,273.219,273.223,273.227,273.231,273.235,273.239,273.243,273.247,273.251,273.255,273.259,273.263,273.267,273.271,273.275,273.279,273.283,273.287,273.291,273.295,273.299,273.303,273.307,273.311,273.315,273.319,273.319,273.784,273.788,273.792,273.796,273.8,273.804,273.808,273.812,273.816,273.82,273.824,273.828,273.832,273.836,273.84,273.844,273.848,273.852,273.856,273.86,273.864,273.868,273.872,273.876,273.88,273.884,273.888,273.892,273.896,273.9,273.904,273.908,273.912,273.916,273.92,273.924,273.928,273.932,273.936,273.94,273.944,273.948,273.952,273.956,273.96,273.964,273.968,273.972,273.976,273.98,273.984,273.988,273.992,273.996,274.0,274.004,274.008,274.012,274.016,274.02,274.024,274.028,274.032,274.036,274.03999999999996,274.044,274.048,274.05199999999996,274.056,274.06,274.06399999999996,274.068,274.072,274.07599999999996,274.08,274.084,274.08799999999997,274.092,274.096,274.09999999999997,274.104,274.108,274.11199999999997,274.116,274.12,274.12399999999997,274.128,274.132,274.13599999999997,274.14,274.144,274.14799999999997,274.152,274.156,274.15999999999997,274.164,274.168,274.17199999999997,274.176,274.18,274.18,274.64300000000003,274.64700000000005,274.651,274.65500000000003,274.65900000000005,274.663,274.66700000000003,274.67100000000005,274.675,274.67900000000003,274.68300000000005,274.687,274.69100000000003,274.69500000000005,274.699,274.70300000000003,274.70700000000005,274.711,274.71500000000003,274.71900000000005,274.723,274.72700000000003,274.73100000000005,274.735,274.73900000000003,274.74300000000005,274.747,274.75100000000003,274.75500000000005,274.759,274.76300000000003,274.76700000000005,274.771,274.77500000000003,274.77900000000005,274.783,274.78700000000003,274.79100000000005,274.795,274.79900000000004,274.80300000000005,274.807,274.81100000000004,274.81500000000005,274.819,274.82300000000004,274.82700000000006,274.831,274.83500000000004,274.83900000000006,274.843,274.84700000000004,274.85100000000006,274.855,274.85900000000004,274.86300000000006,274.867,274.87100000000004,274.87500000000006,274.879,274.88300000000004,274.88700000000006,274.891,274.89500000000004,274.899,274.903,274.90700000000004,274.911,274.915,274.91900000000004,274.923,274.927,274.93100000000004,274.935,274.939,274.94300000000004,274.947,274.951,274.95500000000004,274.959,274.963,274.96700000000004,274.971,274.975,274.97900000000004,274.983,274.987,274.99100000000004,274.995,274.999,275.00300000000004,275.007,275.011,275.01500000000004,275.019,275.023,275.02700000000004,275.031,275.035,275.03900000000004,275.03900000000004,275.504,275.50800000000004,275.512,275.516,275.52000000000004,275.524,275.528,275.53200000000004,275.536,275.54,275.54400000000004,275.548,275.552,275.55600000000004,275.56,275.564,275.56800000000004,275.572,275.576,275.58000000000004,275.584,275.588,275.59200000000004,275.596,275.6,275.60400000000004,275.608,275.612,275.61600000000004,275.62,275.624,275.62800000000004,275.632,275.636,275.64000000000004,275.644,275.648,275.65200000000004,275.656,275.66,275.66400000000004,275.668,275.672,275.67600000000004,275.68,275.684,275.68800000000005,275.692,275.696,275.70000000000005,275.704,275.708,275.71200000000005,275.716,275.72,275.72400000000005,275.728,275.732,275.73600000000005,275.74,275.744,275.74800000000005,275.752,275.75600000000003,275.76,275.764,275.76800000000003,275.772,275.776,275.78000000000003,275.784,275.788,275.79200000000003,275.796,275.8,275.80400000000003,275.808,275.812,275.81600000000003,275.82,275.824,275.82800000000003,275.832,275.836,275.84000000000003,275.844,275.848,275.85200000000003,275.856,275.86,275.86400000000003,275.868,275.872,275.87600000000003,275.88,275.884,275.88800000000003,275.892,275.896,275.90000000000003,275.90000000000003,276.363,276.367,276.371,276.375,276.379,276.383,276.387,276.391,276.395,276.399,276.403,276.407,276.411,276.415,276.419,276.423,276.427,276.431,276.435,276.439,276.443,276.447,276.451,276.455,276.459,276.463,276.467,276.471,276.475,276.479,276.483,276.487,276.491,276.495,276.499,276.503,276.507,276.511,276.515,276.519,276.523,276.527,276.531,276.535,276.539,276.543,276.547,276.551,276.555,276.559,276.563,276.567,276.571,276.575,276.579,276.583,276.587,276.591,276.595,276.599,276.603,276.607,276.611,276.615,276.61899999999997,276.623,276.627,276.631,276.635,276.639,276.643,276.647,276.651,276.655,276.659,276.663,276.667,276.671,276.675,276.679,276.683,276.687,276.691,276.695,276.699,276.703,276.707,276.711,276.715,276.719,276.723,276.727,276.731,276.735,276.739,276.743,276.747,276.751,276.755,276.759,276.759,277.223,277.22700000000003,277.231,277.235,277.23900000000003,277.243,277.247,277.25100000000003,277.255,277.259,277.26300000000003,277.267,277.271,277.27500000000003,277.279,277.283,277.28700000000003,277.291,277.295,277.29900000000004,277.303,277.307,277.31100000000004,277.315,277.319,277.32300000000004,277.327,277.331,277.33500000000004,277.339,277.343,277.34700000000004,277.351,277.355,277.35900000000004,277.363,277.367,277.37100000000004,277.375,277.379,277.38300000000004,277.387,277.391,277.39500000000004,277.399,277.403,277.40700000000004,277.411,277.415,277.41900000000004,277.423,277.427,277.43100000000004,277.435,277.439,277.44300000000004,277.447,277.451,277.45500000000004,277.459,277.463,277.46700000000004,277.471,277.475,277.479,277.483,277.487,277.491,277.495,277.499,277.503,277.507,277.511,277.515,277.519,277.523,277.527,277.531,277.535,277.539,277.543,277.547,277.551,277.555,277.559,277.563,277.567,277.571,277.575,277.579,277.583,277.587,277.591,277.595,277.599,277.603,277.607,277.611,277.615,277.619,277.619,278.083,278.08700000000005,278.091,278.095,278.09900000000005,278.103,278.107,278.11100000000005,278.115,278.119,278.12300000000005,278.127,278.13100000000003,278.13500000000005,278.139,278.14300000000003,278.14700000000005,278.151,278.15500000000003,278.15900000000005,278.163,278.16700000000003,278.17100000000005,278.175,278.17900000000003,278.18300000000005,278.187,278.19100000000003,278.19500000000005,278.199,278.20300000000003,278.20700000000005,278.211,278.21500000000003,278.21900000000005,278.223,278.22700000000003,278.23100000000005,278.235,278.23900000000003,278.24300000000005,278.247,278.25100000000003,278.25500000000005,278.259,278.26300000000003,278.26700000000005,278.271,278.27500000000003,278.27900000000005,278.283,278.28700000000003,278.29100000000005,278.295,278.29900000000004,278.30300000000005,278.307,278.31100000000004,278.31500000000005,278.319,278.32300000000004,278.32700000000006,278.331,278.33500000000004,278.339,278.343,278.34700000000004,278.351,278.355,278.35900000000004,278.363,278.367,278.37100000000004,278.375,278.379,278.38300000000004,278.387,278.391,278.39500000000004,278.399,278.403,278.40700000000004,278.411,278.415,278.41900000000004,278.423,278.427,278.43100000000004,278.435,278.439,278.44300000000004,278.447,278.451,278.45500000000004,278.459,278.463,278.46700000000004,278.471,278.475,278.47900000000004,278.47900000000004,278.943,278.947,278.95099999999996,278.955,278.959,278.96299999999997,278.967,278.971,278.97499999999997,278.979,278.983,278.98699999999997,278.991,278.995,278.99899999999997,279.003,279.007,279.01099999999997,279.015,279.019,279.02299999999997,279.027,279.031,279.03499999999997,279.039,279.043,279.04699999999997,279.051,279.055,279.05899999999997,279.063,279.067,279.07099999999997,279.075,279.079,279.08299999999997,279.087,279.091,279.09499999999997,279.099,279.103,279.10699999999997,279.111,279.115,279.11899999999997,279.123,279.127,279.131,279.135,279.139,279.143,279.147,279.151,279.155,279.159,279.163,279.167,279.171,279.175,279.179,279.183,279.187,279.191,279.195,279.19899999999996,279.203,279.207,279.21099999999996,279.215,279.219,279.22299999999996,279.227,279.231,279.23499999999996,279.239,279.243,279.24699999999996,279.251,279.255,279.25899999999996,279.263,279.267,279.27099999999996,279.275,279.279,279.28299999999996,279.287,279.291,279.29499999999996,279.299,279.303,279.30699999999996,279.311,279.315,279.31899999999996,279.323,279.327,279.33099999999996,279.335,279.339,279.339,279.80400000000003,279.80800000000005,279.812,279.81600000000003,279.82000000000005,279.824,279.82800000000003,279.83200000000005,279.836,279.84000000000003,279.84400000000005,279.848,279.85200000000003,279.85600000000005,279.86,279.86400000000003,279.86800000000005,279.872,279.87600000000003,279.88000000000005,279.884,279.88800000000003,279.89200000000005,279.896,279.90000000000003,279.90400000000005,279.908,279.91200000000003,279.91600000000005,279.92,279.92400000000004,279.92800000000005,279.932,279.93600000000004,279.94000000000005,279.944,279.94800000000004,279.95200000000006,279.956,279.96000000000004,279.96400000000006,279.968,279.97200000000004,279.97600000000006,279.98,279.98400000000004,279.98800000000006,279.992,279.99600000000004,280.00000000000006,280.004,280.00800000000004,280.01200000000006,280.016,280.02000000000004,280.02400000000006,280.028,280.03200000000004,280.03600000000006,280.04,280.04400000000004,280.04800000000006,280.052,280.05600000000004,280.06,280.064,280.06800000000004,280.072,280.076,280.08000000000004,280.084,280.088,280.09200000000004,280.096,280.1,280.10400000000004,280.108,280.112,280.11600000000004,280.12,280.124,280.12800000000004,280.132,280.136,280.14000000000004,280.144,280.148,280.15200000000004,280.156,280.16,280.16400000000004,280.168,280.172,280.17600000000004,280.18,280.184,280.18800000000005,280.192,280.196,280.20000000000005,280.20000000000005,280.663,280.66700000000003,280.671,280.675,280.67900000000003,280.683,280.687,280.69100000000003,280.695,280.699,280.70300000000003,280.707,280.711,280.71500000000003,280.719,280.723,280.72700000000003,280.731,280.735,280.73900000000003,280.743,280.747,280.75100000000003,280.755,280.759,280.76300000000003,280.767,280.771,280.77500000000003,280.779,280.783,280.78700000000003,280.791,280.795,280.79900000000004,280.803,280.807,280.81100000000004,280.815,280.819,280.82300000000004,280.827,280.831,280.83500000000004,280.839,280.843,280.84700000000004,280.851,280.855,280.85900000000004,280.863,280.867,280.87100000000004,280.875,280.879,280.88300000000004,280.887,280.891,280.89500000000004,280.899,280.903,280.90700000000004,280.911,280.915,280.919,280.923,280.927,280.931,280.935,280.939,280.943,280.947,280.951,280.955,280.959,280.963,280.967,280.971,280.975,280.979,280.983,280.987,280.991,280.995,280.999,281.003,281.007,281.011,281.015,281.019,281.023,281.027,281.031,281.035,281.039,281.043,281.047,281.051,281.055,281.059,281.059,281.524,281.528,281.532,281.536,281.54,281.544,281.548,281.552,281.556,281.56,281.564,281.568,281.572,281.576,281.58,281.584,281.588,281.592,281.596,281.6,281.604,281.608,281.612,281.616,281.62,281.624,281.628,281.632,281.636,281.64,281.644,281.648,281.652,281.656,281.66,281.664,281.668,281.672,281.676,281.68,281.684,281.688,281.692,281.696,281.7,281.704,281.708,281.712,281.716,281.72,281.724,281.728,281.732,281.736,281.74,281.744,281.748,281.752,281.75600000000003,281.76,281.764,281.76800000000003,281.772,281.776,281.78,281.784,281.788,281.792,281.796,281.8,281.804,281.808,281.812,281.816,281.82,281.824,281.828,281.832,281.836,281.84,281.844,281.848,281.852,281.856,281.86,281.864,281.868,281.872,281.876,281.88,281.884,281.888,281.892,281.896,281.9,281.904,281.908,281.912,281.916,281.92,281.92,282.383,282.387,282.39099999999996,282.395,282.399,282.40299999999996,282.407,282.411,282.41499999999996,282.419,282.423,282.42699999999996,282.431,282.435,282.43899999999996,282.443,282.447,282.45099999999996,282.455,282.459,282.46299999999997,282.467,282.471,282.47499999999997,282.479,282.483,282.48699999999997,282.491,282.495,282.49899999999997,282.503,282.507,282.51099999999997,282.515,282.519,282.52299999999997,282.527,282.531,282.53499999999997,282.539,282.543,282.54699999999997,282.551,282.555,282.55899999999997,282.563,282.567,282.57099999999997,282.575,282.579,282.58299999999997,282.587,282.591,282.59499999999997,282.599,282.603,282.60699999999997,282.611,282.615,282.61899999999997,282.623,282.627,282.631,282.635,282.63899999999995,282.643,282.647,282.65099999999995,282.655,282.659,282.66299999999995,282.667,282.671,282.67499999999995,282.679,282.683,282.68699999999995,282.691,282.695,282.69899999999996,282.703,282.707,282.71099999999996,282.715,282.719,282.72299999999996,282.727,282.731,282.73499999999996,282.739,282.743,282.74699999999996,282.751,282.755,282.75899999999996,282.763,282.767,282.77099999999996,282.775,282.779,282.779,283.244,283.24800000000005,283.252,283.25600000000003,283.26000000000005,283.264,283.26800000000003,283.27200000000005,283.276,283.28000000000003,283.28400000000005,283.288,283.29200000000003,283.29600000000005,283.3,283.30400000000003,283.30800000000005,283.312,283.31600000000003,283.32000000000005,283.324,283.32800000000003,283.33200000000005,283.336,283.34000000000003,283.34400000000005,283.348,283.35200000000003,283.35600000000005,283.36,283.36400000000003,283.36800000000005,283.372,283.37600000000003,283.38000000000005,283.384,283.38800000000003,283.39200000000005,283.396,283.40000000000003,283.40400000000005,283.408,283.41200000000003,283.41600000000005,283.42,283.42400000000004,283.42800000000005,283.432,283.43600000000004,283.44000000000005,283.444,283.44800000000004,283.45200000000006,283.456,283.46000000000004,283.46400000000006,283.468,283.47200000000004,283.47600000000006,283.48,283.48400000000004,283.48800000000006,283.492,283.49600000000004,283.5,283.504,283.50800000000004,283.512,283.516,283.52000000000004,283.524,283.528,283.53200000000004,283.536,283.54,283.54400000000004,283.548,283.552,283.55600000000004,283.56,283.564,283.56800000000004,283.572,283.576,283.58000000000004,283.584,283.588,283.59200000000004,283.596,283.6,283.60400000000004,283.608,283.612,283.61600000000004,283.62,283.624,283.62800000000004,283.632,283.636,283.64000000000004,283.64000000000004,284.103,284.107,284.111,284.115,284.119,284.123,284.127,284.13100000000003,284.135,284.139,284.14300000000003,284.147,284.151,284.15500000000003,284.159,284.163,284.16700000000003,284.171,284.175,284.17900000000003,284.183,284.187,284.19100000000003,284.195,284.199,284.20300000000003,284.207,284.211,284.21500000000003,284.219,284.223,284.22700000000003,284.231,284.235,284.23900000000003,284.243,284.247,284.25100000000003,284.255,284.259,284.26300000000003,284.267,284.271,284.27500000000003,284.279,284.283,284.28700000000003,284.291,284.295,284.29900000000004,284.303,284.307,284.31100000000004,284.315,284.319,284.32300000000004,284.327,284.331,284.33500000000004,284.339,284.343,284.34700000000004,284.351,284.355,284.359,284.363,284.367,284.371,284.375,284.379,284.383,284.387,284.391,284.395,284.399,284.403,284.407,284.411,284.415,284.419,284.423,284.427,284.431,284.435,284.439,284.443,284.447,284.451,284.455,284.459,284.463,284.467,284.471,284.475,284.479,284.483,284.487,284.491,284.495,284.499,284.499,284.964,284.968,284.972,284.976,284.98,284.984,284.988,284.992,284.996,285.0,285.004,285.008,285.012,285.016,285.02,285.024,285.028,285.032,285.036,285.04,285.044,285.048,285.052,285.056,285.06,285.064,285.068,285.072,285.076,285.08,285.084,285.088,285.092,285.096,285.1,285.104,285.108,285.112,285.116,285.12,285.124,285.128,285.132,285.136,285.14,285.144,285.148,285.152,285.156,285.16,285.164,285.168,285.172,285.176,285.18,285.184,285.188,285.192,285.196,285.2,285.204,285.208,285.212,285.216,285.21999999999997,285.224,285.228,285.23199999999997,285.236,285.24,285.24399999999997,285.248,285.252,285.256,285.26,285.264,285.268,285.272,285.276,285.28,285.284,285.288,285.292,285.296,285.3,285.304,285.308,285.312,285.316,285.32,285.324,285.328,285.332,285.336,285.34,285.344,285.348,285.352,285.356,285.36,285.36,285.823,285.827,285.83099999999996,285.835,285.839,285.84299999999996,285.847,285.851,285.85499999999996,285.859,285.863,285.86699999999996,285.871,285.875,285.87899999999996,285.883,285.887,285.89099999999996,285.895,285.899,285.90299999999996,285.907,285.911,285.91499999999996,285.919,285.923,285.92699999999996,285.931,285.935,285.93899999999996,285.943,285.947,285.95099999999996,285.955,285.959,285.96299999999997,285.967,285.971,285.97499999999997,285.979,285.983,285.98699999999997,285.991,285.995,285.99899999999997,286.003,286.007,286.01099999999997,286.015,286.019,286.02299999999997,286.027,286.031,286.03499999999997,286.039,286.043,286.04699999999997,286.051,286.055,286.05899999999997,286.063,286.067,286.07099999999997,286.075,286.07899999999995,286.08299999999997,286.087,286.09099999999995,286.09499999999997,286.099,286.10299999999995,286.10699999999997,286.111,286.11499999999995,286.11899999999997,286.123,286.12699999999995,286.131,286.135,286.13899999999995,286.143,286.147,286.15099999999995,286.155,286.159,286.16299999999995,286.167,286.171,286.17499999999995,286.179,286.183,286.18699999999995,286.191,286.195,286.19899999999996,286.203,286.207,286.21099999999996,286.215,286.219,286.219,286.684,286.68800000000005,286.692,286.696,286.70000000000005,286.704,286.708,286.71200000000005,286.716,286.72,286.72400000000005,286.728,286.732,286.73600000000005,286.74,286.744,286.74800000000005,286.752,286.75600000000003,286.76000000000005,286.764,286.76800000000003,286.77200000000005,286.776,286.78000000000003,286.78400000000005,286.788,286.79200000000003,286.79600000000005,286.8,286.80400000000003,286.80800000000005,286.812,286.81600000000003,286.82000000000005,286.824,286.82800000000003,286.83200000000005,286.836,286.84000000000003,286.84400000000005,286.848,286.85200000000003,286.85600000000005,286.86,286.86400000000003,286.86800000000005,286.872,286.87600000000003,286.88000000000005,286.884,286.88800000000003,286.89200000000005,286.896,286.90000000000003,286.90400000000005,286.908,286.91200000000003,286.91600000000005,286.92,286.92400000000004,286.92800000000005,286.932,286.93600000000004,286.94,286.944,286.94800000000004,286.952,286.956,286.96000000000004,286.964,286.968,286.97200000000004,286.976,286.98,286.98400000000004,286.988,286.992,286.99600000000004,287.0,287.004,287.00800000000004,287.012,287.016,287.02000000000004,287.024,287.028,287.03200000000004,287.036,287.04,287.04400000000004,287.048,287.052,287.05600000000004,287.06,287.064,287.06800000000004,287.072,287.076,287.08000000000004,287.08000000000004,287.543,287.547,287.551,287.555,287.559,287.563,287.567,287.571,287.575,287.579,287.583,287.587,287.591,287.595,287.599,287.603,287.607,287.611,287.615,287.619,287.623,287.627,287.63100000000003,287.635,287.639,287.64300000000003,287.647,287.651,287.65500000000003,287.659,287.663,287.66700000000003,287.671,287.675,287.67900000000003,287.683,287.687,287.69100000000003,287.695,287.699,287.70300000000003,287.707,287.711,287.71500000000003,287.719,287.723,287.72700000000003,287.731,287.735,287.73900000000003,287.743,287.747,287.75100000000003,287.755,287.759,287.76300000000003,287.767,287.771,287.77500000000003,287.779,287.783,287.78700000000003,287.791,287.795,287.799,287.803,287.807,287.811,287.815,287.819,287.823,287.827,287.831,287.835,287.839,287.843,287.847,287.851,287.855,287.859,287.863,287.867,287.871,287.875,287.879,287.883,287.887,287.891,287.895,287.899,287.903,287.907,287.911,287.915,287.919,287.923,287.927,287.931,287.935,287.939,287.939,288.404,288.408,288.412,288.416,288.42,288.424,288.428,288.432,288.436,288.44,288.444,288.448,288.452,288.456,288.46,288.464,288.468,288.472,288.476,288.48,288.484,288.488,288.492,288.496,288.5,288.504,288.508,288.512,288.516,288.52,288.524,288.528,288.532,288.536,288.54,288.544,288.548,288.552,288.556,288.56,288.564,288.568,288.572,288.576,288.58,288.584,288.588,288.592,288.596,288.6,288.604,288.608,288.612,288.616,288.62,288.624,288.628,288.632,288.636,288.64,288.644,288.648,288.652,288.656,288.65999999999997,288.664,288.668,288.67199999999997,288.676,288.68,288.68399999999997,288.688,288.692,288.69599999999997,288.7,288.704,288.70799999999997,288.712,288.716,288.71999999999997,288.724,288.728,288.73199999999997,288.736,288.74,288.74399999999997,288.748,288.752,288.756,288.76,288.764,288.768,288.772,288.776,288.78,288.784,288.788,288.792,288.796,288.8,288.8,289.26300000000003,289.26700000000005,289.271,289.27500000000003,289.27900000000005,289.283,289.28700000000003,289.29100000000005,289.295,289.29900000000004,289.30300000000005,289.307,289.31100000000004,289.31500000000005,289.319,289.32300000000004,289.32700000000006,289.331,289.33500000000004,289.33900000000006,289.343,289.34700000000004,289.35100000000006,289.355,289.35900000000004,289.36300000000006,289.367,289.37100000000004,289.37500000000006,289.379,289.38300000000004,289.38700000000006,289.391,289.39500000000004,289.39900000000006,289.403,289.40700000000004,289.41100000000006,289.415,289.41900000000004,289.42300000000006,289.427,289.43100000000004,289.43500000000006,289.439,289.44300000000004,289.44700000000006,289.451,289.45500000000004,289.45900000000006,289.463,289.46700000000004,289.47100000000006,289.475,289.47900000000004,289.48300000000006,289.487,289.49100000000004,289.49500000000006,289.499,289.50300000000004,289.50700000000006,289.511,289.51500000000004,289.519,289.523,289.52700000000004,289.531,289.535,289.53900000000004,289.543,289.547,289.55100000000004,289.555,289.559,289.56300000000005,289.567,289.571,289.57500000000005,289.579,289.583,289.58700000000005,289.591,289.595,289.59900000000005,289.603,289.607,289.61100000000005,289.615,289.619,289.62300000000005,289.627,289.63100000000003,289.63500000000005,289.639,289.64300000000003,289.64700000000005,289.651,289.65500000000003,289.65900000000005,289.65900000000005,290.124,290.12800000000004,290.132,290.136,290.14000000000004,290.144,290.148,290.15200000000004,290.156,290.16,290.16400000000004,290.168,290.172,290.17600000000004,290.18,290.184,290.18800000000005,290.192,290.196,290.20000000000005,290.204,290.208,290.21200000000005,290.216,290.22,290.22400000000005,290.228,290.232,290.23600000000005,290.24,290.244,290.24800000000005,290.252,290.25600000000003,290.26000000000005,290.264,290.26800000000003,290.27200000000005,290.276,290.28000000000003,290.28400000000005,290.288,290.29200000000003,290.29600000000005,290.3,290.30400000000003,290.30800000000005,290.312,290.31600000000003,290.32000000000005,290.324,290.32800000000003,290.33200000000005,290.336,290.34000000000003,290.34400000000005,290.348,290.35200000000003,290.35600000000005,290.36,290.36400000000003,290.36800000000005,290.372,290.37600000000003,290.38,290.384,290.38800000000003,290.392,290.396,290.40000000000003,290.404,290.408,290.41200000000003,290.416,290.42,290.42400000000004,290.428,290.432,290.43600000000004,290.44,290.444,290.44800000000004,290.452,290.456,290.46000000000004,290.464,290.468,290.47200000000004,290.476,290.48,290.48400000000004,290.488,290.492,290.49600000000004,290.5,290.504,290.50800000000004,290.512,290.516,290.52000000000004,290.52000000000004,290.983,290.987,290.991,290.995,290.999,291.003,291.007,291.011,291.015,291.019,291.023,291.027,291.031,291.035,291.039,291.043,291.047,291.051,291.055,291.059,291.063,291.067,291.071,291.075,291.079,291.083,291.087,291.091,291.095,291.099,291.103,291.107,291.111,291.115,291.119,291.123,291.127,291.13100000000003,291.135,291.139,291.14300000000003,291.147,291.151,291.15500000000003,291.159,291.163,291.16700000000003,291.171,291.175,291.17900000000003,291.183,291.187,291.19100000000003,291.195,291.199,291.20300000000003,291.207,291.211,291.21500000000003,291.219,291.223,291.22700000000003,291.231,291.235,291.239,291.243,291.247,291.251,291.255,291.259,291.263,291.267,291.271,291.275,291.279,291.283,291.287,291.291,291.295,291.299,291.303,291.307,291.311,291.315,291.319,291.323,291.327,291.331,291.335,291.339,291.343,291.347,291.351,291.355,291.359,291.363,291.367,291.371,291.375,291.379,291.379,291.844,291.848,291.852,291.856,291.86,291.864,291.868,291.872,291.876,291.88,291.884,291.888,291.892,291.896,291.9,291.904,291.908,291.912,291.916,291.92,291.924,291.928,291.932,291.936,291.94,291.944,291.948,291.952,291.956,291.96,291.964,291.968,291.972,291.976,291.98,291.984,291.988,291.992,291.996,292.0,292.004,292.008,292.012,292.016,292.02,292.024,292.028,292.032,292.036,292.04,292.044,292.048,292.052,292.056,292.06,292.064,292.068,292.072,292.076,292.08,292.084,292.088,292.092,292.096,292.09999999999997,292.104,292.108,292.11199999999997,292.116,292.12,292.12399999999997,292.128,292.132,292.13599999999997,292.14,292.144,292.14799999999997,292.152,292.156,292.15999999999997,292.164,292.168,292.17199999999997,292.176,292.18,292.18399999999997,292.188,292.192,292.19599999999997,292.2,292.204,292.20799999999997,292.212,292.216,292.21999999999997,292.224,292.228,292.23199999999997,292.236,292.24,292.24,292.70300000000003,292.70700000000005,292.711,292.71500000000003,292.71900000000005,292.723,292.72700000000003,292.73100000000005,292.735,292.73900000000003,292.74300000000005,292.747,292.75100000000003,292.75500000000005,292.759,292.76300000000003,292.76700000000005,292.771,292.77500000000003,292.77900000000005,292.783,292.78700000000003,292.79100000000005,292.795,292.79900000000004,292.80300000000005,292.807,292.81100000000004,292.81500000000005,292.819,292.82300000000004,292.82700000000006,292.831,292.83500000000004,292.83900000000006,292.843,292.84700000000004,292.85100000000006,292.855,292.85900000000004,292.86300000000006,292.867,292.87100000000004,292.87500000000006,292.879,292.88300000000004,292.88700000000006,292.891,292.89500000000004,292.89900000000006,292.903,292.90700000000004,292.91100000000006,292.915,292.91900000000004,292.92300000000006,292.927,292.93100000000004,292.93500000000006,292.939,292.94300000000004,292.94700000000006,292.951,292.95500000000004,292.959,292.963,292.96700000000004,292.971,292.975,292.97900000000004,292.983,292.987,292.99100000000004,292.995,292.999,293.00300000000004,293.007,293.011,293.01500000000004,293.019,293.023,293.02700000000004,293.031,293.035,293.03900000000004,293.043,293.047,293.05100000000004,293.055,293.059,293.06300000000005,293.067,293.071,293.07500000000005,293.079,293.083,293.08700000000005,293.091,293.095,293.09900000000005,293.09900000000005,293.564,293.56800000000004,293.572,293.576,293.58000000000004,293.584,293.588,293.59200000000004,293.596,293.6,293.60400000000004,293.608,293.612,293.61600000000004,293.62,293.624,293.62800000000004,293.632,293.636,293.64000000000004,293.644,293.648,293.65200000000004,293.656,293.66,293.66400000000004,293.668,293.672,293.67600000000004,293.68,293.684,293.68800000000005,293.692,293.696,293.70000000000005,293.704,293.708,293.71200000000005,293.716,293.72,293.72400000000005,293.728,293.732,293.73600000000005,293.74,293.744,293.74800000000005,293.752,293.75600000000003,293.76000000000005,293.764,293.76800000000003,293.77200000000005,293.776,293.78000000000003,293.78400000000005,293.788,293.79200000000003,293.79600000000005,293.8,293.80400000000003,293.80800000000005,293.812,293.81600000000003,293.82,293.824,293.82800000000003,293.832,293.836,293.84000000000003,293.844,293.848,293.85200000000003,293.856,293.86,293.86400000000003,293.868,293.872,293.87600000000003,293.88,293.884,293.88800000000003,293.892,293.896,293.90000000000003,293.904,293.908,293.91200000000003,293.916,293.92,293.92400000000004,293.928,293.932,293.93600000000004,293.94,293.944,293.94800000000004,293.952,293.956,293.96000000000004,293.96000000000004,294.423,294.427,294.431,294.435,294.439,294.443,294.447,294.451,294.455,294.459,294.463,294.467,294.471,294.475,294.479,294.483,294.487,294.491,294.495,294.499,294.503,294.507,294.511,294.515,294.519,294.523,294.527,294.531,294.535,294.539,294.543,294.547,294.551,294.555,294.559,294.563,294.567,294.571,294.575,294.579,294.583,294.587,294.591,294.595,294.599,294.603,294.607,294.611,294.615,294.619,294.623,294.627,294.63100000000003,294.635,294.639,294.64300000000003,294.647,294.651,294.65500000000003,294.659,294.663,294.66700000000003,294.671,294.675,294.679,294.683,294.687,294.691,294.695,294.699,294.703,294.707,294.711,294.715,294.719,294.723,294.727,294.731,294.735,294.739,294.743,294.747,294.751,294.755,294.759,294.763,294.767,294.771,294.775,294.779,294.783,294.787,294.791,294.795,294.799,294.803,294.807,294.811,294.815,294.819,294.819,295.284,295.288,295.292,295.296,295.3,295.304,295.308,295.312,295.316,295.32,295.324,295.328,295.332,295.336,295.34,295.344,295.348,295.352,295.356,295.36,295.364,295.368,295.372,295.376,295.38,295.384,295.388,295.392,295.396,295.4,295.404,295.408,295.412,295.416,295.42,295.424,295.428,295.432,295.436,295.44,295.444,295.448,295.452,295.456,295.46,295.464,295.468,295.472,295.476,295.48,295.484,295.488,295.492,295.496,295.5,295.504,295.508,295.512,295.516,295.52,295.524,295.528,295.532,295.536,295.53999999999996,295.544,295.548,295.55199999999996,295.556,295.56,295.56399999999996,295.568,295.572,295.57599999999996,295.58,295.584,295.58799999999997,295.592,295.596,295.59999999999997,295.604,295.608,295.61199999999997,295.616,295.62,295.62399999999997,295.628,295.632,295.63599999999997,295.64,295.644,295.64799999999997,295.652,295.656,295.65999999999997,295.664,295.668,295.67199999999997,295.676,295.68,295.68,296.14300000000003,296.14700000000005,296.151,296.15500000000003,296.15900000000005,296.163,296.16700000000003,296.17100000000005,296.175,296.17900000000003,296.18300000000005,296.187,296.19100000000003,296.19500000000005,296.199,296.20300000000003,296.20700000000005,296.211,296.21500000000003,296.21900000000005,296.223,296.22700000000003,296.23100000000005,296.235,296.23900000000003,296.24300000000005,296.247,296.25100000000003,296.25500000000005,296.259,296.26300000000003,296.26700000000005,296.271,296.27500000000003,296.27900000000005,296.283,296.28700000000003,296.29100000000005,296.295,296.29900000000004,296.30300000000005,296.307,296.31100000000004,296.31500000000005,296.319,296.32300000000004,296.32700000000006,296.331,296.33500000000004,296.33900000000006,296.343,296.34700000000004,296.35100000000006,296.355,296.35900000000004,296.36300000000006,296.367,296.37100000000004,296.37500000000006,296.379,296.38300000000004,296.38700000000006,296.391,296.39500000000004,296.399,296.403,296.40700000000004,296.411,296.415,296.41900000000004,296.423,296.427,296.43100000000004,296.435,296.439,296.44300000000004,296.447,296.451,296.45500000000004,296.459,296.463,296.46700000000004,296.471,296.475,296.47900000000004,296.483,296.487,296.49100000000004,296.495,296.499,296.50300000000004,296.507,296.511,296.51500000000004,296.519,296.523,296.52700000000004,296.531,296.535,296.53900000000004,296.53900000000004,297.004,297.00800000000004,297.012,297.016,297.02000000000004,297.024,297.028,297.03200000000004,297.036,297.04,297.04400000000004,297.048,297.052,297.05600000000004,297.06,297.064,297.06800000000004,297.072,297.076,297.08000000000004,297.084,297.088,297.09200000000004,297.096,297.1,297.10400000000004,297.108,297.112,297.11600000000004,297.12,297.124,297.12800000000004,297.132,297.136,297.14000000000004,297.144,297.148,297.15200000000004,297.156,297.16,297.16400000000004,297.168,297.172,297.17600000000004,297.18,297.184,297.18800000000005,297.192,297.196,297.20000000000005,297.204,297.208,297.21200000000005,297.216,297.22,297.22400000000005,297.228,297.232,297.23600000000005,297.24,297.244,297.24800000000005,297.252,297.25600000000003,297.26,297.264,297.26800000000003,297.272,297.276,297.28000000000003,297.284,297.288,297.29200000000003,297.296,297.3,297.30400000000003,297.308,297.312,297.31600000000003,297.32,297.324,297.32800000000003,297.332,297.336,297.34000000000003,297.344,297.348,297.35200000000003,297.356,297.36,297.36400000000003,297.368,297.372,297.37600000000003,297.38,297.384,297.38800000000003,297.392,297.396,297.40000000000003,297.40000000000003,297.863,297.867,297.871,297.875,297.879,297.883,297.887,297.891,297.895,297.899,297.903,297.907,297.911,297.915,297.919,297.923,297.927,297.931,297.935,297.939,297.943,297.947,297.951,297.955,297.959,297.963,297.967,297.971,297.975,297.979,297.983,297.987,297.991,297.995,297.999,298.003,298.007,298.011,298.015,298.019,298.023,298.027,298.031,298.035,298.039,298.043,298.047,298.051,298.055,298.059,298.063,298.067,298.071,298.075,298.079,298.083,298.087,298.091,298.095,298.099,298.103,298.107,298.111,298.115,298.11899999999997,298.123,298.127,298.131,298.135,298.139,298.143,298.147,298.151,298.155,298.159,298.163,298.167,298.171,298.175,298.179,298.183,298.187,298.191,298.195,298.199,298.203,298.207,298.211,298.215,298.219,298.223,298.227,298.231,298.235,298.239,298.243,298.247,298.251,298.255,298.259,298.259,298.724,298.728,298.73199999999997,298.736,298.74,298.74399999999997,298.748,298.752,298.756,298.76,298.764,298.768,298.772,298.776,298.78,298.784,298.788,298.792,298.796,298.8,298.804,298.808,298.812,298.816,298.82,298.824,298.828,298.832,298.836,298.84,298.844,298.848,298.852,298.856,298.86,298.864,298.868,298.872,298.876,298.88,298.884,298.888,298.892,298.896,298.9,298.904,298.908,298.912,298.916,298.92,298.924,298.928,298.932,298.936,298.94,298.944,298.948,298.952,298.956,298.96,298.964,298.968,298.972,298.976,298.97999999999996,298.984,298.988,298.99199999999996,298.996,299.0,299.00399999999996,299.008,299.012,299.01599999999996,299.02,299.024,299.02799999999996,299.032,299.036,299.03999999999996,299.044,299.048,299.05199999999996,299.056,299.06,299.06399999999996,299.068,299.072,299.07599999999996,299.08,299.084,299.08799999999997,299.092,299.096,299.09999999999997,299.104,299.108,299.11199999999997,299.116,299.12,299.12,299.583,299.58700000000005,299.591,299.595,299.59900000000005,299.603,299.607,299.61100000000005,299.615,299.619,299.62300000000005,299.627,299.63100000000003,299.63500000000005,299.639,299.64300000000003,299.64700000000005,299.651,299.65500000000003,299.65900000000005,299.663,299.66700000000003,299.67100000000005,299.675,299.67900000000003,299.68300000000005,299.687,299.69100000000003,299.69500000000005,299.699,299.70300000000003,299.70700000000005,299.711,299.71500000000003,299.71900000000005,299.723,299.72700000000003,299.73100000000005,299.735,299.73900000000003,299.74300000000005,299.747,299.75100000000003,299.75500000000005,299.759,299.76300000000003,299.76700000000005,299.771,299.77500000000003,299.77900000000005,299.783,299.78700000000003,299.79100000000005,299.795,299.79900000000004,299.80300000000005,299.807,299.81100000000004,299.81500000000005,299.819,299.82300000000004,299.82700000000006,299.831,299.83500000000004,299.839,299.843,299.84700000000004,299.851,299.855,299.85900000000004,299.863,299.867,299.87100000000004,299.875,299.879,299.88300000000004,299.887,299.891,299.89500000000004,299.899,299.903,299.90700000000004,299.911,299.915,299.91900000000004,299.923,299.927,299.93100000000004,299.935,299.939,299.94300000000004,299.947,299.951,299.95500000000004,299.959,299.963,299.96700000000004,299.971,299.975,299.97900000000004,299.97900000000004,300.444,300.44800000000004,300.452,300.456,300.46000000000004,300.464,300.468,300.47200000000004,300.476,300.48,300.48400000000004,300.488,300.492,300.49600000000004,300.5,300.504,300.50800000000004,300.512,300.516,300.52000000000004,300.524,300.528,300.53200000000004,300.536,300.54,300.54400000000004,300.548,300.552,300.55600000000004,300.56,300.564,300.56800000000004,300.572,300.576,300.58000000000004,300.584,300.588,300.59200000000004,300.596,300.6,300.60400000000004,300.608,300.612,300.61600000000004,300.62,300.624,300.62800000000004,300.632,300.636,300.64000000000004,300.644,300.648,300.65200000000004,300.656,300.66,300.66400000000004,300.668,300.672,300.67600000000004,300.68,300.684,300.68800000000005,300.692,300.696,300.7,300.704,300.708,300.712,300.716,300.72,300.724,300.728,300.732,300.736,300.74,300.744,300.748,300.752,300.75600000000003,300.76,300.764,300.76800000000003,300.772,300.776,300.78000000000003,300.784,300.788,300.79200000000003,300.796,300.8,300.80400000000003,300.808,300.812,300.81600000000003,300.82,300.824,300.82800000000003,300.832,300.836,300.84000000000003,300.84000000000003,301.303,301.307,301.311,301.315,301.319,301.323,301.327,301.331,301.335,301.339,301.343,301.347,301.351,301.355,301.359,301.363,301.367,301.371,301.375,301.379,301.383,301.387,301.391,301.395,301.399,301.403,301.407,301.411,301.415,301.419,301.423,301.427,301.431,301.435,301.439,301.443,301.447,301.451,301.455,301.459,301.463,301.467,301.471,301.475,301.479,301.483,301.487,301.491,301.495,301.499,301.503,301.507,301.511,301.515,301.519,301.523,301.527,301.531,301.535,301.539,301.543,301.547,301.551,301.555,301.55899999999997,301.563,301.567,301.57099999999997,301.575,301.579,301.58299999999997,301.587,301.591,301.59499999999997,301.599,301.603,301.60699999999997,301.611,301.615,301.61899999999997,301.623,301.627,301.631,301.635,301.639,301.643,301.647,301.651,301.655,301.659,301.663,301.667,301.671,301.675,301.679,301.683,301.687,301.691,301.695,301.699,301.699,302.164,302.168,302.17199999999997,302.176,302.18,302.18399999999997,302.188,302.192,302.19599999999997,302.2,302.204,302.20799999999997,302.212,302.216,302.21999999999997,302.224,302.228,302.23199999999997,302.236,302.24,302.24399999999997,302.248,302.252,302.256,302.26,302.264,302.268,302.272,302.276,302.28,302.284,302.288,302.292,302.296,302.3,302.304,302.308,302.312,302.316,302.32,302.324,302.328,302.332,302.336,302.34,302.344,302.348,302.352,302.356,302.36,302.364,302.368,302.372,302.376,302.38,302.384,302.388,302.392,302.396,302.4,302.404,302.408,302.412,302.416,302.41999999999996,302.424,302.428,302.43199999999996,302.436,302.44,302.44399999999996,302.448,302.452,302.45599999999996,302.46,302.464,302.46799999999996,302.472,302.476,302.47999999999996,302.484,302.488,302.49199999999996,302.496,302.5,302.50399999999996,302.508,302.512,302.51599999999996,302.52,302.524,302.52799999999996,302.532,302.536,302.53999999999996,302.544,302.548,302.55199999999996,302.556,302.56,302.56,303.023,303.02700000000004,303.031,303.035,303.03900000000004,303.043,303.047,303.05100000000004,303.055,303.059,303.06300000000005,303.067,303.071,303.07500000000005,303.079,303.083,303.08700000000005,303.091,303.095,303.09900000000005,303.103,303.107,303.11100000000005,303.115,303.119,303.12300000000005,303.127,303.13100000000003,303.13500000000005,303.139,303.14300000000003,303.14700000000005,303.151,303.15500000000003,303.15900000000005,303.163,303.16700000000003,303.17100000000005,303.175,303.17900000000003,303.18300000000005,303.187,303.19100000000003,303.19500000000005,303.199,303.20300000000003,303.20700000000005,303.211,303.21500000000003,303.21900000000005,303.223,303.22700000000003,303.23100000000005,303.235,303.23900000000003,303.24300000000005,303.247,303.25100000000003,303.25500000000005,303.259,303.26300000000003,303.26700000000005,303.271,303.27500000000003,303.279,303.283,303.28700000000003,303.291,303.295,303.29900000000004,303.303,303.307,303.31100000000004,303.315,303.319,303.32300000000004,303.327,303.331,303.33500000000004,303.339,303.343,303.34700000000004,303.351,303.355,303.35900000000004,303.363,303.367,303.37100000000004,303.375,303.379,303.38300000000004,303.387,303.391,303.39500000000004,303.399,303.403,303.40700000000004,303.411,303.415,303.41900000000004,303.41900000000004,303.884,303.88800000000003,303.892,303.896,303.90000000000003,303.904,303.908,303.91200000000003,303.916,303.92,303.92400000000004,303.928,303.932,303.93600000000004,303.94,303.944,303.94800000000004,303.952,303.956,303.96000000000004,303.964,303.968,303.97200000000004,303.976,303.98,303.98400000000004,303.988,303.992,303.99600000000004,304.0,304.004,304.00800000000004,304.012,304.016,304.02000000000004,304.024,304.028,304.03200000000004,304.036,304.04,304.04400000000004,304.048,304.052,304.05600000000004,304.06,304.064,304.06800000000004,304.072,304.076,304.08000000000004,304.084,304.088,304.09200000000004,304.096,304.1,304.10400000000004,304.108,304.112,304.11600000000004,304.12,304.124,304.12800000000004,304.132,304.136,304.14,304.144,304.148,304.152,304.156,304.16,304.164,304.168,304.172,304.176,304.18,304.184,304.188,304.192,304.196,304.2,304.204,304.208,304.212,304.216,304.22,304.224,304.228,304.232,304.236,304.24,304.244,304.248,304.252,304.25600000000003,304.26,304.264,304.26800000000003,304.272,304.276,304.28000000000003,304.28000000000003,304.743,304.747,304.751,304.755,304.759,304.763,304.767,304.771,304.775,304.779,304.783,304.787,304.791,304.795,304.799,304.803,304.807,304.811,304.815,304.819,304.823,304.827,304.831,304.835,304.839,304.843,304.847,304.851,304.855,304.859,304.863,304.867,304.871,304.875,304.879,304.883,304.887,304.891,304.895,304.899,304.903,304.907,304.911,304.915,304.919,304.923,304.927,304.931,304.935,304.939,304.943,304.947,304.951,304.955,304.959,304.963,304.967,304.971,304.975,304.979,304.983,304.987,304.991,304.995,304.99899999999997,305.003,305.007,305.01099999999997,305.015,305.019,305.02299999999997,305.027,305.031,305.03499999999997,305.039,305.043,305.04699999999997,305.051,305.055,305.05899999999997,305.063,305.067,305.07099999999997,305.075,305.079,305.08299999999997,305.087,305.091,305.09499999999997,305.099,305.103,305.10699999999997,305.111,305.115,305.11899999999997,305.123,305.127,305.131,305.135,305.139,305.139,305.604,305.608,305.61199999999997,305.616,305.62,305.62399999999997,305.628,305.632,305.63599999999997,305.64,305.644,305.64799999999997,305.652,305.656,305.65999999999997,305.664,305.668,305.67199999999997,305.676,305.68,305.68399999999997,305.688,305.692,305.69599999999997,305.7,305.704,305.70799999999997,305.712,305.716,305.71999999999997,305.724,305.728,305.73199999999997,305.736,305.74,305.74399999999997,305.748,305.752,305.756,305.76,305.764,305.768,305.772,305.776,305.78,305.784,305.788,305.792,305.796,305.8,305.804,305.808,305.812,305.816,305.82,305.824,305.828,305.832,305.836,305.84,305.844,305.848,305.852,305.856,305.85999999999996,305.864,305.868,305.87199999999996,305.876,305.88,305.88399999999996,305.888,305.892,305.89599999999996,305.9,305.904,305.90799999999996,305.912,305.916,305.91999999999996,305.924,305.928,305.93199999999996,305.936,305.94,305.94399999999996,305.948,305.952,305.95599999999996,305.96,305.964,305.96799999999996,305.972,305.976,305.97999999999996,305.984,305.988,305.99199999999996,305.996,306.0,306.0,306.463,306.46700000000004,306.471,306.475,306.47900000000004,306.483,306.487,306.49100000000004,306.495,306.499,306.50300000000004,306.507,306.511,306.51500000000004,306.519,306.523,306.52700000000004,306.531,306.535,306.53900000000004,306.543,306.547,306.55100000000004,306.555,306.559,306.56300000000005,306.567,306.571,306.57500000000005,306.579,306.583,306.58700000000005,306.591,306.595,306.59900000000005,306.603,306.607,306.61100000000005,306.615,306.619,306.62300000000005,306.627,306.63100000000003,306.63500000000005,306.639,306.64300000000003,306.64700000000005,306.651,306.65500000000003,306.65900000000005,306.663,306.66700000000003,306.67100000000005,306.675,306.67900000000003,306.68300000000005,306.687,306.69100000000003,306.69500000000005,306.699,306.70300000000003,306.70700000000005,306.711,306.71500000000003,306.719,306.723,306.72700000000003,306.731,306.735,306.73900000000003,306.743,306.747,306.75100000000003,306.755,306.759,306.76300000000003,306.767,306.771,306.77500000000003,306.779,306.783,306.78700000000003,306.791,306.795,306.79900000000004,306.803,306.807,306.81100000000004,306.815,306.819,306.82300000000004,306.827,306.831,306.83500000000004,306.839,306.843,306.84700000000004,306.851,306.855,306.85900000000004,306.85900000000004,307.324,307.32800000000003,307.332,307.336,307.34000000000003,307.344,307.348,307.35200000000003,307.356,307.36,307.36400000000003,307.368,307.372,307.37600000000003,307.38,307.384,307.38800000000003,307.392,307.396,307.40000000000003,307.404,307.408,307.41200000000003,307.416,307.42,307.42400000000004,307.428,307.432,307.43600000000004,307.44,307.444,307.44800000000004,307.452,307.456,307.46000000000004,307.464,307.468,307.47200000000004,307.476,307.48,307.48400000000004,307.488,307.492,307.49600000000004,307.5,307.504,307.50800000000004,307.512,307.516,307.52000000000004,307.524,307.528,307.53200000000004,307.536,307.54,307.54400000000004,307.548,307.552,307.55600000000004,307.56,307.564,307.56800000000004,307.572,307.576,307.58,307.584,307.588,307.592,307.596,307.6,307.604,307.608,307.612,307.616,307.62,307.624,307.628,307.632,307.636,307.64,307.644,307.648,307.652,307.656,307.66,307.664,307.668,307.672,307.676,307.68,307.684,307.688,307.692,307.696,307.7,307.704,307.708,307.712,307.716,307.72,307.72,308.183,308.187,308.191,308.195,308.199,308.203,308.207,308.211,308.215,308.219,308.223,308.227,308.231,308.235,308.239,308.243,308.247,308.251,308.255,308.259,308.263,308.267,308.271,308.275,308.279,308.283,308.287,308.291,308.295,308.299,308.303,308.307,308.311,308.315,308.319,308.323,308.327,308.331,308.335,308.339,308.343,308.347,308.351,308.355,308.359,308.363,308.367,308.371,308.375,308.379,308.383,308.387,308.391,308.395,308.399,308.403,308.407,308.411,308.415,308.419,308.423,308.427,308.431,308.435,308.43899999999996,308.443,308.447,308.45099999999996,308.455,308.459,308.46299999999997,308.467,308.471,308.47499999999997,308.479,308.483,308.48699999999997,308.491,308.495,308.49899999999997,308.503,308.507,308.51099999999997,308.515,308.519,308.52299999999997,308.527,308.531,308.53499999999997,308.539,308.543,308.54699999999997,308.551,308.555,308.55899999999997,308.563,308.567,308.57099999999997,308.575,308.579,308.579,309.044,309.048,309.05199999999996,309.056,309.06,309.06399999999996,309.068,309.072,309.07599999999996,309.08,309.084,309.08799999999997,309.092,309.096,309.09999999999997,309.104,309.108,309.11199999999997,309.116,309.12,309.12399999999997,309.128,309.132,309.13599999999997,309.14,309.144,309.14799999999997,309.152,309.156,309.15999999999997,309.164,309.168,309.17199999999997,309.176,309.18,309.18399999999997,309.188,309.192,309.19599999999997,309.2,309.204,309.20799999999997,309.212,309.216,309.21999999999997,309.224,309.228,309.23199999999997,309.236,309.24,309.24399999999997,309.248,309.252,309.256,309.26,309.264,309.268,309.272,309.276,309.28,309.284,309.288,309.292,309.296,309.29999999999995,309.304,309.308,309.31199999999995,309.316,309.32,309.32399999999996,309.328,309.332,309.33599999999996,309.34,309.344,309.34799999999996,309.352,309.356,309.35999999999996,309.364,309.368,309.37199999999996,309.376,309.38,309.38399999999996,309.388,309.392,309.39599999999996,309.4,309.404,309.40799999999996,309.412,309.416,309.41999999999996,309.424,309.428,309.43199999999996,309.436,309.44,309.44,309.903,309.90700000000004,309.911,309.915,309.91900000000004,309.923,309.927,309.93100000000004,309.935,309.939,309.94300000000004,309.947,309.951,309.95500000000004,309.959,309.963,309.96700000000004,309.971,309.975,309.97900000000004,309.983,309.987,309.99100000000004,309.995,309.999,310.00300000000004,310.007,310.011,310.01500000000004,310.019,310.023,310.02700000000004,310.031,310.035,310.03900000000004,310.043,310.047,310.05100000000004,310.055,310.059,310.06300000000005,310.067,310.071,310.07500000000005,310.079,310.083,310.08700000000005,310.091,310.095,310.09900000000005,310.103,310.107,310.11100000000005,310.115,310.119,310.12300000000005,310.127,310.13100000000003,310.13500000000005,310.139,310.14300000000003,310.14700000000005,310.151,310.15500000000003,310.159,310.163,310.16700000000003,310.171,310.175,310.17900000000003,310.183,310.187,310.19100000000003,310.195,310.199,310.20300000000003,310.207,310.211,310.21500000000003,310.219,310.223,310.22700000000003,310.231,310.235,310.23900000000003,310.243,310.247,310.25100000000003,310.255,310.259,310.26300000000003,310.267,310.271,310.27500000000003,310.279,310.283,310.28700000000003,310.291,310.295,310.29900000000004,310.29900000000004,310.764,310.76800000000003,310.772,310.776,310.78000000000003,310.784,310.788,310.79200000000003,310.796,310.8,310.80400000000003,310.808,310.812,310.81600000000003,310.82,310.824,310.82800000000003,310.832,310.836,310.84000000000003,310.844,310.848,310.85200000000003,310.856,310.86,310.86400000000003,310.868,310.872,310.87600000000003,310.88,310.884,310.88800000000003,310.892,310.896,310.90000000000003,310.904,310.908,310.91200000000003,310.916,310.92,310.92400000000004,310.928,310.932,310.93600000000004,310.94,310.944,310.94800000000004,310.952,310.956,310.96000000000004,310.964,310.968,310.97200000000004,310.976,310.98,310.98400000000004,310.988,310.992,310.99600000000004,311.0,311.004,311.00800000000004,311.012,311.016,311.02,311.024,311.028,311.032,311.036,311.04,311.044,311.048,311.052,311.056,311.06,311.064,311.068,311.072,311.076,311.08,311.084,311.088,311.092,311.096,311.1,311.104,311.108,311.112,311.116,311.12,311.124,311.128,311.132,311.136,311.14,311.144,311.148,311.152,311.156,311.16,311.16]},{"y":[1.3582437,-22.368595,2.12144,4.4036045,-9.048962,0.1056026,7.0969543,10.417218,9.961,-0.5002369,-11.860465,-13.358503,3.1662438,14.005038,7.7311482,-7.7555494,-26.75874,-3.123134,33.741776,8.112374,-12.592969,8.795651,-0.64990747,-27.995708,-23.472828,6.444306,25.588089,10.003243,-4.863488,-3.0286143,-8.181418,-14.612748,-16.86859,-2.6157398,23.394415,23.06498,13.530949,7.87878,-12.668566,-20.812216,-11.100349,-4.9345036,-0.8662913,0.2492246,8.304609,16.846342,17.048916,23.103178,16.112633,10.890952,29.057945,16.476404,-7.6368523,3.161061,5.8498697,0.273593,-4.318916,-23.729666,-18.205746,3.0532565,1.2197434,-2.5362976,-6.5146885,-5.4175043,10.402252,10.895442,9.984592,17.313309,-0.50176483,-13.558217,-2.8955102,-8.609927,-13.629327,5.610527,13.734519,-0.12745652,-12.133006,-5.9202695,12.542041,17.294567,8.974885,1.099566,-7.951852,-3.1593199,3.810196,-9.242191,-9.785555,-4.2122526,-14.011746,-1.5306823,14.048223,5.2631855,2.1574554,-10.735239,-22.716867,2.6141696,21.89326,11.677796,-10.949891,-22.879787,null,19.419893,-6.2359076,-13.897369,11.722913,22.522354,17.15657,7.4038196,-0.9699639,-1.620604,-1.7653315,6.95144,15.278969,5.402586,2.419463,8.824164,1.6747426,-4.4466186,1.5017219,1.9728304,-10.009119,-17.733135,-9.998008,-5.860123,-9.230793,3.1928124,10.386798,-10.528102,-17.514975,-3.774408,-4.798468,-0.8827253,8.714238,-6.5583653,-12.796061,2.7080445,3.0099058,-1.2179674,2.3440828,0.21002318,-1.4703834,1.8142207,5.820037,11.099348,22.723234,28.549301,10.521236,1.402191,9.939342,1.4427286,2.377477,9.764976,-7.6040072,-2.9349442,10.556726,-4.419509,2.2206123,22.084465,24.35427,22.03962,4.1262827,-1.2974094,10.917172,-9.080126,-25.866032,-11.996842,-2.3164408,7.7469025,16.495678,14.251514,7.5350976,-11.496023,-25.721731,-13.48845,12.641651,30.670135,27.981342,16.856096,1.935403,-10.433484,2.909278,17.45648,17.43893,16.145071,-7.111313,-25.035648,-3.1960726,17.42933,21.103045,12.023271,-4.7012706,-4.8817425,-3.868439,-3.1233466,9.372734,5.233443,-3.7628896,3.495307,13.328371,15.472796,-4.6293454,null,-2.193895,0.0813677,-4.5948977,-0.5367512,7.2216263,-0.7097252,-2.1683776,13.725613,7.119247,-9.3612795,-8.113059,-8.348245,-4.175251,2.5750628,4.4680133,21.783474,21.894508,-10.68645,-22.067362,-7.9726267,7.2711163,14.494833,-0.04685056,-14.629238,-8.1004505,0.333746,3.2788334,12.971789,26.406914,23.715864,7.8530064,-3.5976207,-9.265564,3.1007032,20.795465,13.226455,6.431769,4.472496,-6.858668,1.057254,-0.20363024,-24.05018,-13.633844,2.1693423,-8.688846,-7.803326,-4.5872483,-5.2121325,-2.1106913,-14.40567,-14.167033,0.74090004,-12.891275,-25.098936,-17.777847,-23.346817,-20.338442,-3.174683,-9.7878685,-14.214286,5.37912,3.5209506,-14.313985,-6.2659307,7.496772,5.1969495,-4.4184065,-13.937799,-4.0697675,18.6131,20.831598,7.701441,0.00986416,0.19665118,-1.5012752,-8.440227,0.90764505,20.24594,17.658663,6.6536183,4.966377,2.749729,0.39073002,-0.5230155,-2.0197713,-3.5461102,-6.1697197,-11.432739,-19.663967,-12.591664,9.472037,4.901035,-20.278223,-18.09203,4.3729315,6.692288,-10.042958,-10.652153,-0.014875071,-7.413248,null,-18.857218,6.452688,21.227173,-10.87592,-20.045797,4.188959,12.212466,8.787081,0.9788929,-3.703613,0.26782444,-3.0893414,-2.7172916,7.1808276,8.489215,-3.6247725,-17.666119,-8.250551,7.364362,-0.44754586,-1.3815707,-1.3346933,-12.58323,7.693007,23.696154,-1.326191,-14.316009,-18.121796,-26.277147,-10.90113,3.4595702,7.340186,17.680222,15.084946,4.8586917,-2.9514518,-12.263219,-1.8550253,13.681579,11.29906,12.466027,11.352599,5.36722,18.246828,25.907795,15.528389,15.653855,21.461908,18.874205,8.9049635,3.6175888,19.847641,23.605078,1.8462807,6.554428,17.407427,1.6950122,6.124684,17.521946,-1.0895535,-12.652727,-6.2905893,2.1430047,8.8326025,-0.5304788,-8.358286,-1.5693617,-7.314358,-21.49608,-25.117628,-18.259344,-1.7512256,8.224829,-0.9904337,-14.700661,-16.958115,-13.131506,-15.160564,-6.346779,15.201723,10.358415,-13.2142105,-22.925207,-26.33289,-15.4371395,9.374585,9.875443,-4.328548,-3.2239897,-3.9693897,-9.873627,-1.3141025,3.9808686,-10.60934,-17.237486,-3.1573372,4.1146526,-7.433975,-10.730435,10.042323,null,-9.421165,2.4394524,1.7707645,-8.0582075,-8.036178,7.8316827,0.10680612,-30.626957,-19.041601,11.088225,1.2074598,-12.239156,-6.0474596,-10.336937,-15.487126,0.80505544,13.032863,1.2820799,-10.12854,-14.146071,-20.446774,-9.442625,15.868564,18.523249,-1.6032528,-12.601452,-9.938547,-11.288484,-4.039789,16.333855,16.406015,8.983897,10.643749,-6.8336024,-17.532988,-5.347028,-7.12778,-7.8623757,-6.2655616,-14.725096,0.3673475,9.531054,-11.289053,-16.854065,-17.653852,-17.669697,-4.1785398,-16.60169,-28.265257,-9.6952505,-12.86343,-25.815186,-18.563395,-14.85054,-11.093516,-11.273507,-20.5145,-13.59847,-2.8713872,-1.9602975,-1.773208,-5.7203393,2.965134,20.149511,8.6148205,-18.788853,-26.55414,-9.04208,6.476032,-2.7777526,0.7247098,20.849586,9.45008,-4.4341307,-3.1194372,-16.520407,-10.148729,5.3444953,-13.354336,-14.165554,5.029921,-3.3042805,-9.491607,-3.3198845,-0.20203254,5.066536,-3.0863698,-14.970596,-9.777619,-2.9048212,-6.5373893,-17.089722,-7.8973923,12.992688,0.7300155,-10.332698,-5.3411455,-19.198841,-4.3932543,21.847681,null,2.1905751,-5.2534833,7.1712236,12.308657,9.166219,-8.18231,-13.920723,14.456392,28.625595,7.854726,-11.957204,-5.123969,12.68868,2.004401,-16.06772,-4.35966,2.2495258,-2.9415815,6.130585,8.141282,5.7778773,12.283584,3.3794785,-6.2302446,-0.75282425,-4.6542883,-3.3367043,10.168379,1.1421479,-10.567418,5.5552025,13.411145,0.38135827,4.6946797,11.881486,-18.951532,-42.766228,-17.05354,1.6847035,-6.850853,-5.927209,-7.182315,-11.181677,-5.3296475,-4.8208733,5.3819942,15.551355,1.5654764,4.137084,18.322191,11.340776,11.899461,18.97163,17.15099,10.758257,-1.3505125,8.014141,17.470457,-6.1952496,-6.147129,8.878186,-5.5994763,-2.5684447,16.603964,19.598486,16.008986,-4.681372,-13.872153,11.975614,20.798563,7.44562,3.8410873,6.8810906,7.432098,-4.0137544,-13.660212,-3.7431152,6.169928,2.666483,-7.4385386,-7.240742,9.856551,18.436893,10.941192,2.7482874,3.7091737,12.944601,5.179677,-9.428312,3.3914857,17.707031,15.137178,11.184556,7.300763,10.398777,8.124347,-5.7505803,-2.1834693,6.2992887,3.1946218,null,8.138235,-1.8250649,8.439467,14.17932,-3.4677668,-7.3057594,8.372798,10.298469,-3.9803553,-10.067008,9.118582,23.420637,4.9954243,-7.99412,-2.6873047,-6.312402,-10.020934,-2.7879908,8.7362585,13.89291,9.329674,7.2504168,1.0587689,1.0416204,19.77161,14.547776,-0.76142037,9.382266,0.7162778,-14.598828,-3.6252,-3.2703052,-8.40408,-7.023633,-8.163469,5.3082857,13.792576,10.0589485,12.07675,1.649426,1.1944102,17.022408,1.916432,-12.375718,1.5866314,0.47893277,-10.883981,-5.678673,3.917481,0.2436205,-8.419901,-1.9294,3.7416008,2.777587,16.358524,17.58695,0.43398646,4.0873847,13.104103,16.209845,32.862984,33.996243,13.691046,15.785837,23.069702,3.324969,-4.564733,9.521154,2.0461495,-13.017276,-8.138405,-5.644649,-5.1262226,4.7712107,9.311094,7.6739874,-1.4419783,-17.136602,-15.121374,-1.3035944,-3.2482014,-12.322638,-9.920204,1.2307371,13.528915,17.106085,4.1904097,-7.1394296,-1.5995394,3.2135642,3.4632711,8.281772,7.4548955,-0.2653171,-10.613544,-11.4285345,12.578559,20.897287,-4.579023,-4.035985,null,-3.2866602,16.109789,0.54298645,-1.8827921,9.658744,6.3221583,-2.5119884,-7.360821,2.8934984,14.929605,4.959285,-5.987119,-0.8168204,10.983002,10.908198,-6.5599165,-3.164403,23.623577,23.81742,0.24644685,-9.808995,1.4856999,9.025912,-7.8938,-15.716146,5.2885427,18.429949,13.709276,9.585066,13.474598,17.424877,4.9251676,-5.8594427,1.8430232,1.8546715,-4.4555216,-3.805394,-17.926626,-33.23541,-14.219982,5.0207343,-14.841299,-27.598902,-2.3000088,8.337676,-11.98451,-17.99046,-4.271838,2.5056503,1.8412812,3.8026536,-0.68162924,-9.693549,-3.9339569,-0.3975252,-8.072713,-0.9700964,2.7524548,-7.1836815,-7.7284794,-15.817762,-21.432076,-6.3638277,-7.6052155,-12.2576,6.686603,23.816343,31.171976,20.60889,5.599666,14.566914,4.599291,-22.414225,-10.419571,9.105805,9.538769,4.0575743,-16.574545,-22.31321,-0.29551896,5.253428,0.79467964,9.61443,14.987776,10.770018,-0.37934974,-12.978381,-7.271025,10.685278,7.72191,-13.503657,-14.303969,7.2647333,15.114908,5.8644767,2.2171102,0.21132295,-5.441179,0.6991048,9.954554,null,3.324175,-6.649821,-17.05401,-8.701731,0.64106023,-4.367038,-2.0566099,7.0284963,2.903122,-7.2415743,-10.760035,0.6621233,12.908905,-2.7054677,-20.218285,-9.001609,0.7631175,-1.4428983,3.673178,4.465305,-0.26478136,3.9627094,-1.675346,-18.211697,-12.371326,5.453657,2.3565738,-9.093686,-4.8322206,-3.84331,-31.112822,-46.4977,-16.747105,4.7972546,4.4229746,20.399256,24.61745,16.383781,30.35843,22.711586,-10.107955,-8.088182,11.589048,10.35363,-2.4551296,-5.8148174,6.111856,5.2885323,-10.174913,-4.422015,5.086816,-7.255224,-12.095441,0.11247701,0.5433089,-17.245886,-23.8308,-0.3037357,19.188723,2.5449247,-11.298001,5.8608513,5.410771,-20.245724,-16.24317,3.424476,1.1517547,-3.5054097,-7.8065844,-17.862484,-16.123402,-10.053508,-9.599459,-9.409769,-8.627408,0.2551929,11.419257,10.009713,2.0839207,-1.6156648,-1.849067,-7.6756644,-7.671297,7.274558,3.4137137,-10.640884,2.693576,10.982985,-0.051707275,-0.88052386,5.0554986,8.747348,0.62824494,-6.2728376,11.764595,7.5965185,-19.163736,1.2288331,27.452085,-0.041172016,null,-2.2713485,-22.45005,-3.6060786,12.105693,-22.790422,-36.43698,-6.183388,-1.0320675,-14.923277,-14.185352,-11.179367,-14.618538,-21.434528,-12.7339735,12.083096,11.725742,-14.686307,-23.458368,-8.1092615,-0.9894018,-17.339884,-31.912699,-19.277203,8.864908,18.494595,0.83939666,-3.2969968,15.730391,9.116927,-13.453377,-6.3270507,5.4435997,-2.852904,-4.1891704,6.426373,10.854098,9.786175,2.3254805,-12.958757,-13.232924,5.6350217,13.467233,6.0258756,4.7341466,15.480972,18.825779,-1.2904878,-9.499718,11.623605,10.581632,-9.380696,-5.148671,-0.032522526,-7.7864556,-9.493475,-8.214803,-6.7507887,-12.20436,-22.155293,-20.391714,-21.686384,-23.388182,-13.971137,-22.506401,-23.390888,16.331442,25.921705,-6.9326525,-4.8320985,9.841489,-6.1670403,-4.554747,17.110329,13.582894,-1.1614895,-8.249711,-7.9733844,3.935886,9.681362,2.732469,-6.4685664,-14.81701,-1.9846557,14.373811,-8.462242,-27.046156,-0.6550747,19.502192,2.232018,-15.58427,-4.675014,7.249657,-5.163765,-8.147409,6.9545083,5.396188,-4.402505,-0.06868671,6.783331,-0.38829365,null,-4.7554097,-10.032969,-1.1228615,-1.6501136,6.3081803,20.497362,15.109472,-1.265139,-3.0454903,6.7518153,12.186821,9.8558655,1.4499469,2.2677412,15.796708,12.975727,3.0740974,14.402485,21.688478,6.9395604,-15.651537,-24.942926,4.6812997,32.35805,2.9817977,-25.190435,-3.4726453,10.423641,-5.487891,-8.297644,5.619757,14.199961,15.5066,7.50775,-4.8808117,-3.7731512,7.0906014,11.284811,6.1195297,4.044638,16.695652,17.892803,-8.057758,-15.987275,2.1395898,3.5743034,-10.238191,-13.391939,-0.18715598,7.3629894,-10.766515,-21.45012,-7.7256413,-1.8407544,-6.2802324,-12.138843,-14.571631,-1.8473201,6.1620035,3.6891766,3.72682,-7.7354565,-10.965428,9.299877,8.581398,-6.6434364,5.402651,18.6086,6.4597607,0.18174076,16.232054,20.859406,-0.76897454,-15.571895,-10.715108,-4.634021,0.2297153,6.3741784,7.8158693,10.987767,23.946535,27.18963,4.1845055,-14.85563,-3.9460595,12.476334,12.25017,8.63188,13.945642,11.554183,-2.4761684,5.5315547,24.752594,10.976798,-5.209243,12.605549,23.90033,2.275422,-18.600773,-7.3875313,null,17.810928,23.618902,-10.367626,-22.412985,3.4715753,18.37888,-0.42132455,-15.816058,0.34057736,14.962491,4.6709886,-5.669117,-5.0531597,-0.3214756,5.5946927,5.145431,0.45985445,-7.051848,-22.19225,-23.03796,2.2370787,17.993282,7.2590175,-5.1196027,-5.206535,4.3792286,11.385538,2.1583164,-10.219765,-15.302537,-14.648395,3.345591,16.763062,2.0584102,-4.8379674,4.1035895,7.0200152,12.38158,11.736285,8.199815,19.811794,17.96584,4.1058674,4.1885037,1.980669,10.094247,29.824266,14.738362,-7.4638915,9.525749,24.569143,12.185401,9.700145,25.511255,28.634903,19.578545,17.50083,10.75281,-0.21224838,7.904632,22.650078,17.900902,8.354549,20.4412,23.84046,-16.030775,-39.248814,-14.005857,-9.445874,-17.281612,16.050621,38.283092,9.075633,-21.11061,-12.400087,13.488306,17.602196,12.565454,16.350922,2.9494362,-11.254265,-2.073561,-7.2894745,-18.59836,-0.10505102,7.6138263,-12.651627,-10.551773,10.405951,3.252628,-17.00551,-7.1302834,13.137422,0.7367148,-20.325418,-8.420993,5.8039155,-6.9921274,-9.93232,3.917034,null,22.932453,1.9592301,-3.1292028,10.192374,6.633568,-1.0854521,6.731625,-2.7053807,-26.716343,-10.153331,19.84816,3.7784443,-9.26079,11.191674,3.2957184,-11.540383,14.5710335,16.75973,-14.676678,-12.235569,3.070917,-6.5033584,-19.410332,-8.426252,19.708061,11.202172,-22.515615,-12.832811,1.9583905,-5.2675996,19.719425,39.804523,14.604098,-4.4386816,-11.411145,-26.623533,-34.82008,-33.446037,-24.790941,-15.435222,-18.437101,-19.803352,-10.552239,-8.551483,-15.392927,-18.49707,-16.5831,-5.8025236,6.2350626,-1.1450795,-6.6117706,7.2191105,5.9826183,-2.0507903,8.138386,5.032921,-6.620901,-3.4526448,-12.73212,-27.176497,-15.938757,5.456412,12.596704,-2.4253466,-15.967029,-1.2646004,8.555589,-6.944424,-7.366719,9.152467,5.35071,-8.13238,-3.9664454,6.106371,5.0310225,-5.6422567,-18.420362,-20.859615,-7.210001,12.805576,19.578676,5.026788,-2.8546607,6.3958635,5.7499,3.0295548,5.677598,-5.3946366,-9.356517,3.5918384,8.707258,4.482526,-9.245504,-14.067093,9.367017,16.3496,-5.6684537,-9.950783,4.1815,7.6772094,null,-18.687754,-14.772125,13.275503,22.146461,-3.1384172,-6.4081836,25.173069,14.561059,-16.573948,-11.008577,0.49545276,11.926868,15.623434,-10.239049,-19.431011,1.7096109,6.4215865,-5.4937553,0.6039033,22.000286,27.191774,23.511395,22.411894,3.388049,-12.582924,-9.730715,-12.003624,-4.4004555,12.003323,6.9096503,-3.3113575,0.9026024,12.450693,11.986602,-5.8223515,-9.332076,2.5507448,5.329335,5.1748834,6.503298,9.407897,3.463847,-16.042976,-10.746137,6.5442033,-9.952341,-23.93578,-8.577397,1.4540693,-5.550649,-10.136043,-0.74685633,3.4427032,-1.5980624,9.2821245,14.285072,-0.38706344,4.203992,13.837901,-0.3450313,2.5073729,32.62363,34.36269,3.858684,-9.150581,-5.610999,-10.518739,-16.106913,-16.67477,-2.7714486,17.589453,0.25000182,-28.191277,-10.749299,14.074019,11.359394,11.08756,13.324399,-1.3064648,-9.077462,10.894576,23.509148,4.6158667,-10.942649,-3.8042316,9.086683,16.985872,12.654968,-0.08261259,-0.59960294,15.155438,18.458557,0.5022514,1.8630385,16.997252,-1.4469277,-23.006525,-5.7377768,19.654335,16.503641,null,-8.775667,10.976374,-2.8695195,-18.331274,-7.835965,-4.0318017,-10.589493,-13.66345,-2.3775082,-0.7626513,-13.605812,-0.107065715,-3.0738144,-29.703327,0.089126006,19.76137,-24.834484,-26.215078,8.414875,0.21104214,-10.054594,-0.24297686,1.5700274,-0.11211604,-6.898221,-7.8703465,11.699825,12.793008,-5.5577955,1.1554127,7.8266582,-4.7530484,2.0923085,19.219753,13.115059,-2.4604356,0.99766225,10.554956,-7.645159,-16.57263,11.172544,15.080237,6.36586,21.92129,13.054559,-2.1129937,13.973393,17.17748,12.076693,25.372482,32.276386,22.731735,15.366066,19.53617,12.750224,1.5325994,20.300303,33.275288,19.29044,11.793523,9.841454,17.882967,22.820072,1.9672552,-2.8259344,7.108921,6.917562,13.802211,3.214538,-19.617626,-19.22748,-9.561391,11.53101,21.140947,1.2059888,-1.5362794,-5.6974645,-23.007067,-10.097021,-6.9021683,-28.589369,-19.709661,9.692837,18.715412,3.8785477,-10.177407,-16.397083,-18.20349,4.2566996,13.811039,-18.604973,-26.280254,-3.8209774,0.98578054,-9.907149,-22.21271,-7.9837646,14.86594,0.64134395,-15.922022,null,8.173437,8.507333,-3.9921045,-1.0965552,9.990583,12.591164,9.781491,0.2722242,7.34335,14.407844,-5.373242,-4.4912415,19.463982,21.789705,-0.5138923,-20.75489,-0.97951746,27.043003,20.31895,15.2319,9.879833,-0.9736313,6.4554553,0.77523535,-9.541683,-3.6878285,-8.475355,-5.8279357,6.774617,12.862011,14.091533,-12.3294735,-29.354591,-13.381841,-14.398796,-7.4297686,10.495678,-5.2688537,-19.016317,-24.857622,-30.347607,-5.658651,9.53234,-6.5499563,-11.098502,0.33709922,0.73596835,-18.03708,-22.309593,-4.949392,-0.5014741,1.5770143,-1.8548173,-18.358328,-10.367034,-2.2804232,-12.779944,-9.243289,-10.311778,-9.41885,1.0853221,-19.849419,-34.412582,-18.910759,-21.771381,-22.319313,0.17138639,15.872884,17.485704,-3.8294442,-29.490082,-18.12134,4.4902344,7.025915,4.451288,1.237578,0.02441758,-5.556197,-21.166395,-0.7902871,34.325787,9.428837,-9.316137,14.367043,-1.7906618,-12.842954,15.775176,8.145803,-4.4730783,-3.7867768,-23.135462,-9.89257,18.021042,9.002027,-3.9465375,-13.153703,-8.468871,6.811089,-1.0948201,-1.9385302,null,-0.53709376,-7.6719375,-8.83056,7.3191442,5.676706,-6.2297025,6.6702194,5.5143166,1.6144139,12.608469,-0.52326035,-5.191215,11.987871,3.4264622,-12.56957,-5.141866,15.206282,18.408941,-11.318092,-21.205313,18.535467,41.15653,10.354776,-13.700463,4.6606574,13.057575,-3.2051744,3.9687352,15.8291,-5.3347654,-18.38665,2.2196577,6.115531,-15.11694,2.8235354,36.58429,20.129866,7.6394525,21.58889,6.1451073,-7.8020797,5.4278283,11.177502,6.9860926,-1.491307,-1.2822411,8.51829,3.7074337,-4.359233,-12.262097,-18.751842,-3.1779456,3.064388,-12.440374,-13.921195,-2.146608,7.015,3.2351422,0.3772187,11.328555,3.55197,-10.420314,-9.770075,-17.23911,-4.2180123,22.588604,13.124554,-1.7172934,-5.0105343,-10.346933,-6.460742,-3.131178,5.6594486,21.509935,15.182642,-1.8193758,-1.0451311,21.099138,25.623953,-13.688377,-29.219513,-0.5428039,9.698846,-1.1139394,-13.575257,-13.528454,2.5744545,1.4179147,-3.0035355,-0.40672794,-11.264367,-2.5940204,10.2527075,-8.342821,-6.219682,17.5785,7.596108,-20.903448,-20.983633,5.5749755,null,4.096096,-4.6809554,-14.334342,-5.332457,-7.171662,-16.82607,-10.394014,-5.0451293,2.5418682,4.29934,-11.155756,-6.2487416,1.1502918,-14.355362,-5.0427074,16.461716,3.3794143,-16.155376,-11.898035,-0.65017056,-7.9771643,-27.532759,-26.96708,-3.5032594,12.265815,4.413868,-7.5067277,-7.3196783,-6.729056,-5.254576,4.35658,11.133274,3.3304088,-16.603363,-16.642715,8.859927,17.926542,14.866715,13.35637,-0.7639114,-4.5440397,4.7372017,8.101947,12.265287,3.6571589,-1.7691609,21.221615,28.41368,10.312973,4.22998,11.385948,17.749836,12.520457,2.2863503,-4.499799,-5.074797,13.324964,20.202562,-0.053571947,-8.920643,-16.669043,-21.545229,0.9251271,10.580067,0.72647035,-0.43037733,4.2186065,9.901354,0.80981505,3.235804,28.775995,9.513825,-16.25013,11.233238,16.983612,-12.627038,-30.920462,-33.360737,-11.918697,-1.2325011,-15.258625,-10.0369,-1.784728,-3.1818826,2.9921603,-2.831806,-13.12413,-7.180242,4.0986495,8.153418,-8.412949,-27.552774,-13.93924,9.559217,2.385878,-13.026907,0.42997348,11.2122345,-1.7900493,0.3747385,null,-1.737446,5.5049195,7.147267,-9.256873,2.125755,26.48594,3.6071362,-8.908555,10.385176,-0.4874324,-2.5956082,19.068708,9.791856,-4.243511,-6.3943896,-9.281676,0.6491368,9.404404,18.600487,13.255617,-18.675291,-0.37565294,35.7851,4.099348,-19.897045,-10.79817,-9.381707,0.7259087,-8.035787,-12.363279,17.927084,8.15544,-12.239854,2.931441,0.16509286,0.96651757,7.0695534,-11.012766,-4.0495424,10.965751,1.5688635,-0.9947371,-7.3076987,-12.320851,-3.003399,-5.2910147,-6.52883,0.034709483,-5.8321476,-23.07858,-33.742718,-12.380426,5.5667353,-15.916584,-23.844992,-10.385294,-6.165105,-3.8701284,-13.461808,-11.945747,5.732708,-12.557665,-19.283257,17.54872,21.674377,4.3187933,6.6372676,3.0928428,4.0714717,17.342913,19.482058,16.029789,10.6529045,-1.8963406,-9.068771,6.094575,32.809517,30.106775,6.9359436,10.910869,21.002491,8.160269,-1.4073521,-7.054034,-13.637534,2.419667,18.982748,6.0363374,-8.684395,-1.7001106,17.60479,24.346912,7.999187,6.0859203,18.532314,-1.0917794,-16.516148,7.89139,15.983567,-1.2442334,null,-12.734748,-5.9838624,10.815927,9.797232,-3.7155306,-6.112385,-1.8801858,-12.399386,-19.700777,6.0213895,22.142555,-1.7339138,-8.109918,9.046364,5.381199,-0.88593894,2.7032049,1.946042,-1.0850735,-7.0046315,-3.524396,-2.4746068,-27.357445,-27.082952,20.226011,45.7009,13.526792,-32.95412,-33.38908,-9.555192,-12.288905,-7.082972,11.267311,12.621014,16.71002,2.5993497,-12.702484,27.197506,47.043163,16.283375,7.7199564,12.496798,18.354347,21.015692,0.92741936,6.2855954,27.062553,16.07785,14.252473,22.616737,16.633759,16.292355,14.749912,11.197684,12.588004,13.299324,13.551016,-3.2587116,-12.154172,3.213681,-4.684079,-1.7649281,32.86701,28.514044,7.409181,-0.79703784,-17.594894,-4.287264,21.412352,7.999863,-12.414829,-8.412963,27.800379,43.961693,-9.907902,-32.49283,10.417579,16.886387,-1.4169526,-8.946509,-23.046581,-9.152809,19.524837,10.719313,-15.638112,-20.396532,2.4334888,8.992647,-11.196616,-1.3715981,10.942397,-5.9206357,-2.2013967,-4.0169883,-14.326634,16.685833,14.892556,-23.979454,-6.608142,9.513893,null,1.1642721,-11.0244055,4.4083056,-4.5731134,-6.39887,18.276932,1.2388049,-26.043339,-3.8290982,14.743518,2.1776617,-5.3327203,-2.566342,-2.0732014,-2.0075738,-1.3994355,-9.097009,-13.70502,6.372316,18.181799,-7.3840837,-23.124407,-6.5475087,8.798746,14.1911745,0.3851546,-33.320206,-26.733364,25.765162,34.998863,-7.620555,-19.43443,-0.5198238,-9.612434,-23.43329,-8.540565,-10.938899,-35.83245,-33.865498,-17.00142,-4.892485,9.105733,4.5693846,-17.426783,-31.216139,-26.937988,-9.741698,-13.427241,-31.475292,-19.87893,-5.2210937,-14.337468,-26.503166,-29.690681,-11.495893,0.1069518,-16.04987,-15.740461,-13.658105,-29.026525,-18.868095,-4.7428794,-6.5578804,-2.6473982,-9.527215,-15.099974,-8.491638,-8.005178,7.2838383,22.295193,8.338005,-8.174526,-19.982044,-20.104242,-4.4945383,-4.422071,-12.945559,-10.676631,-3.3266246,1.2101328,-7.744708,-8.968677,-3.1569965,-18.849195,-12.119375,18.29297,4.3836417,-21.12283,-10.490653,-0.22002387,-5.6816306,-2.6231656,5.556721,-7.7414956,-19.92067,-0.6407098,3.6175003,-9.653813,10.397376,20.933477,null,13.208207,-14.561489,-14.502547,7.9473076,8.123692,1.0341138,4.102637,12.91778,10.098912,-8.552311,-17.010069,3.2691648,27.22133,4.084007,-29.665106,1.7301356,31.786436,2.9178965,-8.37174,9.278392,9.561449,5.54428,8.187366,6.7318563,-4.981334,-4.48377,27.260626,37.31021,4.662459,-13.832596,-7.506557,0.44145793,7.69507,15.410598,25.430262,23.648565,2.536521,-14.382791,-9.000214,12.411224,15.617131,-13.576148,-28.49384,-6.9879904,9.948193,-1.0639124,-9.785313,4.334776,5.635631,-13.338184,-5.0841007,19.749952,18.113276,5.5731354,1.9224459,-3.742617,-10.839576,-8.97489,0.0046260147,14.384255,29.218412,28.250008,20.542389,12.709327,-6.757931,1.9112308,32.314003,7.996043,-22.398315,-0.5970198,3.9134145,-9.914434,-3.6825776,-9.91764,-14.182112,10.743768,29.56537,16.709839,-11.786538,-14.225866,10.58964,14.4014015,-3.356239,-12.915114,-9.059853,4.590627,9.758165,-3.2026079,-10.337481,4.126207,13.326006,-5.3930306,-9.001389,17.6893,10.8134165,-14.160469,1.4425061,5.9918165,-20.27395,-9.669261,null,-22.825119,-9.782662,2.152703,-4.7594023,-9.239487,-18.198627,-17.681639,-1.5608976,-4.3986554,-17.900965,-8.479483,11.9228945,4.380115,-22.103203,-9.9981575,18.926022,6.945676,-11.734708,-17.606379,-19.525864,7.7071853,22.24776,-15.505175,-39.65461,-3.0819318,46.447037,29.636177,-22.362103,-9.279324,23.244661,10.95648,-0.7882537,-17.170183,-29.5916,4.2504864,18.751257,-10.8800125,-18.730894,-7.1092715,-4.919902,-4.2031937,6.1451583,13.584898,0.66243505,-7.4512033,-3.6462705,-13.168262,-18.967398,-14.103819,-9.629055,0.34172466,-3.757512,-14.209643,0.68723655,17.075483,18.242844,12.682574,1.5690932,5.164627,20.092672,16.496698,-2.1309998,-18.436766,-21.558886,-16.888948,-21.547714,-16.262379,11.11296,15.629538,-12.02181,-24.387152,-17.430132,-9.805647,8.673152,19.843344,-1.2893009,-26.791235,-26.329254,-2.5313194,10.108193,-10.95793,-19.527403,-1.3825743,0.08405968,1.8232752,11.651011,-0.2735383,0.43440422,20.863537,10.337471,-15.42933,-18.362104,-8.329646,-0.4232006,-1.179694,-11.841081,-11.414917,8.979493,4.6298656,-24.669157,null,6.790468,16.68367,1.7008725,-16.595325,-6.220295,14.472856,19.646624,10.611342,4.347236,10.94512,-0.02948777,-28.81867,-14.794975,22.143826,12.535129,-11.445318,-3.6045227,9.34651,7.033788,-5.6018248,-12.50957,8.1360855,30.294254,12.977484,-20.074722,-28.50352,-9.013754,17.830181,18.53651,2.9684892,9.375903,11.741269,-2.1252015,9.068016,20.981674,6.658357,3.2232993,6.3853307,-6.2301397,-21.500885,-31.49035,-31.595568,-28.977417,-31.077623,-23.431759,-7.248668,10.09468,17.105001,2.4474468,-5.690778,-4.5603023,-6.4146338,11.689799,7.3295407,-45.017876,-57.08899,-20.629562,-7.459658,-8.997296,-3.2810946,-9.519541,-23.816263,-13.398566,14.615767,14.707693,1.3742769,2.0324514,-6.8213577,-4.6119523,18.311846,4.2405167,-32.685555,-37.36633,-20.659363,-2.476031,15.498812,16.318838,-13.151823,-23.354382,20.66059,25.54157,-27.133612,-13.526904,27.410593,-3.8245285,-20.883802,8.816119,10.703523,10.231264,21.145292,-1.0260739,-11.575429,17.363886,17.271505,-2.1068008,14.981263,14.031095,-20.670534,-4.5597153,29.498768,null,1.7176868,-4.250365,7.263243,-2.7503324,-6.0307813,22.240274,9.763201,-17.15346,17.032131,27.249378,-19.542196,-12.364357,18.094406,-9.611319,-13.781753,19.524078,2.7465832,-11.688822,14.600271,-6.6185055,-43.13097,-7.851695,29.297836,6.084597,-19.523222,-8.223675,15.106121,19.82793,3.3805962,-16.236082,-22.140974,-7.0857215,8.3994055,4.8497767,4.3285475,14.505608,15.264324,15.951315,25.099152,22.64988,14.279111,24.210943,34.627037,27.379442,30.794544,39.893463,21.78591,3.4557912,1.1519225,-8.412982,-7.1844106,8.531195,9.764703,15.540461,37.870365,41.65168,26.529585,27.084045,36.943592,26.099216,8.866532,5.3409767,2.3917532,3.9357553,11.613558,11.516192,11.970019,0.3677222,-26.23364,-24.557545,-3.6569972,11.846509,29.278252,12.168192,-29.867172,-21.71512,11.25085,6.3901086,-12.19906,-9.314891,8.499886,15.421638,1.1492785,-9.834836,-5.8235965,1.4549482,12.556365,16.11674,-3.0000262,-13.373958,4.8791494,12.123039,-4.2000947,-13.398465,-8.416568,5.1807103,10.886224,-3.6073365,-2.34481,12.972545,null,28.721415,1.4066329,-10.008133,3.6585107,6.9495964,-0.5737614,-3.087728,-4.8718605,-13.194446,-11.602284,9.755009,13.834917,-13.049806,-15.72154,7.8536105,-1.0867248,-24.03321,-19.646618,-6.9378047,1.911064,2.6030715,-11.062315,-22.084988,-20.81255,-5.442619,-3.033714,-43.233383,-54.884354,-4.4111114,7.851667,-19.830246,-3.6274242,14.205464,-15.963572,-35.81698,-18.659855,-5.3187976,-4.467505,4.313988,9.700427,-11.344354,-45.31428,-53.87695,-32.118847,-23.436296,-40.47506,-43.554146,-21.095177,5.3161616,14.344343,-7.620647,-35.805107,-42.27723,-40.313454,-38.41431,-29.29107,-15.1143465,-2.569526,6.024117,11.020407,-2.2568667,-29.158043,-25.649431,1.4594221,3.7695303,-10.918703,-12.268698,0.20105875,11.587069,9.475034,-1.9904184,-11.419753,-2.7900875,21.00683,15.113523,-15.831639,-6.4654174,32.269505,31.013811,-9.845822,-28.113503,-1.8456868,16.256496,-4.7282367,-17.967442,-0.954994,3.417118,-11.416111,-6.044238,8.424681,-1.9886595,-16.213995,-11.315045,1.9819751,10.285184,1.5105201,-5.1581397,11.058564,16.414797,1.8033028,null,-6.4860115,-6.0904956,-3.3273623,20.161928,18.094328,-1.0758125,12.220532,8.61303,-14.697135,4.0864816,13.914292,-17.983543,-10.575078,19.01472,-4.673424,-18.343084,17.129467,13.594461,-22.64676,-10.658868,8.658857,-16.089104,-20.868715,23.342337,36.36678,-12.1530075,-39.877186,-5.4910975,25.042727,11.286374,-4.918343,-7.505566,-24.058937,-26.126387,15.521337,37.876316,10.893062,-9.60754,-9.422353,-9.785897,-7.190024,-0.0903334,7.803417,15.381521,31.567526,55.191498,49.039654,19.47192,15.322165,21.103518,9.83317,8.528679,30.213644,45.929905,30.967987,8.105216,6.312482,4.221803,-11.422758,-25.701612,-32.820934,-13.100381,26.405577,31.412859,6.925657,1.8138368,1.0359864,-20.049076,-21.172092,13.9712,33.502705,19.069576,-1.8576651,-13.432682,0.12191318,22.630491,14.160511,-0.6896483,9.523576,18.423532,12.072131,2.9173346,2.7075717,14.837088,20.256115,8.014354,-8.325522,-12.129477,-0.47993538,2.4319692,-4.0966053,8.542172,16.534008,6.072724,14.485569,9.032215,-26.379515,-3.7189004,41.10494,3.2905097,null,4.5799184,-9.13238,0.30992082,15.299041,-16.72166,-24.121408,9.322629,-1.5923803,-25.655718,-7.401256,2.3192062,1.6837817,15.480936,2.6011913,-20.574228,-13.8148,-11.796317,-16.601929,-0.09851512,6.666372,-8.831426,-3.0208232,21.019342,6.542525,-30.599709,-13.550621,33.09962,21.77334,-23.800682,-27.715815,-7.875749,-6.8839827,-0.6624205,7.370705,-23.887823,-52.5393,-37.405396,-21.07237,-7.367409,21.415281,37.148033,30.54267,3.448557,-30.971912,-41.85287,-44.643288,-52.083668,-47.8315,-40.17975,-35.671906,-44.302383,-63.493793,-58.220078,-43.472416,-36.652706,-13.346073,8.963037,20.600796,32.106922,21.384008,-2.463136,-20.445566,-29.958092,-16.702406,-7.453568,-12.021059,1.3544167,-0.86299,-30.10273,-26.392178,6.5799546,21.092352,5.4020004,-20.19149,-19.620901,4.3840985,9.472296,-8.613341,-10.772988,9.583165,13.133227,-0.7661102,0.0074839694,4.6608715,1.4523194,-0.69665444,-4.085109,3.351221,15.076972,1.9704558,-9.301532,2.4213033,-2.2314212,-23.78339,-21.627493,-3.11076,1.5576357,-3.0568054,-6.0020905,-10.924447,null,17.761618,-16.114962,2.1481247,6.257658,0.27963904,-4.185483,-19.846533,-8.755283,1.3868955,-6.5288243,10.208852,15.391497,-17.547647,-21.059013,20.387875,20.585938,-24.61678,-11.136788,23.066753,-8.803702,-16.35623,26.200275,18.532791,-18.334806,-13.955442,15.674256,16.602085,-16.69832,-25.38,1.254434,24.30131,27.279932,5.159733,-14.870654,-21.249296,-22.64055,5.0882764,22.83096,-0.36587852,-11.8991995,-25.295538,-46.025368,-32.201538,-10.530671,15.282112,45.98854,46.716167,44.048977,47.18071,49.354027,67.315384,61.776184,34.466064,25.559666,13.159864,-8.665166,-38.64827,-62.26246,-41.794395,-14.15534,10.453109,47.79474,27.71881,-27.118887,-25.995392,-5.0286818,-3.6519744,0.5785606,5.006125,-5.2177463,-28.617826,-38.64555,-19.57283,2.4013956,2.1823769,-13.674206,-15.298434,-3.6872742,-8.345711,-18.28392,-20.696589,-16.593088,-0.32804525,1.9416022,-4.430759,1.519342,-15.950143,-24.452091,12.903454,11.16473,-25.680677,-6.1255856,31.55031,22.84816,-5.255567,-9.834511,9.470129,8.486315,-8.523508,6.839851,null,-14.622547,30.808165,4.650663,-28.06502,4.8122077,12.210385,-5.5738454,-0.41790038,9.199211,18.753149,3.188323,-27.246248,-10.683387,14.548139,10.919884,15.745169,21.42562,11.961611,-3.3393438,-1.902095,19.962273,3.4133108,-18.466593,29.57041,59.287487,16.044504,-10.789983,23.051785,58.525898,26.719112,-11.483765,11.960781,21.781824,14.665149,38.481895,45.540104,26.415993,-4.55341,-18.537104,25.958597,64.643486,78.8345,92.69564,51.57934,2.804146,-2.5473142,-22.38969,-44.6825,-55.971245,-64.152626,-45.284027,-25.910925,-7.9918447,13.791096,14.578062,26.841587,43.01404,40.859364,40.846527,7.7506275,-32.14523,-16.018118,10.772131,25.66279,29.12692,-2.2299888,-33.00117,-23.111282,15.349562,32.366684,13.288788,0.16053835,-8.876963,-1.4230735,27.643993,8.928775,-13.5274515,8.10923,-5.9592695,-22.257778,11.255545,26.196198,10.864891,2.5312943,9.171006,6.7138095,-10.509287,-2.04516,4.6423216,-0.016092956,21.78346,14.519177,-4.935043,9.160365,0.4302236,6.6979136,14.547957,-28.411936,1.5299251,43.991707,null,-24.095675,1.6230689,30.736671,-15.681835,-15.589025,11.943682,-9.1185055,-6.51636,15.754132,23.483383,13.638274,-5.123582,18.42776,16.209923,-30.142363,-0.060548693,31.569485,-9.206849,-11.773217,26.266771,28.828629,-2.8021023,-1.5280926,38.541954,10.66454,-34.600376,9.558187,34.227882,-2.601327,-21.998554,-23.462612,0.0019285588,35.201237,28.277668,-12.840043,-45.21503,-38.120422,-5.827662,29.882904,55.589535,27.438503,-26.997396,-46.07961,-38.39262,-13.544243,1.7120001,4.651872,38.36272,69.36,68.557686,50.126152,29.373001,36.957844,17.118223,-39.90894,-43.434483,-40.02217,-49.341843,-2.5997262,44.691326,47.525764,13.029868,-29.71359,-22.239721,-17.866482,-12.652676,48.366703,41.893078,-36.51085,-50.267956,-11.409598,24.75029,6.2510347,-41.90238,-16.096699,17.77713,1.880121,1.9775913,0.5452104,-0.86314464,12.488058,-0.9506715,-1.1037121,19.7197,3.147959,-14.527925,7.929621,27.432934,1.03329,-21.811975,16.425825,33.142014,-9.701367,-7.60597,23.497828,7.229842,8.421553,32.745743,-3.581307,-26.7875,null,31.32108,0.72890073,-19.85489,8.159171,3.5299551,-15.104586,5.538885,34.828003,8.884839,-19.580452,15.763102,23.874052,-24.352213,-18.891985,35.91714,28.58381,-17.951134,2.4406044,22.280329,-21.062498,-17.840012,9.731269,-12.308834,-19.618046,-13.677251,-3.5956593,10.562545,-21.494898,-27.685148,7.4755287,3.0270672,-2.8337708,-24.688677,-62.340355,-28.734764,12.228198,18.245796,18.00586,-25.811285,-62.278282,-50.455246,-19.871756,41.43424,78.0563,61.30853,39.525703,-1.1254413,-32.936726,-19.478472,-7.8195734,-15.581898,-26.2237,-1.8711406,63.989773,91.842186,62.263588,26.858208,0.3221977,-24.693924,-40.818157,-14.198734,41.735523,57.787323,18.55121,-31.491903,-33.300426,4.742443,18.69177,12.555344,-9.958154,-36.246284,-5.496617,24.30686,-2.327623,-12.761076,8.392707,16.22461,-10.993434,-24.59157,15.813549,3.330948,-45.450897,-2.0809057,28.65751,-4.475706,1.5671141,0.7976198,-26.35243,-13.602133,7.6237855,-4.873038,-27.041895,-6.2957196,27.78909,-0.34856224,-22.463099,16.096022,22.321987,-23.09239,-23.386593,null,10.777728,13.67651,-5.243099,-3.500136,-0.48100233,2.9832442,-1.4829578,-2.1041434,6.464309,2.4716496,1.417402,1.0477554,-13.609401,-12.068465,4.5499153,-8.133531,-21.343819,17.78839,24.90669,-38.68449,-33.513096,21.74844,-4.6034,-35.45189,-5.3747983,6.4367137,-13.975074,-16.013582,15.064434,27.60605,-15.307805,-53.718414,-39.72817,6.8618727,33.528957,-1.9801071,-51.22691,-62.110977,-49.290615,-8.025922,45.75277,50.041695,-6.0307455,-60.584854,-58.779263,-33.26731,-31.009998,-27.008617,-2.5122385,13.116259,-1.3555624,-18.741693,-19.62318,-34.76787,-48.929264,-29.931507,6.3913813,57.586647,72.228874,15.335931,-25.874254,-25.725885,-13.488153,10.356585,15.380412,15.330309,1.3310838,-45.79945,-20.895977,56.7921,54.849243,4.8729076,-15.736035,17.992847,47.566494,-3.1179867,-25.817055,25.995106,26.672068,-4.5002418,6.5794764,17.422274,-4.7866592,-14.503657,20.149015,20.74139,-20.8535,-9.291243,13.975526,6.334266,4.6188116,-4.96026,-9.133964,-10.760504,-12.681682,5.950456,-15.71749,-20.562733,25.948673,-18.55649,null,2.1509233,-5.0053825,18.445374,2.3596642,-10.255329,14.657494,6.6558704,6.2464123,10.281127,-2.252319,8.777827,9.172345,24.989542,41.09476,-15.43549,-17.809126,31.090229,-9.869826,-29.252384,21.13226,24.995531,1.5835708,-0.1008385,9.884827,2.6207192,-23.053703,-10.754537,11.673205,-8.141714,-30.128275,-28.231798,9.003504,43.76557,-0.54376084,-54.914852,-29.227156,23.43465,40.050583,14.976497,-21.411674,-42.126347,-51.251156,-32.872974,12.72379,49.07641,72.67781,76.941154,49.9654,31.19921,37.58972,37.004215,38.103966,55.320854,48.79268,21.875366,17.777765,1.8704761,-53.988,-81.74083,-32.947483,40.474537,43.94385,-26.000761,-58.872345,-14.330741,29.941317,29.78198,7.000513,-11.924154,-9.506007,14.612849,25.252403,2.0197818,-5.2126365,13.511849,-6.6992517,-26.393812,19.997343,27.670088,-37.288868,-23.102217,36.48271,-5.0388465,-38.661884,10.104377,13.0778,-5.016734,14.245692,-0.18046078,-15.615134,4.072619,6.327307,-6.5386944,-14.327819,10.004862,31.138212,-16.293379,-26.157558,23.531729,9.013095,null,7.107089,-19.474005,10.2605715,24.186823,-5.582312,-3.6318502,7.5617204,10.577661,9.017417,-12.139671,-7.48045,-3.069408,-21.644152,2.7713566,12.181603,-11.095782,7.4997616,-8.400756,-38.611115,14.147821,21.742105,-32.68665,-6.689795,26.00145,-7.940991,-10.926123,20.577717,11.676121,-15.552683,-0.94070774,39.18483,42.7288,7.100214,-11.953019,18.035202,66.4681,71.929474,30.402811,-6.453582,-22.98439,-19.732782,22.954674,70.06283,51.95934,-14.113406,-57.749138,-65.02262,-58.60293,-56.78332,-65.979454,-65.005455,-60.9103,-82.880295,-86.57649,-37.040455,17.230946,48.66625,49.400326,9.775098,-34.678555,-52.879734,-26.951767,32.959415,48.371143,11.47396,-12.7162895,-16.422857,13.774331,54.425537,27.676474,-16.688242,-0.54677397,31.779615,23.10962,-9.280957,6.0581517,29.734459,-19.223467,-17.76371,43.252026,3.0123522,-27.593924,23.014036,9.201875,-13.712286,5.929314,-0.49114078,8.738796,5.839657,-24.397617,0.34616423,14.378093,-6.413413,-3.1034188,-19.260075,-17.15247,23.404278,4.6744885,-22.590227,12.701399,null,-22.226093,15.954988,13.352182,1.0652709,27.618465,5.8450956,-14.231972,10.74406,-7.314209,-17.408018,17.82392,8.897344,-10.316772,9.807983,17.067327,0.31237915,-21.440996,-14.755872,23.656286,15.485905,-13.789044,8.772865,12.627895,-11.125026,6.6796117,15.582455,-4.2624707,-2.3384933,8.592978,18.309568,15.108163,-12.63888,-9.9410305,28.067291,40.774277,8.033273,-38.627026,-26.287212,29.372513,29.194399,-0.7910393,-14.074265,-37.60026,-35.79146,-3.5699992,18.069628,58.166054,84.76418,41.039333,14.248164,62.271103,91.10161,53.088886,18.703411,5.9144716,-33.1051,-67.741356,-38.48231,33.636414,72.03227,19.150389,-58.651054,-45.758656,20.472736,34.316425,-0.54255176,-20.290625,-13.932386,-9.602277,4.4001036,19.516973,-2.987858,-17.918123,-11.584208,-22.663733,-1.9617237,22.779406,-15.294348,-22.90288,12.852862,1.6425881,-17.911024,-5.98804,6.034975,-1.2857037,-22.781738,-14.400425,10.198471,4.4092116,4.2103252,4.5764894,-9.006275,16.579163,24.984276,-25.161781,-17.732624,29.766575,2.7861989,-22.01167,16.909315,null,-44.84555,13.291434,27.945704,-36.396317,-5.1719017,44.096645,-6.5429463,-26.33563,21.021658,14.086345,-14.184464,10.725297,21.839994,6.6481524,16.015022,11.704997,-2.4120035,26.862612,30.553991,-19.79797,-1.5381259,58.26726,18.68342,-24.141356,22.686077,22.229517,-15.695158,11.038143,11.361102,-21.993189,1.728467,21.902214,1.4045515,-12.949686,-26.16987,-31.704206,1.205442,43.154514,25.632872,-36.002434,-51.89117,-29.15424,-12.13015,15.92901,11.530762,-46.35436,-66.98831,-48.657936,-71.79735,-104.76186,-82.944565,-58.226166,-65.62559,-35.01608,16.942875,18.719599,3.8878741,-28.06841,-81.99631,-60.40879,13.776488,26.194082,-3.3534145,-17.439524,-15.245369,-7.7205567,4.132958,20.714994,3.4509578,-39.574043,-25.127438,10.094771,-17.240604,-29.621412,6.97992,-6.1038923,-27.299597,14.754618,12.205038,-35.796005,-8.939503,27.511713,-0.9514494,-16.511505,7.557987,19.575436,-0.3751125,-12.731558,-3.3513956,-11.325179,-2.4584186,16.38637,-21.178988,-21.274578,20.820623,-11.033587,-14.178052,34.79286,8.047309,-20.9157,null,6.940024,2.2535625,-30.588013,6.7143044,13.114205,-34.710472,-4.135469,19.056532,-13.4334135,-8.99358,-16.572952,-32.33428,3.7481027,12.249637,-25.050264,-20.409243,28.359138,24.20299,-33.71097,-14.183644,35.091473,-9.826752,-26.074265,27.572353,12.626478,-17.07014,9.67385,6.8621826,-3.9691696,36.352627,44.303673,-7.2105,-27.084229,-5.070115,9.742478,20.30499,20.088528,-6.181683,-22.7421,4.189997,42.792366,26.32343,-24.610563,-25.945047,-9.345096,-33.17386,-37.725704,4.105694,31.66408,26.488571,20.514545,16.689558,-9.173409,-39.82145,-49.99143,-46.2214,-8.112282,45.697586,36.28693,-15.702335,-24.441603,6.35518,10.582257,-16.158907,-13.697609,-1.0250092,-22.084015,-15.571044,15.849225,4.3490095,-7.9300976,-5.2262807,-13.601274,11.247214,25.641788,-25.5833,-27.087263,32.84908,15.107657,-27.936535,7.7317457,30.398539,5.254598,3.8637366,-0.5115146,-12.418754,10.799776,13.409994,-11.370218,15.852199,42.49944,-9.835869,-32.438297,22.759329,6.7969656,-43.44713,13.2632675,34.734917,-32.33015,-15.466421,null,-9.677342,18.30228,-16.99011,-22.842089,17.874624,-7.044821,-28.637264,12.256148,7.4650145,-25.686903,0.67608166,20.747913,-13.553755,-26.292168,4.626406,20.821432,7.7384076,-8.337157,-8.088788,5.0382338,-2.278291,-22.032013,-4.3945403,25.952234,12.597528,-22.424057,-31.565437,-8.400853,14.723247,-5.1322746,-45.319096,-36.315697,-1.0707188,-12.742487,-41.918995,-43.25708,-46.040245,-38.904644,5.5679274,31.616161,5.970727,-24.477589,-27.200169,-13.745775,1.6055692,18.330023,23.792467,1.6154872,-23.217327,-21.894005,-7.562459,1.3650203,7.8425446,25.39523,41.302895,15.005944,-34.388687,-36.156246,2.400704,17.765114,13.075482,20.439436,23.69063,8.752253,-10.324836,-25.053905,-27.754574,-13.803683,5.522178,6.2268753,-12.885864,-7.269527,10.0322275,-9.773887,-3.1005428,35.699486,2.5849826,-28.318357,27.542635,34.115078,-29.886263,-23.081955,21.068317,2.6847882,-8.980935,24.742655,8.249975,-20.548492,22.539185,24.256596,-18.280638,18.827362,25.055788,-36.888565,-3.9392421,45.53721,-4.8451567,-26.873447,13.583069,14.507855,null,8.452411,-38.672928,14.557684,40.197433,-41.482826,-36.070545,35.918682,2.6892252,-29.447096,22.09716,14.305797,-39.81512,-15.629429,12.060382,-16.28725,-8.355794,15.03148,-7.5572906,-3.7709355,19.311451,-12.279431,-26.072443,16.68218,15.0390005,-30.448956,-20.797577,27.35534,20.43755,-31.411097,-24.618061,37.637745,28.844013,-38.9269,-36.918583,-7.6608443,-32.63774,-28.565199,15.943069,1.5692662,-43.531353,-38.47146,4.014923,22.572023,-19.17727,-68.81692,-60.96692,-25.270998,-1.481629,9.691094,8.384767,3.5187654,-12.226593,-46.414703,-64.21307,-47.10027,-11.904675,17.774944,6.9436383,-30.979036,-27.866951,3.3473063,-9.354884,-29.159548,-4.4269004,-10.966763,-45.739906,7.0667973,73.31359,21.301567,-36.60903,-1.741063,27.910582,11.958476,-0.4025034,3.1802394,27.665125,35.601574,-7.479033,-19.327095,20.12294,16.733885,-6.938686,8.307271,19.510092,9.474453,-9.0906105,-17.266245,17.38187,28.916641,-14.55863,-6.162431,29.214714,-6.8477187,-26.185617,19.453436,19.11862,-20.081165,-6.9302425,15.557541,-2.8536077,null,20.068836,-16.653217,-5.3547125,24.78476,-2.4777226,-17.907854,19.658592,20.531689,-16.62658,-0.017791472,24.919945,2.5031853,2.0466528,14.094535,-1.7351129,-8.460481,-8.906597,1.7956668,14.252398,-15.107534,-12.601652,26.519396,-5.3589,-41.524952,-19.203844,-5.9128566,6.768973,-0.51879346,-46.746265,-11.58794,58.34416,-0.4012643,-52.14536,33.312447,58.622982,-28.749844,-34.091248,9.392407,-26.073639,-38.24901,26.287388,42.35793,-2.0980134,-12.69651,-6.826472,-21.565023,-2.748451,37.41911,34.012047,20.658466,31.467651,48.59457,52.172024,7.6785054,-43.29228,-34.69997,-5.103036,23.715853,37.780807,3.5327713,-4.929883,19.999767,-26.027073,-71.270294,-9.488332,36.94832,-18.113514,-27.62633,48.163715,31.46591,-49.04292,-22.240507,18.618883,-17.895782,-22.675932,3.5093172,0.557545,4.435542,9.972457,-5.830169,-3.1118515,22.858805,13.034508,-25.882977,-12.296476,26.44182,-1.5588542,-38.645187,-5.0859075,16.177328,-23.670944,-17.801485,29.1825,-1.2572597,-29.946493,16.605867,6.6536717,-32.096268,2.444933,7.179466,null,12.516923,1.2524558,3.9661248,4.7684093,-5.8819523,3.4109938,0.48960808,-19.860756,3.615665,35.18581,11.52061,-9.181313,18.16313,35.051434,10.724746,-4.4150085,19.460907,19.049,-20.680056,9.307451,59.480755,0.48503438,-29.584293,19.54305,2.1421416,4.5535007,38.388744,-21.44332,-16.585299,40.52698,-39.27509,-50.554695,61.110477,16.868168,-78.7845,-11.483631,39.45028,-45.40904,-57.879932,57.138412,65.273994,-18.964666,8.556803,35.60156,-36.345314,-43.05239,14.847477,18.106384,-14.671138,-41.12934,-37.978912,-13.689795,-14.860891,-15.132389,21.220108,32.770363,-3.9781542,-2.8519852,33.216747,-2.813271,-51.054684,3.7542834,35.010002,-37.14078,-28.517097,55.842365,-0.54841655,-87.17048,-18.136858,34.052277,-1.5903552,1.2200692,-4.73928,-5.2690196,37.38216,-6.0697093,-42.91567,28.255377,22.895075,-29.805944,4.8379097,21.11495,-4.5792913,-3.4733386,8.800462,18.31536,5.9710846,-4.3682747,18.866167,13.178789,-12.353947,7.810513,26.003954,2.9652865,-6.3120255,16.814638,16.938566,-9.144339,-9.174541,2.1391892,null,-16.98853,7.6400647,3.2970402,-12.291982,-1.1391222,0.32438964,0.68443567,-8.285776,-21.491259,-0.061539974,7.9818544,-14.579498,-20.331564,-4.3625307,4.5668154,-24.625568,-24.239985,16.856493,-22.369041,-32.64184,44.168427,-3.4004276,-56.808384,25.936714,16.129534,-42.858036,2.1803124,23.943153,13.586112,-4.0072246,-37.47718,21.25884,47.318897,-60.33146,-35.091835,107.71383,74.71874,-25.630157,15.368698,57.119545,2.7115672,-3.5007298,53.97964,51.700027,20.273579,29.93989,26.984879,-3.6221895,-5.9249287,1.4136295,-5.6458745,26.034964,45.777462,-24.463528,-21.873016,105.44845,105.454384,-7.002947,6.4918737,71.023056,18.464428,-51.397564,8.847114,70.11055,-19.332666,-46.032925,63.37261,33.784657,-51.84738,-7.7022347,10.548556,14.535538,39.00989,-26.620459,-26.381363,42.786102,-19.25528,-44.70041,30.49349,8.132041,-29.352901,4.2787085,6.899336,-12.08823,-10.951595,-1.7080708,0.72350645,-10.467628,-6.285142,-1.1651022,-11.118002,-4.5666237,-3.3828697,-1.8709289,16.48793,3.274647,-7.9633985,0.510323,-20.995867,-13.578704,null,-22.105425,23.391453,-21.554039,-19.664288,11.337325,-24.055548,-12.249963,13.817978,-5.68851,-7.1859703,-3.1707919,-2.3669481,-2.196649,-4.3154798,-0.2540382,-12.816815,-6.85876,-0.6871709,-18.720598,14.96109,3.6112309,-51.955948,22.068785,50.4324,-37.86897,-15.921371,29.031101,3.337912,-4.8688803,-16.809511,5.6412973,19.447548,-39.414387,10.504764,92.91866,19.532108,-0.6223142,73.20334,29.41296,-53.19616,-31.214539,44.586044,76.067375,29.7599,3.2963398,51.21298,60.11861,5.810449,8.027921,65.77703,62.113873,21.350315,54.205563,94.47084,48.66533,18.491417,59.19823,52.76388,-21.733631,-28.19736,25.379332,-15.357136,-44.208702,80.447296,90.27933,-66.029884,-50.352562,40.11447,-13.284742,-41.930893,-1.1059126,27.518389,19.244846,-48.67789,-31.75938,28.286205,-41.84861,-41.229656,30.00503,-32.00773,-39.25267,16.8604,-33.283348,-37.93318,14.1122875,-0.44931954,-16.807224,-10.949895,-13.339717,-24.979494,-18.085339,8.722603,-11.720271,-17.437183,13.053732,-17.001848,-13.191362,21.770262,-12.990519,1.1146598,null,-16.795044,31.369343,-14.404879,0.30869716,29.132113,-24.886673,-9.640314,27.111729,11.628185,-2.8681316,0.0037024578,17.552948,-8.617548,-11.8067665,30.634075,-1.8935782,12.256782,48.8399,-21.059963,5.221962,44.947643,-27.958424,12.160005,53.24218,-5.6878185,6.1197863,18.315878,10.525152,19.971565,11.5517,41.52485,-4.3260307,-67.71968,61.526627,83.39903,-54.021847,10.435954,71.498795,-43.135494,-37.840874,40.150524,-2.8778536,-45.707737,-4.451083,58.268665,76.572685,34.83182,11.858991,31.39182,25.3955,2.1900918,1.7119222,25.742483,58.638325,63.081882,36.789112,-4.4719896,-11.067409,27.32699,-44.38059,-111.4512,45.378513,86.12203,-49.395145,35.876583,90.70631,-61.573757,-52.71997,38.135315,29.81612,19.016682,12.919032,39.64273,22.825403,-40.741062,19.711363,37.540108,-25.902061,24.427122,31.800278,-21.501574,-2.9578583,-5.9516034,7.2053113,40.079483,7.459671,1.3715832,23.980099,17.540815,7.5834503,11.465001,19.028545,-15.662749,-6.720916,48.01864,-11.954727,-26.252975,50.52185,-5.1149387,-30.311152,null,-2.664981,40.383984,-39.61066,-8.116879,44.240383,-17.372267,-21.475489,9.011149,-2.1068158,-18.43765,-7.3696756,8.491324,-33.93104,-19.957819,28.549023,-20.518888,-5.607954,19.810781,-30.655748,14.47935,13.113899,-35.406425,20.803215,-12.189268,-48.100803,18.842766,4.876354,-15.163508,-0.80922157,14.646,16.511953,-57.48395,-0.13273178,58.653168,-79.570015,23.942467,155.49821,-73.215355,-94.16619,43.52064,-98.81388,-124.095375,33.468468,20.495966,-40.545567,0.30609605,54.38428,44.841255,2.0452642,8.230362,37.350674,51.828575,54.859028,-5.17566,-60.88908,-6.7319946,-12.874236,-108.007614,-23.708664,39.446682,-101.94893,-17.229633,130.46223,-35.33492,-54.982388,71.850914,-11.888254,-15.964486,63.32211,23.21005,-3.4465604,-11.416328,13.184218,28.729918,-14.473266,35.80689,42.70878,-10.63604,50.90192,16.212618,-40.761074,33.311108,13.0596695,0.49519342,38.975155,-17.791307,-12.91825,15.958699,-18.431593,-8.7850895,3.5012784,10.73262,2.887898,-14.387416,16.015015,-19.557623,-29.523848,42.958794,-11.278637,-32.824368,null,-6.388879,42.458572,-26.015991,-4.498184,17.027828,-10.583741,7.242283,2.0086846,8.4606285,1.0536402,-19.70673,8.461885,-21.468935,-10.4530945,29.87843,-35.297962,2.4785376,36.104725,-32.1412,21.69014,2.4048703,-52.791584,47.718407,23.47337,-33.997528,32.43566,35.029423,3.4276767,-17.634846,12.5670185,29.533833,-46.370083,20.242441,28.55526,-98.79901,48.255146,66.12434,-141.55127,-12.695044,44.086445,-122.441734,-47.795986,-10.393813,-96.8689,-3.4686568,73.34929,-32.895573,-145.05652,-155.19264,-161.56058,-180.60368,-111.04542,2.9989653,77.82938,-12.212951,-134.76622,-1.9291674,-2.4252055,-171.19252,-9.700161,35.826485,-114.230576,51.954834,69.3769,-108.34815,-15.616199,23.276354,-43.704376,1.5113995,28.56923,19.784294,-22.738377,-17.87679,30.7403,-20.12598,-2.4263158,30.302933,-31.100779,11.935676,11.317072,-34.371525,36.05523,-3.504259,-42.29092,37.618584,6.039908,-19.722918,24.165863,11.042915,-4.1042385,-2.4024668,16.70851,3.297528,-30.90117,16.37307,6.5685225,-31.826605,27.214443,9.307765,-23.620827,null,16.866436,26.27145,-12.08923,35.537003,22.69689,-14.474486,28.441696,10.148377,-14.572276,3.425513,13.283656,12.541104,-24.248028,10.90023,39.994057,-22.891102,17.550325,17.379766,-41.333492,39.42111,18.777311,-29.849728,44.72386,6.1469035,-1.5776476,52.01586,-9.258493,-11.8611965,40.48618,39.040043,-5.220842,-10.244253,68.84857,-5.229723,-50.931526,66.81184,-37.770184,-23.530602,131.01598,-40.452724,19.21687,142.6873,-131.46532,-34.485847,164.57053,-81.712425,-110.46216,70.9507,118.923096,130.79646,93.04963,0.8395917,-163.26566,-91.21025,148.56679,-39.930298,-129.80678,91.326256,-4.6822743,11.9747925,125.8276,-69.165924,-13.503384,84.94136,-59.08099,18.119154,54.633556,-44.651157,19.8011,36.532593,-18.95676,-23.947992,11.464939,25.59354,-38.506878,24.201086,72.90434,-50.539856,-6.0896516,46.55176,-29.661032,25.476545,19.083515,-32.997242,29.320488,4.9764376,-15.747599,22.561445,6.773108,14.241498,10.025272,1.5460842,7.3340707,-14.70932,24.281622,23.416616,-23.204723,25.789068,12.689923,-25.897667,null,16.672823,16.340778,-24.906013,9.277274,1.1644403,-17.292421,19.549429,6.9238987,-3.2397196,-4.371554,-5.674907,13.913223,-6.988394,6.737202,10.940263,-14.368893,41.667007,-4.778825,-50.177357,48.64948,-4.869767,-34.35678,56.16373,-22.075623,-45.256676,35.635464,13.31655,-12.694673,-4.2229223,34.912292,12.890716,-11.259493,74.76198,-6.3561034,-37.9559,79.623795,-49.566105,-24.6859,73.136986,-60.037167,107.14327,84.25804,-136.2029,142.75601,6.9533057,-244.69911,190.77377,121.61918,-264.6343,-253.33315,-230.97299,112.305504,191.63545,-241.70682,-42.230755,102.620094,-158.02614,59.859333,107.14346,-58.783436,88.66365,19.331108,-43.417145,73.06768,-17.598679,-4.076831,88.03138,14.246861,-16.2465,4.9424586,10.202524,-9.347399,9.080445,57.2228,-10.389491,-0.28141364,46.34623,-56.158264,-11.849399,52.869812,-40.03629,-3.5073345,21.28965,-41.143616,-12.486967,-16.949448,-32.240173,-4.26737,-7.0370436,-7.7126927,-19.745102,-5.514259,5.713552,-33.566532,2.538957,11.238995,-37.67066,13.85788,21.515036,-21.71344,null,9.236079,-9.70898,-39.56616,22.149014,9.947173,-29.44908,9.254225,6.0668435,-13.478953,-12.155896,0.32534915,18.43604,6.8890634,24.915867,0.3881537,-41.05601,26.008165,-2.6984138,-35.64891,55.447346,-5.639694,-36.263123,47.332645,-21.373856,-36.757534,21.0971,-9.709912,-1.8447217,16.23125,10.751472,-15.578764,-14.307675,46.993206,-7.901019,-0.55032843,54.227978,-70.17661,-10.665332,54.153652,-23.555197,96.33314,1.6192534,-30.644833,110.82266,-201.37917,55.39544,307.1357,-489.9735,126.68765,1203.1333,62.46444,-443.28928,339.3005,39.701427,-94.5537,226.40753,-27.908554,28.360893,165.04689,4.6717963,72.372925,24.37263,-33.20311,71.57122,-10.967913,-1.4481237,83.758514,22.522177,11.243579,10.321252,8.977552,20.840471,3.819752,16.292469,-29.51235,-24.207798,44.223423,-22.78787,-7.992515,51.662453,-30.683016,-9.0468,39.726837,-19.753712,-18.149977,4.0692015,3.028414,-0.15871067,-11.494563,2.8290367,-6.0514936,-7.3268642,6.8235245,-21.426826,-12.01408,-3.796833,-20.219093,6.7692413,-11.4278145,-25.449436,null,-3.8386362,25.380848,-1.5795567,2.3325634,0.65730137,-7.847868,6.503529,-9.028764,2.1066651,25.64632,2.93649,-7.125052,6.7668333,22.152273,2.2941306,-9.11983,29.487738,-0.47527772,-18.083912,27.838291,-9.574212,-7.0356064,36.990673,-2.012612,-4.403772,-8.553492,-16.295492,21.756819,-6.1935983,-8.302235,16.795212,18.441675,55.21037,11.694704,8.201018,40.158455,-36.840652,25.17817,49.922302,22.137794,148.67801,31.903679,55.366936,192.94096,-51.899494,253.14531,134.96591,-480.95602,1860.5598,4233.2427,1858.7721,-526.2646,121.63795,277.66245,-99.58844,148.72644,119.30606,64.40895,88.53223,-7.546721,51.590233,1.247133,-59.49641,36.84922,17.749071,14.621097,38.11949,-1.719899,6.1974573,10.689456,19.946802,4.44753,-20.885092,23.123114,-10.318756,-26.051836,23.84461,-17.92927,15.70317,42.221348,-43.397655,6.0864215,36.59146,-22.303534,24.215511,25.364037,-24.488358,-2.3725839,12.933242,6.831022,-3.9532354,13.557492,20.076847,-32.993107,-7.897086,37.427753,-3.451169,-6.533743,5.98317,-7.530781,null,-0.715507,-14.077112,-11.508689,15.972563,-10.78451,-5.6526937,29.770597,-1.4963654,-9.45889,11.938938,12.325685,0.35025963,-14.104322,24.078289,15.073395,-32.73971,28.564367,24.64951,-30.261374,21.991451,8.799486,-16.706827,17.067192,-13.382007,-5.795837,-0.17730425,-40.60551,-0.7968005,5.7689614,-26.591122,-6.061566,11.308171,16.036253,-15.743272,-0.99819756,37.83449,-9.305812,24.92671,21.491896,-51.177757,35.97867,41.358032,72.98688,110.21823,-83.76064,179.32454,194.30225,-531.9906,197.26239,1327.2213,267.2345,-532.7304,163.60507,182.60956,-81.343765,97.38446,37.57879,14.770169,43.922092,-60.339092,-7.2308035,4.1425056,-33.503555,25.551584,2.6662428,-17.085249,1.2147889,-12.798054,-12.677587,-35.178524,-20.723417,5.051947,-36.685867,-31.880583,-20.282991,-37.924213,-10.470994,0.5097686,-7.2872987,-18.392118,-28.483852,7.676527,8.471161,-17.651058,4.5026684,4.344419,-16.239408,-12.222747,2.9612777,13.339272,1.9525551,5.994467,14.055097,-1.0631616,0.8461468,-5.7931447,-2.1472514,23.437756,-1.1975234,-5.7226334,null,-18.044165,10.150627,2.1543179,-10.110724,-6.0414925,-14.972254,-1.7158331,19.906395,6.222142,-13.562596,1.4818784,10.621514,-14.897256,-4.244339,15.653902,-15.624911,-15.571088,-1.3727108,-39.411816,-44.834324,3.9362128,20.49124,-11.984204,-16.434986,10.132333,-22.15518,-42.491287,7.110504,4.0267105,-33.790092,-25.28722,-11.180804,-36.63961,-73.54936,-29.017393,11.909871,-11.60787,48.090958,46.665382,-53.68351,-29.540764,-37.155956,-17.004503,96.68656,-47.47442,-79.17488,181.62746,36.625072,-373.71597,-540.9879,-390.84354,55.267967,181.46254,-91.0434,-32.627934,85.16125,-39.562157,-31.927263,-33.114674,-87.08248,-18.761206,-17.411066,-37.312836,-3.0672824,-40.909393,-63.502026,-29.930431,-24.441412,-48.0686,-37.144886,18.589266,1.8724922,-44.57353,-27.649975,-30.475174,-17.066874,8.738419,-18.497803,-4.1555533,-0.08425685,-27.171312,12.486405,10.929891,-17.19412,14.47301,13.243988,3.0799975,2.5886862,-18.130379,-5.3778753,-2.8077874,-12.933585,4.204074,0.74527687,6.0736203,15.014423,-0.44124132,5.8383455,-7.604317,-24.773138,null,0.67295,19.572569,6.675855,4.871928,4.524603,-8.182986,-11.99975,10.374543,37.017,9.887587,-12.609928,8.745001,-17.718111,-38.729893,6.0459642,18.730433,1.8577987,-7.975497,-23.470528,-14.044844,-2.163215,-4.4085035,3.2879484,0.625733,-1.2132177,-6.0628753,-27.995726,-13.641214,9.209898,-11.867072,-14.442269,13.509917,-6.864566,-52.370968,-27.491646,5.842937,-10.115927,33.997803,57.020805,-27.119593,-15.374116,27.593105,-20.658882,80.73688,181.45737,-18.781586,-139.12462,81.48954,294.86218,330.0772,282.85126,97.07733,-134.88557,-65.91581,165.30635,99.51716,-72.993515,-38.670025,-11.09434,-17.366343,57.306652,40.578167,-23.209272,22.403915,31.526617,-34.84395,-29.164202,17.64123,4.0675235,-18.157843,16.359486,29.336056,-15.62147,-15.976625,20.141354,4.1826744,-7.4235487,19.346914,-0.51341003,-36.064644,-7.429896,9.271836,-18.107624,0.6546944,27.352627,-7.436204,-15.9654665,18.69265,-0.86951363,-30.368078,4.6851354,19.31147,-13.327775,-11.873436,-2.7782109,-8.011213,18.086313,17.888012,-16.036472,0.18575872,null,-9.242953,1.9505821,4.689858,-25.258007,-11.3197975,3.6665652,-10.572575,2.784405,-2.680405,-25.174213,-4.974982,0.36145967,-23.712982,-11.320738,20.219994,5.294403,-24.248669,5.319918,17.671028,-25.606264,-9.877511,9.8296995,-28.43317,-9.723498,13.472936,-18.165417,5.089727,32.954292,-12.5742035,-31.97,10.550019,17.770092,-35.0235,-24.784859,39.18024,-1.7769003,-55.85396,-10.3336115,-9.390798,-39.61873,-4.064802,-19.231802,-76.14208,-12.098159,113.385216,103.622505,-54.23239,-196.00833,-232.45837,-222.39174,-224.27614,-178.75285,-3.6247709,149.38234,78.98227,-41.34564,-12.687075,7.7934837,-34.290535,21.289267,98.05054,54.681633,11.38876,24.107674,-14.993256,-44.32261,12.3872385,39.168983,8.091153,2.9975848,15.418371,11.175072,0.95610136,10.394818,24.607382,8.748699,8.812492,24.271948,-7.850969,-13.035322,31.9176,21.829803,3.7901878,25.716007,1.9858435,-21.665895,22.049747,30.700542,-12.041993,-3.4737458,24.439184,5.2696342,-3.760431,14.830121,5.9608727,-9.791497,-1.1533612,-4.4616623,-14.000685,13.861466,null,-15.481219,-4.6205645,18.961899,-2.3681014,-9.806825,4.2090073,-19.505058,-21.303495,6.931464,-4.7785673,-21.626192,10.111181,32.244007,-3.1604915,-7.811548,14.541116,-23.057533,-8.081926,41.7928,-24.808723,-39.223663,36.528217,2.3243542,-31.886082,12.859544,5.0652885,-14.787382,8.62871,22.764679,-1.181528,-34.169025,-3.446765,31.252338,-10.110965,-25.642181,-1.0903844,-18.407394,-34.506126,-19.016714,-11.293444,-32.891655,-66.328545,-56.264755,-28.501575,-52.085484,-61.50842,-11.318467,12.37566,12.929491,43.547714,46.082973,4.7082567,-37.07372,-58.649536,-24.441898,-9.449137,-67.518906,-64.88269,-22.746204,-31.875956,-12.034656,0.4968774,-23.604425,-0.11092534,5.3910832,-10.582855,18.50466,17.988983,-14.824984,-20.443804,7.9139,27.319485,-11.823402,4.15358,62.38438,4.2709346,-15.779454,43.054813,-2.202811,-21.101246,28.946865,0.470099,-12.248149,20.78129,9.350821,-3.2421515,8.236274,11.198719,-6.9719896,-11.752236,7.1599736,-3.944278,-1.6766782,20.204231,-8.452589,-6.8326297,19.832726,-10.355463,-6.8833528,18.438192,null,-10.003126,-21.10709,31.306591,4.910695,-16.934526,20.159513,-5.7773824,-13.683059,16.039185,-11.421434,-20.865417,16.121359,17.872112,-20.392437,-16.95997,16.052301,-13.330917,0.4528474,57.408268,-9.502823,-18.89623,63.941986,-3.8545525,-31.757969,66.045,36.01502,-25.110037,13.43363,41.496296,11.540231,-39.049236,-5.3950825,69.279236,49.293514,29.81348,32.87251,-10.319418,-17.079868,-10.306853,-12.117052,36.90081,36.718086,-14.713653,3.418876,32.861435,-7.261235,-80.68664,-97.85353,-37.760574,-24.718525,-82.43543,-103.57169,-74.6371,-8.6649,37.522278,-12.392279,-30.97815,44.20826,46.405636,-14.991885,-7.0665336,38.70866,55.061493,22.769161,0.79368633,48.585278,49.61714,-19.34305,-14.446676,27.544315,9.574131,-36.264954,-32.74204,30.386887,12.340326,-41.74902,32.547768,31.47127,-67.7844,-3.5584948,35.837463,-51.21213,-18.592236,24.91369,-31.498484,-30.643799,-3.0073016,-17.645494,-16.512106,5.3346195,2.814145,-18.078045,-4.890904,3.5727413,-15.081182,-0.121201396,-11.938382,-36.067932,12.671434,14.244601,null,33.155956,-42.6721,-9.632199,19.239048,-25.488321,-7.9007998,10.443483,-14.427264,-11.457331,-4.141515,-15.484375,-6.0810666,25.580372,0.1594514,-34.36061,28.439663,22.027864,-47.859955,36.027893,53.311813,-58.83969,9.539791,72.22894,-31.596075,-14.763446,71.10494,42.217205,5.7218785,14.381796,38.260597,37.95814,2.7494159,9.154707,25.558338,10.889162,13.395262,-6.701892,-28.387974,-5.548589,-23.9503,-31.312506,41.911686,57.444435,-6.684238,-42.825264,-37.226513,-5.0297246,23.682938,30.462498,40.015312,35.49399,6.1810308,-24.004726,-56.619198,-79.46719,-42.781975,45.743416,60.062225,-13.462144,-17.375662,-1.9488629,-63.599075,-56.811337,1.249954,-6.5610194,2.9055195,18.081182,-10.520733,-15.95443,-4.392142,-5.6781263,-33.510014,-26.313683,54.189293,10.721742,-80.04015,16.583742,32.6221,-71.73896,5.2017317,57.42144,-34.074142,-20.654133,28.521917,-6.3104997,-28.412756,-7.9912114,2.0477414,-14.9451275,4.5404167,24.038795,-12.1264305,9.992232,27.427017,-30.57498,-3.3030548,24.241735,-21.553637,9.521152,23.101965,null,19.809042,-26.381056,21.113106,16.057465,-15.843984,32.024662,16.541958,-18.237965,14.798566,13.55587,4.379849,19.989887,10.017474,-12.478014,-5.79912,39.41371,4.6506176,-60.627445,35.735794,51.33458,-77.306496,9.990153,90.44011,-46.669277,-40.108883,32.93087,-28.522072,-18.384642,20.605629,-9.096882,10.163314,36.83171,7.2957053,-34.620575,-32.065903,16.198689,-5.5727053,-47.09817,26.219164,76.18712,16.759912,-38.777065,-50.031395,-12.06951,28.189964,-17.069866,-77.757034,-56.741325,-8.323775,-2.4661517,-28.363781,-56.610977,-61.524857,-26.945038,9.684407,9.317737,-20.230843,-37.622593,11.8418665,34.77279,-71.84997,-115.2907,-11.527489,27.521988,-9.501702,-11.613315,5.386539,18.02449,-9.216269,-36.91563,-15.680742,-4.386473,24.51339,23.606594,-53.932426,-4.153628,65.27429,-40.02246,-33.07935,60.924088,-15.162162,-29.725891,51.285583,2.0101204,-32.56321,28.417637,31.513485,-11.363989,-4.8548365,26.689428,5.7465715,-8.802923,25.25903,-7.063345,-27.999193,43.09983,28.351791,-15.9086,28.025112,9.094894,null,20.714577,-20.454899,3.4147508,22.275057,-28.417166,1.2729863,32.954166,-23.555069,-3.68745,46.869755,3.9276621,-35.340702,-8.478222,17.518917,-30.675144,-47.79478,32.24917,3.813394,-52.58352,34.45963,10.867098,-70.671646,18.420973,46.67391,-8.586572,7.4264264,-17.28594,-32.447998,11.591874,-8.617756,-23.809525,18.426561,31.58565,-4.321498,-51.319744,-24.524542,49.070007,32.790344,-30.721334,-23.885777,39.307705,74.508,23.312008,-55.57701,-57.14363,4.1710095,35.36626,17.99258,20.945002,59.983593,68.40738,31.415133,22.737585,47.68805,-0.89298254,-75.17071,-23.2212,60.700485,51.17464,11.565544,-3.5303233,30.516354,56.34879,2.1622596,-29.994345,-5.4568954,15.623087,18.80105,-11.211313,28.845165,91.351746,11.112022,-3.8023412,49.215115,-38.235546,-6.762778,85.85422,-41.19303,-43.332893,88.45306,4.3308644,-50.477196,42.829582,35.272133,-17.6302,-2.9920723,20.60182,1.9640827,-24.286045,13.336183,32.70833,-7.3281875,4.443983,12.7136345,-16.476517,9.5822,11.150115,-18.330065,24.925285,29.836771,null,-6.6944246,0.7012382,6.3532076,-14.990155,-6.4522967,29.356722,9.76592,-14.002202,26.430439,16.788658,-29.554094,-3.021327,15.523088,-5.289845,-10.601989,12.279651,36.44071,-26.003603,-48.275127,49.609665,15.2640505,-51.639412,21.420824,-2.8968596,-37.4616,38.161404,-3.7464771,-46.816,26.209017,31.501446,1.0049701,-5.049837,-8.601958,20.480997,9.689769,-44.85631,-33.390877,42.1771,70.972084,-21.27927,-87.954475,-11.170709,34.841473,-17.986454,-49.28872,-60.28241,-83.491455,-85.183304,-66.479614,-71.52047,-89.63552,-69.40075,-57.52486,-87.09381,-67.113396,18.575438,59.483665,-5.2198043,-63.860916,11.7196865,95.00416,29.275248,-60.668896,-38.416763,8.230106,-1.7383956,-8.509979,3.476271,6.749352,21.51006,2.2134683,-32.828766,0.1797998,12.7980795,4.305615,23.626638,-27.712105,-25.899761,55.056023,-8.321554,-43.084667,43.83932,6.6341395,-43.372845,10.971674,22.436491,-6.130978,-16.759947,16.081425,30.762224,-34.06941,-18.490097,38.386044,-17.042788,-21.242468,30.6561,-4.1652803,-16.88383,20.00694,7.4893165,null,3.0666707,-25.340717,-14.078727,48.468456,-3.2151327,-49.508514,35.466824,23.039726,-30.597113,11.242704,11.381359,-6.1748495,-6.203497,-8.033023,21.1587,-5.518592,-14.763825,48.837605,-0.4847695,-52.83364,11.519488,13.220284,-13.323182,9.504659,-0.007264897,-3.9987369,14.133239,0.5739061,-17.196802,-17.630718,0.37643078,25.645428,1.6006212,-40.64776,8.282911,69.8554,-3.1311946,-75.37257,-0.04291208,87.19154,55.02138,-64.10247,-141.14246,-90.24537,-5.4393315,40.55784,60.24869,24.1553,-22.975246,-20.897633,-4.059495,16.06291,47.414574,69.14247,36.173035,-46.972347,-84.64677,-52.545376,10.179313,60.13096,13.972741,-61.258266,-26.524141,42.742622,24.961483,-29.658663,-15.472449,22.48245,-0.98441285,-16.500122,-4.5700436,3.6164856,29.056734,3.1459143,-25.19385,12.918726,-2.1061935,5.7315063,53.094494,-13.800582,-22.024818,45.351887,1.6403047,-6.8253355,28.940853,6.8246202,17.022238,8.823155,-9.8154125,22.017551,-8.205376,-40.79625,5.0256033,23.366402,-6.0993295,-20.841667,9.93818,9.372627,-44.05197,-18.909138,null,-18.693539,-0.1328615,-4.5815673,-7.4634647,-16.945902,-11.965543,13.651383,-18.079437,-6.128902,28.364193,-21.236132,-19.888643,-4.2059793,-7.7385902,51.71724,1.9151096,-57.85222,46.83492,41.063248,-39.497547,8.5955105,15.11687,-19.24366,5.192218,4.281746,-11.202447,0.5618635,26.234509,25.232286,-41.03267,-62.167423,15.135655,38.512424,-34.121876,-59.41664,10.98922,56.792328,8.1557865,-71.85074,-90.88625,-14.410939,46.408024,7.0155487,-30.080414,-30.80326,-53.50487,-69.47154,-47.03054,0.1189125,19.828943,-14.743821,-50.6089,-75.57945,-75.19609,-37.10674,-34.44273,-33.928196,10.936138,-5.9640174,-75.269936,-62.885742,37.017166,75.48351,-27.264933,-86.38071,4.526859,55.59152,12.7011175,1.7320145,19.82616,18.45282,4.806265,-11.540364,-13.11146,3.0511384,10.266595,9.224501,-1.1351877,-30.29735,-5.817183,43.92248,-11.639897,-45.898705,18.073977,8.015427,-19.306671,4.630776,-11.748485,-9.17256,-12.003663,-29.273106,27.56096,4.7150536,-49.85774,28.281492,28.88845,-37.2824,-7.5992827,4.156812,2.6782649,null,3.516058,40.714252,-28.43627,-11.97496,37.10912,-16.628998,-11.018687,13.038347,-21.553438,-6.702005,2.1562417,-7.446206,15.541589,-4.664849,-10.578179,36.66396,9.379929,-36.646175,9.498206,34.94056,-15.93387,-26.88966,1.9921806,-10.049673,-22.595795,-7.4591317,-11.5052395,-30.001171,-13.42759,38.3958,21.190035,-71.29069,-58.722294,33.47927,11.85242,-70.88261,-71.746956,-2.1216638,42.69576,-1.1104805,-79.25658,-105.07296,-46.765106,54.26815,85.566185,47.858074,22.867258,-5.746289,-34.999966,-41.106884,-45.076412,-28.624588,10.967084,47.579178,61.42526,29.570375,-16.316366,-61.595528,-97.72036,-43.13504,47.18678,18.114685,-81.0849,-98.309616,-25.238413,35.550293,19.721125,-37.612915,-49.634243,-5.740459,-6.9499173,-49.499638,-23.691822,20.88083,0.6501471,-21.82191,-0.015141498,13.344163,-16.122684,-5.7219796,30.673477,-29.048283,-40.103485,47.22638,5.984126,-38.625225,26.710934,8.055726,-10.746942,16.048916,-24.976154,-12.257636,16.078651,-24.329838,-0.53972507,21.732239,-18.636116,-21.886143,-4.573536,8.505986,null,14.957423,4.345162,-5.418045,19.640291,2.8110359,-19.76225,10.36818,3.6031802,3.7752035,31.9078,-8.900496,0.054090742,65.903336,8.785789,-33.272213,49.10059,49.992188,-26.725672,-5.522677,40.87386,13.667249,7.9858804,31.92037,-4.0107446,-21.571606,39.355858,53.672127,-14.347412,-48.8265,-2.7655125,38.077637,1.3876797,-40.814453,-11.608871,30.369282,15.36582,-34.33182,-49.41868,-13.418421,25.28379,42.76952,28.56606,-16.504461,-45.395096,-35.08435,6.3909254,58.835773,84.78401,88.80052,89.54188,89.86101,91.99334,66.73178,22.303179,-1.2247132,-21.895245,-27.835722,17.413044,59.783318,21.787037,-67.661674,-83.47107,0.7862617,59.57429,23.60267,-56.10103,-78.17168,-12.276637,18.09215,-26.490566,-30.990438,11.163286,16.84583,-19.045387,-22.917376,18.886074,7.933817,-24.120556,12.150222,5.392414,-41.290478,15.7050295,58.69459,-7.7678146,-21.884922,25.217916,10.451974,-6.9169874,18.204538,12.413895,3.9420912,13.21502,-7.1119876,0.37239942,16.759253,-22.363401,-2.8111947,44.187263,-7.8076406,-29.321272,null,-3.485366,8.832235,4.3688636,7.96082,19.004452,15.992409,7.6778803,8.196713,1.0257726,-1.6500337,12.718158,-4.9127326,-12.789039,40.79329,23.316977,-43.717533,8.367707,44.22879,-25.364994,-15.969106,28.755148,-6.273776,-5.2731824,33.189198,9.921715,-24.444221,-7.281402,25.230068,6.428321,-51.394215,-55.35253,6.1132274,39.430912,-13.616551,-77.05748,-29.965565,65.2507,54.79878,-22.697672,-43.122147,-8.42184,30.155146,71.471344,106.09888,83.63262,13.242141,-33.533978,-51.213932,-75.95192,-98.55391,-95.31957,-65.613014,-28.670843,3.4864495,36.77301,66.50745,72.36944,34.62596,-30.724695,-59.954006,-14.479775,55.280525,52.2472,-21.06176,-53.20824,-30.438778,-11.524697,12.590647,6.285115,-49.528656,-42.394005,23.224827,11.934939,-46.17273,-26.947075,24.850777,-3.8716114,-40.2773,3.3878558,8.761724,-35.375732,3.783213,20.534939,-61.158768,-42.482277,53.440586,13.273,-60.979237,-11.378053,37.97026,3.9051967,-18.574585,-1.5220604,4.824175,-6.208901,-12.896197,-5.190234,4.3543434,2.4465597,-2.7403772,null,-22.408468,-5.238247,25.50924,-8.48451,-21.495882,16.556866,5.1445055,-35.11746,-29.346722,7.9613504,20.280489,-20.856337,-28.893908,22.527447,-2.076015,-59.61162,-17.909416,13.805426,-22.154083,-15.058078,2.8061614,-36.68869,-48.878563,-2.7403536,3.370016,-34.66717,-26.949926,-3.3846295,-21.453253,-27.960688,-19.998907,-28.903086,-5.1568723,30.318768,-0.54413575,-54.89358,-50.45028,7.7836576,55.61049,44.123486,-2.9713883,-34.569973,-44.683445,-36.184986,6.7176523,66.01767,95.87081,87.323326,62.995285,48.451576,62.949814,80.368835,58.937363,19.479788,-3.5956204,-30.434256,-67.64759,-55.82631,20.183752,64.45833,28.424515,-20.685005,-40.691944,-24.437958,30.412712,53.066315,-2.660438,-51.04911,-21.07276,25.948463,14.33061,-19.979143,-12.98253,19.03051,30.756695,3.204857,-24.137402,0.99638176,15.88716,-10.065573,10.355208,22.207924,-29.943499,-13.826961,30.460554,-16.888662,-28.877937,23.253372,9.49656,-25.149027,-17.586056,-6.0703115,-1.5057278,-9.543812,-12.449712,-5.540469,-21.62301,-14.666488,6.3562517,-26.274603,null,10.562178,-7.2612267,-11.241315,8.668681,5.3181634,-2.580828,3.2378716,14.805414,12.076185,-10.351188,1.9383191,36.7643,10.563861,-27.439127,-1.4943638,20.357546,7.2374086,11.932645,15.644096,-6.7968445,-21.18952,-16.460321,-8.257502,-8.8232565,-12.139171,-0.09603271,1.4452493,-26.600506,-34.396923,-4.962264,11.467562,-4.685155,-23.125393,-16.36273,18.466745,53.637047,34.350727,-34.66546,-52.72327,6.5117598,52.269905,57.870335,48.084908,8.347496,-35.214382,-38.012775,-33.070255,-49.87511,-51.02865,-29.53425,-31.12169,-50.52349,-45.32901,-25.260408,-7.0917993,22.994524,48.36646,42.761177,26.020515,11.271068,-21.204056,-42.36118,-1.0242785,49.80223,31.679888,-15.95962,-22.650671,9.031054,34.53411,20.7313,-7.892916,-1.2459064,31.325956,34.915302,-5.451044,-35.79266,-17.234663,10.851524,12.096048,5.4749703,4.0617537,-1.9163705,-0.18493149,16.419893,5.5780087,-21.96621,1.8345456,27.301762,-0.8047316,-6.112617,16.39659,17.92078,20.761118,1.4692341,-26.360415,12.117957,39.957405,-5.9648066,-14.497706,29.674011,null,-10.458382,-12.930052,-1.7374182,5.515739,-3.444683,-12.015743,-13.550024,3.0019684,23.069237,-10.179285,-47.682743,-11.26878,17.582191,-16.278662,-26.229612,3.8626022,7.4239125,-1.6455185,10.748852,2.3923965,-25.67543,-8.513234,15.511061,-15.050289,-27.566168,13.193582,24.28689,-2.8546357,-6.005825,8.217586,9.453247,8.291705,9.317748,3.734271,-0.49289727,-0.983851,0.51807994,16.136286,25.771727,-8.266991,-54.69956,-52.73722,-11.648481,20.843796,33.27491,31.184175,12.490055,5.723347,38.819916,63.05607,38.235107,26.600773,60.095783,68.42659,34.446648,13.111241,2.9904418,-17.808723,-29.73633,-18.685417,14.25224,38.786434,5.371385,-48.405552,-35.255524,25.678175,48.19765,17.618044,-17.96551,-30.092016,-16.40143,11.25163,8.053822,-32.730927,-33.249058,16.320753,21.744616,-16.916864,-14.488897,11.123367,5.7255692,4.6135693,15.530847,-3.2301528,-14.463372,13.036409,25.259264,5.6276197,-9.996151,-2.4795682,14.40299,6.3651156,-4.293121,16.89217,23.028027,3.315668,-1.3102255,-3.9459577,-3.7676425,12.068772,null,-10.544426,13.68965,10.668716,-25.491898,-5.2180643,11.228297,-12.392216,-14.839177,-7.9984527,0.51490116,16.19272,6.357114,1.2791859,12.342165,-8.622682,-20.87657,5.003093,10.439547,8.499428,25.482725,12.858582,-14.8652525,-7.790359,7.014302,8.817054,14.07038,15.896001,12.886546,23.809177,39.382385,27.397604,-1.856394,2.5108657,32.594578,24.37455,-17.257307,-31.262945,-15.266848,-2.4772995,8.263334,17.846704,10.114019,-11.942549,-37.91269,-52.634693,-37.60023,-14.519817,-4.178435,13.015846,30.337393,25.05781,5.880095,-16.810507,-38.104244,-50.3178,-38.923275,1.0780119,30.780659,31.608414,30.126564,21.301975,-2.9549284,-22.518019,-22.256662,2.867573,21.087612,10.95674,5.225359,2.4120536,-12.18019,-14.111833,-2.7646816,7.304583,7.796989,1.4146315,9.647259,9.274871,-13.708828,-12.239451,3.8693597,2.51431,1.8561214,-3.7693436,-10.586223,7.7579365,21.949505,5.8518353,-11.640809,-8.543282,3.9946594,7.8282533,-0.47970885,-5.0793204,9.481532,16.018614,-10.0426235,-15.596775,13.8092575,11.594642,-8.884022,null,-3.3781102,10.688576,7.336019,-6.5889363,2.2900898,8.389538,4.549655,14.359099,11.027871,-5.7379694,5.08443,8.494996,-13.995975,-5.561581,12.145865,1.1882968,-2.2669532,-3.2286284,-11.716095,-1.6550403,11.748228,12.45635,3.7768779,-1.712631,9.953358,5.249795,-11.596597,-2.3902614,-1.1951042,-11.685009,-8.508734,-12.294257,-11.438575,-10.027846,-21.810001,-3.2046804,27.7515,27.637762,8.6824875,-18.476185,-10.669839,33.53982,42.425102,34.4694,35.782993,5.1537952,-29.765877,-29.943066,-27.54132,-41.489677,-39.80498,-6.687501,11.341972,6.508568,26.75175,45.408104,30.025806,16.610992,7.1723037,-12.585615,-16.838766,5.513635,20.123402,-2.2680304,-30.447098,-33.457203,-26.504644,-11.053836,6.1091423,2.0087657,-13.418734,-22.628843,-10.465351,16.472864,13.661661,-10.900102,-10.866563,2.4505289,-3.409205,-21.738882,-16.873423,8.939489,9.610555,-3.6946895,0.7462928,-4.1203294,-13.577286,5.617092,23.967623,15.42848,5.504529,9.059474,17.46481,15.33569,-2.423858,-3.0931084,23.600986,24.783106,-4.2240334,-6.1046724,null,24.6632,-2.4836676,-22.92225,4.6529927,-9.702508,-24.98472,3.3044932,3.0316658,-13.173993,-9.199757,-14.443316,-21.105663,-13.030004,-5.977208,-9.560199,-20.461197,-25.03076,-17.284351,-9.88118,-16.101574,-19.682327,3.098716,21.971907,5.0419145,-25.341555,-32.729053,-2.8057606,14.787433,-8.084768,-10.046155,2.3222754,-2.6076536,12.497843,7.507639,-35.637287,-28.474495,16.43968,30.376547,18.4549,6.82131,8.112761,1.218263,-14.300327,-16.438976,-28.358707,-27.383268,10.54824,23.36117,16.388168,35.52756,45.38107,20.159075,-6.98663,-6.4080606,-10.338344,-38.82504,-40.23698,-26.089565,-17.90716,25.869066,47.398754,6.1077967,-16.07987,-7.53664,5.352706,14.4318285,-5.7120175,-13.930211,12.859379,18.056742,-9.114603,-32.038937,-15.214286,16.318392,-1.5851535,-25.228605,-5.4302053,4.4979362,-6.6996956,-14.81087,-22.784966,-16.710972,-0.3961715,0.7913602,-10.363449,-8.89096,7.8287444,0.19493754,-23.386326,-12.872055,0.5076143,-7.7673903,-1.8260434,-4.275068,-16.76344,10.538819,21.679909,-21.638222,-25.487902,7.995202,null,7.666612,-23.813309,12.90004,29.290243,-8.340711,1.9868282,22.84305,-13.49655,-17.435555,18.025007,9.501207,-0.3238501,21.10017,15.500891,-3.0731573,3.1603842,-0.25376225,-12.358114,5.8372035,22.68308,8.718845,3.0700035,7.017792,-7.6412196,-13.751106,5.442604,15.913113,-4.8044844,-30.685982,-17.688835,21.315758,33.712463,9.85608,-11.162335,6.145465,21.570772,-7.2610836,-12.935514,22.744684,26.077597,11.083392,15.703361,23.953604,29.37965,23.399137,14.718852,11.917035,-5.0446787,-23.559498,-35.263763,-36.226418,-11.994225,-5.8518715,-15.85456,5.884376,28.15507,38.157825,34.847443,-0.11756368,-5.9307103,31.463802,50.754868,36.806255,-0.8186514,-7.3343406,19.082378,-0.9691698,-14.923612,7.1825733,-14.487254,-16.283186,29.270288,11.633807,-26.193045,0.6964634,23.972803,-10.591632,-43.377663,-15.16297,22.393919,5.793866,-19.000357,-11.410485,-3.022864,-11.289685,-19.45183,-14.487429,-5.5054417,-4.713359,-11.287286,-8.427535,4.5088573,-17.761032,-38.793102,11.68421,23.899883,-34.359695,-12.035126,29.089218,-13.215569,null,13.15847,9.506845,-10.323552,1.2892375,10.908861,0.06309795,1.3662442,16.87361,7.7177854,-10.906057,-0.10329404,0.34401003,-18.589878,-11.297338,-0.63965786,1.9972551,10.731973,-7.236174,-29.077688,-7.8632445,16.602919,2.6608112,-19.595398,-4.0794997,16.656973,-8.836004,-35.717415,-36.46867,-30.123657,-5.394784,1.5312514,-11.82198,12.813216,23.632946,-4.349694,-4.620151,6.6774845,11.475371,15.358858,-6.4143558,-21.354624,-19.908838,-27.537271,-14.87945,-4.3421125,-17.595491,-4.682136,15.50726,12.983274,11.578726,9.512958,12.064051,11.322849,-10.027036,-10.255136,-0.7886286,-29.917107,-50.44688,-30.447634,-3.4285796,11.626118,2.0375786,-8.916477,7.7291527,15.348898,10.440081,23.266485,18.753567,-11.250035,-8.484422,29.192928,36.64273,-8.865019,-37.230274,-4.8059883,18.055777,-3.1139073,-9.66787,12.264536,24.528706,7.5283637,-14.465229,-2.8690822,8.925998,-9.82584,-14.217271,-9.637309,-10.218902,13.398285,9.582816,-26.290737,-6.9744596,13.5146675,-14.8664255,-1.8529421,26.360422,2.5579898,-2.843119,15.997807,2.6907883,null,-14.023315,4.6674895,-4.878057,-12.98622,-5.2045717,-1.1907895,-2.9701095,-10.5004,-7.012069,-3.6454058,-15.700099,-1.5999792,10.848283,-17.047747,-12.010628,12.949764,-6.7858496,-17.951914,-10.399351,-8.406066,8.020457,-4.153312,-36.572994,-16.972149,14.680498,14.006234,1.6516972,-7.3900366,7.7406116,24.429192,7.0745454,-15.705099,-11.179255,21.793829,31.652084,-10.108457,-23.08468,1.8611206,-1.7334381,-4.570945,3.0435703,-4.617574,1.4034415,3.90243,-13.797282,-11.417366,3.7518907,13.357146,16.5961,2.836692,-4.797035,-1.5886976,-9.457064,-5.4598813,8.270463,2.8451786,1.6220769,9.946127,1.1179855,-10.811082,-9.082576,3.1193151,17.489723,9.84986,-4.295674,10.825652,20.95098,6.4258323,8.776385,19.86149,8.946781,0.6750508,14.2792845,15.541818,-17.059052,-32.19632,-3.3201041,7.724332,-16.463543,-23.745869,1.0550193,15.333448,-20.01513,-39.309902,9.551497,18.558672,-25.273924,-13.87264,5.371945,-16.28248,-20.949076,-8.760167,8.15727,10.109542,-18.781267,-12.582065,12.013717,-4.2886815,-2.4714181,20.305965,null,-27.29428,-50.342083,5.176464,14.022387,-20.881042,-17.560236,0.63170296,-5.1920314,-26.342474,-5.496844,26.046413,-15.506055,-37.336723,12.934394,18.249796,-17.752361,-22.492502,-5.7250624,20.828722,21.977665,-19.46912,-28.67919,15.167903,28.873379,-2.439134,-6.1789117,16.684986,16.641298,1.1695477,-15.413518,-16.759108,7.8526974,16.873655,2.8249586,-7.183729,-8.125152,11.071673,20.56294,-5.4722548,-21.864704,-16.558666,-8.256968,-4.831325,-13.349296,-7.522167,8.047462,3.3880036,-7.7515206,-22.539953,-24.859686,-3.1750336,-3.172838,-15.850889,-9.456037,0.6078902,16.434683,26.145273,17.862103,2.5653973,-16.828012,-1.6051993,32.02099,15.005815,-7.187229,6.4346685,12.456036,3.268416,-6.3474536,-4.54042,-7.87799,-29.326706,-11.007505,30.389389,25.160192,3.9171898,-5.880482,4.559863,31.539501,18.444738,2.2208436,21.408417,9.719563,-1.6483474,16.245844,-1.5855839,-8.252751,25.577415,18.429361,-0.3609061,20.684475,18.091871,-10.1404915,4.0481997,26.903576,-1.3799374,-19.52628,15.130509,18.974852,-11.022269,12.391938,null,7.2338386,3.1245327,-5.750688,-8.383783,2.1153045,5.5973825,-3.566106,2.9466212,11.111381,-1.5490104,-3.1545668,6.4139028,-8.691967,-14.771576,17.245281,19.862501,-13.396737,-6.727649,11.66988,2.4421453,4.7379537,8.257914,9.118431,21.287636,8.99317,-4.2534895,7.920113,18.790636,39.45731,36.617645,-7.9700522,-13.194452,13.632148,11.499832,-6.6805816,-16.887272,-2.342198,14.1619005,2.0590034,-7.0309134,-3.0818474,-0.39282867,5.384945,9.240638,4.8623943,-10.973735,-8.192983,19.021055,13.677363,3.3590982,16.430225,1.5256858,-11.709636,-7.666958,-12.751194,2.6707554,3.1079996,-15.313605,5.9156847,12.189054,-10.079445,-16.408043,-20.590544,-1.2285455,15.345906,-7.480051,-1.5588402,21.539907,16.27299,13.502343,6.3751373,-8.381057,-13.246024,-7.261034,14.8183155,15.797909,-6.2603645,3.5313144,21.648108,6.4061823,-16.965546,-11.643297,6.7237396,0.36309445,1.6255194,14.546982,-3.7014046,-2.7662914,15.188981,-8.16448,-9.41218,19.460413,11.608066,2.0600069,12.610817,3.7866657,-20.761124,-14.724579,20.930462,13.32691,null,10.276192,23.842012,-5.5556865,-6.580241,20.7005,9.461243,-5.5792947,-5.5202556,-13.184089,1.7975626,11.856339,-4.5274363,4.520552,10.051468,-12.153454,-17.816938,0.09401427,25.746822,9.32539,-31.578686,-0.25945482,35.58264,1.4471047,-15.243138,2.910922,16.031855,19.18097,6.9819913,0.5106917,-1.2982259,3.204152,13.877935,-15.312081,-28.49144,18.42183,33.24437,10.785446,1.392471,12.7729435,35.869255,10.730341,-17.80223,20.614208,30.628386,5.5870347,11.513473,9.112343,9.147473,12.949512,-13.336945,-7.3156834,27.996225,23.08742,8.293851,14.325834,13.765166,6.064583,11.259929,12.4543295,-0.46372834,1.3259897,1.0174863,-12.774988,-1.8325872,6.7801204,-7.6379843,-14.95518,-22.130781,-11.596692,9.371249,-11.401472,-25.505396,-0.40391257,10.328347,5.1749763,-3.7628183,-17.220776,-18.079763,-13.461262,-8.506304,-3.086645,-8.47804,-6.9940476,13.421777,15.465997,-16.562061,-26.46979,-1.0051321,-4.451302,-20.194021,-3.8834836,-3.2089694,-22.279646,-14.087949,2.2330623,-8.615852,-27.20038,-7.5770216,18.579983,-2.4524333,null,-0.23658806,11.096157,12.4477215,-5.919328,-5.684568,13.216983,3.6548324,-9.291479,-10.593017,-5.29182,13.157731,6.773373,-10.160548,0.40751013,3.1314497,-3.8531601,-3.3691595,-4.9323606,3.6223187,7.1607018,-9.166336,-10.4154415,7.881723,10.458338,-6.8111854,-9.343575,5.544897,4.463769,-8.514245,-11.7331505,5.697232,29.132914,17.123188,-1.5869431,3.3202639,-11.727115,-18.33598,7.7207756,4.501378,-12.269934,-11.293438,-15.772502,-8.648529,1.4105102,-14.188249,-19.858948,-7.297639,-12.732488,-21.890245,-11.253806,-8.496557,-8.253092,12.992232,2.2429996,-32.57132,-17.192383,-0.36042425,-19.19612,-17.703928,-2.931809,2.0443566,-0.3576162,-8.8446665,-6.736361,-10.987824,-14.781318,5.294286,2.740888,-16.258007,-13.625686,-10.089767,-5.8033795,-13.978758,-25.982147,2.977754,20.20434,2.5533407,-2.7115664,-3.614751,13.686911,27.603277,-9.883759,-22.648348,5.388213,3.7190642,-8.152835,-16.054852,-15.927755,8.742295,10.155533,-6.024822,5.250576,8.42409,-4.2602196,-5.3695736,-5.6591463,1.253144,1.4822257,-28.654812,-21.09479,null,18.812845,0.6943498,-4.11538,19.686766,16.198183,5.168689,10.974086,1.0967628,-9.497387,3.7406282,8.779991,4.2173667,8.425723,2.7039561,0.6758617,13.718049,5.497614,-8.760031,7.1708117,27.445139,12.569015,-24.520819,-18.419329,16.714466,2.6237986,-12.591668,11.779153,11.214449,7.7758617,23.223837,7.0638194,-5.457544,12.855412,15.5277605,1.5256652,-10.663871,-13.185331,-4.617941,-7.9583974,-16.007954,-5.5230265,5.2928357,-0.7192117,-9.662472,-1.6070371,20.053333,23.249521,3.2806814,1.7119784,16.631983,8.96698,9.32112,30.750736,13.234442,-13.558558,-3.608809,-12.079414,-26.459307,-1.3038927,19.781847,19.229017,6.8190904,-10.396438,0.7386549,16.245064,6.633495,9.271183,17.044804,1.5077637,2.7714055,36.295235,37.988102,-5.1609235,-16.890408,10.532667,15.067791,-3.1723192,-10.744597,3.220853,13.368086,-2.9995217,-1.8586285,16.900066,7.7958374,3.0475302,4.4735427,-9.78872,-2.490268,5.4847126,-7.8660955,-9.865055,-6.0433726,4.9971204,6.831818,-19.98004,-14.439628,9.949743,-4.794125,-13.343532,-8.5176525,null,5.09337,-5.7877893,-8.962564,-5.198497,8.300473,-5.5507526,-27.585901,-3.402625,14.072324,0.43291613,0.7857459,0.6485817,-0.7950441,6.057574,-4.2057557,-12.083367,-6.9107513,-6.5503316,-2.6372414,-4.2260027,-9.960998,-7.006872,-7.408463,4.676935,18.129248,-1.2405322,-10.748992,-1.0866295,-15.126362,-22.685389,-10.775882,-17.611948,-19.570871,5.636683,18.606289,8.740856,-6.5526676,-23.78528,-17.364878,11.604714,13.560682,2.8570995,5.959567,-11.504604,-24.232481,-2.9129982,-2.881065,-16.70569,-6.7589393,-8.256704,-14.814629,-2.261809,0.10020428,3.6665149,18.412079,3.9300256,-17.527288,-6.278869,3.8235397,-2.2722967,-4.903785,-6.934556,-1.5123549,11.893885,15.426497,12.9665,-0.44373164,-12.156093,14.654622,31.623903,5.7880707,11.758784,37.413223,13.521782,-7.7945175,12.23721,23.407015,15.941177,7.487606,0.9546287,12.5857,25.340055,5.9534497,-9.179146,4.67989,5.81309,-0.25654602,10.846087,10.15798,-0.6359171,-2.623177,-9.287579,-16.911798,-15.937146,-3.45791,6.813066,-9.183329,-8.731723,13.914925,-11.401484,null,-1.7796844,-10.389079,9.734303,-3.6127725,-12.15687,4.512129,7.29563,19.88898,23.736204,-2.2977953,4.6231046,18.166044,-3.1521654,5.0647554,27.81283,11.297482,0.89318717,12.707379,14.066604,7.2758775,-6.148862,-21.2537,-20.147238,-11.008326,1.4208537,15.660084,1.9893004,-24.732613,-14.386411,7.2606263,7.590264,12.065567,9.631862,-9.577446,-6.851718,6.183018,-0.06646973,-5.7355504,0.6444171,13.026967,17.495327,3.3296719,0.33258632,16.068043,13.628988,2.1821039,8.430984,11.345383,7.725288,23.532515,29.580948,-3.5511975,-18.417845,6.379685,10.299751,-2.272763,1.2979825,-2.3781111,-8.819399,-5.6822395,-7.122154,-0.4265557,-3.0903394,-30.65883,-24.718416,0.9969009,-12.77396,-17.001692,0.67624277,-12.493417,-15.178202,9.921941,5.6106753,-6.5172825,1.0506659,-0.24980213,-1.4888372,4.168862,6.628575,16.981491,13.183974,-14.443606,-22.173424,-8.989059,-3.6457458,-0.3607123,4.4013033,-2.517871,-13.499854,-2.0141768,12.704194,-6.251915,-10.547852,23.930264,16.323215,-25.019482,-16.048351,5.6286316,-13.012668,-19.730398,null,0.8860201,20.696012,3.5944183,-29.21915,-16.474874,15.154374,13.686034,3.897856,9.794225,0.9891938,-13.923168,-0.77815723,7.866486,-5.008508,1.9997802,17.982304,12.153113,2.5331206,-3.9180837,-3.775141,10.940241,12.71138,0.82850784,1.2539994,-4.5437584,-15.716734,-2.3374527,9.614272,1.372646,-2.889516,-18.549406,-38.11875,-11.46626,15.354952,-7.9800577,-21.928026,-12.480236,-12.754955,-8.304395,-5.611378,-4.332006,8.866957,1.5378813,-9.916282,3.725725,4.422847,-3.5828564,-0.24242467,-4.284113,-13.047972,-25.17856,-26.131538,-9.328406,-17.657415,-26.216358,-4.480948,-4.185643,-8.518452,7.045075,-6.150981,-28.819641,-22.011526,-1.051406,16.026775,5.5747685,-9.640697,4.2039065,2.936724,-16.742739,-8.071924,7.6398935,7.69195,9.129476,12.62034,10.905148,0.1734371,-12.196158,-6.126966,7.2456193,-0.6186182,-11.689642,1.0166028,9.834444,-0.577447,1.8913201,16.294333,16.426876,3.8483157,-4.432239,2.984029,-0.04594436,-20.766172,-4.436785,22.875036,2.3531694,0.077026464,25.881874,3.1847782,-11.084714,22.052357,null,-12.18444,12.814199,6.5455437,-22.727365,-16.10243,8.723141,5.691051,-11.16559,-1.3677999,22.529387,5.208442,-25.107513,-5.1822214,12.6003895,-8.984623,-12.741023,1.5608671,2.5354903,-0.567523,-3.8015897,0.8806947,15.696522,23.81499,19.892323,5.1290545,-4.027746,0.08565301,0.3108095,3.6641355,9.744396,1.732086,-14.691493,-32.818035,-28.174604,-0.79665685,4.1566844,0.04767722,-1.2542585,-10.52877,6.1162715,13.158615,-8.216824,12.880152,27.60045,2.545195,15.119108,26.20889,11.3939085,21.477291,12.247113,-7.877621,10.617368,13.133967,-6.76513,-7.842359,-0.0505194,10.068105,8.983466,-4.044789,-5.601594,-10.074436,-15.836266,-3.121247,4.192547,-0.0050417203,1.2726759,-3.3871765,-11.261816,-3.0720983,2.0535872,-13.722114,-22.228079,-14.182377,-7.3537745,3.4321103,8.561789,0.34273785,1.7560332,-0.38147852,-6.1612954,12.521116,10.867798,-22.2635,-14.342967,21.501162,25.77772,9.24445,-3.2924454,-4.464786,1.0118511,3.9650397,9.43432,7.857941,-3.0750408,5.332673,19.50326,3.0217254,-17.03927,-4.012181,15.941534,null,-10.8779125,-19.583448,-16.670527,4.430981,6.4338784,-7.036003,-3.8107972,-3.8905387,-13.222215,-4.2534823,3.7556129,-13.320945,-20.937975,5.0933814,18.663334,-7.5357356,-18.6394,1.7948366,10.580731,15.234054,14.417622,-13.564806,-24.188057,-8.83159,-7.2838182,-3.4477093,1.5465592,-9.753786,-10.015919,-0.037140463,7.814281,19.074049,12.149386,-8.900251,-12.104043,-6.664497,-4.5496774,5.6541953,16.857073,11.785622,-4.3805075,-15.627898,-12.546301,0.090869285,0.969577,-2.2663307,7.4951887,-1.2179776,-13.740157,9.107761,12.954015,-7.7747917,-4.6934566,-10.677016,-12.930431,11.178951,6.382439,0.90439504,19.632036,12.076015,6.471464,9.924461,-13.977553,-22.16418,-5.677125,-0.23820907,0.7830507,1.0459808,-0.6520152,-12.915863,-34.665825,-29.67194,-5.2298164,7.00748,6.781337,-2.7870805,-7.9471855,-8.144153,-4.7821207,15.073565,13.587776,-8.075884,7.174579,21.876364,5.9696507,1.8264741,0.4046112,-5.7244477,-1.5136513,0.20352581,9.654467,20.289165,8.345728,5.212335,14.800249,3.232841,-7.6870413,0.9256238,0.73208916,-5.302201,null,-7.646243,-9.051948,-3.834215,1.0790843,7.6328335,-4.930498,-20.309797,-3.1598477,5.529512,-14.752376,-18.11912,8.601125,27.015734,4.7202444,-15.889845,0.95675427,-1.4700418,-23.433064,-13.367924,2.6220698,10.003697,17.597837,6.4320374,-7.2817483,-6.547356,-4.291023,-3.2964258,-2.8889258,1.9250164,1.3166447,-11.692369,-10.085385,-1.7920084,-6.1960106,-4.597656,-1.2780142,-5.6573076,-14.509328,-29.037481,-26.20605,-10.725268,-13.470054,-17.433836,-8.706471,1.7956445,9.848809,5.7877355,-2.975489,-5.8552337,-12.813205,-14.307837,0.54778874,14.384977,15.497465,11.254391,6.594985,-2.7044017,-9.898928,-6.2622957,-0.10912352,2.0425107,-4.6238065,-11.115601,2.2858799,12.289634,1.8295776,-3.3305347,-5.7259226,-11.311723,-7.998001,-5.173472,-5.5471807,-11.925088,-22.63664,-12.411802,-3.6359675,-18.756052,-15.5537405,-0.5149681,-15.297579,-30.732298,-13.151392,9.580159,2.5069685,-17.05699,-12.000518,3.6173773,2.3820775,-4.353103,-5.6860056,-3.0338233,1.1246042,0.58361083,-1.1932081,-5.121316,-9.01999,8.623108,26.466675,8.848287,-7.7471704,null,-23.775112,-12.937049,5.8057218,15.260559,11.325732,-5.855811,-18.623827,-7.1433125,9.938829,2.279627,-10.850382,2.400661,13.078981,-4.797259,-12.975365,-6.376819,-13.3486185,-6.4468966,16.832273,15.21615,2.6292765,0.64266336,3.484164,11.75597,11.565791,2.6962237,1.0026587,-0.9431556,0.71287763,9.206849,8.242796,3.7095318,4.709242,3.553715,-3.3497517,-7.5257716,3.188511,17.374651,20.752178,16.572248,3.5035594,-3.467788,1.938626,-2.8388078,-6.519199,0.22215742,2.922214,11.483784,13.149873,-0.43531844,7.0665374,21.892601,12.386184,0.6079868,-3.6021054,-6.977184,-0.83423734,15.368034,30.788273,30.537062,13.767255,7.137619,20.89857,22.750229,1.0998877,-8.542561,-2.095636,-0.47852385,9.59117,17.690502,-1.5863627,-20.380714,-18.157774,-9.733223,-5.4655285,-6.532006,-3.1247957,1.8459227,0.24348281,1.3673912,1.6973053,1.8633341,2.999659,-7.740717,-7.1023154,7.144562,-1.0602391,-9.061462,3.7322452,7.022937,-7.182962,-14.47228,5.6340504,12.723977,-21.004572,-19.641827,15.4428005,4.333366,-10.973074,3.6382,null,-7.6678243,-1.9478523,2.6966434,-4.9486403,2.1544418,11.533603,2.3649096,-7.867367,-7.4050426,4.575186,7.1847134,-6.8270936,-2.562606,13.804731,12.179106,0.68677825,-6.2269654,2.1928437,14.80163,11.37413,3.2703953,-8.934321,-19.62731,-3.7255182,17.481735,21.12507,15.022189,-1.4211602,-10.023406,-1.0776287,4.131715,12.191321,25.77037,18.209944,-0.8309065,-2.7879798,-1.4247029,-9.502941,-0.8295497,18.882929,13.79934,1.1587815,5.6437993,7.459006,-4.1447864,-12.680803,-3.2457116,2.2551088,-15.761736,-16.393759,1.1557658,-8.989257,-15.678123,3.9936638,12.634711,11.889529,8.037514,-4.8702917,-8.079552,-6.6418037,-6.515898,7.2847495,12.591372,-3.985915,-5.0069275,11.751766,9.305771,4.36096,23.747772,29.027609,7.399876,3.133639,21.430157,32.3667,17.644978,-8.136387,-6.365194,6.882833,1.653942,8.750128,22.030762,8.55261,1.3018855,11.02528,3.239639,-9.513036,-6.460432,-4.673234,-3.451948,10.773517,13.037994,-9.687313,-16.14443,4.0979247,10.430964,-0.16176897,0.5787579,11.17464,14.097674,4.744525,null,14.626129,33.112812,-1.4366345,-28.891092,-4.6482882,13.484104,0.674009,-2.3814905,8.881688,2.394752,-17.352646,-15.147251,7.9633946,10.6534395,-8.612089,-3.4226806,18.525673,5.434644,-26.167816,-24.392677,0.25701657,5.70526,-9.696851,-16.134079,-6.2309575,1.3386875,-3.7945979,-17.404755,-19.669907,-2.2668302,0.53845394,-17.480589,-14.002484,3.194553,3.5340755,7.449859,17.398817,8.8705,-3.2991717,-4.5916476,-1.2843099,8.975137,12.097015,1.135681,-0.35792434,3.4185882,-1.4294077,-1.3504891,4.904452,9.9972,12.002408,9.002682,9.272045,10.416464,10.760016,17.252863,10.11635,-5.344405,0.35593414,2.1305618,-10.979838,-5.168949,8.572018,1.9834627,-12.513481,-16.20463,-15.020217,-16.344889,-12.771949,-11.397461,-11.293823,4.006618,9.033891,-4.96132,-10.745877,-14.9905615,-3.3269992,24.228174,15.898895,-0.19419998,6.0934,-3.3844886,-9.1455145,-4.90063,-12.534134,6.5729933,32.042812,13.982806,-8.841368,-5.482072,9.475171,8.200744,-12.6521635,-5.1947703,14.928701,-1.9130098,-10.44608,11.387688,13.336535,-5.371646,null,0.055623118,5.407978,-10.2408495,-6.821298,12.073059,10.149136,8.259618,6.2331634,0.6917268,1.1764324,-9.435374,-4.206588,6.8721027,-22.901384,-26.389254,5.918404,-0.47264692,-4.5510807,6.727462,-12.195841,-21.488243,-7.1975203,0.053392064,-2.5076041,-12.1429,-4.6957865,5.685841,-11.804893,-6.6923046,20.800459,9.216752,-15.807344,-19.69543,-12.970485,4.997805,20.120333,14.724648,1.6079373,0.40642074,6.4521894,2.8087926,5.768428,12.625852,-11.623826,-28.896204,-13.129016,-14.870243,-15.287443,7.193165,-1.0093198,-16.84654,0.8273627,4.6834717,-15.670768,-18.97299,0.45911232,15.392864,3.852046,-9.441735,-0.45278895,8.6503315,11.049373,7.668003,-5.834544,-9.897832,-9.322314,-10.276099,6.121333,13.31756,-0.88390034,3.8606544,16.571226,2.5720994,-16.807981,-8.231,9.2878685,-3.2402737,-14.921082,6.825988,8.075059,-18.107195,-13.265791,5.536748,1.3788453,-2.9270313,4.6319947,5.243436,1.1438956,4.019257,-0.031087626,-7.393369,-1.6743021,-5.8581614,-15.536587,-6.303536,-3.076331,-6.374482,-8.466949,-19.999983,-5.016992,null,11.579882,-15.144209,-12.119449,19.757355,8.060853,-12.779055,12.268382,15.883615,-7.2682347,-8.151651,4.9092965,15.002374,-0.88555086,-18.22936,5.29039,19.114944,-2.0635855,-10.298636,7.1012735,18.99517,-9.359207,-42.728577,-21.395355,12.513246,10.637155,-0.48295096,1.7217945,5.235234,-6.932638,-7.422093,16.315147,13.5555105,-3.6780763,2.1652188,3.1667347,2.3573968,5.5137033,-6.2574277,-8.721119,-7.43564,-23.741463,-24.858023,-1.8621569,13.675226,-2.5351875,-25.651262,-10.672914,-0.6185644,-22.496416,-17.857231,-9.191493,-24.003595,-10.553017,1.2889855,-20.183262,-20.112589,-8.432201,-20.046398,-27.945545,-21.791925,-10.910532,1.7725472,5.287385,-1.9346561,-3.129075,14.89311,22.899403,3.6077042,6.9947352,17.280582,-17.252811,-23.26915,18.408836,12.906657,-11.166355,2.0815444,-2.6203184,-26.479496,-13.811773,15.048389,3.400251,-28.648518,-16.467632,7.1898117,-5.41703,-6.8408046,-2.9928794,-21.320938,-10.670008,12.030614,3.360815,-1.4209274,3.7686362,2.8603606,0.7475197,-5.957827,-7.0853615,-1.7897485,-0.57625896,-1.3240519,null,1.6683185,0.32442775,5.596389,-6.302329,-14.367633,-0.85680056,7.7226696,1.9253491,-0.93719864,-5.8224354,-12.184874,-3.5686595,4.3051033,-0.26906717,-1.8107659,2.5846612,5.84889,-4.1183577,-17.734924,-8.627724,5.149687,11.150529,12.993785,-14.605506,-34.698425,-5.498688,9.453901,-1.9064578,8.289931,7.931397,-14.211217,-12.535841,2.510888,2.2741528,-4.028978,1.6571527,20.810429,23.286268,0.118373334,-8.199561,3.6873548,8.046057,9.108689,13.405269,16.04339,12.601617,3.2179253,10.492273,25.0119,18.848991,21.589993,28.558582,6.2544417,-1.0094371,17.4857,16.773031,6.95449,9.206623,22.160292,24.329554,-0.22255276,-11.577026,-5.1037445,-6.0981083,8.1620245,17.288694,2.8294103,2.9108715,0.7435758,-13.766958,-7.175296,6.722024,8.546827,1.7336613,-4.1005206,-2.0103722,0.64903814,11.807552,12.076754,-14.146702,-17.352041,-9.88598,-17.31605,-2.9973695,4.3478575,0.591983,15.570333,1.7650677,-10.827687,12.761267,3.096406,-14.210359,0.94328576,1.5825295,-12.002475,-24.938652,-22.476616,3.3743157,4.034294,-13.844146,null,-9.569312,13.296395,1.1742213,-11.071871,3.1640475,20.481916,1.5478487,-28.54566,-7.4582067,15.9149685,6.067598,12.887659,10.639014,-6.461115,0.28716958,1.6350732,8.521991,23.853163,6.7473097,2.965982,19.114367,11.566905,10.774646,12.334264,0.11873804,3.4209478,11.917911,16.934652,18.552792,7.1731076,3.9426796,8.997969,9.909447,7.1036983,-7.798127,-5.130249,23.311,27.821478,10.299511,-1.3395537,-5.9273458,-4.6662235,-9.01086,-12.392422,-4.531854,-3.980054,-5.500182,0.09462803,-4.96691,-13.726837,-8.920356,-3.5765855,-10.283226,-14.048811,-7.192973,-6.774131,-8.6947365,-1.1226413,-1.0736222,-2.7670627,13.970583,19.601444,-1.290845,-3.1808622,15.296287,10.207717,3.3246458,13.892062,12.696899,20.455734,33.18339,4.2080626,-15.337827,11.29164,25.983278,15.6433935,3.2176938,-4.00794,-9.33566,-14.720078,10.4402685,34.411995,5.297421,-4.96579,15.481811,-5.4594407,-18.284197,5.558578,7.854541,-1.2030387,-2.214221,1.1800709,14.35591,5.2352633,-16.761724,1.2270881,18.494938,-7.0594153,-13.853671,11.865839,null,12.487523,4.8518047,-5.5417542,-5.4003334,-6.055462,-10.034352,-15.520468,-11.607224,1.1621499,-1.3877823,-4.6833143,-7.1205583,-15.963221,15.02394,41.719616,0.96447307,-24.035198,-5.348617,7.432615,29.103407,37.06455,2.3718047,-22.08777,-1.453893,29.702528,18.649063,-7.8066263,2.4225023,0.55055636,-21.717493,-3.4910421,21.779459,18.170784,9.88262,-8.264014,-32.513294,-36.547836,-22.587479,-15.145153,-22.462887,-19.699512,-6.5224113,-5.656553,-6.4890027,-1.7339401,4.922601,9.006899,-7.094082,-19.81457,-2.7564237,6.7283483,-4.46043,-6.3486648,1.556945,7.786239,11.052422,9.071811,7.0088587,4.350926,-8.644185,-16.019268,-7.814154,-12.842605,-24.153545,-11.333461,6.5092354,11.7991295,2.9331417,-13.989902,-11.619562,-10.263282,-22.622152,-9.78407,2.4621947,1.7915035,16.694128,1.9336954,-23.89257,3.1252816,24.199396,9.79065,3.0517752,3.9546602,6.6407843,-3.2879007,-22.459585,-10.115461,7.472489,-4.5286527,-8.960008,9.808056,17.890394,-3.6580164,-16.25077,10.159556,21.59745,-6.0200005,-17.972944,-2.074147,12.443453,null,19.27334,6.203373,-9.8288765,-2.2883062,-2.4519951,-13.15185,-4.973089,11.128175,9.487056,-0.81722534,-5.2940435,-7.3652406,-4.131012,5.5492544,5.641094,1.2981598,-0.57773685,-18.550915,-27.424822,-6.4413853,2.7479153,9.751191,26.88879,4.3625436,-23.79603,-8.7086735,3.550189,5.2753415,11.782052,3.6235852,-4.6319923,-8.587292,-15.807268,-3.948267,10.094311,9.210811,17.044096,15.99552,-2.7882671,-0.6219311,6.17315,-9.154551,-12.3410015,-3.9175897,-10.09154,-13.326908,-12.23946,-9.009915,9.054614,10.693536,-4.51184,0.33158138,1.1488909,-10.192812,-6.843201,-0.71408623,1.7575861,0.23165472,-6.002502,-1.688367,4.545696,16.004332,30.3222,9.578573,-14.408974,-6.004874,-4.329063,-8.857166,-4.202367,0.320416,16.6411,30.214014,19.248392,-2.7577505,-19.173836,-16.117792,-4.0508595,2.4294918,2.3654253,-18.692427,-31.171726,-4.948894,11.265457,-1.9688402,-13.46021,-8.4655695,9.247112,9.234269,-9.793796,-13.88297,-4.7776127,0.8569648,-6.962199,-6.957926,12.894391,-7.2140937,-37.156666,0.084678926,19.933687,-14.549399,null,-3.114105,4.811345,9.512977,26.100695,6.845931,-11.025268,10.725105,8.18996,-7.941279,4.0649796,16.201162,16.978733,9.348352,-3.0368702,-5.746081,-5.573479,-3.8447666,9.524678,20.47677,6.68021,-16.91837,-9.310739,14.399474,13.046504,4.782462,3.6103063,-7.8608937,-21.223183,-15.568107,7.4257326,16.301012,10.755683,24.182093,24.434086,-6.9332027,-17.198195,-11.426659,-10.698513,1.1979719,5.486696,-1.4766474,-0.1749931,3.5586922,5.2858853,-7.921053,-22.981947,-8.3992815,-1.3586249,-18.90834,-22.281412,-19.359266,-17.473366,-6.6419125,-5.5353146,-6.883586,0.8996952,0.31301346,-3.9771695,-9.294119,-19.340235,-7.5947313,16.911364,9.637773,-11.656683,-11.511008,-6.1990786,2.8305202,24.505148,26.725939,7.3718467,0.39656648,1.6123294,-1.1997335,-1.4373535,3.3556721,11.699729,13.537657,7.273597,2.6272724,-0.30090547,12.51371,36.413227,27.482807,1.000759,2.2473974,3.2546554,-14.435058,-11.146096,12.820511,14.839182,-7.92858,-12.387139,17.817308,34.2172,9.66042,-7.8642006,8.464045,21.74441,5.5716753,-14.98852,null,-5.57437,-4.521382,-4.8743844,-7.4970617,-14.76956,-23.154432,-18.4595,0.48326904,5.435706,-8.594332,-15.319509,-17.73415,-15.815179,6.58011,14.113475,-10.8666935,-17.248203,-2.8290176,-5.404951,-8.742394,0.74140155,1.5424254,-2.3942516,1.967571,-1.3069234,-12.593066,-6.9652867,5.3676386,1.1615337,-7.4490957,-11.843332,-10.410211,2.341017,6.281962,-1.3910344,1.5119506,0.801942,-13.04422,-15.980454,-6.0771003,2.0012238,8.534265,16.533848,21.521748,23.573658,25.595074,20.861853,17.359373,25.59727,26.380861,23.411451,30.476555,21.731197,3.8514547,6.816877,11.813679,0.91011554,-17.119572,-26.07195,-14.458305,-4.2918305,-11.249464,-17.08425,-12.10396,-1.0306962,2.5620244,-6.3714676,-13.987754,-16.040663,-6.2685437,9.648663,7.690862,7.74456,18.201853,1.7350789,-19.24829,-7.3762865,6.3149724,6.409581,12.978436,6.815239,-30.564142,-40.1477,7.987583,29.44838,-1.4386345,-12.610762,-2.665955,-1.9860129,-4.7912874,-13.633517,-11.700927,1.2249187,-7.7843227,-16.688147,-4.1798954,2.808257,-2.5293572,-10.651063,-6.874994,null,17.538574,0.49532875,-9.463814,-6.841347,11.0119505,17.706387,-6.63229,-6.939496,15.481353,-0.2688114,-8.408221,14.852426,-0.53710073,-25.98012,-13.050774,-2.0186727,8.310624,19.552774,-5.127696,-29.912642,-15.674543,3.4566782,2.7369967,1.1004006,9.354537,-0.80292016,-20.181873,-0.098847516,19.599049,-2.5619874,-9.026461,4.764288,-4.8713026,-12.891702,-0.47250375,13.628335,26.265715,36.738686,39.437027,29.59415,10.857353,4.2259626,10.54647,0.88405436,-22.400604,-25.52235,-16.664547,-22.19902,-24.518385,-17.451607,-20.5342,-23.767817,-21.911032,-24.859045,-25.508251,-25.372423,-28.582794,-23.466309,-4.5177975,10.636417,-1.2712553,-10.372736,13.468444,16.067339,-15.2891865,-19.975079,-8.86397,-11.792005,-6.6682715,5.249038,10.102794,8.604448,-2.9632416,-11.0977125,-1.7865692,8.437733,4.817021,-5.2081695,-13.983002,-17.081799,-8.392402,-2.8025124,-10.889979,-7.17402,5.6235414,1.2381251,-3.3733027,-2.3945155,-12.203703,-10.99819,6.6471167,4.6290693,-12.791676,-6.4125547,11.735712,4.0927424,-2.6687272,16.432272,17.519053,-3.8710473,null,-1.9602824,15.676345,7.2419496,4.047688,16.029472,21.92584,10.120153,-5.4423823,-0.0019236339,12.448583,11.083869,5.4128437,-1.983529,-10.195323,-8.57922,2.1543608,11.333299,11.607185,10.8318205,13.0721655,5.7639914,-6.4103107,-6.2319765,1.5908221,0.11661017,-5.502673,1.4444481,2.9822276,-13.219257,-14.988007,3.3197021,17.532166,17.746655,3.9439023,-4.9026117,-10.670092,-31.547924,-37.185543,-19.847576,-8.495964,3.8806841,12.60597,10.635609,15.728815,18.13723,19.156582,26.21942,17.592636,7.6900887,9.740948,5.9711857,15.823529,36.700844,28.687746,11.722602,14.709094,13.905017,3.769839,1.1005641,-7.0235596,-25.816545,-35.27611,-32.768272,-18.238354,5.229029,16.310572,17.073683,8.78239,-11.20239,-6.816929,9.892945,-4.6885066,-15.606023,0.64435995,14.809702,14.282721,0.83688927,2.4778972,19.832663,12.09382,5.391646,13.566737,-0.46847066,-2.70755,15.491594,7.4832363,0.10344315,3.7072496,-7.216857,0.45148355,19.701088,9.392157,-1.6657394,0.124723144,-2.1731334,8.676252,18.880018,4.5688415,0.4277128,14.035083,null,-13.362772,-7.3444715,-6.170612,-22.164297,-22.37661,-5.3090844,5.857644,3.925457,-6.1081185,-9.400829,0.42710558,-1.0934665,-13.296925,1.0345722,20.140856,9.077782,-2.924273,-8.278554,-9.053183,11.045733,13.609133,-10.201232,-13.87118,-7.840225,-5.709759,2.6923652,5.511288,9.24814,13.305682,2.4652658,-10.151532,-20.176352,-22.447506,-6.0976706,7.4245243,11.251657,18.294708,22.36607,20.638502,14.756211,2.6866436,-10.654552,-17.808409,-17.359743,-13.818527,-7.4817142,-6.846529,-13.857327,-4.481899,8.50802,2.294393,1.1095243,2.2475028,-4.638964,-7.065968,-17.578531,-15.730131,8.300017,6.735358,6.8642282,35.39049,35.788803,18.580399,21.908915,19.447584,-2.051121,-25.675821,-30.672268,-21.739908,-18.097929,2.1340973,29.65768,17.580725,-6.9424305,-6.8479247,-0.09816679,5.446801,8.604834,3.1331801,0.11562109,2.0854218,-3.407525,-11.820388,-9.229981,0.7103387,9.805596,11.422974,-3.214663,-15.806102,-7.578606,1.3868512,-1.3726608,-10.927039,-21.658752,-14.542766,4.071993,5.5651665,-3.3874211,-5.4478216,-5.65382,null,16.215277,1.2614303,-0.73524666,2.689036,0.6359377,-12.046727,-11.499054,12.564185,12.42187,-10.099975,-5.174804,0.8691883,-9.7922535,-6.4605207,0.004843235,4.390128,7.123369,1.2313561,9.841302,8.185471,-14.753593,0.83143187,27.515358,15.278284,0.31128645,1.7190504,11.703092,9.327759,-6.7276306,12.306232,34.77928,10.555393,-10.091327,-14.728775,-18.781265,-7.9304137,-10.618067,-17.304392,8.531284,26.07681,20.074287,18.711329,19.030708,29.515911,45.4312,36.20713,28.013329,45.409782,40.55294,5.9291553,3.5562172,32.203827,32.271774,3.8821583,-8.229264,0.46969318,3.381225,0.2139616,2.4540532,-1.8384819,-14.835243,-22.396763,-23.685993,-26.048717,-34.64331,-27.98347,0.71622086,-0.32667255,-17.09792,9.704643,30.400879,8.133225,-5.819169,-2.9451878,-1.2983549,-1.4919231,-2.8003318,0.6538811,-4.13857,-11.643465,0.69414043,10.044152,5.9352446,-1.8209321,-15.959423,-11.898037,8.595213,13.034516,14.194494,13.700414,-4.401968,-9.686918,8.841544,8.2017975,-11.1547165,-1.9134226,16.98921,9.092675,10.046612,13.873641,null,1.0809772,-8.94325,-1.448834,2.2785122,0.85566616,-3.1695333,-7.693603,-5.428299,-1.0919433,-2.7338428,-11.959255,-15.294792,-9.496382,-4.8160543,6.240009,7.3223095,-11.291876,-7.7645197,8.781462,4.2064314,-0.055567503,-2.423947,-12.041792,-11.29252,-0.18746853,11.369167,7.3775787,-11.3381815,-14.528019,-12.562248,-20.247868,-11.89398,9.290527,21.73496,19.054531,7.728649,12.440168,19.354527,-1.9049501,-17.47781,-6.5167694,-7.104538,-22.87949,-22.490936,-13.083834,-14.03791,-11.56086,-5.2727118,-10.082013,-8.552144,-9.025296,-36.139847,-45.71891,-27.681826,-33.481846,-36.48541,-14.646196,-13.770084,-15.661526,-4.468753,-14.594053,-7.8430934,30.334187,38.181114,19.217247,-4.933468,-28.0043,-21.399424,-16.609941,-29.783827,-18.401136,-9.278711,-11.05214,6.0156565,2.5981727,-17.318752,-19.3775,-18.420982,-0.44467068,13.81848,-6.206012,-9.480399,-0.5186522,-5.710725,-0.82080156,-9.077873,-14.397606,13.682308,3.6507137,-33.740067,-18.909788,4.1507854,-5.849681,-5.9630184,7.391933,3.0954502,-4.8741074,7.6623907,11.451611,-11.3258,null,9.302065,21.650158,11.833566,-8.322863,-11.807236,5.8681912,12.24243,9.011825,5.736873,-5.6814804,-5.0164585,2.0554092,4.209353,17.076826,14.581528,3.186758,9.747679,-6.6325107,-24.065079,-0.59205794,12.84974,6.858418,0.6950078,-6.016158,8.141676,2.3763897,-32.011024,-12.763329,24.569902,17.968447,13.344476,9.511735,-5.6980724,-3.5061188,-8.031085,-24.508366,-27.284472,-22.595676,-2.9471607,14.871407,7.655281,14.061245,24.492453,8.930895,15.932136,40.09319,30.8384,15.496079,11.322079,2.9406965,7.14542,19.64141,20.285217,22.34312,31.934544,34.47106,30.719978,31.510914,29.388882,19.601774,14.337293,-3.0093193,-39.90996,-42.977425,-6.615653,4.39406,-7.2227764,7.7978745,24.586802,3.4012518,-15.762157,-8.093669,-12.519154,-16.583424,4.7464967,13.923565,10.480614,8.796415,-8.172287,-9.259181,10.98674,6.154645,-4.9177847,-0.3611769,-0.1213789,2.5823598,7.734277,0.3038454,-4.3411446,14.960438,32.51645,4.9714303,-22.655869,8.139627,35.384457,18.35027,8.349415,9.57943,-3.8954587,-12.892391,null,15.968027,11.70558,-21.074627,-39.419643,-4.69984,17.425053,-5.3894815,-10.748165,-2.2439299,-9.199347,-1.2548757,19.409164,16.273424,0.43339324,1.8294342,2.9201581,-9.665956,-3.1530027,10.978742,5.9458294,13.546913,19.322924,-5.5348287,-10.524515,6.566004,9.400773,27.857876,48.919735,21.850925,-13.247958,-15.757505,-20.644138,-26.902182,2.109129,34.362453,28.067097,10.697158,5.216444,-0.5393257,-11.879446,-26.512712,-29.926264,-21.832647,-30.115553,-41.11724,-23.892221,-1.645047,0.74996877,-7.1207547,-10.415679,-5.347228,-6.189876,-15.708672,-18.107777,-14.015774,-9.64339,-9.24147,-15.477427,-12.337953,3.3296232,14.8840475,20.633112,21.88456,18.281324,13.514601,10.203773,9.487734,-3.861587,-15.863674,9.456461,20.867313,-10.735828,-7.742953,12.82748,-8.038713,-10.642636,9.65085,-5.4089804,-19.033682,-2.0453546,9.483044,3.9697356,1.0754485,4.754326,-9.526842,-24.168003,-6.474159,0.9185381,-4.6142087,9.533377,-3.607288,-24.07544,3.6993065,12.123165,-12.428174,-5.5652056,2.9230614,-14.825926,-13.039797,12.8449335,null,-15.76496,-3.6361423,2.6964238,-5.564873,-16.74138,1.1704788,10.151545,-13.142437,-11.757786,-7.354945,-18.734,-0.8446554,1.9528809,-17.059483,0.75256157,-5.9261074,-48.30339,-25.320274,26.969795,16.831491,-14.481166,-10.718949,-2.8036442,-12.088379,2.6058898,31.705954,10.1279545,-27.230255,-15.857152,-3.3407946,-14.841724,-2.7396193,13.773142,2.442412,-2.6036372,-1.96351,-19.027111,-24.257978,-12.929071,-9.597293,2.2204506,19.097355,16.59601,11.193209,4.359211,-7.991933,2.0854073,17.749544,11.620909,5.7102556,0.25657272,-6.859071,4.8756294,17.012407,17.89959,22.414612,20.108547,14.511471,16.376839,10.2461,-0.35940576,-8.011192,-14.463509,-10.761915,-10.836498,-14.034092,6.1946154,15.339965,-13.36618,-27.8084,-16.390942,-18.457382,-21.619038,-1.6663669,15.821775,12.812485,10.45533,14.817689,13.676874,12.260092,6.8560123,-10.680356,-14.553423,6.1722784,16.27494,-0.64783,-21.361122,-31.405516,-29.441818,-13.785217,-4.8820934,-9.140875,1.9383085,8.910331,-10.162167,-8.145559,10.17803,2.848729,-6.0011125,-11.131666,null,-4.6395245,-3.1098623,6.6972914,19.095903,22.554672,4.9859886,-20.926502,-13.706016,14.994902,16.998867,2.7175431,-0.5783031,0.25730276,0.46563864,-0.5937171,5.293083,24.970312,22.730585,-3.7993493,-4.4874616,4.7813053,0.847348,12.515728,13.193781,-10.676988,-6.991973,10.752403,18.15524,33.57966,32.201073,16.4548,16.801632,3.7939384,-16.462961,-9.760072,2.8865943,17.24184,29.03433,15.114835,3.356523,0.5501566,-14.14176,-9.539068,11.4503975,9.057457,-1.1593494,-3.5774927,-6.674906,-7.082864,-2.3050709,11.988674,22.58638,14.817165,14.095064,15.901979,-0.41562366,-2.2752676,7.2207475,4.0299077,19.41134,36.398438,16.262608,1.9844837,5.800006,-9.278082,-21.378004,-6.4106073,17.015669,36.883842,37.152203,9.845009,-15.9354315,-21.23138,-12.7310295,2.5032058,13.479739,16.704151,12.451632,-2.228054,-6.166408,3.8355122,6.3183045,22.677925,36.6808,-0.15924525,-20.76963,15.377853,27.446766,10.819517,6.4464574,5.825896,16.267645,19.25256,5.1069603,6.63441,-1.8666887,-8.027877,24.939198,18.06745,-19.618969,null,13.875007,-1.9031297,-20.416359,0.6585963,10.922569,-2.7841768,-6.9155016,-12.085621,-17.378326,-12.221621,-3.7982411,6.108717,-2.9107387,-25.884876,-16.274109,5.7165504,-7.68038,-21.064056,3.494277,27.235535,17.766436,-2.7311862,-13.489215,-8.788326,9.690323,19.721848,20.570776,22.802858,-1.7617636,-38.979004,-30.506783,1.8785791,11.29339,14.160512,19.561325,8.606237,-11.52933,-17.585608,-12.518795,-13.127895,-12.167061,-6.6959767,-9.080887,-4.407954,7.585624,-3.1745381,-19.494368,-11.058206,1.3027,1.3848348,6.5712676,17.866718,7.779399,-17.233105,-15.209226,-1.7586117,-10.0020485,-10.396259,-1.1653767,-7.519694,-4.659926,7.29917,9.929549,19.720293,25.356583,19.097149,13.712215,-2.3228312,-2.93953,16.845734,5.4681573,2.122643,31.602768,23.399502,3.396934,7.8962507,-6.396308,-4.055787,23.983114,9.066944,-13.351286,-4.9103174,-5.4927382,-5.797101,4.289624,4.1144443,3.2107954,-4.8388004,-20.862164,-8.514395,19.360985,19.32094,3.8467808,1.0713139,-4.269161,-21.037193,-15.042496,10.653944,8.407236,-7.3489494,null,-9.466013,13.052696,14.418934,-0.03620243,-4.083621,4.355525,4.8366556,-3.78512,1.9674386,10.469837,3.532338,-7.195015,-18.206318,-11.924754,15.835952,21.491264,13.969525,20.878,10.744056,-9.124618,-9.777704,-3.86056,9.992025,18.565449,4.5969744,-6.421549,-20.013811,-33.79279,-11.0766535,13.473875,14.728654,24.797087,17.842602,-20.136414,-41.057793,-35.11238,-16.279242,1.865169,3.824421,9.942062,24.519226,21.57807,14.333944,20.415379,22.173168,7.7353497,-9.903305,-13.5992985,-10.523403,-14.300161,-14.865601,-6.6924253,-3.2336922,-12.598505,-20.046997,-8.425686,2.8310275,1.8136463,9.110343,14.0718155,5.651696,-1.7742596,-15.732502,-27.618109,-24.584671,-14.410415,19.850878,42.791412,14.676793,9.931587,22.385818,-16.07148,-20.285442,28.55986,25.554731,3.7930088,10.639494,0.2486844,-6.1614494,19.177372,32.923866,12.711595,-15.212505,-10.12482,20.419676,28.697674,13.648434,-6.121322,-19.579586,-7.4231553,7.8397045,4.6112614,5.2261667,-2.1616244,-23.434216,-17.747635,2.2996347,2.4722009,8.059544,26.506243,null,5.3575087,4.003541,-1.3132899,-13.415419,6.075698,28.566814,6.404396,1.076581,20.946243,11.457604,11.654459,19.332012,-6.0884724,-7.5066767,12.05028,6.4085126,20.469501,33.67623,-5.9228044,-33.09381,-7.785987,22.539497,12.57918,-19.511515,-8.054427,7.7723107,-22.525354,-3.7384706,44.247406,8.392784,-27.367695,-4.9247336,-0.8894347,1.7297726,25.214008,31.289194,26.835995,18.54594,7.8909435,-2.2955167,-26.036911,-30.702312,-2.2081432,10.200704,6.23884,12.401901,16.655289,9.3974,4.799885,20.113333,32.978935,13.990223,-4.084998,4.9479485,9.693236,-10.029061,-28.104786,-17.013914,-5.6187754,-16.033772,-2.053516,33.8843,38.204765,25.509521,18.971203,8.59317,3.712616,-0.74959326,-19.08034,-25.195883,2.3473043,31.77427,23.514236,-4.445504,-15.169785,-10.507987,2.6915207,12.029047,-0.91567326,-9.424708,1.1933942,1.5665226,-4.190479,-5.2081494,-10.47708,-6.4098945,2.6177003,5.7792397,25.119263,34.030865,-5.314592,-38.757343,-26.496832,-6.619861,-2.031296,-11.604959,-24.487629,-16.629343,-1.745553,-1.7649775,null,17.858559,-7.3951,-26.793903,-5.810061,1.6804166,-9.3761835,1.1967392,14.457111,-1.306112,-26.952059,-38.391354,-24.901957,6.816253,13.4686165,-6.9374094,-10.517804,-11.1187,-23.320595,-12.567887,12.19809,8.657778,-19.170258,-20.88118,12.539394,15.307107,-9.601271,-1.1529627,-2.0833988,-34.888668,-19.618454,24.41994,11.124531,-17.015377,2.265138,8.455782,-22.436972,-18.544325,1.7191267,-5.7468038,9.279841,28.453897,7.7144904,5.8298573,19.500954,-4.766096,-26.401318,-11.861778,5.232006,-0.12144375,-14.475644,-23.39568,-35.65914,-31.204292,-2.0989695,1.993032,-9.733478,0.29700994,5.536271,0.922716,0.6228852,-11.301688,-34.053814,-46.66375,-34.50316,-13.428776,-1.5781264,9.229561,-7.1379876,-48.180138,-47.716057,-20.202623,-5.7014327,10.897152,10.6576805,-9.686969,-22.591099,-30.23373,-14.48767,14.409685,16.002031,6.972968,-14.976663,-38.62578,-8.936749,13.993544,-11.633773,2.4776564,28.105392,-3.8607697,-16.165974,7.5920444,5.1320925,1.065299,10.092766,7.5452785,3.4960997,-1.8287318,-7.662608,-3.5762308,-2.9485545,null,-10.448217,-15.108618,-4.6817937,-11.472288,-18.962515,5.225968,22.37514,11.612507,4.957522,-5.708472,-12.248133,11.391546,13.320726,-6.0007944,14.025263,20.644314,-4.4445443,12.365574,28.021656,-7.3318486,-31.596588,-14.796508,20.88926,31.976309,1.9177232,-9.929242,-0.8812032,-10.376678,-0.3110094,31.636131,33.60904,11.672011,-5.6748314,-7.5242076,4.7168684,14.627548,19.232876,27.349085,20.742626,-15.379698,-32.796173,-15.635839,-29.658697,-51.387028,-20.020176,4.2673135,-3.7784123,-1.1670866,-3.4715395,-15.107031,-14.074875,-6.221756,-8.735788,-23.740627,-9.6195135,20.577597,0.9913573,-23.498943,-16.759762,-22.785543,-15.509494,9.269281,6.913942,8.185625,20.117203,4.246312,-11.03195,10.601024,26.691835,0.35367346,-5.051453,26.792818,4.889433,-36.44395,-7.362505,18.823141,-9.165194,-17.155117,9.174985,10.108986,-8.219154,12.403181,41.501617,20.490017,-6.3063374,-9.358643,-4.1973057,22.72947,31.015,-3.0716543,-7.6032457,14.994884,6.5388985,-4.362844,10.203226,15.20352,2.3488111,-1.989955,2.832701,14.967754,null,-13.320299,-7.5428867,-12.273363,-10.4276495,-0.7338361,0.17762685,-6.9329443,-14.591736,-11.596517,13.802324,22.960667,-4.9738665,-6.5022454,13.289978,-3.236864,-16.578815,-6.7420073,-11.34636,-13.886045,0.1932106,7.5703077,1.5172902,-1.1418445,0.64374495,-11.946497,-5.930826,32.54708,32.54683,-1.5698415,-12.210286,-4.4916224,12.627837,10.500504,-16.525225,-11.792912,5.7523184,1.7880182,3.4446883,4.2909274,1.8638914,7.9023037,11.212498,11.352461,3.6162946,5.4087696,24.303923,21.479956,20.69529,33.568596,16.07384,5.9093575,16.607246,9.405061,14.368228,26.525745,19.131662,19.103146,14.908609,2.7015672,6.821373,-0.0707719,-17.067282,-4.659645,17.213293,16.238523,4.42945,-9.5023155,-24.047031,-22.41167,-12.72789,-7.123801,12.675665,28.554127,14.752472,-6.6307716,-17.49744,-3.4673862,15.211508,-0.28505993,-5.3255076,7.9254656,-6.663637,-8.408525,-4.926504,-31.557564,-20.54338,6.9110184,-8.388454,-1.9265318,17.584856,-13.217445,-37.291237,-9.761667,20.784676,17.851873,-2.6559186,-11.054358,-6.2897496,-3.8013372,-4.710167,null,-1.6730661,-0.30118155,-8.236292,-5.6062593,4.737255,-7.865551,-11.588742,3.813552,1.1970692,-4.943148,-4.9252872,11.350291,44.494915,31.15855,-10.102968,-18.77928,-17.811417,-2.4094844,21.170218,14.878303,7.3590612,-4.1260605,-26.768307,-12.424061,6.0146303,-8.63206,-12.93229,-8.341131,-17.761293,-21.409056,-7.6074,10.960923,10.02069,-14.656867,-26.986485,-12.194109,-7.936502,-19.77855,-7.206816,13.882973,1.1851542,-28.159443,-36.86464,-15.653522,-8.488463,-36.50137,-36.335754,-23.36684,-46.742,-37.20242,-5.742448,-23.66979,-29.904308,-6.9272866,-10.421988,-17.011032,-6.818052,-4.3256187,-14.321421,-15.82674,-2.8090258,1.6851704,6.8602324,9.896555,-14.344593,-14.209354,14.223054,10.6228485,11.444261,20.406425,-12.128606,-36.970943,-21.8397,-3.8626084,3.8891804,4.630308,2.6640797,-9.227669,-22.653694,-8.775693,9.001041,8.941082,5.423956,-3.5962188,3.2611322,24.860928,6.5858555,-26.265907,-15.570431,4.168459,-0.87702495,-3.9090364,2.637988,1.5692935,-6.5062423,-15.623704,-11.088591,16.668844,28.313791,5.786134,null,5.6456137,3.405987,13.038242,20.037045,9.046596,-8.843135,-15.189971,-9.512573,5.0846252,17.863869,21.35765,21.206608,3.4803782,-30.373592,-25.607357,15.129194,15.629613,-12.83989,-10.398723,1.526813,2.6559181,5.6103997,-1.4686196,-12.260353,-5.4609737,11.332095,14.648891,0.053509176,-0.5930145,7.580584,-8.8665905,-11.085678,16.763264,18.741497,-0.27732444,0.72450066,14.428003,13.500392,-4.3631954,-9.007967,2.0675673,7.0317736,16.360954,28.828583,24.191635,7.175355,1.8891058,20.69917,24.362179,2.5388093,14.393112,41.216198,32.81591,25.593008,29.061703,16.492914,6.142584,11.572994,19.207193,14.434307,5.9281807,16.257011,27.038048,16.694195,8.636677,10.767913,3.7624989,-0.88821507,13.149961,18.215706,8.305363,8.380228,0.84438086,-6.5765104,13.264579,16.609058,0.121679306,-2.703597,-14.506319,-15.017786,12.297589,18.558033,8.85761,8.248503,11.36409,12.58358,3.544358,3.219479,4.0199256,-10.684789,4.961836,27.079628,12.13165,4.993387,2.7245307,-0.26239738,9.141214,-8.949504,-12.165335,21.805607,null,-23.893604,-13.564421,6.9595013,1.815567,12.082212,5.0560474,-19.463314,-17.646492,-7.373371,0.5230408,3.2996302,-1.2724825,-0.28368568,-3.3041961,-7.6732025,-15.481926,-29.931824,-13.214977,14.470817,15.336851,14.734178,2.579746,-20.18295,-15.856743,-3.3096476,4.9295826,6.626519,-11.280203,-11.256014,6.405585,1.2122409,-0.6810484,13.0270405,11.374251,-0.24314976,-2.7060966,2.1701946,5.0356293,10.352132,24.6866,29.14451,14.753225,-2.088429,-8.397422,-0.10287595,4.2652683,-6.484866,-6.639242,1.1918068,-6.99891,-9.308835,4.8401213,0.5902066,-17.4016,-13.374636,-3.0066528,-6.94985,0.031431317,18.26492,21.876791,24.027922,33.86918,23.08839,-3.9086003,-8.944962,2.0873475,5.132616,12.14805,15.424998,-7.348671,-24.096994,-12.716961,-2.9033732,0.013404012,9.412267,8.817307,-12.376367,-24.745094,-7.716404,4.95711,-9.516297,-16.410442,-0.35448647,3.9798284,-16.458294,-22.846653,1.2539465,7.497344,-14.684196,-15.01129,-3.7454453,-19.063158,-29.265903,-9.287758,6.4529247,6.2352276,5.391571,-12.783699,-31.253315,-5.4210997,null,3.1623297,13.33489,-1.71703,-18.234879,-3.3965802,13.938271,2.3968787,-7.3656187,-0.47506166,-4.1782556,-7.9399433,-3.9531307,-7.518305,-0.3300954,7.1831665,-4.5190516,-0.10967752,12.786293,4.1990166,-3.4492917,-6.6491776,-10.396824,-1.3422575,4.518195,-7.8041077,-21.208504,-13.040455,6.8906307,5.564267,-2.601391,5.5324297,5.3567057,-4.0087504,-2.4115338,3.7278914,3.7169323,-9.735687,-23.11586,-19.939264,-17.256805,-16.821335,-5.182377,8.669885,10.980017,-3.322036,-4.66155,16.001572,3.1944523,-19.841942,4.3540382,11.398955,-16.645832,-7.4624314,11.773293,-4.1473823,-23.703457,-27.484451,-15.743189,-4.8866844,-11.61462,-13.860153,-11.274454,-16.333471,-16.193733,-16.309319,-4.1281905,24.377296,16.415026,-7.9947896,3.7536535,10.035726,-3.8425484,-4.2184596,-1.2369908,-0.4619577,5.0776734,9.419397,7.160022,-1.7319015,0.16263199,2.4641793,-7.373193,4.64512,11.091177,-9.744723,8.292455,31.964462,3.0574574,-15.9726715,-9.734005,-2.2622495,11.317678,1.7096453,-13.151298,-2.3559914,-2.3321018,-5.0078316,3.2900171,-5.84958,-11.808988,null,-5.534774,2.4014535,-1.7799349,17.52183,15.200978,3.7206488,21.35384,13.59053,6.012517,23.351234,-3.3990889,-22.70185,11.478571,9.25142,-13.347517,8.410653,17.092075,-7.2752333,-8.011496,8.712381,8.032944,3.4833455,4.6570754,1.6950583,9.903678,17.98969,-6.4987683,-22.34308,-6.978362,-11.394321,-18.306234,2.6786327,6.7204094,0.8088269,8.552561,-2.3069296,-3.8900456,27.604025,34.071587,19.67149,25.309765,30.857967,19.94469,0.7050729,1.9402647,27.569664,23.077873,10.210861,24.857964,4.971421,-17.71206,12.489331,13.47706,-12.798603,-0.68498385,6.712275,-6.073295,-6.8190937,7.8226757,29.790724,23.87926,-2.3354263,-7.287287,-14.689804,-25.34015,-7.5741873,10.193065,0.952116,-16.844074,-14.286427,3.5218983,4.153194,2.372149,8.171588,-14.115873,-41.79491,-26.666212,7.7654333,11.657208,-11.533639,-15.674178,-8.133731,-19.287127,-15.953566,2.4514174,-0.748544,-5.4573283,-0.40716392,5.2382083,11.201555,-2.1821709,-13.134422,6.624544,13.869894,2.1432872,4.389265,-0.52343655,-16.8522,-15.942413,-10.134677,null,-23.372383,-18.60655,6.1615887,5.8109713,4.913785,7.4238486,-5.3028708,0.6114006,16.071136,-11.074734,-24.762226,17.133713,24.55106,-11.0088005,-8.470366,8.920068,2.0349693,-0.28589916,2.9379926,-1.8385558,0.71968627,6.7974396,-2.8575916,-5.696165,15.088184,12.046491,-21.486427,-27.4305,-6.9293547,1.625375,-7.4758124,-13.495984,3.4953196,10.305607,-6.557583,-0.80212116,10.31332,0.75453615,1.7703981,7.7596354,5.832616,0.77922106,-1.6010897,13.550251,9.231726,-12.147115,11.65118,23.58258,-11.644161,-16.46003,-7.389181,-13.5544195,-2.584547,-2.7163029,-12.240488,6.6717024,15.514962,-5.7212067,-19.027504,-12.930548,-9.003599,-19.50103,-18.869087,2.0880785,1.2495308,-18.741322,-12.187889,3.2881527,3.0158029,13.825428,18.401825,-7.9606776,-14.526957,7.2466335,14.7691345,11.729597,-0.17647761,-5.5518384,19.136408,20.719995,-4.699527,3.2287707,5.229088,-25.514591,-21.124012,14.594921,8.712996,-25.878664,-15.856921,13.295225,-8.745079,-34.211044,-16.22366,-4.556008,-9.667313,-5.3170137,-2.3308063,-15.266604,-23.470177,5.4131365,null,-1.8233433,-4.235701,23.61047,5.246089,-9.252259,17.725582,16.28566,0.83969784,-1.4703984,-15.844069,-1.1899068,20.8124,0.75031996,3.696583,18.321644,6.8871326,19.971937,17.149761,-19.682661,-11.681391,9.136477,-0.7802782,-2.6300156,5.6867456,15.187792,25.546297,27.971697,26.886467,12.239882,-11.445328,-8.752578,13.81753,13.625204,-8.277311,-5.017085,14.398127,-5.861447,-33.882645,-11.195194,16.866154,-1.0137055,-21.808102,-5.1584873,6.734105,-10.074864,-15.040485,-7.1803207,-7.1867046,-2.3779929,4.053512,6.891809,5.74929,-3.5384355,-0.7169304,4.8049994,-5.4409533,-2.2772176,10.015621,7.4187374,0.47567558,-4.0719514,-2.402245,-10.816818,-29.358902,-7.956702,22.887657,3.6231294,-14.645222,-1.1267548,7.8634176,11.589524,19.564934,22.175724,7.504603,-13.8630295,-1.5080824,30.106688,23.46653,6.2471704,26.636513,27.82244,-17.760267,-16.58382,34.920334,27.709988,-6.9248734,17.812908,28.717384,-15.5470915,-11.878654,35.3498,25.68406,1.630373,16.769379,2.4741325,-20.890612,9.879934,20.230114,-8.638914,-1.504814,null,-4.795061,2.4659991,5.295991,-11.689976,1.8717947,14.483381,1.6984468,3.414869,4.137036,-3.522108,6.01843,4.1613636,-16.0974,-5.0891604,21.213123,0.92537487,-31.766472,-8.607112,25.470797,7.8356,-15.594821,2.0972633,13.776633,-9.801246,-10.9514885,20.53572,18.735027,-15.042008,-30.496288,-21.712631,-10.398613,-12.791882,-12.422222,-6.2454467,-21.229832,-23.740116,1.1636776,1.7310376,-2.6261992,10.847812,4.831319,-9.998379,-20.404333,-26.967556,-4.066633,13.379396,-8.177604,-11.054876,19.414478,27.379906,14.670627,15.727137,18.281487,20.35785,35.44047,28.688639,0.45460847,4.5040064,21.873549,11.314798,-1.902803,9.438101,30.303867,25.863316,0.6959214,-10.1398,-15.046123,-14.411182,8.744493,11.76824,-20.176247,-26.902758,5.1673255,25.097519,7.605546,-22.030712,-27.80766,-2.896095,12.3048525,-0.6015871,9.149299,19.824926,-18.779829,-13.256592,36.477177,8.232529,-20.406998,15.941898,14.584509,-4.0593004,11.797336,16.106451,9.461372,1.182682,0.19392323,15.7883,0.2354145,-16.310652,14.03555,13.98783,null,18.45854,-14.994953,-26.15456,14.23518,9.721628,-21.350874,-15.517886,0.73388195,-3.6850686,-16.621372,-13.022474,0.6183789,0.8043175,-3.61041,-6.362499,-11.067274,-1.2676349,13.837946,6.2670755,-5.5588303,-0.58283806,2.9808307,6.644093,13.761429,1.1421111,-10.443188,-1.5808823,5.465481,23.607998,35.03789,1.0393192,-16.921852,10.816885,23.665213,6.159115,-16.414211,-16.885448,-12.176248,-38.817673,-36.799072,5.286404,-4.1452894,-30.505898,-9.189182,0.19694185,-22.755287,-36.31999,-37.36618,-29.822924,-15.475043,-16.143345,-26.284706,-16.906986,-11.670178,-24.170567,-14.50061,-7.991496,-21.414762,-4.6584973,1.208847,-29.594446,-28.149374,-9.386982,-1.0357127,13.902222,9.929198,0.29628968,3.4923387,-6.716255,-7.838258,4.4571056,1.3793532,0.828763,7.1738176,8.057966,3.1767898,-8.599006,-6.995189,1.318836,-10.248705,-11.3897295,11.016294,11.3514185,-12.261557,-11.028906,11.369589,6.6143537,-10.985498,0.18235111,11.508743,-6.7479415,-17.322271,-2.8610835,-7.9571733,-26.319416,-4.893828,8.750611,-23.555954,-21.068447,7.0346375,null,-7.659726,0.6381464,5.3584394,-7.5825233,-15.027964,0.81486696,1.3177161,-4.3768463,16.057262,15.106299,-21.63779,-16.09354,27.600536,26.007778,-5.743594,-5.92864,10.007643,-0.61483353,-17.008465,12.313326,38.649292,0.7450231,-19.134048,11.009246,5.5174227,-16.833212,10.886801,49.8545,32.86893,-11.505428,-5.566312,13.122494,-0.3598361,16.002445,28.774698,-5.723609,-2.0935113,28.68588,27.043045,18.915184,3.1272674,-5.091936,16.24624,20.966993,9.065162,13.418833,18.483864,12.398762,12.335777,26.910084,31.388248,27.102468,33.302742,23.332428,6.7813206,-0.62018967,-20.845516,-13.80961,10.46835,0.6282866,9.992546,26.807743,5.105541,-0.59615135,5.6558056,10.099204,28.78618,11.491581,-19.547024,-9.173155,12.732588,28.788641,18.281967,-8.424494,7.0772815,25.885485,6.2327685,-9.757806,1.468268,26.53807,12.292471,-24.455963,9.956194,42.056595,-11.5596895,-33.771503,5.155965,14.912113,2.4073644,-6.8569794,-5.16883,15.030885,11.906459,-0.75254595,16.84266,14.707915,0.11001253,10.582955,-5.9777646,-11.331478,null,-14.491186,21.542404,-2.650908,-17.225452,0.14384317,-2.1429076,-9.427456,-12.348146,-9.764222,4.431566,-4.309414,-17.14333,-9.86284,-15.177417,-1.6632028,15.328756,-18.344107,-9.233657,41.286762,17.291037,-18.326614,-7.825092,-1.3772497,2.566266,0.12841827,-9.500658,-10.247925,-13.056133,-0.97528267,15.31861,13.171868,5.5057282,-23.673975,-31.912035,7.823344,10.069525,-11.741937,-9.510932,-9.448114,1.7344229,0.75889874,-12.511844,11.022633,1.9964972,-33.44468,-9.980067,0.70404387,-28.861269,-37.526962,-36.864502,-24.839577,-6.6485667,-13.786585,-24.062258,-20.980331,-9.005358,6.5718346,6.221512,-13.854876,-26.325554,-2.4796994,8.7688055,-29.353138,-26.671288,12.356413,-5.2510805,-17.8138,11.574075,3.5850108,-27.613409,-20.99446,4.8811426,3.1111565,-5.3352137,15.826218,10.47043,-20.702862,-4.3620486,5.2276106,-20.748903,-8.194742,13.661778,3.262046,-1.1611607,-0.07989478,-2.6758838,3.1923163,3.3731408,-10.243307,-17.875698,-7.94151,-2.8023171,-13.800817,-7.841548,10.973787,-4.118989,-23.172472,6.2295914,24.301105,-5.9100103,null,-4.091156,-15.55483,-17.423206,-3.7018566,-8.479436,-26.11037,-6.0853796,10.590171,-23.520758,-32.508335,3.1047251,2.9394162,-27.305494,-20.954327,13.0045805,12.057009,-11.947603,-3.289792,6.361803,-2.7638397,3.8532457,1.0058529,-6.82288,7.1977572,3.8542843,1.1800442,20.473803,14.888281,2.0936337,6.955346,9.466678,11.860352,8.270575,5.5008926,11.402332,1.6941717,-5.6526103,4.2937517,-2.1189165,-27.828812,-42.861176,-27.573465,-1.1161053,5.240859,-4.663332,-13.612117,2.4933398,25.682364,8.503026,-6.754811,9.930492,17.214346,12.933754,-9.397276,-22.476593,12.783789,10.886733,-30.055746,-12.111155,19.450893,16.349068,3.1833744,-9.387643,8.597815,26.137337,1.1352634,-14.246357,-5.1823997,6.1968594,15.572562,3.5691447,-16.399221,-20.342747,-8.690182,5.338008,1.7288918,5.4599786,15.714117,-7.303525,-24.066574,-12.638881,-2.9013257,7.5880527,-1.8519454,-16.806564,5.436288,15.211255,-2.658124,-0.07067442,10.393297,6.78102,-5.3508177,-4.7081833,19.034836,21.851408,-6.8272834,-18.889103,2.4539244,27.38567,11.680224,null,-14.204822,-39.943367,8.250554,9.962957,-17.269657,-1.605021,14.845492,8.485409,-6.433772,2.3835773,24.789124,6.7541037,-14.273645,-3.5890372,6.879792,20.870514,16.718782,-14.184839,-5.3442883,27.267887,14.3252945,-20.018328,-19.371052,8.39313,8.898308,-20.079924,-20.23446,10.336483,18.60407,-1.5495391,-13.21323,-10.517187,-10.164409,-4.091418,4.394935,-1.9009233,-9.109354,-3.5645614,11.614443,16.992584,-2.902196,-5.490837,25.601377,36.453896,16.637745,-1.7280183,4.617591,26.814941,21.81293,5.260699,8.809734,1.6033192,-10.485702,-2.6389859,12.500185,31.014196,32.544106,15.242115,17.861065,24.275833,7.174081,-5.6233635,-0.38276815,-0.27645397,-3.2050252,14.686865,13.882095,-27.970318,-31.062668,3.7425365,12.980299,26.197018,27.116245,-17.769394,-29.33844,7.6597443,16.322933,-11.489334,-15.487085,25.401562,32.201756,-17.311567,-23.328989,12.331896,14.684216,0.28033257,-8.452835,-15.529053,-14.157024,-5.616209,8.408982,11.421995,3.9016652,7.866106,5.3508844,7.5710917,28.15411,11.107165,-7.428305,27.146801,null,2.7060747,18.026546,0.22756195,-14.075295,6.8748364,1.2824497,-19.993004,1.1997614,24.17513,-0.20156765,-25.164219,-0.24636865,25.786877,-1.0707157,-20.953913,1.6454458,5.8582206,-1.7760878,7.5196867,-0.6193857,-6.546276,7.354725,-4.5887585,-24.36713,-7.0471454,19.37919,3.2244978,-38.839676,-28.24197,13.962089,0.5141302,-17.824142,15.266636,24.482372,-11.159292,-16.786509,16.297926,15.822834,-23.185385,-25.137424,1.0032989,-6.1029525,-30.834978,-38.85688,-19.242832,2.2441058,-8.000865,-5.329726,9.089825,-23.728651,-45.04969,-25.97379,-31.678589,-35.011642,-14.943245,-15.576473,-20.57572,-17.16991,-20.41354,-20.996298,-24.873152,-25.269426,-5.8991075,6.7399807,2.0658045,1.2704475,10.433271,17.351112,5.2302217,-3.5041633,16.108757,18.008484,-10.962534,-14.765802,4.5122433,16.668427,21.80463,7.796936,-11.866438,-3.8914638,18.225704,14.073166,-30.664211,-42.456684,20.437416,30.379599,-31.5223,-18.150345,26.19852,-2.8800616,-28.977837,-0.9716325,28.356215,1.9006357,-44.945137,-8.086786,39.22566,-8.494047,-34.01742,1.4236383,null,26.216217,18.295383,-15.40219,-13.217871,16.268805,16.001522,3.0354462,2.569418,-3.850707,0.7973108,7.6756835,-14.28925,-5.6390696,34.448624,7.721287,-39.485455,-7.7189913,26.801022,-10.0172615,-33.553665,6.294627,25.721283,-5.1908503,-7.5370035,14.015943,-5.763717,-21.687172,1.7866502,10.389085,5.092972,2.9079452,-13.241426,-13.049646,9.3449955,18.12904,20.250645,16.990173,4.3269157,-2.9270148,-5.787528,3.830355,18.042288,25.526775,43.49755,32.735287,-1.3479605,22.336998,44.449646,13.40186,17.360222,37.437553,12.857239,-2.5567417,17.417416,39.50124,36.16639,22.500738,31.25705,14.5182,-34.466297,-18.41525,33.565723,16.970043,-19.913246,3.635666,33.243874,6.1883087,-16.90742,13.757586,40.122772,26.468134,-2.05544,-13.144652,12.2644,26.019009,-6.9207106,-19.70341,17.995907,45.4575,26.400017,-6.248808,-5.123495,12.122917,-0.13950676,-20.794998,-16.438446,-7.0179124,-8.798187,-11.635835,-16.294353,-12.962859,9.50333,9.732597,-7.8827333,11.03484,8.41827,-29.36636,1.4514006,33.09932,-15.284259,null,38.504997,-29.038786,-6.1768723,47.45089,-9.735841,-20.07945,29.386822,-3.7747006,-22.584105,24.51103,19.4672,-21.925774,-10.307201,20.297745,5.224403,-16.753643,-14.229879,-22.042213,-9.350871,24.774944,2.0324595,-25.560574,10.967091,23.359882,-29.302109,-51.366596,-0.8179941,30.053822,-9.026327,-34.948093,-17.75016,-6.2184296,3.5008314,9.239014,-13.087412,-38.25584,-29.798023,1.4179349,9.365562,-1.2977409,0.97599673,-9.341919,-23.101513,-15.0285015,-31.346415,-59.606155,-44.374336,-15.282435,-13.282152,-26.104689,-16.464275,3.3632774,-22.25593,-53.399647,-32.630417,-8.490343,-6.4698772,-6.2153573,-8.294783,0.3246045,18.95254,15.756084,-17.331062,-34.132446,4.252114,26.15752,-21.67434,-46.148537,-18.666252,-13.776117,-14.666576,-1.90875,-18.01458,-22.722118,12.898221,5.607875,-41.284508,-32.962368,10.372127,18.918911,-2.0384843,-18.286676,-0.5894408,26.16017,7.824358,-19.758495,-7.247285,10.75871,0.9852084,-13.37015,6.5226536,18.862741,-33.826096,-43.752777,35.04032,27.612408,-48.69715,-12.586544,36.29882,-19.244507,null,19.67458,-26.138477,-23.658138,25.530415,-14.506002,-55.022438,5.2059007,28.618149,-19.546886,-26.614029,-2.2438502,-0.3468356,-19.354658,-26.640476,-6.4139576,-21.029644,-58.63186,-29.937996,7.442068,-14.907143,-33.80181,-13.985512,18.924376,17.222,-29.503748,-33.635777,8.905229,-4.083823,-32.613415,5.350588,28.509958,-6.163967,-7.92175,13.811428,-14.572688,-31.753017,14.592856,40.4146,-0.10425949,-40.258644,-25.960491,17.288029,35.432365,15.554341,-5.3700657,4.530202,22.852322,18.968307,3.3398824,-8.572331,3.6992435,39.822884,48.017273,30.8275,24.727081,13.908973,1.9385328,-12.007141,-27.97393,3.2138796,33.417774,-1.0246353,-22.805725,-7.1750736,-7.9916353,-18.915668,-13.403651,21.646755,39.12163,-17.242004,-67.475655,-30.068764,22.01324,3.8244934,-27.08163,4.8588295,23.312096,-7.6545095,-1.4448762,6.754062,-19.598211,-8.508097,-4.948682,-44.89656,-36.16049,13.74744,14.390356,-23.498245,-12.949898,25.74021,2.4372478,-11.568174,20.310276,-13.118629,-31.675606,39.078957,33.946285,-36.26376,-19.484825,24.84822,null,-26.946293,3.0575504,25.56312,-0.47248697,-5.8256316,18.302904,3.560092,-17.280155,-2.9728796,-7.1692276,-14.162781,8.080745,12.623287,-3.027341,-13.49958,-5.640187,14.720806,-1.1202908,-23.064482,1.926341,18.64481,2.7471423,-11.82069,-8.523249,15.858681,18.925156,-8.44826,-12.064875,10.894638,28.87127,20.082445,-5.7158957,-5.99194,17.366943,38.570786,27.697525,-17.685146,-6.7466087,50.951794,39.05825,3.9420617,9.207733,0.9525801,-14.19253,-14.818221,-17.547672,-11.199453,-11.824734,-28.122364,-20.88726,7.6745644,19.121494,-3.4199276,-40.04106,-47.475594,-18.680279,15.604756,36.289177,29.079468,-4.7640996,-18.62789,4.744262,9.905958,-13.61425,-17.048012,-13.518669,-28.060165,-20.69142,8.057249,3.964758,-13.969349,-1.474409,-1.600435,-32.52785,-34.87138,-15.740803,-9.818417,-5.3656526,-21.769691,-40.178806,-6.625286,18.632881,-12.6397295,-28.519302,-0.3603016,10.7287855,-17.305244,-22.438011,10.070402,8.333025,-18.37864,-8.610638,10.148783,3.0180447,-8.994143,-2.7823992,5.0543895,-9.911255,-11.164843,10.214273,null,-18.117973,34.961914,26.738285,-19.171673,22.82835,41.865116,-7.1907725,-12.6858,21.757132,42.05841,25.74192,-6.036724,7.7552814,25.032488,-0.38559604,4.5261097,28.236898,-2.639312,-22.312489,19.28891,28.534159,-15.269788,-11.172607,35.372986,34.205597,7.1795874,11.58441,13.2273655,-10.102814,-17.225342,-5.25845,-3.5964985,-4.0911417,-5.7127037,-19.247746,-16.591337,4.5281725,4.654643,-7.3343687,1.7864361,15.937222,7.823598,1.1848655,17.184101,20.137484,10.291817,27.330677,39.66756,14.520202,-6.691072,4.1969805,22.34144,21.99844,21.12631,30.394379,18.18008,-6.292802,-16.389685,-15.733948,3.5315337,10.516806,-15.886101,-19.486841,-7.518727,-17.459164,-14.5608425,2.2260077,-3.1271524,-29.157574,-33.11991,6.3489017,13.944685,-25.003258,-12.255781,27.898327,18.10349,-4.554309,-11.559686,-13.611034,-4.742223,2.2588606,-11.875342,-24.866945,0.3176837,25.475975,0.6802453,-16.210854,5.077587,10.613452,6.0563807,11.8923235,0.96189576,-14.299792,-0.036277533,9.954586,-16.656239,-15.571482,21.868979,3.919087,-26.845177,null,13.157293,-9.840898,-24.531002,18.17448,11.031748,-26.593962,-18.437176,8.778592,10.160156,-17.219019,-28.024574,-6.346231,2.904251,-3.0897875,-4.7028985,-13.711437,-14.300202,17.384615,32.019096,-13.320896,-43.314476,-12.160702,5.6569314,-0.38111532,8.01835,7.8062057,1.9309292,-0.8741212,-12.567305,-13.001505,-6.4180098,2.071247,18.963985,8.74555,-17.923332,-21.348164,-12.975657,1.467493,16.162666,26.159628,36.12278,25.475372,12.287291,18.87916,12.889427,-3.2868538,-16.020294,-21.24344,1.4864616,14.761568,-6.9906254,-21.373663,-21.826618,-19.402443,-15.234287,-4.821203,33.181347,55.614883,18.96015,-13.867339,0.8343086,27.181993,20.250189,-14.056688,-9.0177765,28.387657,24.246279,9.363829,28.618076,32.217087,7.5656967,-0.26888895,5.5770235,-2.9390702,-4.7328,16.907112,11.813914,-21.179106,-8.85117,19.062174,-0.40891886,-6.861765,8.964045,-16.77008,-24.751263,17.546946,17.321495,-19.559322,-22.799503,-6.952913,-2.5979824,-15.855581,-15.494425,13.351381,-2.3428903,-40.734577,-2.7870922,25.628878,-22.724947,-17.540207,null,28.298065,-3.9866743,-21.118141,25.588238,26.121147,-2.3674164,-0.06599152,5.4046726,5.4545016,1.5811362,-0.8460206,9.997713,16.437126,12.162776,-3.6774821,-20.66145,2.0428333,37.20316,21.444418,-21.528437,-33.973495,-7.597231,6.9606733,-25.415672,-44.391716,-10.145069,13.4229355,-7.299768,-26.20718,-24.17654,-29.294294,-22.955505,16.594519,16.852558,-28.546577,-22.319582,12.667125,8.960026,-7.4329553,-16.315739,-2.248063,24.211285,5.8052177,-22.666441,-0.45043707,32.39953,29.532797,14.025486,40.23282,72.35416,26.139482,-31.753117,-17.207638,13.141054,12.587715,-15.730636,-43.136875,-27.975578,-0.39068222,7.946045,11.055679,8.860409,9.518906,6.69907,-1.4218578,6.6649017,-6.1327457,-34.05317,-12.923428,9.618238,-10.598539,-11.819891,20.843796,26.30068,-16.309107,-38.01102,-6.664309,6.3031626,-10.171541,-8.276289,-0.68292665,-0.71319914,0.34435558,-0.5633613,-8.665343,-10.027904,18.690664,25.733246,-16.529812,-19.46661,10.235594,6.3948216,-5.8808002,-22.064537,-13.015665,27.319237,-5.5845947,-49.89949,-0.6785469,22.292604,null,-35.33342,-26.304844,43.746494,2.7382503,-34.06709,13.545555,20.938032,4.418751,2.5695353,-2.5987277,13.721958,-1.1863775,-26.889763,12.710927,16.235014,-21.137539,-6.053076,-10.840351,-32.168198,-1.2087889,8.885255,-16.778467,-24.592472,-23.442131,-8.502678,13.640103,2.563671,-25.980986,-15.474897,22.156246,10.062974,-37.199806,-42.27262,-20.110353,-3.8386717,-0.90377235,-30.28667,-54.276237,-36.396004,-7.3638515,8.411762,1.6827908,-12.558918,-0.92373276,21.91454,20.073313,-9.748603,-28.585892,-11.144703,-2.3307638,-14.780869,-9.068947,-1.7244401,-6.995534,3.935563,27.517023,34.147644,17.496098,3.3585668,-8.982835,-36.13173,-32.555443,4.911731,12.909054,5.43005,3.8944526,-6.885426,0.46656245,10.419748,-23.893497,-53.988426,-23.57597,14.294136,5.780829,1.2262762,12.605272,-5.513237,-3.4256058,13.4948435,-9.986874,12.531698,44.12586,-8.421829,1.1091251,46.93716,-20.878231,-39.81271,35.556004,28.91272,-12.368616,5.9305367,33.05757,10.133579,-25.529573,29.481264,60.05552,-43.699284,-40.21983,69.299866,22.015972,null,10.829621,-46.00811,-27.364933,22.213404,-15.996655,-45.20369,-11.714108,-0.8315439,-47.68612,-62.352676,10.811792,7.906852,-78.547485,-23.239403,36.406624,-47.687263,-37.048687,25.046005,-24.222971,-18.79125,14.263306,-39.769703,-35.01357,22.61335,16.719265,-10.97924,-26.979872,-19.140347,9.784328,1.3530302,-32.817345,-29.87076,14.726549,36.17041,-6.2520294,-33.206696,0.6460228,21.083363,13.281424,5.5508614,-22.252182,-48.403744,-39.02716,-35.63951,-51.40167,-23.822872,40.675262,54.907017,14.149254,-5.9428787,18.58038,50.762306,58.02222,34.751205,-6.977791,-37.50807,-36.6563,-26.728228,-16.894402,7.0644913,25.214657,16.323084,-20.667427,-49.04179,-5.1488953,53.0291,30.910023,-6.65576,-5.0046835,-5.14995,-1.0413113,11.244246,-1.0240754,-23.651798,-10.191921,22.50946,-6.193943,-49.66931,-12.162952,-0.66299725,-34.068382,18.712996,28.981083,-59.088863,-22.686321,51.809315,-18.153568,-53.892887,8.269037,14.921362,-25.048918,-35.568577,3.2233,32.58859,-22.647152,-37.477314,38.21679,16.521278,-44.947853,7.2534666,null,-14.523296,22.745907,-6.7312574,-24.021538,18.719593,14.270711,-11.138922,-18.956028,11.322817,54.99586,-14.585967,-58.741615,50.326073,48.346443,-57.809338,-3.1573105,64.225945,-1.6651745,-13.000773,37.015884,10.067425,-12.918947,28.7589,22.408228,-32.352127,-18.597567,45.160347,35.616055,-37.9943,-31.411152,46.02793,46.984863,-2.1939125,-13.875069,-13.849794,10.484074,52.045876,33.084263,-24.940142,-56.795357,-42.709568,13.782166,56.058304,45.702583,17.72482,5.9394407,4.757803,-14.858381,-43.80267,-41.456703,-16.46527,4.650223,10.493704,5.0273314,28.539207,65.46567,43.699924,-9.781813,-34.28401,-48.062523,-32.79632,40.277813,75.01374,8.8587265,-57.45907,-29.186401,44.599632,28.23502,-69.4712,-68.94275,15.706476,23.617739,-6.7256947,-8.208725,-5.678652,6.90032,5.689025,1.6631641,8.156847,-38.89235,-45.084187,34.26134,2.7034664,-73.92116,-8.2423315,38.255474,-14.982688,-10.543753,24.04007,7.9048576,3.826663,13.4387245,10.05228,19.992723,7.1178584,-13.913493,18.486532,19.571571,-18.543274,9.296174,null,-27.241367,56.33887,-7.404438,-48.359837,46.667267,32.534996,-26.645214,-6.8921914,12.708326,28.091537,4.7344923,-29.070555,20.394157,30.255615,-29.270311,0.03497982,53.452183,18.786716,-12.901182,-0.4705391,13.687357,32.997402,26.04557,-13.038241,-8.766769,25.710907,22.169724,-14.020286,-44.23281,-14.044005,48.099304,19.169744,-55.474754,-23.875637,66.69098,76.665474,6.9687796,-42.45466,-12.007725,38.740295,12.432228,-46.196877,-25.741398,24.830225,14.95891,-4.5607033,13.143422,42.193336,54.24888,27.278742,2.8247352,17.82027,16.367893,-15.511518,-34.53643,-30.410656,-12.068385,-1.9819489,3.2933578,19.769476,8.636532,-43.140438,-62.24096,8.213427,75.44058,9.6791935,-77.149055,-15.966556,69.111305,15.987354,-63.897083,-31.89103,26.47547,14.3700695,-7.833654,-2.8106298,12.130905,23.100462,10.21603,18.996914,15.029538,-33.743343,24.950916,73.453514,-32.650055,-11.040855,75.08438,-11.328415,-24.84371,36.67952,5.361555,12.455889,4.9980836,-29.959507,25.98513,24.916933,-24.893034,3.8208618,18.80907,1.1145239,null,20.585964,-25.374294,-21.413921,39.555294,-7.5292807,-55.081135,15.605362,-8.557805,-42.281246,16.930649,-1.2349215,-0.77673966,2.913476,-57.429573,14.721441,41.35324,-57.21686,3.7672434,41.6335,-36.160786,1.0382566,14.31446,-31.01794,11.452688,27.531097,-1.6239285,-15.17495,-37.921993,-25.050774,-16.082893,-56.946503,-43.319206,31.91141,51.061874,-22.411396,-85.871445,-28.93643,71.16695,49.84533,-62.68232,-101.147064,-51.918007,-10.046253,20.164516,38.097527,16.549824,-8.751736,-30.271172,-60.688644,-68.47772,-48.040977,-18.154171,-2.183075,9.697095,45.93253,31.262554,-59.321095,-94.60484,-46.48251,10.560089,61.665318,62.791782,-26.616964,-88.95489,-14.246997,47.462288,-43.411186,-90.800514,22.848537,76.03812,3.461123,-25.348145,4.694385,16.582598,5.344676,-12.787462,-16.203596,-18.852316,-15.70466,32.973984,29.941172,-40.44544,-4.652279,47.2574,-15.341694,-20.279453,22.980183,2.6558542,-2.7267795,-11.399668,-12.340359,7.925018,-43.65686,-19.919312,52.612724,-38.143593,-47.194542,53.677338,-8.494301,-43.215508,null,4.328846,3.0771947,-53.562935,19.11863,33.32212,-50.852512,13.147281,59.358486,-13.401042,-24.308409,5.0164766,31.573223,22.266235,-26.878057,11.788573,36.850597,-29.41273,-3.9626153,50.744354,7.4199696,-20.767544,-5.6077967,11.748777,21.48376,-11.856653,-33.73059,-4.114793,14.457556,12.465903,-10.01046,-30.995106,34.99968,81.751144,-39.56469,-131.52112,-17.56838,96.17952,27.395302,-87.67286,-56.48736,45.984016,26.896418,-46.481422,-47.27637,-53.505886,-77.526596,-57.683865,-37.651478,-24.663622,8.418895,16.773739,-27.548656,-69.629425,-56.032192,-35.960274,-42.877052,-13.455483,29.602554,2.587719,-61.83749,-71.40004,11.034082,109.70912,80.66609,-62.640583,-90.113266,42.735054,66.92491,-39.134922,-51.16175,4.330963,43.295708,36.241142,-33.217625,-7.2444687,45.18434,-21.933083,4.931472,46.971992,-32.14691,29.92622,78.144196,-44.11073,-17.191868,62.586937,6.9266863,-23.521624,-15.297303,25.054075,46.56764,-29.673126,-24.157455,28.262344,-27.046698,-28.442097,35.046585,11.751999,-38.316803,-15.148559,28.735802,null,-28.476913,-27.113611,35.950882,15.6858225,-33.81197,19.171688,33.583046,-41.23213,-19.781296,40.0494,11.595052,-15.2272835,8.731235,47.81667,12.5882,-50.44848,35.088707,63.94869,-57.568367,-3.9635983,70.6947,-18.059053,9.011903,37.324432,-51.76037,-5.700486,58.487194,-0.16212177,-27.376728,-8.967064,25.5269,16.558538,-74.3804,-58.919285,60.322945,44.71755,-68.134445,-62.69761,52.701096,86.95558,5.680254,-61.650505,-83.570496,-62.633026,13.112947,56.598537,28.910524,1.3800507,-9.284702,-28.295458,-23.30625,19.724957,35.449116,20.410727,10.250304,-49.2633,-116.824554,-67.21417,41.300262,82.33647,22.12912,-69.049065,-27.221104,95.66499,47.59987,-77.18518,-19.02554,80.04865,25.451384,-51.49407,-46.54533,-2.9272394,27.382378,-2.0688496,-20.602669,17.3335,21.701988,12.810909,5.52688,-25.882795,13.636261,49.67368,-7.3964405,-9.68574,17.147755,-8.11691,-4.501292,12.109321,22.005505,2.3174584,-45.11606,7.013115,30.240099,-52.937103,5.853362,73.45529,-29.077991,-40.193752,20.706863,-23.301037,null,59.255615,-50.607616,-21.701897,59.45642,-33.33123,-25.158205,56.514297,-16.016926,-30.725006,44.706345,25.786695,-27.455105,-24.084637,23.422594,2.4782553,-65.00366,-5.150464,29.401783,-45.928764,-13.998648,14.340406,-49.729187,-27.720724,4.68454,-2.3658142,27.91791,3.217968,-43.65278,-8.142483,44.62361,47.680534,-18.00601,-54.545006,20.387032,18.163918,-106.56852,-82.688675,85.00008,110.02695,-3.894618,-32.80044,33.681686,60.233395,9.288623,-73.60187,-112.44912,-76.12291,-34.501194,-31.706923,-31.271935,-28.959236,-49.49653,-60.59736,-57.68499,-78.77277,-45.875603,53.833977,43.018814,-59.42865,-51.840473,65.07193,109.42909,-19.082603,-118.389206,-9.588837,68.34322,-8.170609,-41.663948,8.505739,54.78563,5.5324407,-73.15825,2.0715475,32.93384,-67.5932,-21.417664,3.1284332,-74.54565,32.757317,67.001175,-76.84587,-11.145844,83.92316,-15.2466755,-37.178013,27.614277,14.623219,-25.816645,-12.627286,33.30946,1.8939551,-45.42758,20.585377,38.235016,-27.611893,1.913862,22.5564,-28.018505,-0.6867696,23.596302,null,20.570208,-23.712538,14.035839,2.0345342,-16.354816,37.74772,10.649392,-26.22336,33.373207,37.85377,-14.92989,-7.887335,36.00699,23.061605,-23.198803,37.60392,58.067726,-71.87175,-11.884426,117.790085,-21.570965,-44.27558,94.5909,5.271784,-46.713123,42.962265,-2.8461304,-8.50898,77.476715,40.78193,-14.0396385,20.540115,45.51505,-28.762344,-95.23254,31.455055,139.83539,15.301777,-54.22754,62.06057,144.15454,105.498985,-7.4899445,-72.103195,-11.058083,48.488903,45.262104,55.79385,69.02252,46.98417,22.518148,16.503372,8.494543,-17.10738,-47.10287,-42.586353,16.449797,93.265564,110.69787,12.180172,-77.089005,9.81355,74.551216,-64.07536,-125.84555,-2.5577593,53.229446,5.1915064,-17.795464,6.6940393,10.865391,-31.44126,-32.62686,-10.1122465,-0.40654767,39.323524,-5.4596953,-66.043594,25.366753,23.313488,-68.85597,12.053542,41.47024,-54.577377,-20.249672,39.155384,-5.706939,-37.008675,1.4933603,30.414993,-23.291199,-19.597374,58.40252,1.807998,-36.25222,46.42971,-0.19513988,-46.00725,41.800545,16.419405,null,10.26679,-30.27565,12.292521,27.72601,-32.621918,-10.720706,14.658027,-34.106274,-25.553137,13.830024,-3.04455,-14.884636,20.409733,27.833244,-25.188301,-3.7944717,59.20192,-10.290099,-37.39363,50.769127,4.7609777,-56.104908,18.313032,24.567184,-17.537752,11.3040085,36.551216,38.088833,8.760523,-30.412945,9.74634,62.169083,2.0140524,-88.594246,-13.005594,120.697266,3.303236,-161.01157,-27.982798,108.62723,13.328821,-40.21467,30.312532,52.043808,8.288814,-31.576689,-60.289215,-85.48392,-79.04221,-41.886196,-34.13186,-67.481476,-72.45331,-23.974632,10.471363,15.425522,7.3127346,-28.508268,32.03254,163.87181,59.201057,-133.24783,-48.225494,64.47952,-34.955368,-97.376175,-9.235051,52.00214,-0.25330043,-23.381111,22.65134,-3.6392624,-13.449241,17.974205,-55.133053,-14.938712,117.3693,-4.043186,-84.24844,59.418873,23.228382,-80.38852,12.043794,50.564705,-16.89424,-5.1302075,37.981384,14.847462,-21.484837,7.3415585,24.722921,-17.46241,0.71017075,36.556892,-2.4957266,-9.38938,11.215437,-1.0126276,10.71599,8.107517,null,-4.6060514,14.054513,-1.1244059,-21.978004,7.975375,15.685757,-14.959089,6.7017264,31.81546,-6.828502,-18.552475,15.483727,-1.3176377,-41.101326,-1.5437984,45.401268,-15.504984,-41.997444,37.509304,4.023752,-66.78148,24.752575,35.84745,-67.23468,-13.910269,43.22396,-24.309742,-33.379086,-4.29839,2.1151633,14.92502,-12.086552,-25.4994,29.378925,48.90084,-32.708908,-107.62362,-40.208565,25.628338,-49.449097,-18.753864,140.26703,107.066795,-40.675484,-43.344563,12.537779,-6.3302383,-25.982964,11.552292,22.903301,0.6586323,34.434162,73.75541,36.164055,-24.211174,6.6051254,132.95393,128.35492,-42.14274,-50.535698,66.6467,0.2663746,-85.041435,28.208893,107.38585,13.858353,-30.627556,48.071743,70.97538,28.288326,15.078269,16.524792,46.47386,54.819595,-9.648394,-0.85554695,41.298233,-32.07094,-47.290985,38.945297,15.624264,-46.119217,-10.523582,7.503903,-24.8692,-8.801842,12.170044,-21.033615,-23.781784,5.0813885,-10.761162,-15.896059,2.850922,-20.64521,-28.826994,3.01151,-3.0152981,-18.492584,14.474801,32.382896,null,6.469652,-4.954276,-4.4775524,3.329574,-3.0717974,1.0705068,11.455889,-11.760944,-2.7743478,6.187976,-32.558674,-7.572622,14.073089,-36.059097,-9.050076,32.583244,-24.21222,-31.64745,27.931793,0.22716522,-47.254787,18.323427,53.795635,-16.160557,-1.8435416,50.94942,-6.282427,-30.016317,22.442295,40.87999,28.922531,0.84155655,37.451866,124.437805,49.310753,-63.562843,41.02137,116.82155,-30.217148,-82.166855,52.120003,49.56689,-50.128666,17.149372,99.99742,27.517056,-81.70069,-150.1531,-139.50262,-78.41406,-107.43787,-175.15948,-109.84819,55.262894,123.84337,37.00948,-7.8175144,73.65441,91.123535,-17.857317,-71.42207,15.545803,68.89243,18.5336,50.91418,107.00258,19.222008,-34.0932,17.873518,40.381104,40.831547,5.3484783,-14.953466,59.994957,54.714073,-26.290821,17.094778,52.70958,-17.601326,-7.683982,55.07125,14.45874,-18.363186,41.601128,39.79918,-27.216928,-9.1553335,32.645687,3.4707503,-5.7546444,33.73073,22.63694,-21.372026,-0.47932506,20.60366,-15.073377,-0.020793915,32.207565,-7.766516,-17.372826,null,2.0473423,38.1489,-9.976718,-16.467453,30.307478,13.436886,-13.496657,3.814862,11.376345,-6.9308834,8.846776,29.607224,-20.139265,-24.883673,37.083565,6.807505,-29.011751,26.088493,31.444069,-26.809118,-27.976505,18.484055,15.113175,-3.4449625,26.105896,5.3069,-29.182373,17.497002,21.234165,-4.309887,11.058546,8.378294,28.917187,7.265662,-48.85674,32.270714,35.016953,-94.87022,-35.949432,25.92997,-110.15927,-144.432,-32.875435,3.736286,-34.602047,-43.27979,-14.399956,13.71241,51.43187,73.46327,52.50003,44.942307,21.61484,-47.382275,-52.216934,-3.2547913,-55.271385,-152.02261,-96.16716,-18.08428,-74.17314,-23.580002,88.02042,-10.639549,-68.680405,28.673712,21.996445,-24.838017,-2.8857982,23.225376,30.277641,1.9808974,15.733633,53.108284,3.1942215,-15.4158125,28.10327,18.612375,0.42962933,18.333933,36.087307,7.6609526,-17.320133,24.498634,4.87578,-34.59674,30.865059,21.55512,-36.284058,4.892175,-0.061184406,-37.42029,-14.124467,-7.22851,-10.684387,-9.624666,-2.4329696,7.161279,-22.3817,-18.38595,null,-22.04586,7.4758906,-2.6747274,0.7249471,-3.2968493,1.0221062,-0.5481415,-11.322801,35.183895,14.861887,-32.09414,26.938368,13.535764,-19.680347,35.333534,11.234631,-16.58341,14.741055,21.391693,30.775095,-8.871803,-18.65812,51.369537,22.675365,-5.556173,40.355392,20.030462,-9.155135,-4.579035,11.341468,21.168499,12.342062,35.31964,-16.561687,-50.21605,78.07282,41.68409,-33.56814,99.866806,14.903534,-112.69207,46.49106,20.193565,-82.72015,133.31789,237.189,-18.539667,-278.72034,-350.50476,-339.48273,-326.6021,-264.6477,-64.9181,201.93762,174.72255,-81.48613,-43.849754,27.093834,-140.2971,-61.15442,53.519226,-102.66298,-54.626694,76.29251,-15.56073,-37.149754,22.8038,15.529154,-13.337321,-21.189867,26.261398,29.958248,-4.713272,20.348104,5.9002523,-16.89642,12.725691,5.4078083,-11.871108,-18.868357,-6.4069176,20.968672,-10.824374,-6.864825,27.502905,-25.545567,-32.27977,16.869778,-0.22090971,-12.534753,1.498611,0.70801497,-2.965517,2.4323907,11.16135,-12.615835,-10.690525,30.799372,4.4735823,-14.436033,null,8.742001,22.525831,3.4473147,22.31535,0.48095036,-27.196886,3.7510624,18.811764,1.0520349,-17.557606,15.230303,39.92051,-16.58052,-9.431128,20.599575,-17.725597,11.627496,23.033161,-19.598434,7.259823,16.856276,25.577099,33.53204,-9.368018,39.815994,72.17419,5.7777042,25.07145,54.984406,7.981044,-26.641336,9.124156,35.95676,-29.598803,47.979614,130.00616,-33.901535,36.888226,127.49567,-105.37984,5.7193813,94.74974,-160.78311,118.87654,336.99054,-149.56584,-243.23264,230.90372,492.4966,489.2777,433.38782,177.29019,-254.68079,-132.0026,337.95526,136.93594,-86.57983,117.85444,-27.331194,-90.13432,140.27258,26.915646,-32.529327,69.961586,-36.164894,-45.71434,35.32788,3.5501328,-17.06766,-15.708504,-17.365362,-31.991722,1.0519152,39.313927,-37.99563,-4.1594257,74.68203,-23.088106,-22.179708,28.261265,-29.406776,-1.3475113,22.50492,11.594135,32.15876,-20.344011,-18.522387,21.494024,-12.941722,14.63861,26.340874,-11.829391,10.42858,2.1151016,-5.5251074,12.581267,-13.284887,-0.7761922,11.743176,-7.8768687,null,18.65157,-20.776592,-11.034607,25.648151,-21.73251,-10.669307,4.191493,-39.549347,-9.564569,1.2802067,-11.7423725,11.390047,1.2851319,9.2193985,-23.738333,-38.990906,47.46411,-15.550383,-48.17605,64.78197,-7.8093286,-24.795616,44.261765,-79.276985,-71.78994,12.328004,-58.297157,-38.627842,13.961263,-29.046173,-71.959305,-34.186867,4.751815,-96.59392,-58.32891,29.480278,-84.03508,26.173412,22.39727,-204.23051,-0.02779603,-34.401585,-142.22458,273.4434,-17.25407,-292.59116,392.65027,233.00964,-537.8711,-672.52527,-477.15292,181.00534,352.3838,-283.91858,-72.224945,232.95871,-152.45016,-53.722633,48.624798,-113.800735,67.635925,24.345901,-99.327965,42.74155,-36.856037,-100.6387,4.0316668,-20.871471,-47.637775,-11.341462,13.330843,-22.241344,-53.302204,8.781414,-15.290989,-45.135468,22.614418,-13.614437,-34.09543,-9.978031,-58.889713,-27.551619,-8.017606,-45.40908,1.6378293,-3.1794605,-32.528637,10.407894,-1.9257536,-35.862423,-16.382494,20.508093,14.9872675,-28.207762,5.352741,28.665768,-33.644753,-14.606733,27.844372,-6.048062,null,38.85626,-15.995419,-29.7175,26.009493,-11.598071,-21.850342,31.510464,9.172663,-24.925037,-16.745415,0.611464,-18.907219,-37.59465,8.614286,-14.050749,-34.772903,21.357056,-47.442528,-52.790302,38.77687,-32.958908,-20.311602,36.615005,-63.900143,-58.833363,-22.837265,-42.26911,-5.012035,-17.315636,-31.769428,-37.542847,-12.254803,32.59945,-63.34391,-2.031674,90.4572,-45.669018,36.26292,40.009335,-42.82606,112.54237,-80.64514,17.114853,253.66054,-236.12231,278.05603,495.09027,-916.52185,342.463,2266.0496,181.0272,-922.8324,553.5004,272.29352,-203.0778,296.22522,63.850098,22.77254,165.10779,-61.456688,60.9301,75.2944,-60.47713,57.411713,6.367151,-30.569788,55.44571,0.34719944,-31.031887,6.334552,36.793694,-24.382662,-68.30604,30.601025,-16.583208,-45.18654,66.559784,-23.609587,-17.598185,85.56231,-44.313526,-14.511183,86.80158,-23.620634,-9.951391,53.62838,-1.9998655,-21.904057,-7.0748763,23.447124,17.388779,-1.2707887,35.167294,-2.6628218,-22.507061,42.888924,1.7827086,-37.13416,10.482895,-1.9441471,null,37.00181,-15.894933,9.732955,45.32968,-20.343344,-7.705784,34.009995,-1.1552086,-4.0865707,13.294999,19.20256,-10.080261,-14.738131,57.871574,10.424095,-6.926998,90.01286,-14.557394,-25.705898,104.458115,-12.637623,-13.498521,81.66489,-26.710094,5.277914,63.777718,-5.7040205,16.922064,28.797848,17.17677,2.5528793,21.091045,82.73515,5.7284327,44.437786,101.79861,-15.446476,110.09032,114.01145,48.41306,231.29904,56.67986,203.11041,324.08646,-188.14494,572.6704,394.4482,-895.8421,3220.3608,7443.4604,3210.227,-892.3707,375.3684,557.47253,-150.64674,342.12653,163.04816,32.16051,245.85025,56.45915,103.40619,113.5088,18.554409,133.80899,47.611313,1.0720149,91.92042,39.393536,13.242897,6.195812,21.186405,38.965607,4.9509487,45.86337,5.0040245,-12.66065,92.860245,10.557315,-0.6398201,95.443695,-27.44341,-19.939198,80.69011,-16.164963,-13.792337,52.67382,3.9284153,-5.223895,33.2697,32.361183,-11.389896,0.5637169,47.375557,-10.839967,-27.732832,29.112871,-2.084879,-3.454996,25.229017,-20.472689,null,24.042017,-14.708599,-16.626694,24.107656,-27.752043,-10.62986,38.995796,-9.35938,-9.666593,18.047617,-1.4621618,-23.398241,7.42173,66.984314,-6.4881988,-21.444206,92.55431,-11.051427,-49.528797,76.55517,-13.581532,-2.281052,84.57203,-46.052597,-26.222311,33.839893,-41.919018,-3.1814442,31.989548,12.776511,-4.811078,11.875599,53.07444,-41.05302,-6.780032,51.38423,-73.546,64.80794,65.37949,-38.93723,208.65941,13.69408,14.026793,324.67108,-187.16953,197.14539,554.1858,-850.0026,149.06387,2149.208,279.52374,-886.84155,509.11832,205.20596,-300.14197,235.23221,-5.029496,-82.385735,126.20231,-43.21534,56.496933,62.264076,-49.58529,62.95043,-22.688234,-58.765614,53.036148,3.7074695,-30.492609,-10.760208,21.42522,12.609495,-31.68788,9.080158,-38.98222,-47.585808,51.11706,-44.417755,-42.63389,61.183426,-48.536522,-29.952911,40.591904,-59.690845,-26.150324,28.61762,-19.16119,2.3533173,13.758625,-11.442471,-20.650742,-5.701311,22.441395,-12.867802,-13.853029,28.121433,-19.986877,-25.144539,26.56955,-10.084648,null,20.165466,-17.390835,-23.170395,27.354597,-11.366797,-34.03785,3.7651844,6.6929417,-1.2018075,-22.302315,-22.024424,-19.025425,-39.22545,1.9941816,-24.978128,-63.702583,26.62654,-18.367533,-67.201584,24.446169,-34.61254,-39.85446,52.87244,-10.536577,-1.1738167,28.235807,-41.234253,-1.8463879,35.26624,-9.029731,-38.01653,5.0012207,36.449654,-74.22923,-33.97115,32.120354,-96.73006,45.721073,67.979645,-119.29149,100.75009,-23.098892,-195.5026,211.10855,-93.9005,-337.45535,345.26862,211.21207,-428.46985,-585.0295,-453.01135,261.0504,335.58682,-346.92004,12.882706,267.27307,-199.74352,-15.143948,52.443497,-173.25487,51.225838,25.987638,-92.33067,45.217415,-30.739819,-68.68725,8.197015,-26.864082,-29.336369,-8.993944,-7.038042,-52.311447,-44.522137,30.544119,-68.31848,-59.824654,77.72347,-14.718249,3.114894,77.54587,-54.924053,-8.804098,61.19702,-40.071995,-17.702744,10.8664255,-14.83269,3.9392958,-4.665433,5.499069,-1.7724926,-14.009447,18.138617,-23.47864,-27.116554,22.425524,-21.226095,-11.828533,29.623453,-12.167202,null,4.182479,-3.384019,-19.869823,9.403837,-16.620157,-5.7582035,17.477468,-16.669344,11.261454,7.693849,-9.850649,28.232584,-9.199162,2.9532878,33.458984,-11.550502,41.34987,14.988405,-46.235184,45.33042,-22.303932,-63.811882,73.14962,3.957718,-40.823845,65.31334,27.168629,-29.858734,-20.31109,9.670014,26.992077,9.675927,29.481916,-31.84237,-29.674938,80.388535,-33.001118,9.391891,155.19041,-53.76678,14.005881,138.21637,-141.73524,68.91183,319.5089,-153.31476,-310.412,106.20601,375.69,430.82892,416.17413,197.99164,-235.95622,-172.37267,282.9391,57.40155,-170.57626,153.99768,32.19995,-123.300156,130.43939,39.08587,-57.194233,100.7646,39.23011,-22.669666,31.631718,17.145517,3.217222,28.760403,63.824593,24.536283,10.4944515,73.590355,20.342926,3.3400614,50.464775,-10.8766365,13.13768,36.01084,-33.134315,19.398373,25.027372,-21.989685,39.070557,24.172485,-4.1594286,38.69796,12.160137,-11.669203,11.602967,27.080723,11.67558,-24.394062,9.863065,32.63993,-7.5522203,22.245144,43.025963,5.2943068,null,10.991663,20.716415,-38.03527,-7.572759,18.726448,-13.024781,1.0112581,13.914339,-6.1789813,-22.693546,6.152033,24.629488,-35.465065,-13.380615,33.707104,-36.973812,-21.188349,18.968256,-30.739576,-7.255458,-4.5272117,-20.832266,31.97702,9.288813,-1.2631764,27.779999,-6.171383,19.103588,51.50821,18.583296,-1.0051742,-4.1140223,14.466272,-29.902298,-36.813206,62.995235,-30.11873,-78.98351,59.26964,-94.538,-186.1777,33.73139,-35.607445,-136.9651,101.66901,173.56021,-51.381542,-258.96365,-335.24292,-328.64264,-335.91763,-285.90955,-39.444405,201.44417,77.82164,-130.3706,1.1374626,25.894949,-139.78604,-5.290841,53.691868,-83.80111,23.423664,58.551327,-57.483532,-13.609595,10.647694,7.697736,42.38849,17.709232,6.059199,9.804452,46.479225,50.513233,-29.75122,26.874756,56.061897,-47.314888,3.5667772,30.861448,-15.842527,39.109673,4.315751,-22.083496,28.217262,-16.555218,-0.5411196,16.807789,-42.28582,6.1507463,19.798918,-23.733232,5.9575653,1.2616725,-6.4109974,2.4004064,-0.5187025,27.933174,-7.0879087,-32.76199,null,-21.798866,18.708199,-12.524165,-15.924622,-10.494502,-8.59277,-0.59275496,-16.590801,18.681261,3.9462376,-49.616867,21.646349,24.231274,-30.729094,16.408049,4.9035726,-2.8146725,34.015457,-1.3526416,16.369183,29.65499,-10.597556,14.531573,-1.0276585,-2.081569,53.65457,10.888144,-1.7274296,39.11596,26.985405,26.253412,-4.589527,2.2126808,47.453274,-32.128693,-20.409933,78.79906,-11.086315,-60.55009,-10.831563,-104.398094,-152.22997,-45.72436,-20.515194,-71.700264,-34.953976,35.194042,43.301704,52.279274,71.787186,49.78366,30.690147,20.415009,-22.209383,-46.222733,5.547636,6.5060816,-127.7709,-129.36949,-1.6442575,-67.76781,-84.27388,71.51665,17.33476,-62.973568,36.29374,29.458614,-31.423279,-11.630276,10.539528,23.63302,-9.416688,-29.685814,-4.177578,-19.081612,-15.552751,-3.7144544,-14.627536,0.25201106,-21.489395,-17.075161,22.25954,-27.071934,-30.791924,14.446951,-22.335283,-23.717333,4.07333,-19.920776,-28.869576,-11.150625,-1.27454,-23.912048,-16.210724,24.091053,-22.8667,-30.541462,36.77292,-12.42771,-44.874565,null,-9.662271,41.80722,-11.069615,-17.016521,29.159807,-2.4747093,-3.9539623,32.354286,26.98679,4.203406,3.9519992,43.84521,41.35946,2.138745,23.281193,29.597176,7.9028916,24.19433,25.117672,13.614248,15.597866,17.974102,18.717192,1.0545378,15.740147,48.693375,19.271637,-2.9312887,20.638094,39.554993,8.662193,-64.27346,-9.976468,107.04033,42.382446,-4.3315287,81.63747,12.078003,-125.77065,-58.32512,67.8946,62.190098,21.084507,60.494984,109.64773,57.959717,-67.342064,-137.48189,-99.40753,-66.82242,-98.14402,-97.44847,-25.70875,86.92511,139.16006,34.665756,-35.612328,59.4839,60.409332,-64.65244,-15.600127,95.18654,-6.0993032,-61.337288,78.43743,81.447235,-16.353922,14.264869,40.058258,40.23892,45.3313,-7.4918375,19.843557,76.125046,17.563665,-6.396562,11.712156,-0.62038827,5.99214,3.3634195,8.494595,8.885685,-10.012821,27.50703,25.709177,-6.5528135,29.033272,-3.9090877,-40.74749,16.25792,11.255158,-10.310377,7.5287247,-3.6618042,-6.100148,-14.269026,-9.893305,11.757306,-11.908027,5.9063044,null,-0.65503883,10.263072,21.901,10.087994,-17.963263,-11.571906,9.325708,-27.14358,-20.213675,23.549616,-14.429813,-27.831102,11.013563,0.30302095,-18.522223,-22.302008,-25.141748,-11.03934,8.047776,18.925295,-5.484565,-18.265835,19.79164,6.5936823,-21.08884,24.96976,48.166733,35.325207,25.71983,9.520006,47.391674,59.17919,-33.21032,-10.509365,129.18375,68.16961,-90.6134,-26.485802,54.344467,-51.29962,-44.23343,111.22738,113.20453,25.604958,32.14543,74.097855,75.9449,35.04388,2.1296406,-6.737426,-33.978737,-20.893381,46.121502,39.780773,-22.36906,8.451256,109.03595,103.12219,-10.690713,-39.184093,20.928814,2.1202617,-56.35717,-7.733779,77.55438,52.80838,-10.434417,3.9688022,27.716694,5.7062416,-20.305906,-24.179575,5.7812314,17.010294,-10.548573,12.469896,41.141914,-9.740724,-25.528305,35.757942,32.3786,-28.385902,-7.41155,31.567524,-22.386019,-45.458694,9.201221,12.525934,-15.604645,-7.707924,7.793515,6.9871492,-7.383431,8.999145,23.02709,-16.34122,-9.891588,12.200952,-33.1484,-20.904966,null,-14.259921,6.0287437,10.870243,-3.0539618,5.8549805,12.213968,-13.049358,-14.788786,16.151648,13.6106205,-9.3150425,10.8879595,28.76657,-18.19091,-35.834976,24.90038,13.800223,-51.043613,6.925864,50.273563,-42.696587,-40.459988,51.75067,17.071829,-35.91552,-3.4053798,3.3499832,-11.640101,-10.508177,-25.297335,-6.37485,61.586548,50.208553,-43.86677,-26.13495,64.01073,-5.3858695,-89.3066,42.17951,153.03833,59.082287,-0.7264557,74.97067,86.80146,9.695126,-7.8507757,5.0135665,-23.548346,-37.10116,-38.438095,-56.240166,-51.49475,-28.619253,-0.8280468,41.25155,71.814995,46.810177,-7.6381407,44.961475,132.45837,11.275765,-111.75049,28.56182,118.31499,-5.180579,-47.510727,35.94706,53.92923,-2.2599792,-22.232773,21.483414,51.746624,22.897072,-13.303223,10.89222,46.813896,-7.8702545,-48.65292,21.906878,32.5514,-35.32344,-19.514086,11.94665,-15.934954,-8.215985,28.001472,3.8278885,-38.57655,-12.655653,4.503558,-41.700993,-19.6945,34.115047,-17.69939,-39.81705,26.774084,17.843977,-30.280352,-1.1324503,21.30401,null,37.998917,-38.156258,11.372523,53.032288,-30.633015,-4.348081,59.662064,-3.8365064,-19.774374,30.970652,9.799553,-28.778889,2.0062575,46.95646,4.841523,-35.826836,18.962944,6.776232,-49.0206,20.687542,52.241196,-28.624847,-35.785576,18.634367,25.17455,-11.180681,-33.419605,-7.930003,17.417866,17.088827,-9.563068,-34.265213,29.79778,48.965023,-77.39778,-71.60749,62.54727,17.452274,-72.879944,14.826031,118.30207,92.23322,20.412384,2.2885127,10.9842415,-0.20382118,6.3137765,18.54856,1.8198586,9.543292,46.21274,63.859177,53.56305,3.7943802,-46.425255,-28.779987,30.208614,95.21303,132.33371,47.28714,-58.996002,28.150616,127.95253,-4.2123394,-114.659935,-10.355842,60.0219,-6.8137283,-21.915901,44.415276,34.343765,-23.890999,14.7539215,35.457016,-21.689974,23.316338,53.389236,-35.672436,8.489258,81.537155,-17.15912,-21.861013,73.981926,29.798096,-16.898,32.506134,40.63983,1.6149588,0.64959455,38.3647,30.775112,-9.648916,10.661765,17.12891,-16.299395,11.754398,20.043877,-15.627204,11.513481,24.640123,null,0.30508542,-41.28579,16.219913,14.928122,-38.689594,20.547634,42.631092,-24.028046,-19.647558,15.115721,-3.0148873,-30.045427,-6.118837,24.390615,-21.068607,-8.336476,76.913506,5.005091,-52.535816,61.779884,42.005135,-45.341927,16.207363,5.3748207,-44.74894,23.922966,3.109765,-79.52522,-16.179588,65.392784,28.766226,-32.701473,-4.2643957,48.865738,-28.336115,-115.514854,-17.853428,100.60806,55.998802,-35.1593,-30.59856,35.354813,34.17577,-48.138294,-81.53087,-39.37695,-0.3616829,15.026442,-9.073869,-43.897408,-14.530752,-3.3399582,-80.049164,-106.099655,-42.466286,2.729664,28.35991,38.901478,-5.8654566,-20.726803,57.231953,63.297848,-70.86978,-83.37335,62.955776,48.539062,-70.059456,-23.254566,53.366116,18.088524,-32.559185,-47.2789,-13.558673,12.232851,-18.099483,-29.513166,-19.782608,-1.7894096,15.710098,-31.414577,-30.58038,36.390823,-14.893833,-65.434166,6.1457224,26.19067,-17.292892,-16.282919,24.437634,29.93876,-31.319555,-12.442131,52.12909,-18.393776,-31.261166,52.326916,-9.399255,-39.13387,45.26025,0.47818184,null,22.45755,-34.946033,-38.763855,35.401207,-20.931524,-51.426697,27.071428,11.494449,-32.481895,-0.89517385,26.409592,18.59597,-13.671266,1.1327958,43.592865,-2.2399387,-27.505058,21.209517,16.182692,2.7643065,14.368492,13.567123,42.53025,35.849747,-15.6198845,1.1120319,24.476894,-7.028213,-38.54934,-41.658455,21.099821,66.81918,-14.015055,-55.417118,37.20297,61.4521,-26.291155,-49.73107,17.642052,63.18887,34.859093,-36.574482,-71.95638,-33.27887,-0.6156373,-15.100916,5.923706,50.912262,24.39278,-17.876892,5.010437,33.619694,27.558605,6.2606163,-25.44564,-38.656586,-24.821373,-7.9286156,24.384235,55.454082,34.158485,-20.695068,-23.666729,37.290176,24.418545,-73.78874,-67.31041,17.116074,27.03295,-0.55628777,-24.23944,-7.598243,37.784027,-13.871587,-41.111336,33.595505,-3.5881176,-37.651043,45.86552,1.6270342,-52.16606,42.286026,31.26511,-44.298824,4.7606297,36.054947,-11.415612,-26.318346,11.756439,20.135715,-34.549557,-22.142773,38.843376,-19.424871,-55.447456,33.397594,28.836203,-36.115967,4.302671,14.891319,null,1.2837236,-42.510902,17.63695,52.55845,-32.786327,-37.93988,36.808136,0.7135186,-25.640083,19.990992,5.0565295,-17.84223,-7.3767476,19.4287,40.290527,-20.664852,-25.508512,48.544514,2.5814676,-8.569801,57.223244,-15.127112,-37.028748,43.367588,-10.1547,-53.23642,14.243946,34.54091,9.92499,-23.219357,-27.659164,21.70748,-0.3840294,-77.6909,-43.59916,76.22755,124.655045,47.023777,-43.90503,-36.817116,9.487568,15.286131,-0.0303154,-17.728664,-47.322876,-67.20868,-41.90994,-3.4428978,-5.503482,-18.291458,-9.163837,-12.851379,-39.865456,-50.06877,-32.56154,-27.50783,-34.409203,-2.4764214,30.039312,-9.02415,-42.114742,16.491903,52.451355,-36.078995,-98.496796,-12.176387,50.194298,-18.859425,-49.641407,1.5348339,15.439919,9.822611,-7.268308,-52.445316,-17.391417,50.813087,11.7880945,-37.45456,-11.394003,26.805885,27.639044,-20.205873,-15.533634,53.58156,21.556,-40.4828,1.9504733,35.307274,13.619029,-7.5696373,6.1482563,43.76756,4.2385945,-26.531929,40.785217,17.537743,-36.524815,29.55783,25.816448,-30.746098,null,-8.604496,75.37647,-25.985558,-47.217827,42.08573,-3.275824,-39.974342,3.9127765,6.0958614,-7.9843607,-20.626106,-8.87309,5.234946,-43.93444,-31.387226,39.27771,5.21488,-30.190554,11.594448,14.239403,-8.732182,-10.858331,-9.951747,6.460474,14.891035,9.165205,8.137979,-17.227312,-12.260721,51.084328,23.20456,-77.56746,-48.82753,38.337994,-3.679503,-69.802444,-17.580475,53.7949,57.27623,38.80289,-5.631927,-68.39544,-55.61203,5.554697,3.9972863,-28.81215,-12.534943,21.68853,-0.28256273,-50.662704,-34.194206,16.707003,11.449221,-9.092673,5.895804,17.91182,-6.556713,-55.520138,-80.78598,-43.48517,30.963425,55.912476,-6.791951,-49.35772,-5.855854,24.271727,-6.6008353,-27.427568,-5.999134,-5.75288,-44.61842,-38.7174,-14.445623,-10.879247,34.492092,20.381315,-49.8256,-1.1571169,21.855478,-28.646826,12.568935,6.432602,-30.93943,31.25489,5.210348,-49.207054,1.113287,2.3536386,-7.7028966,-0.6036263,-33.10022,4.9324017,25.282192,-38.230923,-19.332937,18.142788,-13.989643,-17.4906,10.435086,7.1665063,null,18.430964,29.651306,-5.4100447,2.9283402,13.998771,-18.281843,-0.6003771,8.610477,-3.111733,10.573286,-18.874825,0.06791973,52.168835,-9.5969925,-18.087128,44.326435,2.5687542,-19.81086,9.8199415,-8.897047,-2.2551541,12.197709,-15.084799,-15.443764,4.970616,16.461832,16.241491,-17.032629,-36.163742,15.853542,64.03534,10.920834,-54.824585,-11.454526,46.06173,17.73595,-18.608074,-0.77100706,19.51891,-6.199339,-18.702847,22.730898,26.730555,-23.275723,-47.87007,-44.177032,-21.603724,-11.988394,-57.31424,-62.03601,18.475325,43.0816,-29.207102,-55.98121,7.9196663,25.203602,-43.820694,-56.933372,10.68406,36.63179,5.4292793,-11.294266,12.377539,50.25389,35.252937,-35.396797,-40.713917,35.89485,44.03531,-22.433352,-33.960037,0.015268326,26.492489,41.316196,8.3209505,-20.976578,22.65343,43.93128,12.750499,13.065092,17.53327,15.265031,35.84822,11.955431,-17.675144,19.52543,17.945068,-12.304609,17.580482,26.382978,5.0401225,-8.510895,-18.867971,30.133137,23.017134,-62.803043,5.16182,60.11068,-52.618355,-32.11089,null,-23.5624,28.192497,25.433918,-16.421368,10.300701,31.589499,26.208784,15.265738,-8.772237,14.178987,40.909065,-11.164849,-28.776915,19.167212,-1.0114436,-32.333282,9.550306,15.259115,-14.820847,-8.280365,-19.276775,-28.471497,1.120759,-1.8340483,-24.590874,-22.613548,-11.406414,19.483566,21.050795,-45.671448,-62.608864,8.996321,34.720253,-10.43795,-13.581019,33.41718,42.524124,15.116859,11.923467,18.62357,-12.479107,-44.215332,-6.4345465,51.140465,34.47586,-5.061094,27.13457,72.04716,30.59903,-28.604399,-3.214003,40.62288,44.081367,41.253708,10.498382,-12.114764,35.00354,42.203964,-24.263212,-41.734543,-4.5432796,26.528887,34.760765,21.360752,11.668325,6.2879925,13.225443,42.090336,33.52855,-2.8129396,5.5628147,32.670063,35.253674,16.22665,-1.4368038,16.975407,26.104748,-12.587481,-4.8204947,46.467537,20.97504,-10.745941,26.01772,9.091404,-17.871338,43.213764,39.521492,-21.948145,7.7032995,35.787903,14.620553,5.3910036,-1.3559966,21.768867,25.41891,-14.06781,14.862024,33.41353,-12.558754,-0.6923971,null,-34.496117,20.161938,44.306194,-25.714924,-18.61872,22.172737,8.282487,-9.398523,-19.787842,5.449418,25.758385,-22.812943,-22.48667,15.744902,-17.981033,-9.301172,33.271057,-11.730657,-18.450325,25.150404,-22.95073,-55.482555,3.5147932,27.300484,6.200582,4.83636,10.789227,-4.202484,-32.702896,-19.805172,22.728354,23.404339,14.172194,20.712337,0.99578667,-17.879192,-12.070314,-6.8192463,-6.895814,-12.125807,-4.6037407,2.4596062,-32.04664,-50.752823,-16.796774,4.5035763,8.004547,10.638503,-16.13652,-42.113564,-18.10974,18.048328,-2.5993505,-58.054626,-54.837906,7.016884,26.932682,-11.651296,-20.925692,16.346363,34.148697,34.962677,44.64566,30.813541,21.873896,53.590263,47.743057,-6.0155926,-11.704929,16.020542,9.171118,-3.5174866,-9.017315,-20.26061,12.360013,31.760975,-43.013283,-53.516384,28.914959,3.2893763,-46.37681,-7.4267063,-18.24188,-27.760448,23.221573,-11.572545,-56.028908,-1.4275541,10.374733,-44.868423,-44.753723,2.7353334,3.7097626,-34.120724,-16.484694,16.624735,-20.922558,-36.417976,7.646139,-3.1548853,null,43.81601,-43.403748,-34.225132,51.73978,8.492592,-31.174526,10.636175,11.408229,-20.653591,-30.760841,5.260213,36.369835,-8.547158,-17.552578,26.890938,2.2856789,-5.130262,25.73777,-11.214115,-6.947994,50.842064,8.109418,-44.281834,-5.4436436,19.110418,14.208603,24.267548,6.8899612,-15.313065,5.9946685,17.362906,11.811589,29.704386,15.688864,-30.25156,-19.34719,13.498915,0.7155571,-25.185822,-42.802162,-40.059456,5.2072678,41.01238,15.413948,-13.455387,11.665749,28.942741,-4.3639994,-21.730947,-10.525795,-13.285004,-10.709039,6.462044,22.991875,26.323973,-9.261027,-37.987255,-14.551346,-3.008609,-25.613613,-34.116127,-20.696085,-3.6110382,-3.6149693,-14.914282,-19.169552,-22.755064,-8.646447,14.838717,9.387938,5.4353886,10.073303,-4.6961412,-6.783181,-0.701957,-15.9117985,-22.08088,0.21654034,26.65709,4.6810694,-45.16468,-26.275768,12.792496,1.9953489,14.301612,27.698551,-0.030304909,5.612471,17.669344,-4.0888195,-3.3989458,14.162329,19.559418,-5.7838135,-37.819305,5.9933686,42.7647,-9.730661,-9.351607,36.02111,null,22.507421,-31.224579,-11.638899,20.531975,-16.851759,-22.810406,12.540945,14.470602,4.115941,10.64201,15.745527,9.450432,4.249779,7.9430285,11.627778,10.600988,8.174192,7.4774184,0.42816138,-2.8643656,25.963882,31.745266,-17.649931,-15.7224865,34.58492,25.652775,-3.1404278,8.456372,32.492138,34.016582,-4.4097767,-25.912441,7.132021,30.987411,28.583778,20.831121,11.457541,12.227755,2.7939835,4.82063,41.55156,30.968163,-21.054695,-24.329063,7.864338,34.45022,26.476833,1.9804325,42.02086,91.130905,55.926468,17.957699,24.729168,8.889147,-25.995111,-27.68402,3.7330399,27.474869,10.08306,-32.48924,-46.40067,-17.842314,-5.5342584,-25.16706,-13.185866,14.924368,-4.575342,-27.688068,-11.531313,-4.7272534,-18.326422,-11.667869,7.6832876,-0.9665222,-38.224133,-50.503757,-11.747105,3.7712278,-38.460346,-34.069157,22.586306,12.4241085,-18.097637,6.840704,4.3715444,-14.785299,8.930378,5.9866667,-11.512074,7.3531947,6.242213,-1.6124737,8.459268,1.0950539,12.597025,21.708767,-7.807578,9.311731,28.748644,-10.059743,null,-20.573854,41.52752,11.611725,-35.30245,1.6220622,23.907406,-10.756749,-24.809639,1.2945117,16.408672,-13.026736,-24.44989,10.117458,7.815402,-5.9277034,17.04916,-7.881157,-46.13665,-4.662792,20.24533,-19.60444,-16.142248,28.650028,22.365501,-9.158277,-0.16403008,15.66234,-1.8964465,-20.611092,-5.295494,27.83398,32.84496,8.693674,-10.469641,-23.608604,-12.902594,27.124998,22.428463,-26.252542,-27.511341,11.9258,35.975334,55.800755,69.34251,40.901405,-5.1427,-22.744461,-14.393295,10.272945,10.678303,-43.73034,-58.219933,5.361539,41.347935,34.48401,33.13291,26.882858,9.4991,-15.363362,-20.087494,0.104540825,-8.823393,-19.457672,-2.4100595,-11.724559,-20.942966,4.1687202,19.325596,10.38821,-17.399632,-28.697727,-0.30956066,7.321196,-2.0607367,10.082997,8.351084,1.4916201,-2.2757525,-25.830774,-14.573736,25.215282,15.239951,-1.2414839,18.998627,16.436708,-9.00845,-10.18238,1.530169,4.499152,-1.0973845,1.8423867,16.058994,-0.48799515,-17.57898,16.517775,12.090178,-27.551655,13.081455,33.650776,-29.98148,null,8.596524,41.473183,-16.915775,-24.314371,11.676659,-5.7083015,-15.302469,15.257925,20.8026,-2.065596,-1.6171496,10.249433,-3.3523083,-5.7646103,18.714048,16.654533,-8.255099,-16.061666,-13.373399,-4.6391144,5.8225436,0.5588169,7.1864014,28.329086,2.283679,-35.467155,-1.1694808,43.345646,17.726978,-30.69318,-30.383215,9.488499,10.322269,-28.682034,-23.72403,-8.4753685,-38.198563,-33.911137,19.80682,24.021317,-30.974482,-51.439823,-11.429846,13.595496,13.827377,36.76226,44.567528,18.26612,17.067501,48.36484,71.69061,64.44291,37.58053,23.298481,20.767834,3.1928291,-21.448013,-10.104453,24.444162,15.1635,-9.519027,1.8032894,-5.1348515,-37.876217,-42.92137,-17.820564,20.946104,23.937546,-22.624422,-35.041447,1.9765224,21.427336,4.2866282,-6.5685873,24.80534,33.41026,-19.317575,-19.635323,47.161953,39.407146,-25.164482,-5.80794,44.05331,14.4016905,2.4716282,42.002842,22.43094,2.3341906,31.474262,23.405197,2.3425057,-7.51808,-11.983914,17.589317,0.74291885,-30.281631,26.041761,26.87127,-33.726204,0.1352644,null,-17.662067,-15.476353,8.945203,1.9624677,-5.5565815,-14.821007,-0.33450747,18.81273,-4.5303946,7.310056,32.133415,-14.888758,-36.944427,1.8436755,1.3247089,-27.381178,-9.064362,18.573997,-14.555007,-39.18867,-0.41622913,9.291551,-21.295578,-26.305574,-16.179432,-2.6219363,-4.9690986,-27.325235,-21.599833,-5.5402203,-8.368275,-13.593107,-23.016338,-18.674976,5.2558074,24.319767,28.678581,-3.8071816,-38.22146,-11.09841,39.195305,56.460583,22.578053,-40.13311,-56.02176,-29.696796,-22.383823,-27.307549,-41.14048,-66.84447,-69.95827,-43.478294,-17.911322,-18.314327,-23.183119,2.4946837,28.123713,31.770344,49.995586,64.79432,28.405455,-8.455043,19.22344,58.226524,49.611694,31.61198,22.973843,2.1686983,0.6461086,28.874481,23.279772,-18.062202,-16.622124,27.27056,37.62319,6.6129513,-7.1880183,22.757517,41.3049,-0.77233124,-27.616896,8.260454,21.22622,-0.5617733,-4.0580893,-6.62248,-12.971897,-11.381569,-4.47248,7.6066732,-4.9426517,-19.595968,16.423998,40.66097,3.331455,-16.138956,16.442787,14.494602,-25.987617,-4.4565697,null,1.3461266,-12.749061,32.125774,19.38002,-29.593113,13.7346325,36.52306,-25.146149,-17.561945,36.780025,18.020245,-16.150377,7.732291,31.867975,-8.244413,-39.295662,-2.4373999,14.796372,-2.750614,1.4124937,4.840726,13.287925,23.323671,-6.9443026,-18.02922,17.950504,18.454384,-24.554289,-48.072052,-28.987606,9.647513,26.724764,11.150668,-11.190535,-20.214043,-17.233984,-7.6104326,6.1453633,5.5127525,-19.589458,-37.631325,-30.258617,-20.499763,-12.750913,10.133486,38.75562,51.382187,36.85006,2.5936055,-11.131715,10.206961,33.263927,42.182053,20.844704,-18.357662,-5.271061,28.432693,-5.621543,-57.710655,-50.185234,1.6902504,38.232212,15.840498,-24.950525,-31.411222,-20.265747,-1.3565822,28.549421,42.00378,7.905035,-37.560135,-14.248915,29.639267,3.3747282,-27.836689,-1.9873183,37.420063,31.675503,-21.9181,-21.195282,23.66794,-18.647089,-58.84239,-3.5990715,13.916729,-28.199429,-31.315302,-1.5544195,3.6011796,-25.353073,-19.72066,20.725811,-3.4012852,-44.647728,-10.140347,13.119786,-28.201672,-29.199268,24.659157,16.669872,null,23.685905,-14.138645,-30.64413,16.343403,6.3646393,-38.540066,-17.948206,8.769013,-3.3041518,-9.489452,-1.0245665,19.298473,21.778406,-3.5173159,9.847009,29.947826,-0.18154049,-8.028839,12.308922,10.911172,6.0219,-15.276449,-33.462208,-1.9990306,14.406571,-6.493347,-1.6103935,9.346364,-6.694642,-21.740936,-26.942207,-25.927635,-4.538971,22.712013,15.459339,-15.932106,-19.202381,11.556145,32.034786,12.96854,-16.577356,-9.957275,8.0432005,-13.951681,-51.236927,-51.563416,-20.163269,2.5751886,3.0469832,0.35632133,2.1786902,-8.8948345,-38.646523,-56.95559,-44.528038,-24.128695,-2.6690764,19.96268,16.61446,1.554683,1.3567188,-14.351576,-48.034863,-52.875305,-22.838902,3.462871,3.247765,-16.933624,-43.19301,-38.960022,13.454055,42.97513,4.9617357,-36.205647,-22.377663,22.790955,26.033518,-7.914153,4.493617,28.64915,2.9785697,-11.656517,-7.6956673,-18.821596,-6.5617337,14.881592,-0.894861,-17.042677,-0.04319763,2.4980898,-20.266422,1.2359636,23.432953,-18.473719,-12.839623,24.445137,-22.054153,-25.491638,40.483078,20.963371,null,37.304115,1.5130966,-49.308006,-3.1385412,28.097544,5.710455,9.261115,20.153526,-5.7898636,-30.26257,-19.19952,-4.009018,-10.637517,-20.921722,-11.660518,13.4948,15.68415,-7.739602,-1.7914554,32.368156,45.81473,23.790455,-10.169116,-2.5755882,32.739822,14.195118,-31.303106,-19.605122,32.154053,50.687984,9.506974,-26.566202,-3.8963895,17.967426,1.390856,-5.330571,3.460598,-15.818047,-50.899586,-40.026215,1.0675297,1.3459005,-12.421299,2.45794,5.9767904,-5.6010637,-1.5038399,9.218429,8.388432,-12.135269,-21.29636,6.2558794,21.624233,10.390622,14.393757,24.824205,20.572063,6.781562,-11.321883,-21.066113,-25.620766,-28.270523,-2.991366,36.59912,34.193565,-11.304,-38.32636,-20.38877,-1.1472307,0.7963085,9.916078,6.9750204,-8.973555,12.184805,30.52745,-6.6412973,-17.466015,25.610493,19.286118,-30.663681,-20.683508,21.295849,1.6353178,-39.606316,-23.375708,1.7335615,-15.77224,-20.622776,7.179251,19.73531,10.688271,-2.330536,-11.428846,-3.385489,7.8682523,-1.120853,-4.855604,13.213419,13.041502,-2.5077448,null,-2.815074,7.947222,19.350025,-6.2946906,-6.338518,14.523453,1.708642,-4.4125566,-0.47015476,-3.73903,-0.06812477,-20.525839,-24.446625,22.26746,15.373884,-30.354273,-13.222044,15.236331,3.0715292,-15.322308,-11.360716,21.260122,36.12373,10.170021,-6.5325756,-2.5786667,5.872799,10.189347,-9.013519,-16.695385,17.631931,28.355919,-14.80024,-39.969837,-17.490366,-7.292594,-27.27797,-28.982908,-15.423287,-16.505661,-14.619629,-4.419022,2.2380815,3.8269095,-10.743785,-18.43929,0.08882618,-1.8841133,-21.948238,-6.6065006,21.802187,20.217583,-0.16783428,-12.037483,-11.165747,-25.335194,-46.45189,-27.670036,-0.624153,-19.123909,-34.36087,-2.7591882,12.157542,-26.920242,-43.43554,-13.519243,-20.121983,-45.397408,-15.694969,2.7104964,-35.886353,-47.393303,-8.409282,11.19129,-18.020338,-39.09575,-8.640895,8.052976,-19.200048,-16.42916,11.04119,3.1989155,-19.117113,-25.72897,-20.49468,-7.406661,5.985586,7.6437745,-9.562719,-18.45552,-1.1364548,-0.3616743,-14.183501,-2.2224383,-0.29783404,-18.012964,-3.6481237,16.164186,6.361772,3.1020336,null,-17.704735,-9.417893,30.716274,5.1146345,-14.24221,5.633318,19.271315,18.869364,2.541119,-12.110519,-10.502474,-11.041009,-6.0366297,9.418692,9.774912,-6.9945145,-11.3611145,14.042052,31.168625,4.080895,-25.699427,-16.362738,8.359685,4.1574354,-29.325325,-34.41955,0.20049953,14.896067,0.621006,-20.074085,-45.83046,-41.976395,-0.96162176,12.488764,-5.8343797,4.241539,27.116512,17.465036,7.3964977,25.369705,40.833694,40.56349,40.274895,41.728683,27.324522,-2.877935,-8.038733,12.85001,7.1415386,-11.796402,4.064297,26.157204,11.54537,-7.2747083,19.025845,57.339798,48.95672,23.708382,32.767544,54.873043,47.02288,12.664185,1.7676222,25.272045,26.668276,2.702468,-2.0555696,-8.591969,-32.066696,-25.451885,1.3421974,-3.5198164,-16.539734,-11.698068,-9.072683,1.7119808,7.0562587,-12.682797,0.18566775,26.922745,1.078989,-15.223827,3.6415997,4.032019,-2.3139405,-8.315226,-8.688418,8.963045,9.63792,10.848988,20.319208,3.045802,12.3112755,33.4222,6.5282836,7.078854,19.822779,-11.053188,0.023520231,18.29078,null,14.0464115,0.01627031,8.340596,0.25231457,12.068654,30.405846,2.71173,-9.753006,14.630382,16.94286,3.426216,0.14593983,0.35431957,-5.48538,-11.805956,-0.46897316,12.398778,8.675701,5.9793816,5.0897646,11.044506,25.807152,12.083941,-12.258038,-0.13384032,5.777638,-23.952286,-23.379637,19.998661,34.097275,14.246458,-4.0455184,-24.642063,-12.817715,36.42298,35.065453,-16.066505,-31.537899,-0.8813231,24.41273,7.8549333,-11.307272,-1.3980106,-12.795805,-23.678345,11.923985,29.57594,5.191209,-21.408562,-22.024529,20.91225,41.969536,5.0933514,-11.825629,-2.1069403,-4.6136656,-5.283128,-9.496535,-17.387003,-11.999655,1.0511898,14.201687,13.409378,3.4226727,4.603123,6.5453157,6.8347816,10.605867,10.649964,16.747555,24.13648,11.454779,-9.92848,-6.5031033,19.514265,14.775835,-17.0896,-10.182418,13.602667,8.060152,4.4567285,6.810212,-2.2893121,1.1466542,9.231576,-5.035119,-13.7484,0.52818155,1.238782,-8.3613205,5.145392,13.952766,0.08644676,-10.04327,-16.959267,-15.277458,-2.8610337,1.7093716,13.099194,10.358003,null,28.161533,9.568081,-27.805992,-14.488854,12.889198,-4.6987367,-25.70013,-9.526754,-4.470256,-23.112877,-15.733715,6.892412,4.0720205,-4.026094,-3.4278183,-12.161123,-10.813387,-3.3290315,-22.620323,-28.369024,-8.602169,-17.698963,-27.804049,-1.5625982,17.036308,9.761063,1.3944077,-4.750303,-24.330204,-32.101807,5.967695,27.679485,-2.284534,-13.982883,-5.665204,-6.3188562,6.9757233,14.363832,2.3929365,-2.8060083,2.2688737,14.168423,19.856647,16.325308,6.0506124,-16.989159,-9.574192,22.93169,15.5869055,-7.3210692,-21.792727,-19.955027,23.341385,24.199697,-29.925425,-21.31232,12.010121,-0.81193304,-7.9020267,0.3871584,-0.7675762,-7.8725057,-0.27409804,21.757828,-4.67031,-52.48648,-23.096525,30.562988,27.973385,0.8594265,-18.352127,-19.446909,-6.266945,-2.506421,-8.59168,-5.524605,9.081712,1.7222574,-23.232887,-4.510065,25.1723,3.3317945,-10.567224,13.176663,22.575884,16.127033,5.4804153,-15.287041,-26.747429,-17.302546,-2.0911596,-3.2255821,-13.296894,-2.5160065,7.7557583,0.4990158,10.472298,12.351548,-14.984121,-9.902189,null,-20.366795,16.28183,-0.64930105,-6.524438,11.80976,2.9415917,-1.1812779,8.412626,9.374194,1.4458742,-9.254278,3.6166492,15.210528,-9.481639,-6.1787214,24.84915,7.66493,-7.6678658,24.592537,33.390373,2.945152,-14.627457,-5.206625,1.2341537,-18.442736,-28.460848,-0.2689476,27.339241,19.214748,-10.99739,-10.281229,27.199608,28.570513,0.6447153,2.5676827,6.840867,1.4731627,11.821227,22.562878,20.064053,3.7278738,-4.7031393,3.4883087,-10.9899235,-18.279354,14.689539,24.796091,9.323673,-0.28036785,-18.629717,-18.346107,-0.5372591,-7.2100725,-18.851383,-17.4046,-11.757469,-2.9984226,7.683955,17.535866,4.146849,-16.196178,-1.3657188,10.82319,3.8532395,13.489798,21.382381,25.303032,28.617704,2.62176,-2.3120427,45.593464,61.05609,18.816626,-5.758403,5.968746,0.873909,-18.122118,0.13739055,27.036156,12.703316,-6.008658,3.5713282,10.591491,-2.977012,-5.627443,18.662474,24.042137,-6.2170696,-20.873129,-4.8300486,13.5742035,20.123646,7.2194138,-11.16666,-4.222649,12.891161,1.6550794,-17.742542,-9.378475,3.5570192,null,-9.651248,-17.31055,10.734222,2.7849052,-26.896,-19.546625,4.1177654,-6.8714466,-17.563766,2.9891496,-7.4204407,-27.060394,10.56506,25.269678,-16.265863,-23.698551,-3.1306157,-4.9741516,-10.309805,-1.1600542,12.451501,2.4064949,-21.999176,-3.7979326,28.915997,9.70364,-12.819328,9.393893,24.823204,9.637684,-9.673491,-20.766962,-8.099041,12.550884,4.8183546,-1.4278426,3.8493912,-20.936398,-38.09219,-10.2879505,10.048989,2.8004818,-10.66117,-23.394968,-25.7396,-21.628527,-11.109756,7.1729665,-0.4164065,-29.123432,-29.77105,-8.362368,-2.1629848,-9.36355,-7.89993,-2.0017385,-8.658768,-12.864862,-10.069997,-32.050125,-64.29709,-57.766052,-22.102295,-3.118835,-9.681525,-15.816424,-14.011471,-12.526159,8.987425,43.96702,32.901707,-10.181209,-11.227533,10.382876,2.1940136,-7.499824,1.8883065,1.3251814,-6.5593624,-2.261088,3.7156813,8.054096,16.026241,8.892035,-6.234309,4.2728863,10.878283,-9.357034,-1.8689823,19.113369,-1.4501642,-12.433346,10.334591,14.367491,1.9271679,-7.632382,-4.0152884,16.635391,11.502424,-5.4502954,null,10.643194,-13.969027,6.810955,15.331462,-16.662527,-10.843111,2.5323613,-7.1103997,3.2731743,8.001823,-4.535762,-9.054068,-13.131332,1.7709384,16.536871,-10.883558,-23.992222,2.9097328,9.229653,-13.205613,-14.9735365,15.136234,12.087328,-27.854237,-5.5162086,44.83856,15.065203,-33.590042,-22.83382,7.815089,17.179567,3.4448862,-15.840191,-26.948696,-14.937439,29.491306,46.480614,9.931347,-1.331008,18.373135,4.060334,-26.10635,-24.647312,-1.1862326,3.4852448,-12.877172,-11.239964,-4.823635,-14.311632,3.5737467,28.769289,1.3322597,-25.497887,-5.6695013,4.1780496,-9.556078,-8.107235,3.9649544,14.087284,20.184395,16.623138,17.232666,15.351616,-5.5512342,-10.143124,3.0562327,-1.7493393,7.2196236,23.809776,-10.739828,-46.65274,-28.132576,7.3630304,26.953758,2.9712458,-32.0065,-2.4623098,20.401627,-15.188929,-11.05493,12.052834,-12.463907,-20.317493,0.28935885,16.028128,25.166935,3.229229,-12.664389,8.063232,8.894459,-4.000786,-4.91187,-0.41709614,25.398392,26.893867,-8.320314,-4.072956,14.995758,7.5608673,2.5368776,null,-7.2252526,16.96544,-1.9088812,-9.242664,22.718939,1.5594215,-17.70905,27.247753,35.749733,-3.3906727,-11.533627,10.671511,18.649925,1.94174,9.42558,27.277733,-4.1929154,-9.359775,33.738968,20.378765,0.37705564,28.007122,14.01157,-20.241112,-10.284166,11.372969,31.849556,31.268179,6.7053537,11.375242,17.070642,-1.137177,5.3065643,9.684671,-9.206434,-9.309727,-8.590901,-16.525126,-6.7967095,0.421278,2.583044,12.054026,9.048713,5.4148293,10.53082,-4.705612,-17.011139,3.8811035,5.1838636,-24.43692,-19.326296,2.8526013,-8.018003,-12.883187,7.8130083,13.764224,-8.057545,-21.963692,11.778716,34.9519,-12.461044,-33.317547,8.764833,15.372275,-6.1142845,-5.1782436,3.5641718,9.3176565,-3.199532,-12.91028,8.748377,20.634094,16.034874,12.961548,1.5041752,-2.7615235,-8.909642,-20.125162,-6.6984024,5.663294,8.547084,11.381275,-4.427476,-1.3840094,11.746011,-8.412181,-4.5582376,9.17704,-14.863389,-8.299462,16.368284,8.151621,5.323576,-5.4813414,-15.389064,18.57521,19.797295,-17.406487,-0.8230419,7.7498145,null,1.4849463,6.7886343,11.921961,-6.82067,-10.696336,5.266801,-4.711336,-19.951292,-2.2054405,5.0004034,-10.300615,-8.861725,6.4984818,14.320271,-5.2591314,-20.90262,6.6060467,2.597424,-37.38574,-16.153719,6.6076183,-29.223534,-32.372906,9.492824,22.949455,-1.9123217,-20.2246,-8.932594,-3.6050568,-5.280416,11.05062,7.2656093,-15.544424,-14.761538,3.2899354,25.053368,14.210132,-32.050915,-34.93805,-14.069134,-34.521217,-37.881954,-2.7320423,2.1496458,-20.486748,-16.156967,18.695675,32.26974,0.19755936,-12.316912,31.319494,51.520588,12.561356,-13.234306,-7.0240545,-8.299606,-15.348848,-25.912025,-33.797108,-17.523964,-2.2697582,7.2703357,27.648733,14.650602,-13.342822,5.485716,16.978176,-8.038703,-12.124798,-5.739478,-19.214573,-31.452309,-18.858791,19.818748,33.243805,-4.186825,-23.1889,-3.681262,4.3560095,-2.9068422,-14.812099,-17.032473,4.3436046,4.837199,-18.005997,-5.323806,16.117414,0.3090583,-17.191944,-6.2827826,14.603598,8.894121,-20.258612,-21.332724,1.1577256,5.137249,-4.7405586,-14.752481,-8.117123,14.966128,null,20.490635,-0.6400256,-10.969416,14.701584,20.404377,6.736636,5.4723873,-0.17492032,-0.14139366,17.67648,14.082739,-8.295321,-8.177936,1.6911654,-7.8711214,-13.058636,2.9436238,-2.4922223,-26.763733,-10.299839,19.20347,1.2223935,-30.366081,-26.70964,3.681621,23.878601,11.93479,-6.16082,-7.619469,-5.623727,6.534268,34.390816,34.43052,-7.461772,-30.662071,-13.801392,-3.6120791,0.5623517,17.66001,18.49045,7.7952404,8.815432,4.24547,-3.323172,-7.028796,-17.289171,-13.972066,-0.8446636,-13.444361,-33.526688,-25.164833,3.8944483,20.32694,2.6892533,-14.651056,6.129495,25.312868,14.973193,13.423283,24.114443,22.479607,14.140814,2.2072604,-2.0255408,8.665064,4.621022,-6.4802027,-0.26194048,-5.9366846,-26.105446,-28.416248,-13.940126,2.540082,7.2018695,0.58523583,-4.797066,-7.4094462,5.42033,17.152657,-6.3766775,-18.820305,7.5813804,11.679885,-11.050375,-6.677566,13.678126,5.23419,-7.6868067,11.114162,14.041044,-9.674604,-4.5947127,7.7475376,7.146741,12.090264,0.5726406,0.8527956,18.624643,-8.598545,-18.422403,null,-2.9658704,19.358086,-15.317265,-16.23587,-4.5703745,-15.06633,-2.6535766,5.3853273,-9.213719,-13.508093,-9.171008,12.294178,25.660774,-1.9083374,-4.788336,19.75171,-2.4062204,-25.664543,1.1331699,15.674793,-6.399701,-15.640571,-2.9827502,2.5687332,7.2105927,18.616386,9.75792,-9.606216,-5.6112504,9.610832,17.176956,14.029632,6.215066,8.326446,-3.4255185,-38.081974,-42.047024,-20.375284,-21.653498,-24.408792,-11.878125,-10.332033,-19.172573,-18.325731,7.124114,35.954597,22.724693,-5.321632,3.2877185,20.89275,16.69014,8.921594,12.385249,20.409122,19.011568,13.37547,11.589802,-3.7805374,-28.568155,-33.790173,-20.038973,-7.054925,4.613722,22.653324,20.501207,-9.161644,-8.0268755,14.535803,-1.9526219,-17.308422,0.22776985,10.00074,4.080207,-9.942864,-8.604223,17.747217,13.3362665,-9.7944145,-1.1860294,7.36487,10.073165,14.452135,-2.8999493,-3.7250042,19.808285,10.475403,-14.68751,-12.608025,-0.1079061,1.3018433,3.2413502,9.26355,0.39156628,-2.1813662,9.471699,-10.939296,-20.581772,18.344517,9.949157,-33.87873,null,-10.125153,8.225487,-3.983563,-4.1633925,-2.6849425,-19.043537,-19.987835,-13.815501,-11.31002,-3.7494535,2.3393774,1.4999335,-5.616872,0.16246986,13.172122,-0.12863779,-16.677567,-10.173582,5.192605,16.231983,3.6294885,-9.401241,4.8824124,8.209491,8.463084,24.858429,14.784765,-8.113893,-14.937135,-10.357761,17.8536,27.365967,-1.8487234,-5.543321,3.9973726,0.5423713,20.182943,34.05208,17.219606,9.903248,12.134404,9.800187,6.8850746,-4.5706453,-14.333675,-10.4598055,-7.507721,-7.925883,1.0399134,7.044862,-11.810749,-31.04157,-21.355082,-11.774408,-20.264427,-21.10688,-5.031473,14.293854,14.513986,2.727701,16.917023,30.281527,2.4235697,-19.124046,-4.050977,13.466653,13.918901,-0.23051357,-8.101558,-0.97884417,-4.6517487,-6.8174047,15.483053,24.679497,4.958041,-2.51375,9.271547,8.172993,1.9110084,8.841328,-5.019121,-29.16594,-7.0554094,9.951035,-18.32285,-8.799479,26.1223,2.833995,-23.793186,-1.4809245,6.3194942,-16.649685,-16.248344,3.850499,2.0494153,-9.404321,-7.295489,-4.9808526,-2.6631763,3.0673046,null,-6.632313,-16.297916,11.911737,8.235448,7.795708,20.150776,6.0417776,9.649558,28.550982,15.172636,1.4453032,12.401146,20.29176,13.076275,1.9586463,-2.105123,8.011806,25.624895,21.610031,-2.9756308,-4.5232654,13.359536,13.923716,6.534207,6.60276,-0.063349485,-14.294769,-9.713421,13.474335,10.451452,-17.20878,-15.5452175,8.596446,10.663546,-3.1315722,0.22063398,24.970968,36.017494,18.191269,6.5101767,12.526255,18.717356,28.251595,36.472324,31.51118,25.294537,24.176048,18.388779,9.5093975,6.626675,9.075392,15.581476,23.151657,19.987267,21.126358,42.812737,46.910004,25.018888,12.466965,-5.428911,-20.415833,1.6537466,11.29589,-6.995386,1.5485282,14.612984,0.6384697,-7.1792164,5.999669,21.561466,10.366191,-11.318373,5.994385,18.96059,-12.507842,-17.600863,15.519817,24.361097,9.441132,-1.4702129,-2.3661084,5.086058,14.2561655,10.897957,-12.598195,-19.54353,5.094435,13.162899,5.198966,3.0898826,-9.590504,-12.344273,1.7435551,4.9101353,10.832783,17.286316,6.1825314,-2.813228,7.4391026,25.96297,null,26.124119,14.499915,-9.2494,-14.3592,-2.896199,8.860043,1.8637872,4.6495147,27.327766,11.984566,-17.004646,0.2527442,17.167316,7.3720703,4.948406,5.6447306,4.4222975,11.704426,13.981386,0.86449623,-7.677836,5.586833,15.289408,6.691053,6.216623,0.57395935,-31.29303,-39.92548,-0.506194,29.963324,15.855883,-3.5032306,5.0443487,11.008523,3.4690285,17.831028,34.20998,20.432877,11.380286,6.65372,-23.677423,-34.5367,-6.5326757,2.7309432,-11.167501,-12.11757,-3.920785,4.7067976,9.231197,1.3370743,-11.747188,-27.898232,-40.758774,-27.61557,-8.474861,-27.636902,-60.701912,-52.356865,-18.677074,-8.750864,-18.766785,-24.231308,-28.588493,-36.25126,-31.85713,-7.268407,12.620711,8.961367,3.6766436,4.1683846,-7.4166484,-20.41602,-11.681118,14.375349,18.745268,-16.039446,-29.086157,8.8277,30.889318,12.292744,-6.958296,-16.941914,-20.186611,-6.084675,7.292909,-2.9365907,0.5442133,29.061785,15.981044,-16.837402,-2.427807,9.418282,-1.9223585,-3.101965,-16.265697,-22.220228,-2.6145947,8.071456,11.935207,-6.016551,null,11.252329,14.005518,0.8570204,-6.3802934,13.304263,15.236682,-1.822054,-0.007946014,-0.62611413,-4.7654295,0.48850632,-5.566081,-18.382702,-26.112392,-22.325321,-3.3705277,4.2977123,-7.2971225,-18.778675,-13.3634405,12.808349,21.650673,0.51786137,-11.8774395,-11.185186,1.3865464,25.109072,21.69256,-4.729001,-19.919298,-27.72358,-24.965054,-6.8659897,5.099521,4.2222157,2.444188,4.7861648,5.790064,3.9107585,9.669795,18.938206,15.228046,13.351882,35.81237,51.855892,25.71618,-5.4992642,-1.9173727,8.612308,6.9075193,9.611717,9.676254,-1.7760433,-4.504539,8.503081,19.003454,15.877876,12.06716,27.862942,42.501312,20.799604,-2.0939732,6.5785275,2.0498047,-17.054312,-4.8117523,16.084347,12.225216,-3.375736,-9.369267,7.9726562,29.917011,32.06657,19.19619,-2.417195,-12.604808,-0.42975807,4.781055,-2.6954396,-1.0817871,13.65119,19.35573,-0.7075486,-7.9916654,9.121437,6.3115854,1.0370741,11.473075,14.742606,22.107018,11.010865,-22.627642,-8.660864,22.56482,3.2760801,-17.848366,0.04610777,20.43951,4.3059306,-23.120907,null,-13.281738,-7.3849683,9.140714,6.4608035,1.2483411,21.124485,23.236738,5.1980968,-1.1608381,0.37743425,12.907244,12.398701,-7.7980175,-9.898425,-9.460796,-1.659736,32.259384,33.015675,-3.818728,-23.888695,-17.174873,11.042336,24.537067,2.439116,-19.005957,-28.645254,-17.382488,14.21378,18.326883,0.5820379,0.07251501,6.591739,0.08941746,-16.99026,-10.641133,20.803673,17.14645,-12.842633,-15.072863,-7.5417843,-9.917808,-11.566372,-12.983484,-9.3832035,-8.163185,-12.40535,0.0029306412,10.441976,-1.4061942,-1.1818824,8.943996,4.7696996,11.256804,18.912735,-4.68447,-22.38165,-9.581053,-2.6256838,-12.063144,-9.499174,17.53076,42.06534,34.736004,8.065178,-7.6975336,-2.3197975,9.819898,21.749552,41.144386,39.60289,7.613408,-5.3109236,-4.702811,-15.343905,-4.098578,20.235556,14.991461,-14.589669,-23.684824,16.245152,44.28505,17.618803,-4.2046905,-7.624401,-2.2745957,24.801727,17.491909,-19.74749,-10.730193,11.056266,4.103138,-1.0540271,-0.04244244,-1.4849968,1.0361137,12.224327,12.376781,-16.262756,-18.590435,20.586884,null,-17.136257,-4.0235243,19.257395,6.3100123,-14.721186,-4.962044,17.39664,6.828519,-17.382858,-6.810585,7.5262184,4.9975204,3.6316104,-9.391665,-7.178602,10.042595,-15.368366,-30.925331,8.9691925,32.186073,20.866377,1.6944269,-25.561455,-33.112457,-0.019976139,35.67025,22.6465,-16.05723,-25.22111,-30.85667,-42.273933,-11.541937,24.49961,10.303493,-26.457048,-47.86641,-41.560753,-20.690228,-4.7802677,3.9751182,4.6770864,8.212568,5.589821,-19.012548,-17.677572,3.782403,-22.058275,-44.894234,-16.887924,-4.574134,-16.16626,-14.231918,-10.027386,-1.0955052,11.707811,12.004076,11.868765,14.638275,23.111387,36.208244,17.391521,-11.68176,-4.6490574,-2.1690729,-17.139433,-10.614629,-0.41777265,-3.3101408,-2.5879312,4.063673,3.0508842,-14.637121,-12.975265,15.987821,15.073313,-4.698498,-14.741809,-28.255508,-12.573024,9.943451,-14.349909,-25.485546,-7.0571632,-10.437353,-8.773772,15.186175,21.718075,-5.8752375,-32.67084,-17.61441,9.106118,10.010008,-3.1214366,-18.487888,-9.58725,9.496949,-4.7535,-5.7134094,20.816158,15.469116,null,14.7132435,6.2367935,-14.582452,0.10105181,16.132757,9.476074,-12.290592,-17.01529,12.495388,22.72499,6.2750397,7.282692,11.47716,4.26906,3.8093967,9.622115,5.828802,-1.6867852,6.9339566,4.59327,-14.761599,2.2681084,18.58541,-11.882575,-14.923767,17.258343,20.227978,12.825932,11.303953,-11.155348,-37.819733,-28.006836,8.616254,20.224323,11.4729395,17.546595,6.404958,-21.272436,-13.282407,1.6365118,-7.9201307,-9.4806385,0.81245327,13.088146,22.343708,14.008906,3.4391775,2.6245365,11.91659,33.24337,25.054798,-3.21036,12.5512705,29.196491,11.459255,11.809605,9.053488,-17.873587,-19.910091,0.8724632,22.67566,36.451447,30.666847,24.924042,19.949982,12.971901,12.274735,-17.646751,-43.470993,-2.8675523,23.578283,-8.140205,-15.553049,1.329032,-9.366638,-15.372192,10.257261,19.385029,-5.613236,-17.095112,-3.618587,16.325743,30.989937,11.289713,-20.421993,-14.960817,0.2481513,-3.2036176,-10.422544,-6.577149,11.108316,14.067667,1.1095164,0.6214869,-3.7191696,-11.584736,-4.7633724,0.68627644,-0.11683488,-4.997496,null,2.2871246,-10.745636,-5.775783,-6.0820603,5.633192,-1.5192468,-26.986917,-3.460229,21.423172,-3.273261,-23.222385,-9.802153,24.362486,38.591373,7.344429,-15.557096,-4.3631477,14.528765,34.602795,29.367117,-7.66381,-16.260063,15.771815,36.641357,34.8177,19.024569,-10.752302,-16.306898,6.639106,8.753088,13.988536,36.849483,17.729408,-15.59841,-16.152485,-17.969963,-13.299919,7.7622013,15.15086,19.115215,19.793938,11.328082,8.156134,-7.3604774,-23.206478,-15.55232,-13.27937,-9.628205,3.9707108,-6.109784,-19.019737,-12.7938,-13.16941,-17.192533,-16.46733,-16.126638,-10.390564,-3.8810806,0.75529337,2.6901236,-5.120345,-9.33326,-7.342168,-12.975576,-14.166316,-4.2712536,1.5896292,0.9330703,5.6225452,16.8359,9.578127,-16.056784,-25.444126,-31.665041,-38.72725,1.4788597,48.18995,21.633106,-30.92919,-26.30589,17.00029,23.438208,-6.347154,-2.627883,14.073606,-6.3091288,-14.071274,3.9250116,1.870299,-7.1292443,-4.1131406,5.6628895,14.878475,4.477383,-17.689852,-21.07257,4.916605,23.07089,-5.6519866,-21.066343,null,-3.49856,-6.95264,0.07866144,-1.9424329,-18.20096,-25.176556,-3.7991474,19.486008,2.041812,-34.579704,-28.136684,1.2115104,4.676971,8.268899,8.521062,-20.683401,-27.88565,-4.186495,-1.733818,-6.162162,0.3600967,-5.5225163,-19.898079,-21.926325,-3.2991147,12.593136,0.30707073,-10.940563,-8.322687,-13.120687,-11.497058,-7.940922,-9.430815,19.059788,43.00848,10.738413,-19.798447,-6.4118814,7.969253,1.7139926,-6.204441,-7.202959,-10.877501,-15.146289,-8.44234,-0.5815387,-3.0409184,-12.223928,-15.765578,-2.0869222,5.0834837,-9.959572,-11.518127,7.6126995,17.0254,9.771103,-1.7433226,-1.1233199,3.8404925,-3.5983863,-10.296863,-16.842625,-20.719114,2.8361812,28.588835,29.775352,20.270857,-6.643258,-36.77262,-34.487858,-11.182964,15.035629,27.573114,6.0963936,-16.089529,-11.152672,-12.299953,-13.394632,20.130276,34.508583,-7.3822446,-24.925446,6.6892967,19.886158,5.352487,-9.138317,0.72997713,32.20211,23.30604,-7.9949527,4.181663,15.486447,7.4873033,9.188125,-2.0539427,-2.397889,14.885484,3.4212356,-2.4368882,1.7567748,null,-7.531316,-1.6997626,-0.5668601,-0.8543358,3.0672188,-1.1659588,9.344812,30.537037,3.4735994,-29.571905,-4.3962173,14.267347,-2.8114176,-4.0523214,7.036393,11.819731,13.752653,8.460907,2.642797,-1.9144914,-7.272396,2.219622,19.690432,13.509663,-14.077916,-27.46102,-19.122902,-3.244032,23.225273,39.030453,20.457848,0.18475735,-8.244907,-18.840591,-12.729773,7.356795,22.558126,35.68483,27.874657,-0.63729024,-10.956912,-7.79177,-12.044778,-5.627327,12.720659,15.357459,5.7347836,6.3077145,14.575423,20.728672,16.320585,-0.45658255,-4.0258055,7.34945,4.347504,-3.4295306,-1.0935149,-1.411366,-5.6266785e-5,12.244406,21.113012,6.2087793,-12.186993,7.725213,26.449947,1.0042996,-8.587007,10.611113,9.487735,11.80435,24.670963,7.3070216,-16.448528,-10.919455,2.8982828,4.353244,4.8607483,12.573603,8.037964,-10.79441,-11.446188,7.108795,12.208542,-0.945035,-8.757059,-1.7656268,1.9012321,-5.995,-1.4900136,21.039038,25.407574,1.3169148,-14.521264,-7.6894026,6.952626,17.703215,4.3257036,-18.810162,-5.956178,12.816432,null,-2.299779,17.13655,17.213022,-22.526499,-34.6676,0.13187218,7.3103495,-18.302439,-17.35197,1.5136545,-6.9345903,-14.217754,4.8114314,5.2408867,-11.12753,-14.729208,-16.494251,-4.8363,10.778708,-4.3673563,-19.01051,-10.330175,-1.7682157,1.4291205,-4.095149,-13.284751,-9.071327,-3.4249668,-10.036886,-14.863073,-1.8685312,18.578897,21.542665,6.169085,-9.034832,-9.747076,-0.86398697,-0.21145344,3.2961383,19.912249,25.142124,17.16119,12.028885,13.127481,19.959097,12.044926,-6.360179,-2.3220563,0.47432804,-17.429596,-17.90477,-1.4862615,3.9976215,2.799518,-3.2192497,-1.9044929,24.479881,34.861317,4.767046,-9.971088,-1.8761443,-14.0229845,-20.303131,-3.2460616,3.2447944,8.265246,18.819565,9.943674,-5.3510385,-9.649727,-12.695871,-16.964314,-13.590815,5.053991,20.031887,7.7009907,-13.52417,-23.53483,-22.13743,-4.166826,12.663504,-2.0338497,-27.403347,-18.776573,9.650346,14.21729,2.447899,-3.0901904,-8.515418,-8.640192,2.8384256,4.4027605,-8.836846,-8.469942,6.883478,4.1892557,-8.5187435,-3.3185472,1.6394451,-0.32661852,null,-1.4930887,4.3346562,4.6561418,-10.7119255,-26.02489,-6.4420195,6.498963,-14.91337,-16.295856,-1.3930407,1.6524506,5.2630205,-4.6434956,-19.305445,-5.7924595,8.49141,-3.8669767,-17.699903,-10.445164,9.055275,17.559288,2.6880832,-19.352034,-22.00197,-14.44198,-18.459475,-9.882799,22.631643,31.910902,3.8092322,-16.196253,-7.55243,7.7393675,19.818144,31.080141,25.508406,8.139144,9.005661,11.4499655,-8.662977,-17.971006,-5.5354137,-9.044968,-20.539423,-7.072654,9.68275,7.2208047,0.069045305,-7.028392,-4.1063237,14.100398,15.187233,1.9479699,6.6230326,10.064392,-7.8723793,-25.918158,-25.546833,-15.335173,-17.591751,-20.997156,-1.9310689,9.869589,-4.3775387,-3.743744,14.638947,3.668413,-20.005938,-13.141535,-8.195064,-10.552986,21.29874,38.865807,10.146769,-5.8063927,-3.8645325,-2.6969976,1.9042501,1.8557882,13.866129,15.514441,-19.945135,-26.868475,-4.5580454,-3.1825361,5.502919,9.8547125,-14.275578,-23.568727,-14.133732,-6.6456003,0.8316413,3.4074476,-0.43549347,-8.738938,-8.132342,2.8775425,3.470693,3.061874,2.2065053,null,-7.5027623,-3.2587466,-3.1092286,9.200388,22.513763,-0.17722654,-12.785586,6.8943243,12.842836,-2.0627155,-20.757175,-17.59289,1.5884054,-1.5468597,2.3538475,18.806305,7.118784,0.66941404,7.090891,2.8220005,9.814324,13.393328,10.9036875,15.269016,-4.4082947,-15.282143,3.8305626,1.5679274,4.8413095,28.713284,16.349842,-10.510229,-9.62296,-2.360547,-8.000967,-18.634285,-12.825843,4.622095,8.309286,9.405936,17.091707,12.7822075,5.9212394,13.599161,12.394233,-8.341587,-12.850716,4.745245,12.040466,8.052651,3.7282696,5.1356254,20.048536,21.600277,2.796709,4.919073,20.850506,21.171495,19.559124,15.963858,1.9558182,-4.979676,-7.3711796,-20.773434,-33.346966,-29.970161,-16.877914,-11.162022,-11.744837,1.4293342,12.366229,-6.6846166,-20.446068,-2.301345,12.133532,10.292098,5.4964867,-3.261591,-7.047504,-0.6064694,2.828867,-2.7392244,-3.6446037,7.0137014,7.6406717,2.8885677,6.808324,-10.01442,-24.188114,-4.0721903,-3.9801617,-12.484032,7.20142,-1.0768013,-25.113602,-11.669833,6.664707,5.6693735,-4.9272127,-2.2060106,null,13.378357,12.414041,-2.87199,-3.9716883,-2.6566634,0.2551278,-2.4407883,-4.072739,5.757944,-0.32249308,-3.4651148,14.302218,9.793167,1.1436851,14.082983,10.377274,4.571954,21.520908,19.968739,-10.269855,-24.13538,-5.5437574,8.877511,0.76632833,-4.3278546,-5.492894,-10.254378,-1.3160362,2.3986835,-18.041922,-24.3125,-3.8818562,9.855564,8.954962,7.6270723,8.348249,-2.4321504,-25.242853,-27.026443,-8.8180275,-10.041839,-11.228214,5.803117,-4.0462537,-26.532822,-14.3388195,0.18123722,-5.1904387,-5.9656305,-4.2027426,-1.8963614,6.711521,5.850223,-1.7350416,1.3342332,-0.059541464,-13.972989,-16.029232,-10.2533455,-11.102539,-7.6375904,-11.16584,-11.201941,20.447277,32.323387,9.736441,5.0075884,-7.149624,-29.533148,-18.421623,-7.1919413,-9.336868,-3.1854916,2.1200156,8.809229,-2.7322512,-25.522114,-9.981857,7.421307,2.1036844,12.052299,17.169912,8.107636,2.5389547,-6.0049396,-3.7702842,0.7052412,-6.3055367,-7.128435,-12.0877495,-11.946386,6.3948784,11.834808,9.443983,2.1518292,-12.469111,5.6983743,18.948183,-15.754278,-22.753666,null,-15.701842,-8.042548,10.611853,16.288332,12.854874,-2.198514,-16.391562,-0.5303068,10.664258,2.8693619,6.7885494,5.576663,5.0247993,19.311457,2.6294222,-25.890038,-12.759127,4.593292,1.5857993,-2.131359,-11.102322,-10.675448,3.8665032,2.8814392,-3.3442054,-12.803288,-39.264297,-34.06696,2.859789,-3.621787,-31.533737,-12.109861,23.287197,21.77291,2.8703327,0.41569567,7.315324,12.421364,14.036943,1.9611833,-4.8680315,11.069798,10.026115,-15.731205,-21.752432,-12.797936,-19.473492,-30.544865,-25.74718,-17.197977,-21.980125,-29.562649,-28.734098,-17.61362,-0.82689476,0.29473817,-6.213348,-1.5466557,-5.7086334,-11.176586,-1.3953888,2.3237672,6.2283297,12.551126,2.3424394,-5.416649,-1.5623894,5.940713,7.296953,-19.622677,-32.892567,0.84119606,12.66743,-9.592407,-5.4110475,15.668699,17.936087,5.079157,-5.2620463,-7.99454,-15.307915,-20.840029,-9.41032,4.045927,5.274355,-4.261014,-23.210722,-32.176636,-12.462806,8.174944,5.546583,4.2601385,5.465699,-7.5403523,-9.451811,3.2962384,12.767347,22.168701,13.027173,-5.6026144,null,22.265491,-21.40775,-51.3406,-7.84121,17.254255,-6.2752037,-11.85609,4.0098042,4.8672514,-12.615219,-26.808138,-12.581864,22.486698,31.878418,3.3769426,-15.679427,-7.1838694,2.6840668,7.210349,7.468771,6.882239,13.956131,14.128798,0.57564723,-19.064482,-29.563438,-2.7942262,19.423668,-10.960683,-20.79596,15.859843,15.650127,-21.598621,-40.333504,-37.848984,-22.44638,-4.2598286,-0.4261384,-4.8832126,-1.6159372,5.996541,9.228968,12.82663,11.388257,3.7790747,6.736127,5.4538317,-0.87423706,15.249624,14.910701,-14.645781,-8.171588,17.564089,9.774561,-10.361584,-18.383757,-3.2026148,15.554804,-4.4413567,-18.911385,8.510552,10.029413,-21.194153,-26.430054,-11.517989,7.150717,17.166012,-5.497074,-12.665789,27.988495,42.054527,19.701809,24.794554,28.757027,3.0798006,1.3932924,28.0892,35.682373,12.551393,-12.269556,1.6124482,31.462656,25.58208,17.56583,28.513111,11.882583,-11.129488,-4.3201146,2.2471676,5.849549,12.298187,10.143421,14.467184,5.1647897,-22.787415,-11.043792,10.932196,-4.112693,-0.74467325,15.658533,null,-16.393543,-17.47443,17.371437,6.0311556,-8.123032,9.56653,0.061131954,-3.876863,25.051489,19.68544,2.330916,13.237196,3.190939,-13.239413,0.9982035,2.136732,-12.058821,-1.8327761,17.955194,25.39587,19.62157,0.5196037,-12.119293,-1.2099099,17.551094,26.40567,20.404127,4.3534975,-3.556398,-4.6052866,-10.924778,-5.282221,8.913513,8.727638,7.4660935,5.066181,-1.2354336,4.7831964,-7.244278,-30.087317,-14.733374,-2.0295897,-3.7457867,12.684186,-1.2059822,-19.77126,16.86533,30.630215,7.7051325,11.97875,7.740776,-10.624417,-5.2473087,-6.6747994,-18.873978,-19.401089,-24.439575,-27.993206,-21.276314,-23.64312,-18.93718,9.894263,25.273111,18.966354,23.444645,23.828531,5.6650915,-10.440218,-25.594341,-21.798845,8.730083,9.599946,-5.5490503,14.631196,20.19239,-9.088377,-17.140812,-5.798609,-4.87951,-5.489253,9.008967,25.432487,12.606206,-13.5856695,-20.092598,-16.943222,0.73850393,31.35823,21.534618,-18.935791,-20.2985,-0.92718697,-14.80276,-26.92883,-2.8215187,9.886314,-8.878045,-19.146477,-14.637092,-7.4157104,null,-23.69281,16.988934,49.24485,5.3582573,-35.78497,-10.604762,27.95113,19.332401,-17.974287,-22.136604,-4.136464,-23.807991,-43.828636,-9.879934,17.69012,1.2938318,-11.899727,-20.642,-42.411625,-45.446045,-22.012188,-3.1758833,-0.2973299,1.7133512,2.8947468,-20.415554,-45.88825,-27.989956,1.2557049,0.78516483,-2.8866034,7.6256924,13.067082,0.024326563,-17.6987,-12.089863,4.42424,-2.6762466,-12.932639,7.1323576,25.653612,8.617949,-7.4307575,5.5480843,14.4651985,-0.11484015,-15.50914,-7.122897,3.6453404,-21.251581,-31.640852,3.3215303,-4.4808826,-43.69934,-20.176138,19.372112,12.949501,-4.473806,2.5311594,29.899416,29.999346,1.5916157,-1.0194802,-0.5633049,-12.775485,-2.3885698,6.402658,4.7467146,7.131221,-4.9723964,-8.292777,-4.3655844,-29.431105,-31.84757,10.1508465,24.753569,-2.6236513,-26.037605,-19.220873,3.7409248,1.9164219,-20.169607,-19.87557,-9.4708,-14.23782,-3.862646,12.656929,-13.752484,-34.170547,-2.9677637,6.7904477,-18.016932,-13.972464,2.3839185,9.009879,23.165203,21.842587,-0.9003558,-7.8393517,2.3730183,null,19.05692,2.492694,-23.29874,-9.048928,-2.3719149,-4.620964,10.637787,14.847347,14.021899,17.354698,-0.42217064,-17.09109,-8.656766,-2.3235793,0.8103391,16.970509,14.018884,-15.276688,-26.450026,-19.571299,-5.543182,17.73151,11.940169,-14.618908,-24.30975,-25.280859,11.867994,63.592224,41.051296,-3.147853,-6.22399,-9.10973,-10.964918,-10.329693,-4.698807,26.682114,24.547447,-4.029457,15.019622,19.96474,-18.326992,-18.874905,2.7798753,-2.3925762,-5.0893908,9.939518,14.098805,-4.1033893,-16.422249,0.9116707,25.70744,21.164564,-5.0789175,-8.62886,8.557484,8.969208,4.1060195,8.434474,4.8645735,-2.748868,-5.920135,0.82405996,15.54556,5.042201,-21.462177,-17.356138,3.3307972,14.767196,23.30804,21.906815,15.492546,20.531452,17.893284,-3.2288725,-17.35077,-17.236507,-16.589653,-15.109914,-10.877286,-6.3280954,2.5168724,4.7900753,-13.769808,-20.110762,12.862196,29.992268,1.7909245,-5.8847227,20.450748,22.394358,2.423897,-2.0303154,8.686961,9.043634,-8.361309,-13.611547,-15.629206,-31.205942,-4.448699,37.220158,null,26.529215,-10.251667,-7.9814186,19.814035,24.398159,-2.6251545,-11.043953,6.7682276,8.219016,7.6385474,12.729094,11.105433,18.77748,5.0417576,-34.75854,-31.12978,5.6486855,21.53789,20.092846,4.5719895,-16.781734,-17.053846,0.6970465,15.702063,18.205921,17.814045,17.142136,-4.948223,-26.361467,-15.014411,-9.72204,-15.313139,9.084863,33.6991,34.1708,26.41606,1.4406035,-12.41046,1.01652,-12.139753,-34.825336,-23.095379,-13.619782,-15.505184,-8.963475,-3.457006,4.261625,4.1019745,-9.817401,-3.5785165,9.511499,1.5179548,7.766198,21.575068,1.143939,-7.559984,17.990658,10.855337,-21.701187,-32.27779,-36.84794,-30.775784,-16.229233,-14.26086,5.900796,25.864567,16.08295,12.92515,-10.447102,-48.293716,-31.850925,-11.839151,-7.789186,20.213306,7.535325,-33.70741,-24.817165,-4.6650696,1.6770878,8.038097,2.0995302,-4.267336,-14.821762,-26.174229,-6.672591,14.344629,7.43089,0.9094138,1.7057753,-0.6039567,5.7488317,8.609229,-18.376854,-25.600363,18.927692,28.147823,-7.414126,-7.7686462,0.7836447,-7.790105,null,-27.669388,-6.2145057,14.621159,22.378588,13.843517,-2.6854603,-3.835,9.398619,7.024743,-15.45382,-18.7171,-5.694983,5.2754493,23.52621,12.751339,-13.448134,2.7480087,8.885994,-12.20232,-14.43521,-22.94035,-21.789219,8.341237,15.670599,3.5610495,-14.066698,-27.4434,-0.56676483,30.566895,41.473316,40.502,-3.9342356,-34.13977,-7.815815,-16.40288,-37.48223,10.519718,49.32712,21.076408,-8.859903,-1.1563911,18.486435,12.121157,-18.379417,-31.632381,-21.644367,-14.865906,-13.776873,-16.405579,-21.508926,-18.67044,-19.688644,-21.25217,2.8515377,24.528086,22.012386,25.60492,27.417774,19.720575,25.3658,25.514359,10.633041,-2.9599257,-18.706692,-21.281605,-14.073191,-21.985668,-15.123342,8.370922,10.110382,10.383202,9.6616125,-24.309738,-51.69539,-28.94159,20.726831,48.245636,24.622763,-10.170071,-19.9763,-29.783901,-17.260626,28.150654,34.87335,12.82983,10.123995,0.011816025,-8.854265,-4.545071,-6.8434505,8.828501,21.975822,-0.3251772,-9.598073,-1.0843544,-0.3987713,10.794954,24.168037,15.461428,-14.362322,null,-9.679505,1.597194,-1.7926035,-17.640202,-0.6937442,17.13905,5.940118,-7.552552,-8.398483,11.680433,25.82365,9.651817,3.968124,8.97297,-3.1223497,-10.072018,-14.507605,-14.485039,19.121206,40.613377,13.297054,-13.377788,-21.871487,-23.066221,-4.783173,16.126781,21.684618,13.242756,-14.831326,-27.775023,-4.185711,8.14061,7.960147,17.94217,8.591156,-1.1178703,18.225803,13.7782755,-25.6401,-38.595505,-19.56376,-14.881346,-25.460205,-14.437128,4.8583717,-5.347377,-14.935912,12.674585,36.549103,19.911888,4.1781216,22.56963,29.512976,3.6979618,-4.1756945,6.8097954,-4.0451355,-17.316904,-18.918734,-31.886591,-30.561062,0.6025133,10.391257,6.0133476,30.004292,32.59728,-9.701378,-33.91929,-33.04669,-28.754553,-2.1610456,36.344326,35.804756,-13.397145,-29.686197,11.014168,4.596567,-25.500843,6.416154,11.963994,-20.567469,-4.0629816,9.380878,3.86054,11.220329,-14.796132,-34.668987,0.6899425,27.926624,20.36668,-3.0847845,-15.395395,3.6497154,9.01039,-14.403623,-18.286028,1.4837742,11.425533,2.3164444,-4.873823,null,17.0158,5.527929,7.5423827,20.371235,1.3557711,-8.2402,-2.61023,-17.683804,-30.873772,-23.135738,-7.79595,-2.4045086,-4.675193,1.6751857,-4.9161234,-18.911186,-10.537708,-12.294329,-6.0595884,35.013634,22.797752,-30.015518,-18.63591,8.244749,-3.392127,-0.87871456,2.2646446,-30.242054,-45.167263,-13.606385,21.098164,38.560055,35.24466,-1.2193289,-34.822067,-27.693933,-13.432617,-17.407553,-9.221869,18.954243,26.391064,9.6903105,14.789249,23.225735,-2.7057877,-9.908244,15.746564,12.9879,-5.867337,-8.264729,-12.737997,-13.322065,-0.82384014,4.054327,-4.062733,-16.175707,-16.928747,1.1073154,5.9869056,-11.605984,-8.608692,3.7937822,-12.773487,-17.281654,4.0193834,3.664277,-2.3003097,1.8771937,-2.0574365,6.660203,3.2376842,-36.42516,-33.93946,13.853401,21.282795,-1.6783028,-11.290741,-13.612471,-10.186852,1.4867191,10.5870905,3.0409155,-18.027475,-22.238857,-4.618165,1.2022777,-7.355605,-4.150586,2.2026596,-7.6705675,-16.639809,-8.681623,2.9574246,6.999873,14.708199,32.786133,29.54982,-1.3052807,-7.3825803,3.955515,null,0.17201471,-15.242819,-3.679386,9.293773,-16.046167,-32.818047,-12.392084,11.648796,23.316467,16.810001,2.632993,-2.1841831,-12.349331,-7.737061,20.797703,20.104391,8.339298,12.647606,-15.264658,-45.514885,-18.391521,24.034513,28.641981,3.882267,-5.517929,0.45293427,-7.0453463,14.930994,50.9803,18.771376,-16.638483,-0.531837,-10.243025,-26.778608,-2.3161817,2.0494423,-18.736576,-14.856173,0.24065495,8.32832,10.207777,2.835033,3.1495774,12.748737,12.898949,13.2644005,6.8396444,-19.845852,-24.423222,-3.7873573,-1.0894918,-5.2872977,-17.87384,-43.888496,-35.166767,-7.6416073,-7.240367,-10.180538,-4.4178886,6.3872185,28.72998,47.80304,53.102486,32.84614,-0.43554735,-3.9421988,0.6337528,-3.6932373,26.123404,61.101852,43.22802,-0.47767973,-19.979504,-3.9342117,19.310757,22.666927,16.851538,11.303337,-0.79867935,-18.340988,-21.90005,7.281904,32.486183,10.722796,-15.095789,-4.137219,2.9678473,-13.498646,-16.7892,-5.7044115,0.5599731,13.4138155,14.539878,-7.709631,-0.60769176,21.036432,1.7925038,-9.460442,7.3859415,1.5347576,null,15.194399,16.752262,15.745684,0.5403509,-13.561874,-5.593957,-1.1728356,-10.948617,-2.0487206,17.261257,4.9655137,-17.718304,-14.495857,-12.86007,-17.857836,-8.510882,-9.062667,-8.867292,10.661932,6.556836,-5.292782,5.257204,-4.9682426,-21.387733,-6.4548435,9.45662,11.524802,3.8445559,-11.296431,-29.106777,-45.499855,-19.485792,34.7621,38.112602,10.727116,-2.7366953,-17.69019,-25.816446,-27.936993,-27.798326,-9.622797,7.1321383,22.92345,42.20726,35.94048,25.211702,26.777948,24.047815,30.172092,28.930492,13.778813,22.404455,27.268967,6.8373528,4.944316,11.313392,-3.9827204,-13.41627,-1.7912045,9.561631,5.579137,-9.0987,-12.183668,-0.19410133,-2.6862574,-5.998396,21.889454,29.429108,-11.748754,-40.256847,-39.270084,-20.776127,15.038233,26.00459,0.21634674,-29.003231,-38.513084,-11.784027,17.58495,22.864555,19.183834,-15.865557,-43.84949,-15.476507,-8.471607,-15.065891,21.855833,17.903898,-21.237381,-9.523892,4.6585546,-5.692876,-1.6959314,6.3576183,1.6320019,-18.433891,-22.840153,9.609116,13.259836,-18.684032,null,-4.218313,13.653534,-8.589575,-2.0289035,18.008888,9.589302,-12.3640995,-13.040074,9.75291,-0.23880291,-22.934536,0.042219162,-1.7369823,-27.565042,8.907484,33.061134,0.48161554,-9.915168,-6.5438995,-6.985562,0.013681412,-14.752768,-17.791008,16.120586,20.402342,-11.792675,-28.856438,-27.811716,-18.676113,-2.1228733,-1.4599609,-19.939442,-15.117075,5.3120213,-4.4757137,-11.464571,14.903936,31.421137,25.975945,19.261063,15.370165,20.52797,27.308239,10.55221,-24.172644,-29.184177,-6.9537964,-19.003712,-39.06073,-20.047668,-15.172197,-28.587877,-19.786158,-17.13673,-21.531534,-10.5897455,1.2661266,10.078577,13.428757,14.715607,18.968906,18.168507,19.691048,-1.6187971,-44.442917,-32.112995,10.630082,23.281658,41.60192,39.763298,-10.6682,-29.096315,-5.5439844,-3.3134346,-14.576632,-2.346365,13.328167,-6.253061,-24.89928,-5.4219527,2.2395816,-14.730297,-14.598408,0.75605536,13.269507,7.2825785,-9.236029,-8.645842,-16.704586,-34.79357,-13.815077,15.64484,8.905529,-3.4409647,-2.3226788,-1.4465847,-6.9391084,-7.5105324,4.286154,1.1691798,null,21.799805,-9.212727,-13.049882,11.471685,15.732683,-4.1371374,-1.8677175,17.159037,-2.767394,-18.974628,10.847087,5.929551,-30.825062,-22.865282,-0.4718604,14.384451,28.977,7.7931223,-17.608309,-2.725789,10.136505,9.326185,19.41647,19.076603,9.226257,18.974867,15.601338,-10.813907,7.00741,36.735188,2.00762,-25.184177,-5.856185,-4.951688,0.48556042,27.58175,24.121696,7.5132957,3.580924,-6.8884363,-9.940701,12.691828,26.625498,-0.59838486,-17.339548,13.454649,23.51903,8.906975,27.524006,37.383373,16.382195,15.462689,30.110897,28.75423,14.384455,12.428902,21.625578,10.520481,-0.2032566,4.6067195,-5.6206493,-8.705959,1.8104949,-0.86370516,11.098534,21.021032,-4.1718836,-15.207275,-5.28159,1.7712038,26.970284,39.654507,8.056397,-14.775583,-11.125851,-16.325283,-10.249009,18.377386,14.598634,-9.59998,3.068812,16.776348,6.9287333,12.063741,14.6580105,-4.276883,-14.832801,-10.760414,2.1832554,14.773828,15.657143,12.767823,1.3564773,-5.6541686,15.3363,23.294632,1.6143045,-7.774668,-11.337919,-17.68158,null,8.895889,-1.6725874,-4.6264334,1.9378586,0.82323074,8.578278,32.898224,25.16378,-11.913371,-15.412912,-0.8943167,-3.8412685,10.191998,28.513203,-0.7218561,-37.213287,-27.074665,-2.1863384,4.8077507,13.177437,32.993034,31.421772,-5.0874834,-20.665348,6.465933,15.023874,1.2141395,1.6266563,-8.780043,-15.298701,15.504844,27.10265,-3.4948359,-25.215115,-14.584227,10.589447,7.656086,-6.33089,18.035048,23.438118,-10.929028,-17.23735,-22.107624,-39.68392,-21.43125,-8.423538,-20.055517,-6.067152,17.495739,14.730128,-1.6738048,0.4775101,19.468294,14.6832,7.975625,34.394028,36.516083,-1.1836991,-13.593452,2.035859,3.382728,-10.740562,-19.151901,-17.207571,-6.8277187,10.704945,12.893591,-6.7386045,-16.150589,-12.08412,-11.676037,-7.3960953,-2.7591872,-6.613064,-5.189358,-3.807592,-16.6753,-9.001221,29.596283,33.425926,4.194168,3.679678,0.50013614,-23.898027,-14.687067,7.2820334,3.774984,2.7614584,10.441525,8.190596,-10.910321,-24.682295,-3.516367,9.693862,-12.065987,-9.81851,20.30354,29.791754,13.765189,-8.4389105,null,0.19838524,7.327786,-8.214227,-44.111538,-25.704514,34.882442,21.597702,-23.622421,0.67655766,19.397482,-17.095142,-23.031847,6.462102,0.8429649,-14.394628,9.44411,23.970795,1.7524343,-9.394478,-9.8677435,-13.2607765,4.5476007,18.19721,3.8549843,-10.446566,-18.501385,-15.882409,-3.6511407,-9.771181,-10.655089,10.596685,3.7534366,-22.094145,-19.335775,-5.5907803,5.029992,13.019659,1.8291149,-3.85388,4.530589,-13.819851,-30.038506,-7.1327667,1.1821814,-22.545233,-31.932858,-19.82754,-12.716898,-22.04678,-17.497755,9.465763,5.124607,-13.77839,2.9917593,8.760658,-3.0457916,8.660511,5.9150286,-13.154922,-12.258703,-18.876667,-25.81724,-4.9100146,8.994076,0.883996,-8.23217,-10.987667,-8.066453,-2.8555293,12.653526,25.142612,4.57435,-6.60999,23.277021,34.350735,16.902058,9.547868,1.180275,-1.4023793,7.3291388,-1.2451458,0.359406,22.384274,15.598253,-0.32160854,0.37544632,-11.854935,-18.952217,-1.7106833,13.277451,15.251755,-1.1365509,-14.342357,4.716648,13.860268,-2.3776302,0.2170043,6.1424265,-6.05817,-7.162364,null,-4.5196342,19.322952,4.7292404,-6.4667983,21.060165,15.497995,-15.0217,-0.848505,23.539923,13.985843,-6.3966174,-6.0495424,16.33901,20.199583,3.233241,0.5562566,-3.8483505,-2.5259635,21.756792,16.967064,-6.3067865,2.0913117,3.1056483,-14.30973,-11.299008,-3.6424656,-6.6571455,-4.295313,6.7977095,15.782192,4.705247,-16.406267,-14.2704115,-0.24501133,-3.6804852,-12.002128,-8.226444,1.4111485,13.67671,25.563412,26.851015,15.706812,5.0206013,14.830202,33.839478,25.258108,7.7052546,12.189312,7.8220406,-3.228921,12.080063,24.173334,15.172827,7.9267244,10.739007,27.579365,31.44091,8.413528,8.13742,18.744957,2.8163147,6.3197455,22.710052,2.9928463,-19.568815,-26.666204,-26.82358,-7.9610586,-5.8335094,-26.260666,-17.669449,5.4637976,22.164165,30.122381,-0.50265646,-16.742664,23.418072,29.116028,0.46522593,13.40734,18.871954,1.1473656,14.806274,16.440798,-11.384548,-4.2967734,13.2700405,-3.4021006,-4.0467434,20.752905,10.096981,-18.798117,-10.935444,11.5481825,17.714632,8.546117,-12.063031,-9.044147,22.39885,25.094484,null,7.072874,4.5518904,3.4019809,6.0001545,-2.4191256,-12.9147215,-0.76312304,15.354585,0.90471506,-12.876601,1.682107,14.811937,13.328267,6.2470417,0.2652645,-3.370375,-10.416034,2.0867605,27.53376,8.675342,-17.987041,5.6681876,15.743747,-7.960328,-3.8023186,9.128031,1.7130604,1.8606176,10.362816,17.233536,18.52602,8.622241,4.5800815,-1.3994722,-12.846081,4.5120163,13.158014,-18.110046,-25.674282,-19.617233,-37.50324,-24.299503,12.785624,15.247177,-0.43972015,-7.904192,-1.5034599,7.7842855,1.2788413,2.5556011,12.375223,-2.8784523,-23.440279,-26.756771,-27.239532,-26.736053,-22.077251,-22.802021,-33.047737,-32.423862,-11.969805,-1.7897501,-3.652701,3.9475164,6.947417,-4.025225,-11.508221,2.5465946,15.346261,-19.833656,-55.96629,-27.512003,12.8509865,17.035706,-0.9531555,-12.996292,14.197456,31.241936,-4.7636414,-15.303526,10.805032,6.440958,-13.591259,-13.2640705,8.347854,19.073517,-6.986534,-13.919659,10.631978,-0.034627914,-17.04492,5.541545,18.081923,0.8527098,-15.113115,-16.059032,0.9057884,16.398613,6.5669727,-11.858256,null,5.2240973,-12.401762,3.3599243,26.47238,-4.0982533,-26.541365,-1.2315826,-10.882534,-30.231743,15.688337,22.40823,-45.060352,-46.91822,3.7619972,4.7924137,-8.5008135,1.8591576,10.68313,4.0758505,-4.6757855,3.1324773,-6.921715,-33.366177,-12.3266945,13.38445,2.4915657,7.401721,8.027766,-7.755539,3.2732239,11.937581,4.7525406,1.9199755,-2.5019188,6.5258846,10.895256,-7.985074,-12.927109,-18.836437,-32.25036,-2.7110748,37.4738,25.247444,-6.76182,-4.6018085,3.0382855,-20.959888,-26.47347,-5.882991,-19.237371,-33.015472,-17.33302,-18.125666,-18.616161,0.5157819,3.2046275,-4.8659916,5.4505615,27.56886,22.154598,-11.830427,-13.239861,4.965148,-10.245754,-14.424333,4.9788656,-8.209821,-27.152569,-13.605862,-5.8818693,-15.075331,-13.431509,-8.364262,-13.756486,-13.828739,-1.5781574,3.3287475,-10.309474,-24.529226,-23.284958,-21.029413,-25.383263,-12.118182,18.55865,17.138056,-28.454475,-43.07566,1.331233,22.872253,6.4171066,7.0929604,8.063583,8.992708,25.14088,3.8045344,-26.288727,-1.9734545,16.281914,1.6750908,-3.0217714,null,-0.3611822,3.436329,-4.5945997,-7.3366647,29.881088,22.06705,-30.331455,-14.826899,27.186306,19.111618,7.826256,7.4010134,-1.9208822,8.653091,21.489689,-4.821225,-23.051538,-0.43961573,12.338417,5.529552,3.8091197,0.35984468,1.0622959,-0.027957916,-15.0517,-10.392794,4.8346987,-12.900969,-27.423914,-4.941232,9.185204,-1.7436017,-4.2742352,-11.499109,-33.396324,-13.502966,30.957672,14.341124,-24.943504,-8.031114,20.123972,3.282735,-17.569666,-0.79023385,17.325047,15.554105,21.327408,22.47982,19.561451,33.69518,18.73703,-14.868628,5.8949356,36.882812,12.486401,-22.80297,-15.768724,4.0956864,-7.7576094,-14.448349,1.8532076,-2.1573114,1.0647674,17.887424,-2.1305156,-20.446861,-15.439417,-17.81299,-10.764259,0.12498522,9.0554695,9.751786,-31.316126,-38.439888,24.459045,29.80951,-20.50422,-14.776821,18.018303,10.336854,-9.854769,3.899887,13.831511,-19.391886,-22.042065,15.40167,-0.50570726,-27.285025,-0.6470089,5.8541965,-12.247496,1.2643564,3.389289,-12.2863655,4.8166394,12.54701,-14.962872,-14.859345,13.77207,21.822588,null,9.678111,21.871826,2.5912647,-6.722337,0.3519249,5.215883,-1.323556,-14.946494,-12.370634,0.8330927,-5.1359744,-8.209911,12.948147,7.404476,-21.944584,-3.6984272,21.781273,-11.789885,-37.341232,-7.6252465,11.7262125,-15.716821,-27.2703,7.269353,8.21897,-22.923923,-0.1031909,19.737202,-16.15605,-28.98749,-11.740525,-7.5146413,-11.598254,-12.158468,3.6152909,1.3121471,-29.547035,-24.18572,-10.685581,-33.13518,-31.22398,-1.9859042,6.8646383,-1.8019295,-9.482437,-2.8253214,-1.3160326,-12.261105,-0.61972237,8.429745,-12.471055,-16.851917,-5.472063,-14.852774,-18.27288,0.9003649,2.9940863,-16.220545,-23.982496,-29.913704,-37.950035,-19.768345,5.50895,11.298974,11.978119,9.017897,2.9133115,4.743997,4.7256145,-7.465007,-13.952192,6.3616924,21.5663,3.816691,-1.2118654,14.179874,15.658035,15.493076,0.9173088,-24.803656,-2.4728775,30.45086,10.541681,-15.362371,-9.995858,5.554626,13.053924,1.7759221,-13.717571,-9.900415,1.3660927,2.808502,-0.89206886,-9.737688,-18.787378,-10.058842,-1.1598845,-13.910561,-26.705284,-29.396076,null,4.299364,-0.48604035,-5.5509825,-12.854799,-23.084246,0.699697,17.293259,-19.423443,-27.063595,19.183489,24.047396,-13.486631,-25.651445,-11.329264,4.52898,11.379078,6.9385867,-15.4647665,-36.069565,-7.6359634,23.946339,-2.6826258,-22.363,-9.3920765,-10.43922,-6.7760773,3.7502651,-6.206425,-14.961043,-10.926012,-6.6307154,-11.225812,-20.325863,-8.679016,10.6232395,4.270121,-6.1804667,12.991127,47.238724,45.490803,3.2710342,-8.083589,17.06532,3.3667307,-29.135534,-12.262557,8.29991,-14.203641,-24.276707,-8.398027,-7.811686,-10.32396,-6.2924633,-4.6641226,2.7418237,5.4021873,10.6868,23.86438,16.565712,14.888891,25.358646,3.834713,-11.939852,0.16194391,-3.7440462,-12.472627,-8.325594,3.9226446,13.917721,-2.4444427,-11.100296,6.2856784,1.6237688,-5.473878,8.141956,-1.3743465,-22.861048,-11.544467,18.26177,22.29131,-1.3253264,-12.391138,-9.916854,-9.841473,1.8298597,6.179576,-16.089668,-26.271461,-3.6046033,13.184148,-7.1389484,-28.911896,-13.35902,11.487013,16.1623,2.413211,-11.748309,2.4871712,20.96122,8.190382,null,19.069439,-16.92836,-14.290454,13.28742,7.2239504,-4.494973,0.24737024,3.626617,2.879366,1.0611115,-2.6651506,-9.994345,-6.430086,9.230644,3.8869448,-7.6708164,3.546351,9.731527,7.384748,9.36923,3.494335,3.8346348,15.380884,12.958619,-3.4627743,-14.833066,-16.700773,-19.011265,-11.1664505,7.757165,1.0699184,-8.72799,7.9620333,3.4504995,-8.953424,5.83222,1.780992,-18.241684,-20.240885,-16.029926,-11.343561,-26.705687,-50.69809,-25.78845,15.750341,17.112787,6.2968554,11.274267,22.225025,22.941982,16.540668,23.359175,27.465422,9.8909445,-2.842133,-2.189845,-6.639494,-14.701921,-23.725925,-32.48553,-25.214931,-8.949369,-6.300479,-9.003575,-11.723002,-18.376827,-7.150696,15.864153,17.482588,2.92021,-8.841417,-8.030886,-3.4177303,-9.709337,0.48187256,19.583424,0.5787506,-18.002045,-1.6420889,8.510363,3.5479088,-8.1075735,-22.473873,-14.468311,10.355441,25.46392,18.47157,3.2975113,15.242929,31.364075,13.194139,-6.234358,-5.5344844,9.630536,29.191227,8.473948,-27.81324,-5.5030746,30.395412,15.811669,null,-26.599674,-32.943665,-17.63153,10.473241,3.8560176,-17.011831,-2.7289538,17.34018,14.376137,0.8598671,-4.8086505,8.661365,18.345606,9.244874,-1.6807976,-4.689171,9.21706,20.555319,-0.3806386,-15.544226,4.658682,21.815,11.488632,-6.6231627,-3.0149822,16.820099,19.680862,6.9994907,-2.75335,-4.2334023,5.468629,9.020897,-0.95561934,-0.26306915,10.190432,12.424313,6.013154,-15.288035,-40.627487,-26.836578,10.682262,6.7572217,-13.681191,3.5797253,10.907917,-18.540289,-29.272243,-15.6017475,-16.47985,-33.67898,-40.471695,-26.12395,-16.29398,-22.597422,-30.021278,-33.565933,-19.22284,8.1856985,14.798067,3.5777836,-6.750025,-6.1526504,0.7188308,-15.787445,-27.134605,0.088861465,6.0473423,-12.655785,1.4034576,13.993891,-3.1447287,-9.262942,-4.5584164,-12.900241,-16.721508,-5.528075,-6.1322885,-14.074066,-4.134763,-8.7631,-33.34268,-22.923763,4.3367414,3.5997014,-6.3200603,-11.038948,-3.5386276,16.259493,14.609152,-1.7929177,3.0286562,15.026451,9.439583,-5.519216,-7.8086944,5.7625895,14.9324045,13.606051,0.8223281,-20.724424,null,19.162642,24.480755,1.3908048,-9.66939,21.05407,30.019543,-3.746056,-12.856785,6.405059,13.418804,10.052587,-2.15838,-18.298872,-11.451851,12.446083,18.245365,-2.1246724,-18.328335,-2.7990294,18.358921,5.7670927,-14.43413,-1.5024567,21.794338,18.03894,-0.48391962,-4.67896,-1.755702,-4.9686966,-1.1732101,3.4307408,-4.583294,-1.4402847,14.188954,9.721993,-6.369564,-3.8646069,8.686611,10.316786,11.843326,21.572046,21.133984,15.604268,17.345566,15.780436,23.774818,40.684826,33.287556,17.608732,21.427925,28.777359,23.714546,8.475072,5.1153502,12.471556,-3.7261972,-15.826604,14.755019,41.72084,30.666634,11.076563,7.5032177,12.142541,8.287185,-1.2352686,-8.473118,-11.10461,-6.521099,-7.0393887,-10.491566,-5.491803,-8.5660305,-10.265558,1.5775881,-10.978924,-39.565773,-27.061909,14.33268,20.06961,-15.29625,-25.777317,2.9116783,10.356811,-5.617914,0.41387153,11.600866,-5.745462,-14.094831,18.180475,23.626808,-15.689795,-4.122262,34.545284,3.0484908,-32.36271,0.83695054,28.08368,0.0868392,-21.814209,3.2430809,null,31.093494,7.0754623,-3.4811046,3.6623077,13.762068,29.227373,14.171949,-25.24489,-6.3223066,30.284586,1.3981762,-15.1738615,30.070318,38.837868,-13.006931,-26.139608,9.334001,12.773537,-5.2006893,-2.6089077,-2.9795518,-3.4807043,11.782952,18.874666,9.579493,1.5167398,10.63268,14.502687,-12.850645,-24.220835,-0.42539644,8.888311,0.47158813,-11.005241,-20.710825,-10.290524,-1.5386119,-14.18759,-23.267412,-18.459032,-9.631089,-17.024578,-44.834267,-57.293823,-36.957336,-0.7771518,19.851727,1.7855453,-21.289944,-13.00921,8.030856,11.500651,-16.700504,-36.008034,-0.947196,22.568935,-15.380318,-41.617996,-28.134634,-14.744605,-0.13796282,5.047337,-9.240704,-3.4160948,5.3306074,-19.469517,-20.904127,14.253834,15.268076,-5.5379496,3.209209,17.898651,15.786585,11.594635,5.8316526,3.0710697,18.989895,26.277231,0.36415792,-9.211223,14.265896,13.22838,-3.1138783,10.7865925,25.820768,17.052734,7.4928,5.993434,11.091573,21.85617,13.711162,-17.28246,-20.100426,4.363185,-4.3680706,-22.019272,-8.221706,1.9496684,4.055832,2.144444,null,-11.273424,-14.519476,3.9910202,-11.810111,-24.212948,-2.8388343,5.8476644,-11.189052,-13.624825,9.874073,19.686188,3.6244187,-5.222451,1.3750587,-2.4928808,-20.443563,-13.577495,7.8257813,-17.100534,-41.949127,-1.9143546,27.389587,0.9935925,-17.822754,-8.440707,-2.9854994,-9.955613,-9.506106,-4.98875,-15.759267,-18.532253,-13.933966,-29.792158,-24.20971,10.806433,12.400928,-8.120943,-6.601797,14.460604,32.639343,12.88564,-13.861115,17.74065,39.90414,-13.26819,-45.57008,-10.17555,12.578056,-0.95419693,-15.220198,-15.358301,0.7263355,15.292992,10.192223,-4.297222,-3.0170903,21.836514,31.443693,10.746405,2.2392426,4.1295767,-3.5005426,1.4268265,15.0995035,16.739063,3.021635,-10.061736,9.8450985,28.82175,2.4016638,-13.3329315,9.417346,19.769062,6.7545013,-0.3750763,5.65162,-0.9324808,-13.875406,6.456298,26.179161,10.483883,5.2109737,14.810635,5.99908,-8.853466,-10.618118,-2.604712,-4.3916545,-15.796293,-5.916648,15.1836405,-1.5775452,-42.707127,-23.43513,40.13637,18.657505,-52.353745,-36.801376,11.037349,2.5540931,null,-6.997005,0.6789732,-2.9093304,20.354261,6.778573,-29.437952,-0.65127134,27.106865,-10.451427,-27.670544,11.250919,19.884628,-12.929754,-11.474237,7.1031218,-3.217992,-13.946153,-16.399557,-16.26987,-5.5998745,-8.401503,-24.352646,-24.471195,-13.968674,-7.9454308,-7.588166,-5.280054,-2.5311923,-6.1504693,1.3063593,17.558575,15.48259,4.867547,5.0649033,8.090822,-4.818385,-21.235336,3.6369963,40.95334,26.439804,0.1985631,-0.82566667,-13.230705,-20.965496,4.3162975,19.977001,2.7237282,-7.1054792,14.585254,27.146538,8.553125,11.466713,37.31686,28.57254,14.39299,17.233145,-17.358921,-44.50833,0.23215389,31.755116,1.1813946,-20.34761,-4.112861,18.168987,22.797215,19.714155,17.380262,-10.2380085,-38.09142,-20.233498,5.0090723,5.6033177,-5.676964,-11.587838,7.308956,5.1741934,-35.1226,-29.287365,0.49187946,-22.104403,-38.709984,-14.060836,-2.0891314,-6.427704,-1.5711536,-1.1016555,-13.904827,-7.685323,18.2529,10.936722,-19.828676,-17.76774,-0.19150305,-7.668502,-12.549555,14.518199,25.504187,0.13535404,0.7077403,20.986752,null,-9.9316025,0.94017744,7.320862,-7.9861946,-15.718257,-3.5917172,8.767455,11.225013,1.7066296,-5.9071884,2.297101,10.884649,-0.6990733,-12.633617,6.1875286,25.372374,7.318102,-15.177244,-3.1007705,22.12482,8.56674,-24.57539,-4.3500414,27.893707,6.62572,-2.2874784,24.299736,28.394115,18.565063,16.518803,19.855112,23.670774,3.317653,-24.674488,-17.875162,9.777106,13.942678,-15.373234,-25.756565,-0.6208867,-6.9827104,-31.439512,-12.047748,9.813957,8.269541,5.6882334,-19.342882,-39.16899,-6.490857,17.995487,-11.303284,-35.936325,-11.212832,31.563856,36.20854,3.1752357,-15.783117,-14.628006,-14.626919,-10.318424,-15.511042,-29.5833,-15.564562,3.0934525,-7.556716,-3.024807,33.118923,43.401566,10.143561,-13.5991955,0.037335873,12.636706,2.1953259,-4.9910336,-3.0697918,-9.65164,-15.686702,-1.461299,13.460637,2.6758206,-1.8093,20.017601,24.199474,6.023265,3.5940504,11.040632,7.9985876,7.466978,19.801294,11.049614,-22.22932,-10.330214,35.187973,28.355417,-10.06035,-13.476726,14.116226,20.43988,-17.663738,-24.648937,null,-12.445616,-3.3975182,-8.908028,-25.813623,-8.247011,16.527624,-20.712612,-43.31389,17.299955,42.18481,-4.5154147,-14.835676,0.20307255,-6.4315853,6.7763233,24.275452,3.9628072,-10.809269,7.736187,23.048117,14.2229,-7.9749556,-17.388779,5.8417444,30.752975,19.031761,-0.42401314,5.774151,6.777678,-17.968313,-28.568775,-6.7792053,4.389551,-5.7369375,9.939218,43.13874,38.540462,16.46234,27.329912,53.497345,58.05909,34.99532,6.5916615,2.4713979,2.6605797,-24.66706,-48.2862,-40.547474,-17.794842,1.8135777,-0.78557324,-15.155068,-15.508711,-20.228922,-23.236465,-1.6986313,8.776335,12.951376,44.530903,59.470848,38.50395,20.92641,15.340666,16.236809,11.322908,-5.8512306,-12.4225445,-9.253014,-4.995758,5.1920195,2.9184256,-5.9912844,0.55635834,-3.4668431,-22.232407,-10.412104,19.106943,2.9870286,-29.148323,-2.2568903,24.183168,-9.8763485,-10.380524,36.33583,21.384779,-23.083727,-2.0915732,32.663406,10.299142,-18.649237,-7.640906,4.561305,11.396415,28.703716,12.472287,-23.307133,-13.258074,11.238104,7.211519,-5.6151657,null,12.790331,28.60199,-4.8159943,-11.28315,13.457712,-12.373034,-29.645477,8.486494,22.577673,7.817827,8.931788,11.50798,3.6138802,0.73066354,16.844887,24.821468,3.912684,1.0424354,5.9494157,-21.406332,-13.544104,24.951904,-1.022974,-30.957449,12.778505,41.670662,8.949995,-5.882372,19.195553,22.318804,-2.2017598,-5.774324,13.550677,25.840487,14.704888,-9.506367,-6.684805,20.657913,23.153675,-6.5780935,-37.8081,-29.653206,20.361115,43.836952,33.280243,43.402023,46.381424,19.725174,15.841632,35.97008,35.099304,19.017967,27.29324,48.6781,28.050297,-17.157068,-31.418583,-37.01208,-46.228752,-22.777304,11.319896,21.264067,18.46603,0.7254844,-21.53494,-8.240885,17.749416,2.9065106,-20.123707,1.1517048,25.621645,6.216786,-10.419115,11.310089,19.597328,1.5596318,10.7416,21.521088,-10.746242,-18.412945,17.23459,9.718283,-18.817848,3.0864258,20.2998,0.83086777,-0.29756117,-0.34403706,-21.793823,-7.868744,22.029985,3.1823454,-20.765099,-13.116046,-5.283646,6.6739163,17.455002,11.726132,19.234018,23.775875,null,-11.713404,-23.896494,-4.570239,4.6436768,-8.742325,-14.604849,12.031523,29.493351,-7.9390097,-21.759094,18.016762,15.617847,-15.68594,-10.037506,-9.008934,-15.419681,16.665966,34.359924,-2.3089504,-17.71181,13.221289,15.132823,-19.922785,-24.082472,4.3585143,6.184055,-20.763002,-19.72605,10.942791,17.383703,0.13419485,-4.447122,-0.14502382,3.3708668,5.868234,-17.902706,-58.21345,-44.287647,10.625971,15.35697,2.1671638,36.467304,46.83053,9.641409,1.7325058,0.9167118,-38.855545,-48.20596,7.017213,28.722559,-26.792822,-61.88678,-46.211113,-42.712135,-26.356422,26.600021,58.17787,58.242004,44.023193,22.006943,17.351393,15.693221,-4.950222,-18.937662,-9.073292,7.6486034,1.9366138,-8.562084,13.682326,24.976181,-2.3512735,-19.064034,-14.592429,0.74847317,17.798744,7.5080805,-5.662236,13.286224,35.045395,20.741592,-17.35966,-8.474413,36.788044,13.920433,-30.298443,-4.8815413,15.040581,-0.3609426,-5.509198,-8.636426,17.487213,46.654236,8.269733,-11.171593,18.460001,0.04267168,-17.789356,8.006573,5.008029,-8.402269,null,7.491396,8.533667,10.511404,20.30288,8.426035,-4.5408,25.360363,15.507245,-26.372925,-0.43760586,20.780617,-4.71561,-1.5586767,0.7077584,-2.1192403,28.967905,15.78973,-28.687153,-1.9184284,29.612007,-6.1968274,-25.220274,15.568034,27.108921,-28.047794,-38.8001,16.406366,15.0356045,-18.949436,-8.087629,-5.6728473,-6.3932514,9.1526,-14.177257,-31.31659,9.615396,47.99533,40.47921,1.1624408,-21.19233,-16.392857,-30.961521,-41.814167,-22.633455,-3.230134,28.102884,48.197987,20.46161,11.318008,37.32378,33.567802,15.669065,21.999004,20.15813,-4.0644784,-12.692471,-18.94322,-50.332226,-37.069866,37.51624,59.538837,12.553455,-7.1227713,14.110203,24.04935,14.864424,6.406048,-4.955331,-12.40448,2.6485577,12.684038,7.9079432,14.5118475,12.694061,6.122925,14.145147,-11.195055,-35.695312,15.645562,36.760635,-37.373943,-58.468964,5.807307,25.527828,0.6569004,-7.7542925,-6.4512706,15.694765,31.585375,-1.7285662,-17.001694,6.317559,-2.3848896,-23.496227,-12.707198,-2.611568,-17.566887,-22.403364,4.154646,0.5450058,null,20.075098,18.115276,16.710459,13.95812,7.650276,1.9439692,3.782004,10.819494,13.005915,5.4679556,-0.90609074,4.6424494,-3.5360003,-15.411951,23.51838,50.716827,-9.101442,-40.614517,20.54763,28.771126,-31.162981,-4.127084,52.144413,3.1570883,-34.07527,9.87623,19.824333,5.615178,13.471941,5.733593,15.616108,41.188675,13.410142,-27.853535,-19.645836,12.783512,15.321048,-23.425922,-53.809673,-53.235744,-32.987026,19.77807,71.51771,70.908745,51.079437,51.852165,46.078114,11.399908,-27.14248,-51.888763,-49.805897,-1.663579,41.493683,41.942,56.34731,83.88815,84.62597,65.05129,8.679803,-55.72454,-64.8362,-31.396185,18.842854,35.784126,-1.9014988,-2.3145962,31.915731,33.8245,43.044918,45.450512,15.488015,20.40539,39.246872,20.426273,3.4045515,10.368831,25.507885,19.064686,-5.796202,12.006182,45.398373,23.630089,-6.401259,1.7754745,22.088253,23.741262,-14.837719,-32.409843,23.945549,41.659748,-13.79042,-11.769396,26.315418,0.9447241,-22.646172,12.132761,38.527077,12.02542,-24.04714,-15.715942,null,3.7191648,3.8464575,2.8944058,-14.710934,-22.054531,21.363474,28.495577,-16.88007,-3.5415993,25.74102,-11.419311,-28.689482,9.515203,18.691551,-15.227385,-28.175018,10.371937,37.746784,-0.9419451,-15.888984,39.97414,39.45781,-20.160603,-3.8782802,38.87783,10.358021,-25.33859,-17.677896,12.124094,28.088062,-0.5462017,-15.539448,24.55288,50.40733,26.750015,-22.029013,-36.702347,31.854288,98.07464,90.83133,67.42081,41.39521,-4.748055,-49.71272,-76.59569,-52.786583,5.943495,28.342867,25.675686,42.001766,49.504494,17.709566,-26.64177,-54.36155,-68.8071,-63.12429,-35.43598,-2.231577,43.899605,77.824425,49.64538,-17.713112,-59.640175,-28.112837,32.499886,21.093449,-27.511692,-39.32211,-20.952122,34.58058,51.960682,-20.278618,-26.10247,41.705944,14.82278,-32.805786,22.742878,55.083046,-17.247187,-46.051826,17.553951,16.760494,-41.768856,-24.092793,6.2165966,-3.5122042,17.032427,24.437359,-7.207284,-4.624911,3.895862,-15.546962,-5.4488554,17.816822,-7.959017,-34.727676,-7.1854877,5.849223,-30.73603,-33.636047,null,-13.792496,42.964935,3.4580436,-41.23478,-0.61539745,23.619535,-9.086009,-12.885933,15.0204315,4.829276,-9.612761,12.24482,23.099209,25.416992,17.731403,-11.1447525,12.117561,30.644798,-32.454464,-24.270828,52.667427,18.794136,-40.84781,3.9208603,46.176285,4.33395,-25.170141,23.020905,49.575462,10.760206,-6.557488,1.4347992,17.115128,48.985065,28.93989,-19.309132,1.8461952,46.23384,33.571606,-33.704803,-95.821365,-80.96008,-0.9889631,81.575806,108.02667,47.929787,-10.638172,6.9703803,19.98511,-15.051097,-21.548336,22.896519,57.75331,67.07974,74.94458,60.27663,10.174563,-45.464005,-86.456055,-75.59558,0.5736294,58.946754,36.193825,-14.9797535,-15.728262,13.763594,4.659052,-15.807809,-14.080931,-28.902084,-31.107843,0.3176918,-8.472364,-28.94994,5.608198,10.478718,-41.05114,-32.757126,19.934227,8.480685,-22.41075,-2.2430587,17.338099,1.9347992,-13.50231,2.809669,30.38655,12.808808,-17.66083,-0.32986164,10.858238,-7.3248277,-11.779337,-11.421921,7.407155,34.96874,8.933723,-3.97585,39.598434,21.8227,null,-5.858991,-29.7116,16.097174,47.35952,15.184546,-11.555675,-5.3241434,12.126637,2.690414,-28.035034,0.9143748,46.480743,5.043852,-32.83295,3.10541,8.554929,-37.372414,-38.62858,16.875324,30.197525,-24.063616,-28.94196,23.858356,12.173559,-26.993755,0.5400691,20.495464,-19.698824,-30.148766,12.6895685,21.233631,-9.522579,-20.183664,-18.116693,4.6228223,54.94326,32.1938,-73.311806,-91.11495,28.494373,127.036545,108.665794,37.718216,-24.673038,-73.64373,-89.76568,-66.46712,-47.268234,-57.91313,-58.869198,-38.560143,-63.381653,-110.25772,-80.93731,-22.379032,4.553604,61.838608,132.52539,117.05898,4.0776854,-101.55406,-83.35055,7.886078,38.190052,-0.036359787,-49.737656,-43.5728,35.952934,62.526627,-7.6631184,-28.904606,28.849573,20.66922,-45.773968,-5.8442335,60.646328,-21.026035,-72.27135,28.389002,49.918015,-29.440056,-19.676666,35.996826,29.302967,-2.1312943,-2.7379928,7.0364947,-8.570487,-11.992143,15.027763,17.267155,-9.554255,-16.985718,12.218039,26.505802,-3.4547596,9.502968,45.13209,-8.544801,-35.216465,null,10.230748,22.89082,-17.353731,-7.1192665,7.0840845,0.013000488,8.019572,3.436376,2.443124,6.0084333,-4.2440453,24.398827,39.02876,-13.697412,-12.274715,31.491278,-12.608227,-54.40542,8.7314625,36.542435,-38.564377,-43.420612,46.221264,37.640343,-46.386787,-33.14089,25.592386,15.404632,-6.4897833,13.46451,7.23781,-41.94203,-39.5533,19.472597,31.405628,-24.7754,-72.93745,-42.234592,43.447662,79.61871,30.142006,-70.36175,-154.14554,-116.11734,6.0072308,65.754974,64.47763,66.2951,69.38933,78.23886,97.228065,112.97179,102.62233,49.71229,-9.383772,-53.93985,-104.93235,-110.92206,-17.934614,75.28018,60.105453,5.196458,-6.333479,-16.333633,-19.885778,29.584667,45.118652,-28.3635,-53.01648,22.041279,31.7788,-37.698784,-15.790109,33.03759,-22.489754,-37.688744,28.609838,6.9798794,-52.769627,-14.6835785,30.306376,-14.411393,-44.804955,22.038076,47.44957,-34.310974,-46.74105,18.102116,0.4993353,-39.313038,-15.352663,4.592121,10.939546,10.723383,-18.1812,-18.23973,13.833321,-0.91425705,-25.10086,0.09456825,null,-27.318157,12.276915,17.271227,-27.192694,-12.7449665,18.148506,-0.95495415,-5.9398813,0.19145775,-8.915659,9.88524,9.2267685,-13.596449,28.354092,44.386223,-20.79872,-24.191814,28.10877,15.975128,-30.048668,-21.044333,24.65552,6.2937,-39.056885,5.5247545,34.070023,-24.662025,-6.972133,60.650574,14.717004,-45.513466,2.557085,43.07331,-11.863586,-56.356308,-8.190069,50.65699,23.078133,-69.95562,-129.42174,-83.668846,41.25197,141.14316,121.566795,22.147814,-28.763039,-36.715363,-68.69054,-82.840935,-75.69901,-94.99388,-103.33444,-58.66973,18.948078,74.555664,88.63479,92.9729,29.938425,-114.78104,-147.20773,-20.748417,54.00059,3.5546532,-48.46204,-20.10693,42.60556,50.6598,5.1632385,-23.927334,-10.819635,11.010747,8.835205,6.561445,13.575424,-14.9223385,-29.159575,31.87846,42.18094,-38.04357,-29.237759,45.16938,19.689682,-5.8288326,37.979076,14.088036,-27.312792,4.7598963,7.1025667,-14.841923,-0.6008315,0.80261874,7.6071577,14.447565,-20.694075,-16.05674,15.690708,-2.3942866,9.015055,37.16197,-0.6690769,null,5.4391804,-41.497208,13.492962,42.562935,-21.765617,-26.174377,1.1378498,-16.001606,-15.784578,-2.15911,-4.1903505,-24.682766,-50.41948,-7.9614916,36.00901,-23.419964,-36.14624,34.844624,1.1145515,-52.020615,20.883938,42.371227,-35.66611,-17.58459,54.371105,31.507114,-10.937254,0.6900711,20.949272,32.013107,22.780838,-11.46085,-35.054096,-26.491192,14.478725,44.058937,15.52499,-27.237356,-34.099373,16.690462,106.99971,94.380066,-58.003128,-155.97383,-108.64015,-16.860594,36.02793,65.0831,114.17064,133.99365,97.78289,80.713745,41.208176,-68.27377,-130.07135,-109.57439,-49.518745,61.57531,128.07364,47.874588,-64.41025,-66.07374,-0.4472227,30.372301,19.12596,-6.507779,-27.883587,-21.05933,2.9167213,25.221355,22.166492,-19.479597,-19.659082,24.565508,8.51067,-20.851013,-2.0796442,13.148239,17.14581,-8.666712,-32.531876,18.489174,26.363295,-36.123837,-11.00719,36.54869,3.7615805,-19.921585,-7.4752197,7.7155094,13.110579,-3.3461225,0.21327353,20.07794,6.712817,-4.2799077,3.1863794,-14.286135,-28.157776,7.722371,null,5.3727536,5.599102,7.594616,-3.7371273,-9.683659,6.8736796,-0.9586773,-0.36657953,30.296486,17.538095,-27.225655,-25.88326,20.93088,18.84378,-23.95866,24.491243,58.34358,-29.928102,-27.79279,42.357567,-6.1201034,-33.78421,-0.8737335,-10.327149,5.1097794,10.660988,-26.762865,0.6487007,35.75489,7.1761284,-15.763248,-6.4086623,29.071707,44.909966,-1.1148758,-34.272522,-7.418299,43.95851,81.56083,37.211742,-99.07651,-172.80823,-55.869797,103.57619,104.55891,38.736217,21.932943,-16.188297,-56.4822,-55.656853,-75.64473,-74.15039,7.5735197,86.69016,82.486465,-5.0587006,-105.16758,-125.70276,-41.179214,75.4975,84.79015,-15.308828,-56.167286,-12.244141,15.031988,13.278964,-18.876493,-59.879555,-33.300312,29.578938,44.630104,14.72529,-21.561512,-11.721669,47.409943,37.008972,-42.740147,-12.879692,59.032,-10.606867,-41.52854,46.66915,6.9516354,-55.82708,37.887314,50.675697,-32.23857,-3.8380966,35.878185,7.2106714,-9.528209,7.029579,39.30973,10.428946,-34.346664,20.237043,30.485706,-33.46402,5.6093597,49.87419,null,-2.4376225,-12.411536,34.605762,-5.8165894,-35.679016,13.201654,8.918877,-12.504005,-16.544262,-16.92613,8.897426,-16.604506,-16.586924,45.191433,-17.937918,-41.042976,76.89884,29.706043,-50.62571,45.528698,43.190422,-39.402344,8.381178,37.714973,-11.22981,-18.350895,10.295661,35.54129,21.133991,-39.987938,-42.40413,41.947735,63.325394,-22.33554,-51.250057,15.655513,45.12995,17.970299,-34.83065,-106.243774,-83.80396,55.548164,128.62036,57.54149,-27.058159,-38.191055,-36.25079,-46.586903,-19.707024,7.569518,-1.9484673,-13.794603,-54.988846,-101.262375,-41.36181,81.53067,120.3772,42.271454,-52.81864,-69.832825,-31.438696,16.997253,43.940422,6.940303,-36.920155,-30.018719,-1.6158819,23.94837,-5.603558,-31.292135,42.419804,55.771465,-10.708324,9.023931,22.610325,22.76313,63.285378,-10.558825,-49.975235,65.82285,36.002014,-64.30705,8.765152,40.31869,-35.66381,-15.258005,51.741253,21.967,-32.439022,1.87869,34.831497,-4.1519375,-5.7866507,14.000498,-12.517339,-17.149704,-0.037809372,10.275354,13.913587,-6.3950467,null,-16.826008,3.1510785,7.264448,-13.366899,3.3179505,22.84267,-16.533339,-2.2399406,40.643433,-7.300906,-31.837275,11.607424,-12.319462,-67.34864,-9.6758175,58.354836,-14.452251,-23.65237,84.13152,11.801685,-82.48396,22.744852,29.135687,-44.35582,10.294513,20.599316,0.4393072,22.460777,-26.655691,-19.790728,50.127014,-0.5390258,-45.664223,-1.5096803,16.174358,3.0587063,-35.680687,-72.65469,-36.39522,27.664133,47.486893,-8.514596,-104.10536,-115.950294,-34.35596,35.68403,48.903282,19.358942,-1.2892084,10.328802,23.449062,53.336536,96.52644,62.44484,-65.462906,-147.2269,-85.22805,10.938236,32.777325,24.219757,2.81283,-16.438143,29.729658,70.59926,18.351791,-46.699917,-33.02095,17.056395,6.074786,-30.98069,-15.050219,1.6565742,16.48808,23.75358,-31.675045,-10.870836,52.021183,-18.838686,-10.510223,64.24522,-41.81253,-61.684807,46.67455,-11.395702,-43.493736,28.526115,0.20370102,-27.908312,-5.196312,7.540266,24.802353,-5.8462324,-20.952803,10.181813,-10.73415,-7.0681915,18.077374,-20.37685,-20.629974,7.8841324,null,-15.601688,-8.242252,26.156244,5.693865,9.87816,24.509777,-2.206338,9.786702,27.033628,19.159065,9.599575,-14.255716,11.107334,13.480503,-35.117165,17.643867,16.650347,-53.287804,38.795364,46.912254,-58.38724,28.203522,56.498238,-49.564384,6.7461805,62.25744,-1.9932146,-21.122372,-5.334593,16.047306,-2.500517,-72.67633,-44.084145,29.175167,-6.1155624,-81.83225,-100.515,-33.808094,37.859634,-3.3431597,-71.6788,-64.25094,-25.502888,13.359365,19.575237,-26.800016,-65.672775,-58.417034,-28.428322,-26.495102,-54.830383,-57.715687,-41.3639,-18.77719,24.664093,36.50447,-6.28841,-66.075615,-89.03241,-18.359133,50.38389,15.345711,-45.82103,-82.15605,-39.520348,64.39895,32.193893,-39.268097,26.243355,40.761322,-6.7626047,-0.11553764,-8.679276,26.106441,31.131939,-75.0873,-23.09324,67.60492,-45.94339,-41.518356,76.857315,-1.1959255,-65.409164,21.503542,31.520903,-32.16526,-18.668837,17.724945,-9.613941,-12.23378,26.992565,-1.8871806,-24.570496,14.134688,-0.2681036,-18.19115,21.021313,13.122744,-25.898708,-8.840163,null,-25.214708,11.761543,14.886429,-28.236603,-1.3060527,16.452003,-12.741678,2.3175511,6.5911365,-21.671162,-4.9582896,21.055586,-1.443274,-20.552301,8.9931555,-13.292606,-68.77182,12.095552,48.002953,-59.75867,-0.42125893,81.39289,-35.208744,-34.477512,46.68402,-13.698632,-33.835686,13.212782,43.359406,42.00604,-34.103912,-12.982507,71.92645,-16.991613,-67.83406,15.706856,11.108303,0.36868095,19.456488,-38.65206,-39.479633,41.880867,45.921806,-43.31038,-112.952065,-44.7966,72.47467,58.59675,0.75227356,17.950903,53.67682,66.11392,30.811092,-20.47491,-15.645014,10.628191,47.45318,76.7252,11.205973,-66.744606,-53.847088,-2.698597,23.307775,-36.09145,-75.383575,26.54434,62.08828,-11.709946,-2.5326033,25.285797,20.360647,3.996521,-23.348057,40.38395,44.66566,-57.450024,20.506466,70.30567,-57.13045,-7.528961,66.44391,-21.884338,-3.5863838,34.72986,-15.60622,-5.2368174,1.6673622,-13.116131,1.5146961,-6.5787024,-2.0226965,9.172104,8.756401,29.363426,12.134813,-1.0042744,36.340458,14.539623,-26.039413,-0.53816605,null,-39.18555,18.950539,8.688628,-36.102642,0.3075676,0.090130806,-27.510416,9.390704,21.118769,6.923187,11.145157,10.78334,8.7949505,-16.476976,0.44021225,39.39513,-25.473232,-24.946445,34.156815,-41.667084,-15.890491,75.24419,-25.614773,-34.617004,57.04255,-8.407687,-28.917473,24.97759,-1.6646223,-19.770086,-5.559387,34.01319,38.04576,-61.07554,-59.241516,45.219048,27.876118,-38.23486,-37.977943,22.387142,77.06322,5.492362,-53.4001,28.148222,48.337143,-9.607831,-1.0634155,17.72809,10.263334,-18.031189,-56.874382,-18.02512,21.94992,-25.978428,-35.957893,-14.970631,-30.624668,-20.882093,-17.692305,-5.9718933,12.54892,-79.174644,-83.26935,48.937973,-15.2514715,-88.02139,48.856575,68.75982,-11.5849495,6.3441563,19.975637,11.004992,-18.678408,-19.663225,47.447346,-1.4304123,-45.80711,50.98733,19.746485,-43.447823,32.501236,15.54263,-36.761932,2.3712215,-14.3398695,-45.918858,-20.09707,-8.102823,-12.124097,-10.944019,-0.52163935,-3.6299725,-13.090764,10.500632,3.329829,-18.065428,16.27782,6.0807304,-31.477184,4.1399755,null,-14.584662,5.4980087,13.903389,-9.937288,-0.85408497,-0.93019295,-4.7947707,4.685165,-5.641725,-13.282832,-15.476499,-5.2260838,8.6497555,-0.18679237,23.346561,15.616184,-35.818703,14.854147,30.74355,-27.069698,31.40864,36.678226,-37.73254,11.852607,26.95488,-19.37196,8.426168,17.0747,3.2607608,-10.179184,-5.270317,54.73371,16.149715,-37.20133,23.387348,-40.927902,-124.604126,-30.615242,-16.915283,-71.41933,-31.025341,-13.360365,16.435726,71.66441,30.426453,31.340115,129.83948,126.11564,41.681732,28.62421,79.47339,126.55229,84.87024,2.7169805,51.458534,100.003,-0.49624157,-37.981037,5.371177,-14.477025,-31.991331,-76.86681,-112.79621,-24.00801,3.489562,-49.271828,-2.3884335,45.420044,21.642849,-4.1847215,15.687323,54.100677,-4.912966,-33.95546,42.24249,-3.6937256,-36.875443,53.03698,-0.75492287,-56.11357,26.054394,11.400922,-17.695805,27.186743,3.8405638,-14.245644,23.787897,26.766321,0.09066868,-1.4951844,33.879097,22.351353,-22.499031,16.992022,29.779224,-32.61603,-9.813775,16.816921,-29.860847,-4.897955,null,-11.823002,24.28937,-3.6526246,-22.930344,25.931948,18.897394,-5.281712,30.211843,30.603592,-12.458821,-13.403133,18.086796,13.484854,-9.623923,12.951763,9.937313,-16.361986,36.56296,23.720718,-57.535496,3.9914718,44.099667,-21.035994,6.9153557,25.731949,-20.88778,6.253339,43.851707,40.558697,29.783195,29.656027,41.517807,3.7833195,-1.4853096,42.21328,-14.971188,-41.547234,5.2298346,-38.885647,-30.833939,43.11537,10.154264,-10.597428,21.644276,16.747808,10.074604,-11.799831,-51.013283,-73.52215,-98.84767,-100.905304,-62.831223,-27.01127,-11.457527,12.356142,27.583584,-4.238469,7.555551,29.52815,-58.277237,-65.93756,18.205711,-25.986801,-44.66409,15.259737,-6.259097,-4.574318,29.720036,14.372554,11.331735,16.542498,26.49985,1.2362223,-47.325054,10.615699,28.912498,-35.357796,18.21912,33.76982,-31.00578,13.228553,16.449137,-37.294052,5.9609365,27.803862,4.6584873,13.61774,10.676627,0.26286125,-0.99482346,8.2473755,19.787586,1.1799049,-5.482977,10.404892,13.297863,16.372185,3.014525,-3.553724,24.574413,null,-10.624431,-1.9383469,9.744786,2.7135906,-5.0366435,-5.9967275,3.0042462,2.2049294,-8.100887,-8.6356125,-11.940805,-7.3612447,-11.690045,-21.412262,14.399445,13.195596,-19.181942,11.460262,-7.094353,-28.362827,32.44084,-9.735919,-44.71263,47.374046,13.930505,-67.15805,-12.93283,16.81289,-10.462763,-6.873146,25.868587,41.368645,-5.4628296,-36.517536,-35.67593,-48.041912,-27.110483,-44.061726,-89.40947,-53.99666,-52.639767,-77.92802,-24.403683,0.3234024,-32.725185,-59.00299,2.7900887,186.0829,292.02783,281.95587,281.3219,194.85744,30.802301,-52.7265,-39.73944,-11.497131,-44.428444,-52.848747,-10.017645,-53.132385,-70.92185,-3.7014532,-12.866598,-24.387413,0.7980213,-18.67152,-4.296545,19.099276,6.0881176,18.474888,12.84396,-10.634973,-9.587711,-4.762081,1.4741006,-26.01268,-34.786274,23.443312,11.692732,-24.967747,21.613407,9.252501,-39.81396,0.1607647,12.991171,-27.259464,-7.435919,21.857412,-2.043604,-7.6173363,19.083096,6.2633276,-21.284113,-4.2104936,4.161913,-14.770619,-0.2694521,11.03865,-16.146667,-11.064009,null,-12.707684,-7.637779,-7.7570944,-16.224731,-5.263968,8.566692,-7.1075354,-8.164107,-2.0463634,-23.393833,-11.474724,19.47491,-8.823244,-27.535908,17.834057,16.57297,-36.804256,-21.892296,1.4904194,-35.190704,-29.207214,-4.9802423,-33.901875,-37.82527,-17.49726,-20.385221,-14.751484,1.3850632,10.237657,-0.7924309,-5.9752216,17.878605,7.413417,-10.804604,4.4372387,-31.048431,-83.59236,-95.01013,-94.23101,-58.867622,-49.581863,-65.99246,-9.520485,-23.906046,-101.8382,19.65887,145.40459,-86.172874,-477.7948,-621.5939,-428.93954,-69.76592,176.55751,104.75954,-82.53331,-65.08231,9.472168,-62.42153,-124.991806,-95.95583,-56.181854,-35.162037,-26.958818,-7.35999,-2.054648,-18.006586,-6.739341,-2.3335085,-19.895672,-36.780792,-35.023342,17.74495,13.182835,-47.26476,-3.1603596,14.32711,-42.493446,3.700676,28.43419,-18.678322,8.920689,18.795538,-3.8377829,20.708675,12.478724,-2.604629,13.472829,2.9731288,6.316969,17.0755,-10.914944,-14.376891,5.8719854,-16.442333,-44.702866,-21.21341,14.133074,10.2737,-6.896923,-4.251148,null,-9.184569,-3.8012743,19.79256,21.227888,-2.7498074,-4.860971,-4.8787003,-19.968582,5.5322948,43.37974,12.834198,-4.97821,26.896362,11.138684,5.4570813,27.799534,-2.7568464,6.3376617,23.143728,-37.05499,-23.66484,19.343285,-14.3401785,-8.6828575,2.459711,-5.218093,27.220472,7.566376,-11.255943,22.782877,-0.78293324,-12.848722,2.1372237,-13.8739805,16.66572,8.272812,-50.937817,-25.359127,-38.29081,-104.95121,-82.872,-8.764175,52.673897,-19.0308,-46.83309,177.30533,0.35979843,-389.30692,256.07425,959.6196,256.61084,-403.6312,-52.97766,106.45671,-66.0461,-18.914501,-17.08672,-64.19548,-15.53475,-24.286552,-52.22233,-51.582718,-24.900118,32.4461,11.359919,-25.14818,12.71505,20.62514,-10.342622,-11.651749,30.995018,50.63046,-7.9077044,-22.323923,6.35503,-24.574453,-11.157164,12.108501,-44.317596,-32.1997,18.431976,-11.372442,-27.8419,-10.591105,-13.268713,-12.129606,3.435131,11.2383995,-2.6123486,-9.397291,-11.266748,-26.07634,-5.4217253,8.113183,-26.98712,-20.88503,3.080905,-4.5085745,3.9427347,1.9723091,null,3.2331686,-15.43675,14.229328,-1.4704981,-17.702469,11.982412,-1.021137,-8.884898,20.432966,30.86775,20.8078,0.60503006,12.310302,18.951279,-16.047543,-8.290165,-3.4385843,-1.2658043,42.894928,-5.703991,-30.322899,49.083946,2.9181552,-30.181488,45.438576,8.71423,-17.933165,30.695606,15.44408,7.0464616,13.315109,20.702362,28.514626,-10.103647,12.139303,39.751442,2.7055206,11.662222,-19.377722,-26.346964,6.6832504,-91.26845,-64.11985,-28.83593,-82.06714,163.97768,-75.53925,-343.0886,1406.2161,2917.9753,1361.2262,-273.14847,9.808548,161.70067,-62.02098,39.796906,-6.0753326,-67.29322,-33.55642,-78.23792,-31.81305,-50.276924,-98.41331,3.284749,-5.3581657,-23.804867,58.797962,14.660606,-8.911892,32.109745,-12.46515,-21.069832,-5.964697,-13.884673,1.0152111,-12.404186,1.3859777,-1.1732926,-62.81331,-4.5693707,43.421013,-25.02563,13.731583,50.346577,-19.947319,-6.1950545,15.947582,-31.482367,-19.889526,11.442793,-2.9532077,-13.214283,-8.942708,-5.522448,6.381759,17.134111,-9.098408,-29.694397,-1.5274782,-0.011630058,null,3.2792244,-15.394536,12.337807,2.4201574,-26.505533,-2.2534592,18.584606,2.0040464,-8.385555,16.354576,14.378898,2.6654816,47.824203,9.48493,-41.910095,55.777,24.525005,-80.33514,31.116146,60.08026,-39.413696,-6.0420694,9.033915,-11.944216,18.172855,21.897015,29.69621,11.54096,5.4082613,20.66693,-56.314644,-3.6788926,87.761,-37.208725,-3.076407,91.00973,-11.880257,36.089134,50.05454,-30.106102,31.59665,-92.76522,-113.43985,27.634956,-146.49167,48.975163,203.35202,-361.53687,71.61583,911.4098,111.03933,-465.84076,110.90431,64.99127,-183.18723,-25.977062,-95.47425,-68.27843,42.787308,-49.31718,1.5317183,21.143513,-56.50539,23.552198,59.68406,38.27723,42.293884,16.81937,34.38646,19.54312,-7.9433484,11.775354,-14.706036,18.820002,28.924988,-54.983448,19.176579,62.24557,-32.454266,12.20035,26.83949,-33.385677,24.184267,29.78816,-1.7176685,29.768011,4.8816605,-13.42276,0.27547646,-12.327314,-2.2412682,3.131485,7.904414,13.127303,-12.119015,5.1849623,11.507786,-20.738216,9.956796,20.95404,null,28.009996,-10.972792,16.500828,5.3587265,-20.339798,18.105827,20.90512,-0.40752888,-20.69798,-17.010517,22.165585,1.2390614,4.534752,29.218973,-22.770645,16.545376,44.552723,-32.978157,23.853,33.541233,-50.179222,26.767061,26.34218,-42.755726,26.651506,19.334364,-6.3635917,35.499542,5.4606066,3.1763582,20.801186,19.927673,22.190683,-13.116861,58.897934,84.03421,-13.101105,83.70527,62.470997,-88.176346,36.00788,-20.7267,-134.3268,22.545702,-126.27063,-167.32738,133.87938,-9.056031,-151.81235,-80.70077,-199.32518,28.66473,194.65952,-141.06392,-99.26569,25.850334,-139.145,-18.590733,29.276127,-67.69772,46.053905,-1.3036308,-13.051225,114.39152,-26.443789,-40.5686,93.40894,-19.070957,-29.775661,74.88266,41.19217,30.165346,46.194733,44.420177,17.134325,-19.713062,27.987442,-6.2038784,-55.731853,49.808434,2.6101685,-79.06239,60.323895,59.053905,-34.200424,35.499195,32.762714,-26.311602,13.428841,21.558334,-19.185284,-11.533623,30.83315,16.78215,-14.643633,39.649982,43.07373,-27.889278,-7.888147,9.271762,null,15.296349,-55.119324,21.58316,38.07283,-38.28155,-7.631906,21.568789,-11.247104,-5.21345,27.337885,3.1237965,-49.728756,1.8640685,25.080847,-59.719692,-5.468029,32.123127,-67.32829,2.2663202,44.924305,-59.03164,11.967711,61.871803,-29.688393,-22.742264,-1.0793657,-16.85863,-29.057074,-15.262826,43.420734,-24.540546,-36.963837,95.115524,-13.775408,-60.107357,94.22934,-40.18481,-92.87125,58.527584,-48.916054,-56.355392,45.150352,-66.866486,-48.195026,-11.885923,-113.401535,-38.684868,55.666485,71.67813,113.33405,102.368744,72.32498,-56.001053,-122.86125,29.14303,-33.8167,-115.63011,62.640385,-6.452508,-79.68693,94.648895,32.92251,-8.595392,113.24642,18.253698,-34.3471,44.58305,11.961863,-24.876339,-20.783974,9.875076,7.6550236,-48.299976,16.066181,47.09236,-16.778948,28.39075,6.7602825,-39.20366,41.70735,11.164139,-9.233295,56.493267,-17.959383,-28.49353,43.80474,-15.320806,-30.6652,17.92134,8.148012,-9.299698,-18.717169,9.923582,15.0437765,-20.767235,18.82571,12.314089,-35.160866,19.42847,9.567154,null,15.172552,-51.237755,-2.4423537,20.883892,-26.332373,-1.6949348,-4.3301864,-25.162228,-13.0988865,-22.281889,-19.54461,-37.75151,-21.648453,44.351257,-10.070803,-31.477781,29.04699,-31.368725,-28.688637,34.97989,-12.8117695,7.974436,19.851841,-41.130013,11.606577,18.170233,-47.479485,-25.0436,-12.121204,-20.056757,-39.248135,-29.105461,45.882545,-18.256886,-45.50343,92.575226,15.305746,-59.173485,78.16715,13.218663,-71.036804,18.167444,-58.21145,-130.69727,-15.9647255,19.409016,-32.753334,-23.126001,53.95674,106.01451,39.26574,-47.664364,-17.021206,40.48626,-37.892544,-94.34962,12.189365,-33.993614,-131.41182,53.609566,66.8687,-99.73113,42.940445,71.886,-96.81026,9.651968,59.99143,-57.433777,-16.458506,2.1594472,-49.025543,-37.464485,-17.796589,3.9601974,-38.226326,-49.394318,37.04606,-13.199025,-46.24044,45.580162,-24.868738,-74.71748,14.311564,-20.254482,-36.69423,33.462795,-1.8782911,-36.08407,3.4435444,15.008942,-8.935984,-1.0652027,41.263077,-5.279583,-53.509266,22.09237,3.4220428,-59.03246,23.083193,19.795599,null,26.18908,-32.03557,10.42499,32.159782,-25.735905,-0.2267127,22.906635,-22.912247,-26.298092,12.138163,17.651787,-25.526285,-18.4031,21.226479,-27.35847,-13.180852,51.35521,-36.59628,-47.250134,50.95575,-5.9004035,-20.992943,50.672215,-6.1181183,-37.66339,0.27652597,-5.770073,-8.051205,-7.43505,23.841984,18.00347,-58.233665,20.542915,63.33355,-78.59262,11.477444,134.51001,-39.96313,-55.996666,66.903824,-25.351482,-60.13799,2.795868,-63.361095,-79.93006,1.6242146,3.9408054,-19.545597,12.991383,57.01255,69.602425,29.319633,-10.473618,-9.8658905,-41.780434,-80.63473,-75.02507,-86.92034,-28.049957,70.437126,-3.3596544,-7.8575325,146.71059,63.064365,-69.16267,18.30394,7.7581596,-55.309784,1.5624132,-3.073349,-32.728977,-15.1542,4.463827,27.146984,-16.505043,-25.103876,32.732094,-16.475048,-28.704668,29.087105,-17.201836,-19.030039,21.463978,-9.523215,5.6074905,9.126722,-16.194092,20.386295,11.645268,-12.894855,4.257391,-6.3530426,3.1627493,1.8639014,-16.880167,14.216575,-7.4537573,-21.650919,32.424,-7.870335,null,16.096666,-3.6081333,-2.6605573,21.63065,13.840058,17.140154,3.3154664,-8.172455,5.889555,-9.342125,-0.3981979,13.324926,-16.60325,-2.0015876,9.166991,-11.236724,11.280472,11.132593,11.250682,29.020512,-25.359995,-24.011436,39.788208,-3.3110294,-39.68093,4.230791,18.882708,-8.5811825,-41.119797,-5.8447113,28.56812,-43.357307,-10.03775,101.28388,11.128868,-41.737022,98.22122,75.3137,-77.241875,-50.429356,34.255177,-3.0557404,-45.515026,13.389502,75.45451,29.029594,-17.445692,52.623676,106.5656,63.88535,25.048311,8.300976,-0.34842587,0.74907684,-33.582092,-65.14975,-47.919556,-1.0586605,35.004055,-31.096859,-59.630867,94.712265,102.6357,-62.53705,-17.79798,53.84383,-43.549522,-50.872543,2.148879,-12.901904,-23.345219,-31.541739,-26.75949,-37.028446,-46.12502,43.350815,43.459408,-52.10041,20.031467,52.23565,-56.706306,-14.82257,36.565277,-45.454956,-33.261913,19.08451,-7.7593064,0.116493225,29.537054,19.37754,10.344883,12.989155,6.6225586,-8.998887,5.145541,30.633284,4.694769,-4.9773498,26.496632,10.435913,null,1.2369175,1.1346531,-18.448639,-6.7879,6.2543783,-22.10405,-15.157789,25.065903,5.6590214,-27.337837,-6.919677,0.44291925,-9.415895,13.5760975,-5.6383014,-38.548225,14.486311,10.182275,-45.47512,18.543564,16.772877,-80.64297,-26.35416,16.168875,-57.540462,-43.28834,-12.798381,-40.265392,-49.3032,-57.45183,-18.873478,6.051032,-54.244526,-12.301801,61.800102,-25.091402,-62.850395,33.216476,40.595364,-49.876965,-81.22085,-38.1612,-17.814411,-22.501259,22.047579,62.97621,25.927643,-25.42705,-9.690926,51.230522,52.29099,-12.635678,-15.60412,42.626564,41.070175,-1.5699311,22.914986,53.816635,-45.09929,-115.6044,19.842514,85.366264,-51.033157,-45.94931,87.438736,37.080284,-51.699375,4.8520794,29.304209,-23.441475,-29.697643,8.509428,31.719238,2.3118038,-26.148632,9.332372,16.83971,-12.951502,6.57864,6.473299,-19.99641,-3.0604248,-4.9584684,-14.364464,14.546896,19.374947,9.672905,3.2576303,-16.36067,-3.8643563,17.755339,5.5368032,-7.1387463,-12.410146,-10.48649,-7.7671685,-9.928417,6.860696,7.7338047,-5.714291,null,-2.637372,11.06298,-14.11582,-16.68165,1.5306511,-10.539457,-21.053297,-10.7905445,-2.9810932,-5.51428,-4.5163903,0.82899714,-7.956522,-12.640924,-6.165386,-8.99164,-1.041137,-5.654339,-34.255028,-2.7237258,33.161808,-21.477646,-38.615887,13.710262,-1.6029472,-38.642715,-10.242695,21.407478,0.94417,-41.18307,0.312294,75.29446,-7.1084194,-70.64546,74.170586,104.57023,-44.457214,-38.07484,39.36445,-14.234692,-60.971474,-23.682693,9.07881,-2.9424171,1.1045837,61.193573,75.10396,35.175735,56.204826,75.327576,31.043026,26.021442,54.989315,28.133524,4.146662,55.075348,60.673485,-40.870785,-58.086266,36.936775,12.481569,-84.01553,-2.8771963,132.99385,69.88584,-18.79318,52.389915,68.375145,-19.323914,-26.10839,-11.2313385,-24.027779,-15.728338,-36.207687,-31.195812,4.7736053,-11.348503,10.953563,30.153975,-32.77603,-9.883027,50.807434,1.6858435,-24.540398,0.51788044,-13.961162,-11.273195,20.61371,11.697612,-14.324518,-2.7108307,-2.0831003,-30.175411,-5.888258,18.986279,-14.280448,-8.691556,7.2584763,-16.634083,-3.3901987,null,-17.232265,1.0262341,0.5126858,-14.379879,5.1844254,0.80592155,-10.997328,4.249262,16.21286,21.07921,19.15273,14.144095,-0.68718624,-8.806937,19.285011,8.979019,-14.630047,35.148003,24.67007,-36.369568,14.029327,42.094128,-20.913006,-12.652311,32.94574,14.6226425,-19.510042,-10.348779,33.633305,25.02249,-29.527554,20.240395,104.12656,21.17732,-67.63139,38.367706,95.30511,-31.031675,-69.286995,8.551445,-0.31941438,-28.583384,21.294802,49.82543,20.514654,9.58724,19.001022,-3.1797981,-12.488696,6.261757,-25.801626,-51.705505,-8.714547,28.381546,65.25383,85.41662,26.352615,-3.3446465,39.251427,27.946983,-56.078144,-88.69791,-0.46386528,48.34395,-38.166935,-32.0566,86.58168,67.340385,-29.826447,-20.412186,44.38408,39.49042,-38.70085,-36.6959,48.7346,16.677069,-56.338017,1.0232887,39.60311,-12.980611,-14.787262,15.568384,-6.2878294,-28.07837,-9.419407,5.473522,-8.44773,-17.792164,-4.647436,2.8424382,-5.773739,-19.745834,-20.828543,8.327353,17.828835,-13.173117,-10.3907585,6.9333205,-6.3085194,6.7530146,null,-3.277731,-2.852316,1.0914259,-20.775753,-22.190653,-8.181267,-6.769726,-0.8755908,13.953964,19.6313,-5.4098306,-35.315212,-2.3625898,35.05213,-10.661265,-48.896217,-13.555468,17.386345,-5.9973083,-32.150608,12.381788,48.155777,-4.6953435,-5.505786,44.962433,6.336195,-17.408985,21.55553,19.289955,16.834997,19.853056,4.8381824,45.7772,68.05764,-20.646988,-79.4148,-16.641626,31.294209,-2.4950848,6.7328978,57.277073,35.00763,11.08125,47.159695,69.353226,61.89589,26.45815,4.2141323,48.386116,58.371807,10.611197,28.794174,96.75921,108.134125,42.713127,-21.016926,-15.500834,4.7757187,-7.80871,-25.335014,-17.122225,18.274126,-7.174328,-74.69185,-13.003484,83.54741,30.984339,-35.336388,-6.127614,25.703789,17.651249,-15.399042,-20.178978,24.890272,12.457527,-50.248623,-37.798798,-12.837614,-33.680447,-1.6930323,30.456982,-8.288445,-2.2809405,27.715744,-4.9183717,-11.211295,9.514709,-8.300173,-9.566361,2.1109748,-6.864693,-0.5164614,7.391956,-4.7455306,-12.049522,-3.781129,6.304047,0.19965172,-0.9315586,12.583742,null,5.414015,-12.823077,0.60728884,19.12411,5.8450356,11.590327,20.7708,-5.7644587,-17.348566,-5.4938273,-19.65681,-20.029736,13.223003,-9.03935,-46.809467,2.6242251,28.189518,-17.99116,-4.8671827,1.6644802,-59.041077,-32.91434,17.826738,-35.2905,-45.97928,9.738682,14.612213,5.830006,0.8500142,12.078762,67.979645,49.708656,-28.247965,3.410019,68.59702,13.944037,-68.51691,-35.772263,24.384777,-28.55693,-62.397346,31.240078,64.4395,-20.941532,-62.5933,-34.713978,-33.979485,-76.76718,-57.08036,30.916662,28.569658,-39.32073,-40.64962,-25.718166,-27.276737,-11.066009,-1.2907376,-8.223539,-34.211296,-38.760384,18.721968,17.908558,-76.744965,-67.17613,53.295273,44.081383,-53.39711,-1.9366951,74.35826,-1.2176971,-51.6341,-3.5350456,21.546497,8.1226635,-34.10604,-38.293495,21.090511,10.979148,-26.577583,-5.4432445,-9.476721,-9.230354,6.431465,-22.681124,-14.14817,7.3996162,-29.374514,-23.834469,14.431845,-0.5971681,-23.712975,-11.433711,12.012171,2.8096964,-17.879223,-0.26182175,2.8154588,-20.876379,-10.671766,1.6959047,null,32.15013,-20.9674,-16.847912,17.767076,-0.7858906,-5.6957126,9.746773,2.9867167,-14.698485,0.43002367,35.40841,5.9463205,-23.25517,9.205857,-2.1955147,-5.8526,29.43487,-12.5648775,-17.412025,42.7181,-2.5972748,-32.625206,38.481514,34.029552,-25.718319,-4.631586,47.40515,24.000404,-33.455986,-1.8889847,60.005455,21.72725,-37.10628,-21.848555,-10.486031,-56.30299,-76.72221,-27.495924,8.118137,-4.922083,-21.066277,-20.00832,18.117085,63.885235,61.30692,23.655403,-45.315605,-95.16966,-65.16112,-57.25369,-88.78736,-46.123135,16.465672,21.706802,19.882658,39.05416,35.492016,-32.824432,-71.630936,-10.255696,-6.7886715,-81.825195,-54.637867,8.616429,-36.660927,-67.196884,21.610033,88.56705,39.427223,-11.638714,-6.7041945,7.221062,29.371872,15.499311,-29.799976,-0.2691145,27.004393,-16.019213,-4.6233177,18.472261,-13.766161,7.748035,29.775774,-17.227701,-13.401231,26.656925,8.303853,-18.629616,-7.2631145,12.547146,6.9008694,-5.591675,1.490262,-2.9369507,0.15659809,20.388418,-7.077362,-19.819962,17.383272,1.6031637,null,15.7648535,-20.904366,-6.0083437,17.087778,2.8589,5.6416135,4.7953815,3.6811838,13.72938,0.8468647,-3.0764737,4.270482,2.7627249,20.875652,12.829121,-19.278164,6.3503313,20.987772,-20.929684,-21.327576,-0.0024166107,-22.574963,-29.503706,-1.2255774,0.8312011,-25.217905,-32.124825,-5.59046,25.48682,13.681575,-31.290344,-17.050285,38.38927,4.1113496,-59.304356,-35.234837,-18.582186,-44.040504,-25.513355,6.415615,13.8018875,8.878022,-18.903654,-44.080437,-35.48005,24.452942,107.32109,122.2724,108.84541,142.6561,144.5624,99.62832,72.19323,47.500828,11.304789,-34.00598,-47.70608,9.352327,44.896698,19.559895,12.982504,19.695204,-1.5235777,-37.20693,-41.18431,1.7403908,11.431593,-15.210176,-0.79179335,12.550892,16.431711,46.530914,10.40624,-59.187595,-5.174308,67.15033,11.785589,-15.086025,51.811222,31.152079,-29.453762,8.485751,11.012663,-38.692635,-5.9821796,20.47552,-9.920814,-10.019896,-8.162948,-17.766737,-1.1325762,9.303735,-11.732917,-29.51306,5.338547,26.743038,-34.040886,-38.29042,32.247986,14.574013,null,12.31216,-9.807249,-12.576741,20.333986,9.134932,-18.4928,-8.863604,3.8608923,5.655861,-0.50752354,-11.84314,-10.17741,-4.151783,-0.03889656,-4.435462,-21.302448,-0.9616673,24.952484,-20.60648,-28.309343,37.450844,6.118082,-52.742455,5.130924,19.140959,-38.02149,-11.9289875,14.151385,-18.390312,-31.705149,-54.810894,-56.030975,-0.18929005,-1.1500397,-46.333805,-39.765545,-10.029533,-3.836176,-35.3629,-60.39495,-32.502075,-11.830934,-5.8184977,20.644716,2.0297985,-66.57683,-106.9375,-92.28937,-50.94399,-63.07805,-126.92233,-129.55046,-74.87154,-42.44023,-23.32368,11.656426,41.689384,19.474781,-36.09608,-52.625862,-42.651783,-36.84597,-33.550663,-57.476486,-56.671486,-0.19661617,2.8108397,-33.36492,-2.271101,49.52846,57.256336,15.857991,-39.847366,-23.284924,13.437788,-22.995224,-33.358025,6.440649,-9.287709,-31.420462,-4.13109,2.8621378,-13.242747,-11.817478,-10.836359,-9.690405,7.2725353,4.3119793,-22.91515,-17.490858,1.3119078,-10.007314,-9.123199,0.936759,-4.068268,7.29292,-0.67311573,-25.52694,-4.050412,1.5524502,null,-7.9126506,-10.52965,22.642529,12.092216,2.4834232,7.190314,-5.065849,-1.5706482,13.194351,6.8257017,-14.868973,-9.367399,25.26019,14.073691,-7.3590307,20.162914,8.206007,-12.511736,23.607628,11.098518,-8.421317,34.58208,9.489237,-43.08569,-4.487882,22.51176,-3.0315351,-9.523221,-5.3047314,-0.48933792,10.335459,9.607171,-15.00029,-57.6331,-65.82737,-35.62641,-42.566055,-59.279385,-20.456875,7.5097547,-19.342257,-41.82553,-40.970234,-21.858997,45.265373,116.08644,91.58501,19.845688,28.406322,76.85203,65.74534,28.781233,16.601025,34.742958,70.60385,51.071415,-31.616976,-65.31711,-21.64991,18.225845,8.196794,-16.381645,-10.743628,-12.5761,-30.535574,-10.363672,-7.69026,-43.464092,-25.287191,2.672082,-18.03244,-28.297901,-17.073618,19.559967,36.229134,-28.359715,-30.129953,44.057438,7.2351284,-38.33012,10.839851,10.600187,-9.805479,10.772668,-2.800218,-7.388932,9.612107,-3.7022943,2.6786957,14.779661,1.1170892,0.39587975,-7.742096,-6.2944937,16.050386,-4.5743713,-9.5412,23.320158,2.238862,-12.567578,null,-23.15301,19.887024,-22.813372,-26.637552,16.551981,-10.016781,-9.477963,11.6395235,-14.064392,-3.0329342,6.015065,-15.814239,5.0405426,10.109551,-7.330448,-3.2594602,-21.66071,-8.476382,32.704468,4.646412,-4.5929327,37.045418,21.286835,-10.329211,-1.7740135,6.373728,1.9252009,-5.7328787,9.570852,29.463963,-0.011042595,-24.140457,-6.46567,-8.046704,-4.9985228,35.8452,37.0709,-5.712355,5.231697,57.05204,54.328743,16.332499,7.7875023,-5.3345184,-46.680634,-62.126705,-39.45432,-13.7467,11.42062,22.72919,-8.417509,-40.320885,-34.288994,-39.334408,-55.589314,-26.784466,18.827608,42.776848,55.01508,37.931866,-4.141531,-18.030956,4.9137883,15.498788,-16.148811,-49.668175,-36.72274,-6.0393066,-5.391281,-21.072956,-22.216103,-6.79521,15.540144,11.139568,-26.353415,-13.42536,32.578587,-8.034301,-49.41263,-4.278802,0.06878567,-21.308556,4.898844,-6.9740105,-16.032635,18.963024,0.17635155,-15.9034195,15.457215,12.158358,2.9284859,6.9296,-0.08118391,4.418379,-4.420988,-6.933654,14.588554,-2.7359352,-3.794818,28.45023,null,-9.324915,-7.6406913,5.736161,0.5930505,-0.019701004,-7.210371,-8.588362,6.9867454,-7.6747007,-2.6071787,31.741787,2.3313959,-16.063051,26.19047,12.020977,-23.821686,-2.2390556,12.503138,11.427389,15.443945,-6.883421,-19.703617,15.588533,41.379387,16.798481,-12.137587,-0.9572716,24.564419,20.142555,-0.73329926,-0.45472813,-0.7841282,-15.193929,8.757959,41.061195,13.764843,-1.006855,34.32984,31.640202,-17.534203,-50.178726,-30.940084,35.959446,80.55728,61.955696,22.935497,-8.63706,-34.493317,-46.62771,-33.681824,-9.878323,-5.8578815,-11.758339,-2.8684874,26.547686,61.570534,41.18721,-28.394402,-47.731102,-21.054758,-12.248445,0.08491993,22.97208,14.348187,-14.475253,-9.198121,23.605368,19.209953,-26.173164,-52.678482,-28.405815,13.14208,3.8592339,-33.378857,-13.176767,26.002966,7.2050114,-27.550003,-14.032045,23.830639,26.908648,9.408159,3.2012987,-7.5465074,0.20856047,8.882103,-26.528252,-19.144613,19.767508,-9.981137,-15.563451,15.255287,-5.3132744,4.277535,20.247963,-18.502274,5.745028,29.655018,-31.811562,-22.002338,null,-21.685104,-2.2091284,1.1622398,-20.177143,-1.3337693,3.5768216,-17.303658,-8.971882,-12.452522,-19.773773,-1.0881548,-10.570187,-20.778484,3.8348083,2.7440019,-10.368647,8.127901,10.799114,-12.170273,-6.1592255,5.055851,-21.121656,-23.351189,14.937376,12.32882,-20.839869,-21.536455,-5.8968563,-7.7522583,-21.669243,-13.5848675,6.773383,-9.971172,-25.968046,-1.4966922,1.9511623,-27.279926,-21.117228,24.00594,26.526577,-33.580322,-58.50586,-27.515076,-22.067472,-36.793564,-27.229279,10.950993,65.04756,80.59272,51.555477,38.349373,37.157345,24.525383,6.225454,-32.653744,-76.17598,-70.69386,-25.416122,3.0059319,16.619907,30.629139,9.723064,-14.913332,10.065287,19.599674,-11.448011,-18.043127,-8.328032,-5.036714,8.447007,14.129171,-1.1416984,-9.244795,14.941061,40.79512,15.733557,-14.642451,12.14417,31.689186,8.169524,11.404002,26.790857,1.4823484,-0.9778862,33.32161,22.129786,-2.8749652,11.386604,10.067477,-6.63395,5.2211204,20.721199,15.512296,0.5519992,2.971665,15.005901,-6.418866,-16.815964,17.553366,12.641651,null,31.330858,-16.215012,-5.2161837,20.080185,-16.251358,-16.778408,5.3573513,-12.627359,-8.826078,5.553723,-5.4646435,-2.5223103,-4.1493077,-23.915913,-17.40929,-2.2483177,-3.0548,7.436896,7.1154633,-23.05188,-22.279308,7.2993445,-3.7054396,-34.82254,-24.649387,14.065695,15.704195,-25.252563,-26.319511,3.564207,-11.952449,-19.840076,6.846082,8.010864e-5,-3.30307,31.966818,40.640625,11.606504,-21.598495,-22.682964,35.830368,69.9727,11.188883,-32.72605,-7.444567,-17.782518,-64.811005,-69.25814,-71.652084,-91.06135,-70.80978,-39.88884,-44.560867,-56.903824,-39.388035,10.553418,42.754242,31.045774,18.397905,12.1332245,-11.10481,-29.106022,-7.1144676,34.64418,28.670681,-20.525106,-39.36003,-16.462828,19.63018,33.28413,-2.628736,-33.433212,-15.035679,9.243443,-1.6577711,-34.198,-24.377783,24.47775,16.821754,-23.234093,-8.639802,13.588584,-2.223341,-11.788778,-2.743616,0.007911086,-3.7661564,-7.836097,-9.593361,2.447554,13.180912,7.866733,6.3116293,-6.3119717,-18.603287,7.3259697,3.4016054,-22.77496,12.5045185,17.809633,null,24.403828,-16.04199,13.9807,51.50357,8.958129,-9.383995,19.30095,13.769056,-8.720376,-5.519245,-5.86749,-10.827482,7.2420783,26.376757,27.46392,11.024939,-1.1813555,24.517206,31.206158,-9.77443,-12.281113,9.363858,-2.5199447,-7.7727747,-4.4744506,-6.4075065,3.2545905,0.0829556,-13.470276,-14.113208,-12.76661,-5.203928,3.1942017,-5.414439,-15.65871,-11.867214,-2.103238,-5.9701076,-21.516445,-28.071812,-32.093544,-34.761127,-23.184998,-13.835998,-12.371201,5.142149,35.201954,32.35938,-5.6085453,-3.2832994,29.21379,-1.6060658,-36.87569,14.346096,48.11403,-6.1867876,-51.094875,-51.58137,-48.71456,-31.339947,-1.3996029,18.673378,21.510075,-7.907582,-14.634184,34.793716,33.769066,-9.689096,11.085844,30.432438,7.684516,15.646292,25.506655,6.8178196,8.348884,32.503784,31.063772,-12.561618,-23.94414,23.668945,27.273235,-2.229105,16.583279,17.81437,-13.817353,1.8400536,18.314865,-11.021177,-11.710082,13.633895,1.9745722,-2.4340925,13.902483,-3.71673,-5.2639766,25.096481,15.276365,4.69493,17.487259,0.41511297,null,15.9975395,20.427664,14.3986435,-8.7967825,-2.006186,14.265865,5.3955812,3.752448,8.31588,-6.254347,-25.126026,-13.912524,31.780157,36.664017,-1.4890347,15.425663,30.819931,-13.088823,-7.519395,34.12632,19.306934,-14.863786,-16.159899,20.187366,36.403793,-10.008752,-31.466732,0.14257145,18.838968,25.161335,11.693869,-15.080193,-4.0066967,5.9991517,-16.369812,-24.858707,-24.600647,-23.542274,6.5801067,32.95922,11.328024,-22.246569,-12.82345,26.212029,29.171825,-21.62814,-44.289173,8.139042,46.538002,20.941952,2.136424,6.3347206,-11.246661,-34.293365,-21.452524,16.630413,30.36184,13.35824,6.2566595,9.460466,8.374108,9.179375,-5.0598745,-32.89011,-30.955343,0.6922021,6.7921314,-22.979385,-28.96711,10.469659,45.27915,31.571373,-9.667221,-5.631912,30.439686,12.662642,-21.991453,-20.69602,-19.600616,0.15269184,27.71225,5.250535,-10.401058,14.264489,23.74717,11.00349,-0.73849106,4.994641,9.216696,-9.708492,-1.8696375,17.481586,-12.126802,-22.96086,12.816917,8.911145,-19.537426,-5.3618755,8.780701,-11.864304,null,-25.07344,19.389223,-3.6481752,-21.523699,19.32821,8.135464,-19.813017,6.564832,3.0250807,-19.863342,4.7871532,12.396332,-26.81927,-33.764935,11.33878,26.653965,-8.124596,-18.154549,-4.998912,-8.550068,-1.790268,-1.5438542,-31.943062,-29.895012,15.80999,29.745117,-2.8463693,-14.649763,23.302414,55.030125,37.34831,2.761014,3.2654572,30.317665,29.951952,8.297722,6.840015,16.171865,18.385962,2.2267218,-14.983252,18.028349,56.51091,35.839443,15.105006,29.480524,40.07134,36.89126,29.60248,33.27207,42.793854,37.684937,34.20057,39.122314,40.546295,36.259907,16.296822,3.6889925,19.107824,21.124817,1.6043773,-1.9284697,7.2394576,8.465015,0.23450208,-14.931921,-25.99836,-20.157701,-13.770941,-19.671291,-18.104149,-11.8251095,-8.056177,1.5539665,-8.539094,-27.368282,-19.206274,-14.660559,-16.437874,-14.333589,-22.166702,4.7074356,31.968592,-7.3145924,-20.81879,7.0466537,-7.797488,-19.082258,0.5303054,8.85833,-3.4767113,-34.28993,-24.31427,18.185589,-3.427827,-18.700382,22.127968,7.1846743,-22.084835,5.676875,null,-9.760351,1.0216157,25.789146,-2.1626425,-16.6137,9.407515,13.384886,-1.7823477,-3.05804,12.651136,13.661981,-8.138033,2.8524504,23.650455,0.8530834,-7.3067636,3.8392286,-5.915262,9.457022,19.173262,-22.610207,-13.472936,50.029457,38.17524,-13.820213,-0.8204284,25.792831,10.418694,-1.2504153,6.7393503,18.24243,28.364895,13.74189,-17.04705,-25.596973,-4.8756166,28.577667,32.048218,1.7225261,-2.7031012,11.900985,2.7611313,-18.728996,-32.95778,-22.91634,-12.30037,-39.467495,-56.897106,-36.640686,-22.246504,-26.20372,-24.705582,10.29546,31.540747,-19.869642,-50.71842,-20.92775,-23.448612,-34.554382,-9.794247,4.1800184,-2.6805787,-18.712524,-13.969946,17.287968,7.5377164,-15.013588,10.993219,17.792866,-21.371288,-36.266685,-2.2271972,27.863628,-0.2941661,-35.329117,-13.871915,6.9435,-10.40658,-23.749794,-19.075184,-12.56155,-16.268919,-10.772464,20.443909,23.674988,-10.780099,-6.9144154,20.427261,3.7187452,-18.444485,-9.96157,-4.374793,9.655601,26.218975,-0.4668107,-4.492111,44.14353,29.699522,-27.729378,-20.942001,null,-3.9632936,-4.6975174,24.467411,11.836544,-24.049023,-7.813752,10.479043,0.5591991,7.516865,15.706995,13.739917,14.637855,6.024502,5.7544346,7.5571527,-10.718132,-10.449199,-1.4268765,-6.592369,1.9353054,-14.822884,-43.487083,-3.244053,26.216389,-20.760777,-43.665955,-1.282773,36.00972,6.9659023,-41.023445,-21.37746,5.4052405,-10.272079,-6.171856,-6.3716307,-21.35239,-1.4301033,11.340599,5.4403057,6.639207,3.2404442,19.992184,22.553066,-14.157055,-2.4085617,23.73832,-14.222809,-45.42067,-27.6469,8.562145,22.393028,-9.680237,-16.160088,26.558386,37.848274,17.24248,11.179591,17.956997,16.23323,-1.3783624,0.969635,20.258081,0.9514532,-37.281586,-37.30424,3.078329,28.618382,-3.0565965,-22.300745,8.209746,2.4189475,-32.24688,-33.46354,-28.666012,-13.360895,9.386538,-16.936659,-34.975044,14.774849,37.285618,-3.6611614,-14.209873,13.757621,15.327797,11.250915,28.168116,23.91325,4.0286055,-2.475963,-21.52568,-26.705301,16.109493,25.498617,-12.979859,-0.078959465,33.11378,6.7392564,-10.656063,21.145588,27.559635,null,9.993866,-18.99424,-33.440613,10.273511,4.2379713,-26.481846,-14.255356,-24.088083,-34.877316,-2.7057629,9.831391,-1.2456493,-8.640301,-20.430313,-15.878422,0.79752064,5.1198826,-2.693361,-22.949635,-26.188965,-8.673012,-22.27318,-46.89629,-26.967838,21.900818,43.103508,2.5316572,-32.966457,-0.68863535,9.921156,-40.445198,-50.628803,-4.513723,24.685728,13.11253,-10.957666,-15.523703,-5.8768387,3.4104385,10.691532,5.1827736,-9.018278,-21.86821,-21.767467,-3.077886,-9.884989,-27.733065,8.0371475,35.213127,3.7846532,-18.027388,-12.168835,-2.8144789,-6.902728,-22.493145,-0.29584122,25.275038,4.2248244,8.04544,34.722378,24.027927,5.8062296,-5.950925,-1.047688,22.633272,13.726074,9.182877,37.734608,33.020172,21.019554,27.391745,4.244541,-9.63446,15.822286,30.169151,9.90067,-22.55965,-7.257798,40.31048,25.060665,-15.825365,-8.734482,5.649784,9.30972,8.1038265,-4.2667866,-2.4262104,4.879816,8.456718,20.232212,8.525812,-12.335869,-8.3332615,-1.63233,19.404808,30.412445,-6.69553,-9.803362,15.587903,-7.9292154,null,21.187408,14.008671,-14.7198515,-10.690794,-6.431508,-1.6542603,5.0031567,-2.2508564,-5.347723,-3.8159618,-0.76559734,8.589062,1.3759456,-12.428289,1.4681091,18.266407,1.4359393,-24.97689,-22.69681,-5.2433205,3.9409199,16.417282,19.4019,-1.1236954,0.47129107,26.413021,24.02404,0.66007376,-13.943692,-3.7380924,29.962646,22.20538,-20.717064,1.4371507,44.82684,14.044982,-24.217178,-1.9064848,36.54557,29.248404,-23.484629,-37.575745,9.020397,25.543072,2.7697015,2.8398685,19.753387,19.283358,-2.446743,-10.455008,6.13136,1.881506,-4.784008,22.562572,30.227951,10.244978,7.287833,1.4306846,-19.642601,-31.03685,-22.472473,1.9813752,16.336433,13.281853,14.903944,14.870201,12.198028,27.059303,42.660492,27.489689,-3.3558016,-1.3859234,28.4036,26.101881,-0.47277212,6.282278,29.825943,17.518562,-13.383851,-5.564998,16.810928,-9.037505,-33.240158,-7.1702075,9.306633,7.0242825,7.4812145,-9.786387,-11.512685,0.33987927,-19.048016,-20.010641,-0.527514,-10.186748,-12.413183,-15.569719,-25.678623,7.0056,11.647777,-25.56039,null,-0.73165655,-15.933526,2.3395884,15.866554,-19.29425,-16.04661,9.124905,-2.4711564,-0.33785582,7.101038,-5.5633163,6.2471027,23.381962,9.825478,-2.0852504,0.6506057,-1.872716,-6.7837777,2.3244033,10.48773,-3.6884468,-7.2218685,14.977494,15.6362915,-7.079873,-9.978374,8.432556,18.06068,4.8850384,-8.3055725,-7.6822996,-7.0648794,1.6373241,2.6712084,-32.68531,-45.787178,-1.1908922,30.510147,16.562826,-1.2083492,3.9231339,9.826414,-4.795089,-8.624489,4.1913614,1.5275784,7.644602,28.977484,21.322662,-1.7935228,-4.5198975,6.9787893,5.216674,-18.619642,-22.09256,0.88315487,-3.065271,-26.255348,-27.669363,-1.7515354,21.94298,-11.543702,-61.062653,-33.09472,12.262477,-5.0914507,-20.942553,1.0678391,4.990407,-13.509303,-5.0508194,18.118092,3.2587109,-32.72952,-30.293346,13.586227,36.245445,0.9942491,-26.618681,-3.3819485,6.769557,-6.186878,-2.8035898,-8.083456,-18.39235,-7.5188193,-0.5288911,2.211402,5.2755527,-11.58592,-16.699554,12.563404,22.200525,-10.445514,-28.813478,-7.0479374,6.136579,-11.632481,-19.156971,2.26181,null,-15.559696,-5.9360867,10.650162,8.381842,8.932431,6.3446407,-0.24931431,0.152668,0.57437706,17.943361,25.879221,-9.499911,-21.084263,2.4810865,0.7844269,-6.4306273,-0.22760582,8.163628,21.553497,19.407978,7.678276,4.008806,-4.394489,-3.8445168,4.892687,2.5842967,0.0007276535,-6.092328,-7.68744,7.0516634,7.7150497,-5.1933045,-7.2513695,2.5992813,9.621825,-12.7682295,-27.776365,0.3701687,2.941227,-29.301054,-30.765846,-6.4922037,12.781614,-0.039047718,-29.964403,-14.125416,7.269785,-22.30076,-45.480698,-34.4266,-15.393154,-12.004117,-40.525047,-55.817863,-38.603077,-30.465761,-11.61616,23.061525,21.409206,1.9474897,4.4087186,5.9986353,-10.266687,-11.754233,23.025276,40.062366,-0.72571564,-37.899616,-26.671413,-6.2505655,-7.9625983,-8.289373,21.230356,46.463478,26.7959,-3.791544,-11.922528,-3.395482,3.2525625,-17.363966,-28.379555,2.0997295,8.708891,-15.981715,-20.850126,-20.993305,-12.6437845,14.607363,26.839989,21.474354,2.9404092,-8.623856,4.9971905,-7.924076,-19.838745,15.021845,4.542584,-28.376118,6.0515227,21.790401,null,20.242365,0.9133043,5.4306636,-5.0160894,0.039073825,23.46305,4.6804414,-4.0038877,7.169815,-9.047825,-0.2164092,13.3175335,-12.29321,-3.6752927,17.880411,-10.581034,-26.957268,-6.296063,7.2585473,4.666147,6.7442303,32.885147,41.0494,-2.240213,-19.171495,16.911137,16.596928,-23.094006,-19.837759,15.701987,20.24976,0.7054081,-14.549839,-18.425888,-0.5770838,14.724014,5.586898,0.08904934,-9.811748,-27.905704,-9.216587,12.977749,2.6491032,14.832012,44.92289,46.965405,29.278069,6.2813015,4.674799,17.491259,9.405395,26.738356,60.565193,32.72203,5.3454037,25.827854,14.234334,-21.823765,-13.3943815,27.39235,43.327045,16.19285,4.1874256,23.319273,17.291128,0.14027214,-2.4788256,-10.713244,-12.88523,-15.011801,-26.96035,-19.380888,-4.0213795,-1.290689,-3.158986,-7.8043547,0.022049904,10.707779,-1.1011143,-12.13083,-11.603944,-13.2942705,-7.507303,9.961978,18.161,-1.096106,-14.969532,3.378264,9.425756,4.2999244,11.292558,-9.254218,-16.852753,24.935726,12.624132,-46.61686,-29.995646,28.255892,28.419704,-9.03369,null,0.39965105,0.40956235,-3.3904676,-8.965313,1.2356548,7.3605967,-4.816938,5.1513915,12.328617,-8.759321,4.593642,30.081749,6.972225,-15.851828,-7.8950267,5.624467,18.294321,17.144361,6.8793306,11.322576,11.103865,-5.048164,-0.5630982,20.07991,8.381313,-22.111858,-22.640354,-0.771682,13.380839,10.9622345,2.804636,8.262582,13.725799,8.015064,11.528463,-0.3145976,-38.946556,-31.920311,25.789373,40.38167,-0.12342167,-7.887004,29.532764,20.330711,-27.61078,-11.592749,24.191011,-2.276168,-19.94709,-0.30312765,2.7672386,8.36254,19.895607,5.4075737,-15.430624,-23.506948,-8.102362,18.22157,17.568638,21.32299,36.790504,11.345306,-11.331211,-2.9443216,-15.006028,-15.895677,7.8220487,-2.0826812,-15.5782,-0.23763764,4.9440403,4.3810115,9.158331,-4.575697,-10.193099,21.224594,32.029118,-1.371341,-5.205549,21.684643,12.906003,-8.1501045,-3.068347,2.5909457,-6.8467703,-10.668919,10.108695,12.704048,-22.53529,-10.919769,27.811577,-2.2585325,-28.197731,1.1844578,6.5778236,-5.344477,-2.7984447,-7.9078655,-3.83775,4.3582215,null,-8.86775,-5.5026793,-1.3294668,-4.050372,2.9296541,8.087564,-4.004654,-9.122028,2.499145,9.9402275,1.036618,-8.309891,3.0865154,-0.97128415,-26.895267,-5.3078375,26.268204,0.5245199,-12.582041,12.38556,17.701221,4.601823,-10.801163,-17.574099,-1.7283764,10.972006,1.8093076,-7.614202,-5.7899294,-14.774294,-25.195074,6.6145153,41.567677,31.541729,20.955341,12.701446,-7.4621134,-3.7450562,-1.4251294,-13.491083,-2.182735,8.912184,7.0457234,3.3163233,-12.164801,-9.75828,11.703463,21.87235,29.131178,7.118245,-31.632462,-7.0688734,30.569603,-1.3429677,-27.504475,9.626398,26.210518,-25.583578,-61.65809,-32.32362,-6.020913,-7.426755,8.546851,25.42074,11.105563,-7.1577306,-6.7081466,-1.5393085,-2.5563471,-1.0027409,4.018796,4.3434696,11.577413,31.328995,37.703136,7.9128447,-28.457142,-9.355154,31.920948,11.213298,-12.239889,18.844957,18.180174,-13.588417,-8.852469,-5.640311,-9.603018,9.413258,12.616367,-7.5424747,-16.529812,-3.3827057,1.8979702,-30.760908,-25.276543,36.75914,21.102346,-39.089806,-14.817506,25.002827,null,24.429646,-22.208622,-16.284584,0.942708,-11.934795,3.249073,21.102488,-2.7762585,-25.63042,-9.863059,15.574164,-1.3942893,-22.67479,4.5089865,10.47967,-15.441292,-4.8542147,-5.1711607,-33.35575,-23.010113,-3.910524,-6.737628,-4.7249675,-14.624829,-36.68218,-34.83918,-6.5619774,13.804889,-6.998273,-35.79554,-25.008627,-1.8817625,4.1559153,1.0734577,-0.8212948,-1.9592986,-15.515654,-15.206363,13.343437,13.028885,-6.8574247,1.3763123,-2.8139381,-28.934307,-17.246649,31.155632,36.686287,-22.591265,-36.64789,14.007669,8.514669,-23.792257,1.4543786,26.532879,24.989784,18.075104,7.214584,12.508291,7.792244,-17.412895,-14.293566,-0.70185685,-4.128373,-7.737105,-13.061888,-14.558824,-11.632694,-13.032014,-5.62292,5.6564302,3.6266716,-11.362181,-22.157536,-24.649944,-39.76165,-31.013702,15.2851925,12.537321,-19.307499,-7.2299976,1.2794502,-4.6727676,-5.3659973,-17.36781,-4.3130503,12.287447,-11.2584915,-3.5822973,28.58544,3.8254876,-30.188293,-8.637041,26.29516,18.17783,-13.718014,-14.849614,6.5421076,1.9900122,-23.420584,-7.846246,null,-13.545605,3.530569,9.300661,-8.467581,-10.893339,0.13509226,1.2307429,14.508841,8.416149,-18.863466,-8.368486,0.98994875,-14.47016,-9.834532,5.0396733,10.639835,-5.9788365,-14.73929,24.694407,18.514713,-35.8542,-11.173505,26.04397,7.8187246,11.014485,12.010179,-9.023071,3.170189,24.375662,21.206526,1.0391006,-19.044308,-16.96034,-8.009927,-5.171342,-3.7395058,-6.9479766,-1.9166718,7.174575,12.3924,22.524872,18.670559,-4.6971583,-27.630733,-25.847216,3.1381521,-4.0947595,-30.271286,1.8514013,10.827819,-39.82778,-34.754417,14.042242,21.01354,-7.292858,-23.87141,6.249546,37.830513,25.492575,12.67624,1.5267081,-22.501778,-21.76939,-0.47046947,12.702419,6.65341,-7.1744375,0.72099113,5.9781666,0.56001663,22.770714,24.987984,-22.966326,-40.883167,-2.7059252,30.966393,14.588387,-23.249397,-16.342909,16.807705,22.702456,14.453499,5.5428753,0.32359076,2.7749934,-6.0400968,-6.09394,11.349181,4.3319407,-5.2838016,5.073969,-4.3087406,-10.070007,11.736029,5.459905,-22.233894,-15.119368,4.1872225,-0.5627394,-7.9844503,null,-28.921473,1.5089688,7.947916,-11.242061,2.111267,0.6113577,-27.750303,-16.384312,6.379186,-7.6412725,-16.04486,-0.76119936,7.300303,3.9265656,-0.62796307,-5.5336947,-12.045437,-9.270444,9.963365,22.98308,18.536833,2.6790981,-18.495274,-7.097475,27.177288,19.106915,-6.122225,-15.074454,-31.470524,-18.298016,15.445757,-2.6523728,-26.716234,-9.384045,2.886243,2.6596632,13.076047,24.008005,6.114657,-24.356224,-9.62869,17.23332,9.442576,8.804922,10.146123,3.3271666,13.309764,3.9134955,-5.4460993,22.08927,20.207481,-4.9862957,0.52881336,3.4218578,-3.9855626,6.6914415,20.78523,10.509012,-6.538965,3.9252338,2.6152458,-19.195011,0.005414009,17.636927,-1.1920257,6.151244,22.13632,8.55652,-9.660409,-11.085165,10.208553,20.880058,20.83343,29.340342,-2.228056,-26.485357,12.923682,22.289392,7.754551,18.86611,0.85103345,-11.327599,10.548609,7.5779676,-7.5867634,-15.828167,-12.696946,-0.5567293,-15.1470785,-8.686755,28.574308,13.104615,-8.703653,8.378768,6.594434,-7.566019,-23.12223,-22.466694,27.817638,32.86435,null,3.2935743,-32.170223,-1.3840446,20.317432,0.5577035,3.1273973,12.454478,-2.2049596,-18.889462,-8.970299,13.674245,-6.2552347,-29.110699,-1.3763466,2.7783198,-15.552755,7.08989,24.051502,7.2687426,-20.08312,-26.609798,10.7618,19.974134,-17.56107,-26.382656,-21.533695,-16.236807,4.5843835,3.898468,-7.4413652,-8.86019,-6.5615616,0.15411091,-10.802776,0.60809326,39.367287,9.034435,-32.129875,-6.469896,-1.3147624,-15.849112,-1.2174473,5.371709,7.5155087,13.322216,1.5120592,-14.186246,-13.877012,-3.2971025,-15.062382,-31.135109,-8.23666,-0.47929573,-22.679413,-17.95942,-16.69569,-28.903961,-13.965274,3.678587,9.4604645,7.4006314,-13.34732,-30.118685,-26.606297,-11.362981,-1.0233626,-7.5431423,-7.851531,-4.462738,-10.747377,2.8914242,12.663362,-10.109014,-20.251373,-22.538576,-30.940252,-3.779872,20.26718,-10.863159,-36.90091,-23.765919,-11.176006,-3.3710728,7.016277,1.2399895,-9.327181,-2.0611796,2.7682843,-8.808664,-15.367388,-14.316149,-13.119533,-1.7392049,7.5342307,0.86978006,-3.4623718,-8.315898,-19.624153,-6.941207,21.589668,null,7.6707153,1.4205995,3.4675205,5.7375393,-2.5294294,0.8792155,7.2830906,7.4298334,0.17041397,-12.958358,3.50986,31.48204,8.032733,-23.069803,-4.9481378,11.515078,3.855866,4.3001823,2.7301855,-7.565894,-10.003567,-10.002491,-0.17159271,27.117233,24.527416,-20.577118,-30.365042,15.188098,38.246788,13.705908,-9.075138,-4.4037237,0.59766006,-14.526634,-16.268047,-1.734828,-13.343695,-21.287594,6.8973064,21.495235,2.0835595,-14.675139,-6.5651083,2.684341,-8.790358,-1.9101238,18.870174,0.6119721,-17.232718,0.8627157,16.618214,15.067783,-0.7077913,-11.151228,-12.435995,-27.539433,-22.168798,0.7055807,0.14774036,6.580657,0.85954165,-21.89543,7.102135,27.064919,-9.950753,-28.768034,-27.111439,-9.273302,30.174057,28.025492,-7.9256706,-28.884096,-27.366129,0.71136475,14.742304,-2.2473137,-7.3222265,-3.5802789,-2.1678348,5.744787,7.265477,-5.5099525,-18.732458,-2.9023223,22.210346,3.3497095,-16.267754,9.875789,22.201778,-5.282129,-11.258657,26.769924,33.277813,-15.94892,-21.835018,20.280277,26.649216,14.269627,-0.33750343,-16.516232,null,23.396168,11.434355,-15.012995,-1.5907907,2.2598147,6.11846,20.331652,11.287331,1.7561893,-4.411021,-5.9117236,12.70675,6.189207,-14.623653,0.8680773,13.342926,4.573791,2.7129383,-3.6936774,-8.915537,9.972282,22.70974,-0.20456314,-23.891188,-16.654495,7.4787703,30.795675,28.309,0.99876285,-8.314613,-2.5885315,6.8175535,24.562248,16.295334,1.0620787,7.635724,-10.93725,-32.591618,-16.595398,1.128314,16.808304,21.961533,5.6436462,9.374813,15.241325,-3.8176167,-13.511575,-8.284417,9.184947,21.77359,-3.859991,-27.571972,-19.349663,-9.854925,-0.54059887,8.79405,3.3875751,-6.8944454,-7.7444406,2.7714777,9.847311,8.2371235,11.179896,6.3555727,-5.154166,10.496946,32.77582,14.159346,-21.201088,-24.637829,-6.5480046,2.706103,10.5447855,30.243958,32.0531,-16.660292,-56.471786,-11.684768,41.775227,20.29757,-3.4582665,4.641305,-3.6425252,-7.1138654,4.1718,2.7597513,5.325411,6.1548586,-6.182525,-1.9689014,8.917839,8.297634,14.595805,16.569582,3.9350755,3.483282,17.159359,18.916332,-3.577633,-24.780518,null,-9.319767,-7.693507,-11.037605,-8.134152,-0.51020503,4.3964553,4.1100206,-11.341441,-16.859802,-2.1837249,-3.749566,-17.953033,-10.522393,8.881364,2.343997,-12.647299,8.857553,9.579287,-44.428158,-42.193687,21.13624,30.45557,4.2467656,-0.6532388,-2.8941355,0.4907012,13.467388,16.64966,10.5156555,-1.9256847,-14.394489,-12.065379,-0.39168453,1.6911082,-6.797324,-5.2823634,11.54119,14.269402,-7.778165,-14.218172,5.352267,1.6545477,-21.68546,-16.032806,3.1150913,6.1081843,-1.9353814,-9.632448,4.4302225,21.526073,6.953005,-2.55899,15.826485,30.545574,30.568953,20.347029,13.857479,16.25447,11.05571,5.470126,1.9166946,-0.44976425,15.830164,19.381847,-5.393894,-7.339652,6.689073,-0.7287035,-6.4476595,7.686544,25.804379,27.725687,-0.30840158,-32.68488,-18.897076,31.123753,45.112198,-0.47939813,-44.134346,-26.430468,25.341494,33.468147,9.245467,12.11157,14.673735,8.78372,19.626877,4.9072933,-15.012239,2.5674696,0.3968563,-14.33459,-3.1935253,1.4615138,13.101392,23.32487,-6.831556,-20.628809,4.5589204,14.344496,null,-18.866192,-12.052103,10.693001,6.5093055,-16.209991,-7.1917725,7.3537197,3.8007362,11.624481,13.578425,6.247188,13.197582,10.431246,5.3744984,16.29592,6.856988,-21.218975,-26.26785,2.0642128,29.340834,12.55883,-15.165703,-7.421072,5.2723227,11.828486,18.297028,-5.20675,-28.135727,-0.74783325,32.971905,30.16236,11.574874,-12.163734,-28.855825,-11.587663,11.778448,5.2063413,-1.7130976,7.9136486,9.291007,3.7559147,7.957714,8.259044,-18.529379,-42.676186,-21.057877,9.14502,12.507964,10.6630745,0.1681714,-2.535935,27.443312,35.59085,13.30958,15.086811,20.50771,11.035839,14.247423,10.96693,-13.122563,-20.31977,-3.1304197,4.539914,-5.879323,-13.941734,-10.884047,-2.8521516,8.498526,20.580173,13.6225395,-13.295247,-20.072762,-8.241172,-10.79523,-3.6557941,12.712761,3.1253633,-0.70403814,14.063779,14.546686,6.2865224,-5.271256,-13.927393,-10.978178,-12.308382,-2.9263985,16.566833,13.107492,0.40134525,-13.261083,-16.656563,5.407166,-1.47856,-23.496155,-0.77911043,6.898281,-11.3804,2.8193974,14.162827,6.9510183,null,-6.424366,0.99130535,-1.964978,4.268263,-6.500729,-13.156023,7.150235,0.5111878,-15.592283,-10.626984,-11.023417,0.5740428,3.876419,-12.825986,14.457495,32.069366,-13.223491,-22.420341,18.929129,29.164219,-2.0975814,-35.37522,-32.392426,-7.9341908,11.0266075,42.266113,51.57872,6.299435,-25.547104,-14.89892,-3.8447251,3.0381665,10.65595,9.435663,10.487295,16.134047,9.525217,-3.511713,-4.9528236,-0.864645,-7.1604366,-11.537281,13.249653,33.922287,-3.357111,-41.966717,-21.606808,-4.284484,-15.285036,-12.267229,-7.5519166,-11.397609,-15.937689,-26.077206,-11.563705,21.299425,17.63705,-1.672925,1.8119454,0.4244392,-18.358322,-26.413197,-10.523622,13.204316,23.692867,21.133135,8.694162,-19.4851,-35.64095,-15.54491,-1.14151,-2.4922981,16.817068,14.366293,-27.767776,-32.50345,-4.7945986,8.237347,14.1708355,-10.874572,-43.101402,-10.394524,31.770693,17.377275,-6.3138638,-5.6281457,5.761235,8.832317,0.25582838,2.680465,9.30867,4.728117,11.969042,22.483334,2.8247128,-20.358915,-4.222786,19.482916,-4.7074847,-34.16024,null,7.2852345,1.6530151,-11.899237,-2.3844354,10.297032,1.320766,-6.0288525,4.325306,11.200393,13.037032,19.60166,14.934557,10.495332,19.092285,7.9563107,-2.918387,16.586937,13.923704,-17.539314,-36.658165,-38.898014,-4.305485,36.15296,16.419699,-18.942326,-28.824085,-31.596355,-2.247056,39.55726,33.01541,4.069318,-6.5555477,-6.689986,-4.870532,-1.2231617,12.311735,29.214056,20.852146,0.19814157,1.5612104,0.2837627,-22.64233,-21.968338,5.3112464,13.417845,10.802771,12.420881,2.6096675,-4.1020994,8.748553,27.401846,28.272667,1.5921478,-12.152931,6.6271877,4.5557775,-20.855734,-20.989872,-10.581295,-11.53134,-4.4175644,5.0147343,-1.2464223,-10.73227,-12.671198,-13.967754,-15.564505,-7.4735346,9.071016,8.9262085,-9.264208,-12.075084,-9.779861,-20.970232,-12.034456,12.813246,25.547117,31.271461,10.134079,-20.460869,-13.132542,-4.5514293,-2.395101,18.438461,9.073517,-19.388718,-16.660809,-6.270152,8.991705,16.44468,-9.422165,-8.822872,21.657879,6.983624,-25.005728,-12.0881405,10.964362,-8.34433,-32.481422,-2.938923,null,-0.26974332,1.3770366,0.06539297,-10.226562,-6.2272525,8.856239,5.316929,-4.311123,-3.324614,-7.91817,-9.484985,3.9333327,7.1665688,-5.1641984,-20.920095,-26.037876,3.5893745,25.630693,0.86421824,1.6498799,31.209574,3.0557117,-36.500755,-13.411219,14.722889,8.230167,-1.279038,-9.2208605,-13.465483,5.7167263,24.145523,10.058435,-5.883496,-0.8668175,-8.249291,-24.465548,-9.261137,9.233503,-7.6456103,-12.765806,13.375466,8.539522,-18.98452,-8.9560175,7.6122894,-7.934181,-20.155235,-15.570261,-19.386005,-29.262695,-23.031687,-7.0815964,-9.83761,-27.507053,-35.949688,-30.738817,-11.802072,8.478281,2.7106056,-24.099125,-35.43209,-19.001774,-5.211881,-6.445504,-1.2403388,1.2209513,-5.174673,4.716094,18.905563,16.286743,-0.34870005,-17.454113,3.436264,39.657883,20.16151,-22.625343,-28.389202,-11.506226,7.149927,13.49525,0.6117897,-17.697605,-23.420898,-0.71270704,15.566347,-12.257817,-26.91039,4.948349,19.447443,-5.1477337,-16.56258,1.2142963,5.009233,-11.231119,-2.2300205,22.79726,15.762053,-10.959963,-11.460813,6.504777,null,-26.405382,-5.177394,3.92689,-3.3217678,-3.1860614,5.0455594,-4.28871,-23.270157,-14.200887,0.117272854,-1.9896374,-0.64244556,-8.183027,-14.387943,0.30470943,0.30643964,-9.699901,-9.740604,-25.925102,-31.716124,5.7743907,23.894434,-17.942343,-51.53754,-31.940937,-11.077876,-11.661042,-5.70049,-4.195607,-11.43104,-13.820029,-17.843304,-9.675276,6.0535946,4.3491015,2.2200973,-3.250695,-22.158527,-25.555407,-19.813536,-17.87158,-4.854489,7.154254,12.597389,18.843536,16.338436,12.012746,12.321597,9.446722,10.294504,14.139213,5.906678,-7.11059,-1.8387375,11.907618,6.1176167,-1.7362914,6.495095,-0.11983585,-20.99164,-14.733878,12.3011,20.11022,10.378546,8.703508,3.1225193,-12.467334,-6.7498436,5.5283,-4.3032327,-2.8907108,14.44989,17.593895,26.703974,41.35437,16.687502,-21.089249,-6.664795,26.57999,11.131863,-9.922185,14.492074,29.070763,8.186969,-1.9353907,2.3417883,4.163584,2.0292923,-8.813815,-6.9611273,7.81928,-5.2302227,-23.358986,-5.462502,10.550082,-2.5760474,-11.541332,3.0871134,13.299864,-10.6126,null,-14.818363,10.785401,21.635817,3.208631,-9.077488,-2.4840398,8.219218,8.346422,1.4492769,9.954095,21.323105,7.4554815,-7.128329,-2.1830564,8.368182,20.464668,14.222614,-9.870003,-2.2580094,23.072628,18.372086,12.801365,32.271408,39.484478,9.672918,-20.344002,-11.927475,0.5369053,-4.632484,8.717161,22.264444,10.439344,-1.624095,-21.00351,-34.39008,-7.4855933,14.047496,1.595222,-7.3875046,-4.471551,1.6578474,10.138468,12.744318,7.3271694,0.5291867,4.6484747,22.289936,35.499878,26.880823,5.369211,1.8664412,11.761801,4.840424,-7.46978,-12.439869,-16.761904,-16.5837,-16.297728,-4.9486785,18.6757,18.235716,9.53295,12.368604,-2.820897,-17.028248,-14.743906,-17.904446,-7.652129,9.867995,7.694128,5.9482565,0.6764555,-14.965731,-6.814578,15.431515,20.063438,17.514618,1.5726426,-36.5356,-38.276043,10.844998,25.778263,-0.8208771,-7.9280033,-6.9254217,-3.741163,6.78236,-5.944292,-10.384842,12.436483,5.957882,-18.337992,-17.033092,-5.37398,-3.871933,-16.215405,-21.554245,-10.862016,-6.933302,-0.65212774,null,-9.568155,-7.1809664,5.445109,14.381004,-8.066343,-19.818256,10.740408,16.17104,-11.161877,-8.505636,12.402241,19.465935,11.161922,-1.6422055,6.941313,17.075907,1.611737,-1.8854471,14.324303,15.827899,7.434953,-2.8148088,-15.96624,-8.062448,20.223234,32.719227,18.672562,-9.448437,-27.08208,-10.365736,5.1712294,-6.616893,3.4476032,28.70705,18.167353,-2.1502223,-6.9210033,-7.0303936,-3.6983132,-3.5018282,5.4392676,21.66158,13.467785,-3.8210735,-14.386757,-23.001385,-8.65196,6.594345,-11.1418705,-31.487968,-29.824755,-14.356878,-2.9697933,-1.8405943,9.662704,25.21472,21.951061,11.219633,10.259874,14.642944,0.9426966,-17.330004,-3.5619097,3.6190124,-14.398793,-9.094534,0.8168874,-1.7994375,7.859189,2.135137,-5.624998,23.633537,36.070248,8.952092,-6.9993477,-6.331586,-13.104324,-23.874275,-17.657074,1.9780736,5.569665,0.8913038,5.7515345,-0.37878036,-11.194989,-4.530417,-4.0426464,-16.13474,-17.2083,-16.125141,-12.907281,7.5951786,19.123777,8.77725,0.15699387,-2.7590613,-2.8139257,-5.96521,-12.27986,1.8175132,null,8.821315,-6.9378667,-24.490543,-2.3872962,9.839512,-8.069725,-11.998741,-3.3194208,8.43961,8.628283,-15.034464,-19.252298,2.6293383,5.0241804,-8.650516,-10.340307,2.0924628,9.05736,-5.2396135,-14.383101,3.3200555,17.91877,13.223264,1.7483172,-11.7692175,-10.966259,1.4622254,-1.9160435,-0.40731287,13.968682,2.5227787,-20.365698,-30.386143,-27.103516,5.3938093,23.416595,-6.1121325,-20.020092,-7.562954,-7.1640787,-17.682304,-32.778435,-26.390587,-4.8149934,-12.748927,-20.770689,-8.249193,-4.4486723,4.53258,20.839338,24.426254,17.59363,9.269216,21.89618,30.881525,1.0021073,-12.782087,-0.46502018,-13.502888,-23.8861,-9.065556,3.0201788,7.6716986,3.3316329,-1.7780952,3.19409,2.8544264,7.210308,25.446886,23.273857,-0.22185516,-7.2462316,1.2595882,-6.6219664,-30.739592,-28.627386,8.517326,25.856524,6.134654,-11.669897,-16.813944,-8.095364,7.6940064,-2.8464582,-12.448259,6.6480227,5.788122,-2.0599837,13.258073,4.7005186,-12.154419,-2.03279,-0.11683226,-0.17200565,12.73924,9.841521,-5.285216,-11.887954,-10.822313,-15.473749,null,22.50724,-0.7746408,-11.558287,-8.095322,21.629505,23.103817,-3.6179717,1.0686903,22.358068,28.949623,2.0818973,-29.32608,-6.543082,11.532564,-18.558842,-18.369766,17.61169,32.599106,16.251675,-18.980333,-26.379614,7.461112,23.621876,15.237875,21.772194,31.409698,16.545218,-8.782389,-17.031956,-13.179077,-11.135635,-4.259431,-3.2695546,-13.453448,-1.8154622,16.505537,2.8268518,-5.2557497,9.443495,13.044411,14.400111,7.204446,-16.722446,-12.802601,0.3031206,-13.129873,-18.285759,-14.393276,-10.924168,-0.7265854,-7.8287973,-14.736376,-8.909557,-17.55674,-15.594135,-6.176114,-10.437999,8.009138,23.67381,11.74473,13.715906,8.980533,-3.5603275,8.922456,0.45658302,-18.187586,5.1273603,17.2,-3.143122,-8.8807,-10.903296,-19.938976,-12.472612,5.078803,15.768061,11.893221,0.0057783127,3.3629913,8.416019,-2.3378315,-0.038339138,5.90921,-7.712998,-4.111745,14.136279,7.948505,-3.8241878,7.6128526,30.086288,22.597227,-6.831485,6.3105397,28.887325,3.663478,-11.59217,6.0036006,20.25297,16.763088,-10.252073,-11.249334,null,-4.631641,8.759264,15.425547,1.6844311,-20.75253,2.5943282,32.573338,1.1597042,-25.494625,-4.4727535,16.165321,14.462385,3.193147,3.7034822,7.5077505,1.5115185,8.865038,16.239407,6.843014,5.6504297,2.4640517,-7.7920475,-1.5250788,5.894415,3.183487,0.9923394,4.0073266,22.554436,29.090183,0.10228896,-4.441839,26.51207,23.295088,3.3531604,5.7779155,-3.2617135,-10.321985,0.06149721,-12.453212,-18.349634,5.351285,7.884158,-0.20666504,7.795767,16.535515,24.157085,14.684921,-0.627511,7.425051,1.5328054,-13.991285,-1.4575062,1.3572178,-5.8798614,5.890359,2.4857054,-16.089504,-23.36642,-24.472807,-6.312702,14.679534,-1.7981095,-17.57016,3.760785,23.73514,23.148867,15.298285,3.8543673,-0.6136341,2.1385846,0.13690567,-2.4542937,-2.743041,-3.5212932,-10.448908,-21.540806,-10.293157,16.13475,25.239658,25.289999,17.51921,0.48201084,-3.1714454,-0.9432752,2.5990567,12.727144,15.599569,16.062237,5.933371,-7.6849365,9.873795,18.867552,4.7797875,6.988538,4.114647,5.905141,10.966295,-19.361723,-15.243983,19.221844,null,-15.289883,-16.786194,7.0070596,7.5308084,5.667348,-3.3920808,-18.082397,-5.9303894,-1.2724895,-9.616746,-5.709219,-9.126924,-15.125063,-14.989262,-11.829748,0.23312473,-4.192745,-22.177786,-16.438354,0.5254259,1.0233068,-15.532796,-24.250566,-7.7903557,2.3757803,-7.740204,-14.104083,-13.497,-3.4791121,12.359846,8.045522,-10.3201065,-13.403924,-5.575809,-11.46021,-20.967833,-2.9276898,21.226204,12.589014,-1.2825422,8.185066,8.159785,-9.479581,-7.633517,6.631587,5.007149,-3.573403,-14.587413,-19.716696,-2.8444529,0.7261052,-23.653229,-28.660656,-13.761425,-8.68394,-7.2992563,-4.747574,-1.7484326,1.296005,1.1803274,9.30997,18.119259,5.481738,-10.968692,-15.294125,-22.258411,-22.82647,-7.9690933,-2.48666,-4.73106,1.9407473,4.1582456,1.2955999,-1.7069428,-5.349593,10.147795,24.572578,7.097792,-6.9862437,-3.9877343,-3.397059,0.9379492,-0.07513952,-10.797924,-10.016541,7.818962,25.27314,13.175222,-6.4655037,7.337887,14.869001,-5.6368127,-17.248777,-9.506523,13.960283,15.958086,-16.797058,-13.065236,18.553864,9.764763,null],"type":"scatter","name":"Im{S(t)}","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[4.184,4.188,4.192,4.196,4.2,4.204,4.208,4.212,4.216,4.22,4.224,4.228,4.232,4.236,4.24,4.244,4.248,4.252,4.256,4.26,4.264,4.268,4.272,4.276,4.28,4.284,4.288,4.292,4.296,4.3,4.304,4.308,4.312,4.316,4.32,4.324,4.328,4.332,4.336,4.34,4.344,4.348,4.352,4.356,4.36,4.364,4.368,4.372,4.376,4.38,4.384,4.388,4.392,4.396,4.4,4.404,4.408,4.412,4.416,4.42,4.424,4.428,4.432,4.436,4.44,4.444,4.448,4.452,4.456,4.46,4.464,4.468,4.472,4.476,4.48,4.484,4.488,4.492,4.496,4.5,4.5040000000000004,4.508,4.5120000000000005,4.516,4.5200000000000005,4.524,4.5280000000000005,4.532,4.5360000000000005,4.54,4.5440000000000005,4.548,4.5520000000000005,4.556,4.5600000000000005,4.564,4.5680000000000005,4.572,4.5760000000000005,4.58,4.58,5.0440000000000005,5.048,5.0520000000000005,5.056,5.0600000000000005,5.064,5.0680000000000005,5.072,5.0760000000000005,5.08,5.0840000000000005,5.088,5.0920000000000005,5.096,5.1000000000000005,5.104,5.1080000000000005,5.112,5.1160000000000005,5.12,5.1240000000000006,5.128,5.132000000000001,5.136,5.140000000000001,5.144,5.148000000000001,5.152,5.156000000000001,5.16,5.164000000000001,5.168,5.172000000000001,5.176,5.180000000000001,5.184,5.188000000000001,5.192,5.196000000000001,5.2,5.204000000000001,5.208,5.212000000000001,5.216,5.220000000000001,5.224,5.228000000000001,5.232,5.236000000000001,5.24,5.244000000000001,5.248,5.252000000000001,5.256,5.260000000000001,5.264,5.268000000000001,5.272,5.276000000000001,5.28,5.284000000000001,5.288,5.292000000000001,5.296,5.300000000000001,5.304,5.308000000000001,5.312,5.316000000000001,5.32,5.324000000000001,5.328,5.332000000000001,5.336,5.340000000000001,5.344,5.348000000000001,5.352,5.356000000000001,5.36,5.364000000000001,5.368,5.372000000000001,5.376,5.380000000000001,5.384,5.388000000000001,5.392,5.396000000000001,5.4,5.404000000000001,5.408,5.412000000000001,5.416,5.420000000000001,5.424,5.428000000000001,5.432,5.436000000000001,5.44,5.44,5.904,5.9079999999999995,5.912,5.9159999999999995,5.92,5.9239999999999995,5.928,5.9319999999999995,5.936,5.9399999999999995,5.944,5.9479999999999995,5.952,5.9559999999999995,5.96,5.9639999999999995,5.968,5.9719999999999995,5.976,5.9799999999999995,5.984,5.9879999999999995,5.992,5.9959999999999996,6.0,6.004,6.008,6.012,6.016,6.02,6.024,6.028,6.032,6.036,6.04,6.044,6.048,6.052,6.056,6.06,6.064,6.068,6.072,6.076,6.08,6.084,6.088,6.092,6.096,6.1,6.104,6.108,6.112,6.116,6.12,6.124,6.128,6.132,6.136,6.14,6.144,6.148,6.152,6.156,6.16,6.164,6.168,6.172,6.176,6.18,6.184,6.188,6.192,6.196,6.2,6.204,6.208,6.212,6.216,6.22,6.224,6.228,6.232,6.236,6.24,6.244,6.248,6.252,6.256,6.26,6.264,6.268,6.272,6.276,6.28,6.284,6.288,6.292,6.296,6.3,6.3,6.764,6.768,6.772,6.776,6.78,6.784,6.788,6.792,6.796,6.8,6.804,6.808,6.812,6.816,6.82,6.824,6.828,6.832,6.836,6.84,6.844,6.848,6.852,6.856,6.86,6.864,6.868,6.872,6.876,6.88,6.884,6.888,6.892,6.896,6.9,6.904,6.908,6.912,6.916,6.92,6.924,6.928,6.932,6.936,6.94,6.944,6.948,6.952,6.956,6.96,6.964,6.968,6.972,6.976,6.98,6.984,6.988,6.992,6.996,7.0,7.0040000000000004,7.008,7.0120000000000005,7.016,7.0200000000000005,7.024,7.0280000000000005,7.032,7.0360000000000005,7.04,7.0440000000000005,7.048,7.0520000000000005,7.056,7.0600000000000005,7.064,7.0680000000000005,7.072,7.0760000000000005,7.08,7.0840000000000005,7.088,7.0920000000000005,7.096,7.1000000000000005,7.104,7.1080000000000005,7.112,7.1160000000000005,7.12,7.1240000000000006,7.128,7.132000000000001,7.136,7.140000000000001,7.144,7.148000000000001,7.152,7.156000000000001,7.16,7.16,7.6240000000000006,7.628,7.632000000000001,7.636,7.640000000000001,7.644,7.648000000000001,7.652,7.656000000000001,7.66,7.664000000000001,7.668,7.672000000000001,7.676,7.680000000000001,7.684,7.688000000000001,7.692,7.696000000000001,7.7,7.704000000000001,7.708,7.712000000000001,7.716,7.720000000000001,7.724,7.728000000000001,7.732,7.736000000000001,7.74,7.744000000000001,7.748,7.752000000000001,7.756,7.760000000000001,7.764,7.768000000000001,7.772,7.776000000000001,7.78,7.784000000000001,7.788,7.792000000000001,7.796,7.800000000000001,7.804,7.808000000000001,7.812,7.816000000000001,7.82,7.824000000000001,7.828,7.832000000000001,7.836,7.840000000000001,7.844,7.848000000000001,7.852,7.856000000000001,7.86,7.864000000000001,7.868,7.872000000000001,7.876,7.880000000000001,7.884,7.888000000000001,7.892,7.896000000000001,7.9,7.904000000000001,7.908,7.912000000000001,7.916,7.920000000000001,7.924,7.928000000000001,7.932,7.936000000000001,7.94,7.944000000000001,7.948,7.952000000000001,7.956,7.960000000000001,7.964,7.968000000000001,7.972,7.976000000000001,7.98,7.984000000000001,7.988,7.992000000000001,7.996,8.0,8.004000000000001,8.008000000000001,8.012,8.016,8.020000000000001,8.020000000000001,8.484,8.488,8.491999999999999,8.496,8.5,8.504,8.508,8.512,8.516,8.52,8.524,8.528,8.532,8.536,8.54,8.544,8.548,8.552,8.556,8.56,8.564,8.568,8.572,8.576,8.58,8.584,8.588,8.592,8.596,8.6,8.604,8.608,8.612,8.616,8.62,8.624,8.628,8.632,8.636,8.64,8.644,8.648,8.652,8.656,8.66,8.664,8.668,8.672,8.676,8.68,8.684,8.688,8.692,8.696,8.7,8.704,8.708,8.712,8.716,8.72,8.724,8.728,8.732,8.736,8.74,8.744,8.748,8.752,8.756,8.76,8.764,8.768,8.772,8.776,8.78,8.784,8.788,8.792,8.796,8.8,8.804,8.808,8.812,8.816,8.82,8.824,8.828,8.832,8.836,8.84,8.844,8.848,8.852,8.856,8.86,8.864,8.868,8.872,8.876,8.88,8.88,9.344,9.347999999999999,9.351999999999999,9.356,9.36,9.363999999999999,9.367999999999999,9.372,9.376,9.379999999999999,9.383999999999999,9.388,9.392,9.395999999999999,9.399999999999999,9.404,9.408,9.411999999999999,9.415999999999999,9.42,9.424,9.427999999999999,9.431999999999999,9.436,9.44,9.443999999999999,9.447999999999999,9.452,9.456,9.459999999999999,9.463999999999999,9.468,9.472,9.475999999999999,9.479999999999999,9.484,9.488,9.491999999999999,9.495999999999999,9.5,9.504,9.508,9.511999999999999,9.516,9.52,9.524,9.527999999999999,9.532,9.536,9.54,9.543999999999999,9.548,9.552,9.556,9.559999999999999,9.564,9.568,9.572,9.575999999999999,9.58,9.584,9.588,9.591999999999999,9.596,9.6,9.604,9.607999999999999,9.612,9.616,9.62,9.623999999999999,9.628,9.632,9.636,9.639999999999999,9.644,9.648,9.652,9.655999999999999,9.66,9.664,9.668,9.671999999999999,9.676,9.68,9.684,9.687999999999999,9.692,9.696,9.7,9.703999999999999,9.708,9.712,9.716,9.719999999999999,9.724,9.728,9.732,9.735999999999999,9.74,9.74,10.204,10.208,10.212,10.216000000000001,10.22,10.224,10.228,10.232000000000001,10.236,10.24,10.244,10.248000000000001,10.252,10.256,10.26,10.264000000000001,10.268,10.272,10.276,10.280000000000001,10.284,10.288,10.292,10.296000000000001,10.3,10.304,10.308,10.312000000000001,10.316,10.32,10.324,10.328000000000001,10.332,10.336,10.34,10.344000000000001,10.348,10.352,10.356,10.360000000000001,10.364,10.368,10.372,10.376000000000001,10.38,10.384,10.388,10.392000000000001,10.396,10.4,10.404,10.408000000000001,10.412,10.416,10.42,10.424000000000001,10.428,10.432,10.436,10.440000000000001,10.444,10.448,10.452,10.456000000000001,10.46,10.464,10.468,10.472000000000001,10.476,10.48,10.484,10.488000000000001,10.492,10.496,10.5,10.504000000000001,10.508000000000001,10.512,10.516,10.520000000000001,10.524000000000001,10.528,10.532,10.536000000000001,10.540000000000001,10.544,10.548,10.552000000000001,10.556000000000001,10.56,10.564,10.568000000000001,10.572000000000001,10.576,10.58,10.584000000000001,10.588000000000001,10.592,10.596,10.600000000000001,10.600000000000001,11.064,11.068,11.072,11.076,11.08,11.084,11.088,11.092,11.096,11.1,11.104,11.108,11.112,11.116,11.12,11.124,11.128,11.132,11.136,11.14,11.144,11.148,11.152,11.156,11.16,11.164,11.168,11.172,11.176,11.18,11.184,11.188,11.192,11.196,11.2,11.204,11.208,11.212,11.216,11.22,11.224,11.228,11.232,11.236,11.24,11.244,11.248,11.252,11.256,11.26,11.264,11.268,11.272,11.276,11.28,11.284,11.288,11.292,11.296,11.3,11.304,11.308,11.312,11.316,11.32,11.324,11.328,11.332,11.336,11.34,11.344,11.348,11.352,11.356,11.36,11.364,11.368,11.372,11.376,11.38,11.384,11.388,11.392,11.396,11.4,11.404,11.408,11.412,11.416,11.42,11.424,11.428,11.432,11.436,11.44,11.444,11.448,11.452,11.456,11.46,11.46,11.924,11.927999999999999,11.931999999999999,11.936,11.94,11.943999999999999,11.947999999999999,11.952,11.956,11.959999999999999,11.963999999999999,11.968,11.972,11.975999999999999,11.979999999999999,11.984,11.988,11.991999999999999,11.995999999999999,12.0,12.004,12.008,12.011999999999999,12.016,12.02,12.024,12.027999999999999,12.032,12.036,12.04,12.043999999999999,12.048,12.052,12.056,12.059999999999999,12.064,12.068,12.072,12.075999999999999,12.08,12.084,12.088,12.091999999999999,12.096,12.1,12.104,12.107999999999999,12.112,12.116,12.12,12.123999999999999,12.128,12.132,12.136,12.139999999999999,12.144,12.148,12.152,12.155999999999999,12.16,12.164,12.168,12.171999999999999,12.176,12.18,12.184,12.187999999999999,12.192,12.196,12.2,12.203999999999999,12.208,12.212,12.216,12.219999999999999,12.224,12.228,12.232,12.235999999999999,12.24,12.244,12.248,12.251999999999999,12.256,12.26,12.264,12.267999999999999,12.272,12.276,12.28,12.283999999999999,12.288,12.292,12.296,12.299999999999999,12.304,12.308,12.312,12.315999999999999,12.32,12.32,12.784,12.788,12.792,12.796000000000001,12.8,12.804,12.808,12.812000000000001,12.816,12.82,12.824,12.828000000000001,12.832,12.836,12.84,12.844000000000001,12.848,12.852,12.856,12.860000000000001,12.864,12.868,12.872,12.876000000000001,12.88,12.884,12.888,12.892000000000001,12.896,12.9,12.904,12.908000000000001,12.912,12.916,12.92,12.924000000000001,12.928,12.932,12.936,12.940000000000001,12.944,12.948,12.952,12.956000000000001,12.96,12.964,12.968,12.972000000000001,12.976,12.98,12.984,12.988000000000001,12.992,12.996,13.0,13.004000000000001,13.008000000000001,13.012,13.016,13.020000000000001,13.024000000000001,13.028,13.032,13.036000000000001,13.040000000000001,13.044,13.048,13.052000000000001,13.056000000000001,13.06,13.064,13.068000000000001,13.072000000000001,13.076,13.08,13.084000000000001,13.088000000000001,13.092,13.096,13.100000000000001,13.104000000000001,13.108,13.112,13.116000000000001,13.120000000000001,13.124,13.128,13.132000000000001,13.136000000000001,13.14,13.144,13.148000000000001,13.152000000000001,13.156,13.16,13.164000000000001,13.168000000000001,13.172,13.176,13.180000000000001,13.180000000000001,13.644,13.648,13.652,13.656,13.66,13.664,13.668,13.672,13.676,13.68,13.684,13.688,13.692,13.696,13.7,13.704,13.708,13.712,13.716,13.72,13.724,13.728,13.732,13.736,13.74,13.744,13.748,13.752,13.756,13.76,13.764,13.768,13.772,13.776,13.78,13.784,13.788,13.792,13.796,13.8,13.804,13.808,13.812,13.816,13.82,13.824,13.828,13.832,13.836,13.84,13.844,13.848,13.852,13.856,13.86,13.864,13.868,13.872,13.876,13.88,13.884,13.888,13.892,13.896,13.9,13.904,13.908,13.912,13.916,13.92,13.924,13.928,13.932,13.936,13.94,13.944,13.948,13.952,13.956,13.96,13.964,13.968,13.972,13.976,13.98,13.984,13.988,13.992,13.996,14.0,14.004,14.008000000000001,14.012,14.016,14.02,14.024000000000001,14.028,14.032,14.036,14.040000000000001,14.040000000000001,14.504,14.508,14.511999999999999,14.516,14.52,14.524,14.527999999999999,14.532,14.536,14.54,14.543999999999999,14.548,14.552,14.556,14.559999999999999,14.564,14.568,14.572,14.575999999999999,14.58,14.584,14.588,14.591999999999999,14.596,14.6,14.604,14.607999999999999,14.612,14.616,14.62,14.623999999999999,14.628,14.632,14.636,14.639999999999999,14.644,14.648,14.652,14.655999999999999,14.66,14.664,14.668,14.671999999999999,14.676,14.68,14.684,14.687999999999999,14.692,14.696,14.7,14.703999999999999,14.708,14.712,14.716,14.719999999999999,14.724,14.728,14.732,14.735999999999999,14.74,14.744,14.748,14.751999999999999,14.756,14.76,14.764,14.767999999999999,14.772,14.776,14.78,14.783999999999999,14.788,14.792,14.796,14.799999999999999,14.804,14.808,14.812,14.815999999999999,14.82,14.824,14.828,14.831999999999999,14.836,14.84,14.844,14.847999999999999,14.852,14.856,14.86,14.863999999999999,14.868,14.872,14.876,14.879999999999999,14.884,14.888,14.892,14.895999999999999,14.9,14.9,15.364,15.368,15.372,15.376000000000001,15.38,15.384,15.388,15.392000000000001,15.396,15.4,15.404,15.408000000000001,15.412,15.416,15.42,15.424000000000001,15.428,15.432,15.436,15.440000000000001,15.444,15.448,15.452,15.456000000000001,15.46,15.464,15.468,15.472000000000001,15.476,15.48,15.484,15.488000000000001,15.492,15.496,15.5,15.504000000000001,15.508000000000001,15.512,15.516,15.520000000000001,15.524000000000001,15.528,15.532,15.536000000000001,15.540000000000001,15.544,15.548,15.552000000000001,15.556000000000001,15.56,15.564,15.568000000000001,15.572000000000001,15.576,15.58,15.584000000000001,15.588000000000001,15.592,15.596,15.600000000000001,15.604000000000001,15.608,15.612,15.616000000000001,15.620000000000001,15.624,15.628,15.632000000000001,15.636000000000001,15.64,15.644,15.648000000000001,15.652000000000001,15.656,15.66,15.664000000000001,15.668000000000001,15.672,15.676,15.680000000000001,15.684000000000001,15.688,15.692,15.696000000000002,15.700000000000001,15.704,15.708,15.712000000000002,15.716000000000001,15.72,15.724,15.728000000000002,15.732000000000001,15.736,15.74,15.744000000000002,15.748000000000001,15.752,15.756,15.760000000000002,15.760000000000002,16.223,16.227,16.230999999999998,16.235,16.238999999999997,16.243,16.247,16.250999999999998,16.255,16.259,16.262999999999998,16.267,16.270999999999997,16.275,16.279,16.282999999999998,16.287,16.291,16.294999999999998,16.299,16.302999999999997,16.307,16.311,16.314999999999998,16.319,16.323,16.326999999999998,16.331,16.334999999999997,16.339,16.343,16.346999999999998,16.351,16.355,16.358999999999998,16.363,16.366999999999997,16.371,16.375,16.378999999999998,16.383,16.387,16.391,16.395,16.398999999999997,16.403,16.407,16.410999999999998,16.415,16.419,16.423,16.427,16.430999999999997,16.435,16.439,16.442999999999998,16.447,16.451,16.455,16.459,16.462999999999997,16.467,16.471,16.474999999999998,16.479,16.483,16.487,16.491,16.494999999999997,16.499,16.503,16.506999999999998,16.511,16.515,16.519,16.523,16.526999999999997,16.531,16.535,16.538999999999998,16.543,16.547,16.551,16.555,16.558999999999997,16.563,16.567,16.570999999999998,16.575,16.579,16.583,16.587,16.590999999999998,16.595,16.599,16.602999999999998,16.607,16.611,16.615,16.619,16.619,17.084,17.088,17.092,17.096,17.099999999999998,17.104,17.108,17.112,17.116,17.12,17.124,17.128,17.131999999999998,17.136,17.14,17.144,17.148,17.152,17.156,17.16,17.163999999999998,17.168,17.172,17.176,17.18,17.184,17.188,17.192,17.195999999999998,17.2,17.204,17.208,17.212,17.216,17.22,17.224,17.227999999999998,17.232,17.236,17.24,17.244,17.248,17.252,17.256,17.259999999999998,17.264,17.268,17.272,17.276,17.28,17.284,17.288,17.291999999999998,17.296,17.3,17.304,17.308,17.312,17.316,17.32,17.323999999999998,17.328,17.332,17.336,17.34,17.344,17.348,17.352,17.355999999999998,17.36,17.364,17.368,17.372,17.376,17.38,17.384,17.387999999999998,17.392,17.396,17.4,17.404,17.408,17.412,17.416,17.419999999999998,17.424,17.428,17.432,17.436,17.44,17.444,17.448,17.451999999999998,17.456,17.46,17.464,17.468,17.472,17.476,17.48,17.48,17.943,17.947000000000003,17.951,17.955000000000002,17.959,17.963,17.967000000000002,17.971,17.975,17.979000000000003,17.983,17.987000000000002,17.991,17.995,17.999000000000002,18.003,18.007,18.011000000000003,18.015,18.019000000000002,18.023,18.027,18.031000000000002,18.035,18.039,18.043000000000003,18.047,18.051000000000002,18.055,18.059,18.063000000000002,18.067,18.071,18.075000000000003,18.079,18.083000000000002,18.087,18.091,18.095000000000002,18.099,18.103,18.107000000000003,18.111,18.115000000000002,18.119,18.123,18.127000000000002,18.131,18.135,18.139000000000003,18.143,18.147000000000002,18.151,18.155,18.159000000000002,18.163,18.167,18.171000000000003,18.175,18.179000000000002,18.183,18.187,18.191000000000003,18.195,18.199,18.203000000000003,18.207,18.211000000000002,18.215,18.219,18.223000000000003,18.227,18.231,18.235000000000003,18.239,18.243000000000002,18.247,18.251,18.255000000000003,18.259,18.263,18.267000000000003,18.271,18.275000000000002,18.279,18.283,18.287000000000003,18.291,18.295,18.299000000000003,18.303,18.307000000000002,18.311,18.315,18.319000000000003,18.323,18.327,18.331000000000003,18.335,18.339000000000002,18.339000000000002,18.803,18.807000000000002,18.811,18.815,18.819,18.823,18.827,18.831,18.835,18.839000000000002,18.843,18.847,18.851,18.855,18.859,18.863,18.867,18.871000000000002,18.875,18.879,18.883,18.887,18.891000000000002,18.895,18.899,18.903000000000002,18.907,18.911,18.915,18.919,18.923000000000002,18.927,18.931,18.935000000000002,18.939,18.943,18.947,18.951,18.955000000000002,18.959,18.963,18.967000000000002,18.971,18.975,18.979,18.983,18.987000000000002,18.991,18.995,18.999000000000002,19.003,19.007,19.011,19.015,19.019000000000002,19.023,19.027,19.031000000000002,19.035,19.039,19.043,19.047,19.051000000000002,19.055,19.059,19.063000000000002,19.067,19.071,19.075,19.079,19.083000000000002,19.087,19.091,19.095000000000002,19.099,19.103,19.107,19.111,19.115000000000002,19.119,19.123,19.127000000000002,19.131,19.135,19.139,19.143,19.147000000000002,19.151,19.155,19.159000000000002,19.163,19.167,19.171,19.175,19.179000000000002,19.183,19.187,19.191000000000003,19.195,19.199,19.199,19.663,19.667,19.671,19.675,19.679,19.683,19.687,19.691,19.695,19.699,19.703,19.707,19.711,19.715,19.719,19.723,19.727,19.731,19.735,19.739,19.743,19.747,19.751,19.755,19.759,19.763,19.767,19.771,19.775,19.779,19.783,19.787,19.791,19.795,19.799,19.803,19.807,19.811,19.815,19.819,19.823,19.827,19.831,19.835,19.839,19.843,19.847,19.851,19.855,19.859,19.863,19.867,19.871,19.875,19.879,19.883,19.887,19.891000000000002,19.895,19.899,19.903,19.907,19.911,19.915,19.919,19.923000000000002,19.927,19.931,19.935,19.939,19.943,19.947,19.951,19.955000000000002,19.959,19.963,19.967,19.971,19.975,19.979,19.983,19.987000000000002,19.991,19.995,19.999,20.003,20.007,20.011,20.015,20.019000000000002,20.023,20.027,20.031,20.035,20.039,20.043,20.047,20.051000000000002,20.055,20.059,20.059,20.523,20.527,20.531,20.535,20.538999999999998,20.543,20.547,20.551,20.555,20.559,20.563,20.567,20.570999999999998,20.575,20.579,20.583,20.587,20.591,20.595,20.599,20.602999999999998,20.607,20.611,20.615,20.619,20.623,20.627,20.631,20.634999999999998,20.639,20.643,20.647,20.651,20.655,20.659,20.663,20.666999999999998,20.671,20.675,20.679,20.683,20.687,20.691,20.695,20.698999999999998,20.703,20.707,20.711,20.715,20.719,20.723,20.727,20.730999999999998,20.735,20.739,20.743,20.747,20.751,20.755,20.759,20.762999999999998,20.767,20.771,20.775,20.779,20.783,20.787,20.791,20.794999999999998,20.799,20.803,20.807,20.811,20.815,20.819,20.823,20.826999999999998,20.831,20.835,20.839,20.843,20.847,20.851,20.855,20.858999999999998,20.863,20.867,20.871,20.875,20.879,20.883,20.887,20.891,20.895,20.899,20.903,20.907,20.911,20.915,20.919,20.919,21.383,21.387,21.391,21.395,21.398999999999997,21.403,21.407,21.410999999999998,21.415,21.419,21.423,21.427,21.430999999999997,21.435,21.439,21.442999999999998,21.447,21.451,21.455,21.459,21.462999999999997,21.467,21.471,21.474999999999998,21.479,21.483,21.487,21.491,21.494999999999997,21.499,21.503,21.506999999999998,21.511,21.515,21.519,21.523,21.526999999999997,21.531,21.535,21.538999999999998,21.543,21.547,21.551,21.555,21.558999999999997,21.563,21.567,21.570999999999998,21.575,21.579,21.583,21.587,21.590999999999998,21.595,21.599,21.602999999999998,21.607,21.611,21.615,21.619,21.622999999999998,21.627,21.631,21.634999999999998,21.639,21.643,21.647,21.651,21.654999999999998,21.659,21.663,21.666999999999998,21.671,21.675,21.679,21.683,21.686999999999998,21.691,21.695,21.698999999999998,21.703,21.707,21.711,21.715,21.718999999999998,21.723,21.727,21.730999999999998,21.735,21.739,21.743,21.747,21.750999999999998,21.755,21.759,21.762999999999998,21.767,21.771,21.775,21.779,21.779,22.243000000000002,22.247000000000003,22.251,22.255000000000003,22.259,22.263,22.267000000000003,22.271,22.275000000000002,22.279000000000003,22.283,22.287000000000003,22.291,22.295,22.299000000000003,22.303,22.307000000000002,22.311000000000003,22.315,22.319000000000003,22.323,22.327,22.331000000000003,22.335,22.339000000000002,22.343000000000004,22.347,22.351000000000003,22.355,22.359,22.363000000000003,22.367,22.371000000000002,22.375000000000004,22.379,22.383000000000003,22.387,22.391000000000002,22.395000000000003,22.399,22.403000000000002,22.407000000000004,22.411,22.415000000000003,22.419,22.423000000000002,22.427000000000003,22.431,22.435000000000002,22.439000000000004,22.443,22.447000000000003,22.451,22.455000000000002,22.459000000000003,22.463,22.467000000000002,22.471000000000004,22.475,22.479000000000003,22.483,22.487000000000002,22.491000000000003,22.495,22.499000000000002,22.503000000000004,22.507,22.511000000000003,22.515,22.519000000000002,22.523000000000003,22.527,22.531000000000002,22.535000000000004,22.539,22.543000000000003,22.547,22.551000000000002,22.555000000000003,22.559,22.563000000000002,22.567000000000004,22.571,22.575000000000003,22.579,22.583000000000002,22.587000000000003,22.591,22.595000000000002,22.599000000000004,22.603,22.607000000000003,22.611,22.615000000000002,22.619000000000003,22.623,22.627000000000002,22.631000000000004,22.635,22.639000000000003,22.639000000000003,23.103,23.107000000000003,23.111,23.115000000000002,23.119,23.123,23.127000000000002,23.131,23.135,23.139000000000003,23.143,23.147000000000002,23.151,23.155,23.159000000000002,23.163,23.167,23.171000000000003,23.175,23.179000000000002,23.183,23.187,23.191000000000003,23.195,23.199,23.203000000000003,23.207,23.211000000000002,23.215,23.219,23.223000000000003,23.227,23.231,23.235000000000003,23.239,23.243000000000002,23.247,23.251,23.255000000000003,23.259,23.263,23.267000000000003,23.271,23.275000000000002,23.279,23.283,23.287000000000003,23.291,23.295,23.299000000000003,23.303,23.307000000000002,23.311,23.315,23.319000000000003,23.323,23.327,23.331000000000003,23.335,23.339000000000002,23.343,23.347,23.351000000000003,23.355,23.359,23.363000000000003,23.367,23.371000000000002,23.375,23.379,23.383000000000003,23.387,23.391000000000002,23.395000000000003,23.399,23.403000000000002,23.407,23.411,23.415000000000003,23.419,23.423000000000002,23.427000000000003,23.431,23.435000000000002,23.439,23.443,23.447000000000003,23.451,23.455000000000002,23.459000000000003,23.463,23.467000000000002,23.471,23.475,23.479000000000003,23.483,23.487000000000002,23.491000000000003,23.495,23.499000000000002,23.499000000000002,23.963,23.967000000000002,23.971,23.975,23.979,23.983,23.987000000000002,23.991,23.995,23.999000000000002,24.003,24.007,24.011,24.015,24.019000000000002,24.023,24.027,24.031000000000002,24.035,24.039,24.043,24.047,24.051000000000002,24.055,24.059,24.063000000000002,24.067,24.071,24.075,24.079,24.083000000000002,24.087,24.091,24.095000000000002,24.099,24.103,24.107,24.111,24.115000000000002,24.119,24.123,24.127000000000002,24.131,24.135,24.139,24.143,24.147000000000002,24.151,24.155,24.159000000000002,24.163,24.167,24.171,24.175,24.179000000000002,24.183,24.187,24.191000000000003,24.195,24.199,24.203,24.207,24.211000000000002,24.215,24.219,24.223000000000003,24.227,24.231,24.235,24.239,24.243000000000002,24.247,24.251,24.255000000000003,24.259,24.263,24.267,24.271,24.275000000000002,24.279,24.283,24.287000000000003,24.291,24.295,24.299,24.303,24.307000000000002,24.311,24.315,24.319000000000003,24.323,24.327,24.331,24.335,24.339000000000002,24.343,24.347,24.351000000000003,24.355,24.359,24.359,24.823,24.827,24.831,24.835,24.839,24.843,24.847,24.851,24.855,24.859,24.863,24.867,24.871,24.875,24.879,24.883,24.887,24.891000000000002,24.895,24.899,24.903,24.907,24.911,24.915,24.919,24.923000000000002,24.927,24.931,24.935,24.939,24.943,24.947,24.951,24.955000000000002,24.959,24.963,24.967,24.971,24.975,24.979,24.983,24.987000000000002,24.991,24.995,24.999,25.003,25.007,25.011,25.015,25.019000000000002,25.023,25.027,25.031,25.035,25.039,25.043,25.047,25.051000000000002,25.055,25.059,25.063,25.067,25.071,25.075,25.079,25.083000000000002,25.087,25.091,25.095,25.099,25.103,25.107,25.111,25.115000000000002,25.119,25.123,25.127,25.131,25.135,25.139,25.143,25.147000000000002,25.151,25.155,25.159,25.163,25.167,25.171,25.175,25.179000000000002,25.183,25.187,25.191,25.195,25.199,25.203,25.207,25.211000000000002,25.215,25.219,25.219,25.683,25.687,25.691,25.695,25.698999999999998,25.703,25.707,25.711,25.715,25.719,25.723,25.727,25.730999999999998,25.735,25.739,25.743,25.747,25.751,25.755,25.759,25.762999999999998,25.767,25.771,25.775,25.779,25.783,25.787,25.791,25.794999999999998,25.799,25.803,25.807,25.811,25.815,25.819,25.823,25.826999999999998,25.831,25.835,25.839,25.843,25.847,25.851,25.855,25.858999999999998,25.863,25.867,25.871,25.875,25.879,25.883,25.887,25.891,25.895,25.899,25.903,25.907,25.911,25.915,25.919,25.923,25.927,25.931,25.935,25.939,25.943,25.947,25.951,25.955,25.959,25.963,25.967,25.971,25.975,25.979,25.983,25.987,25.991,25.995,25.999,26.003,26.007,26.011,26.015,26.019,26.023,26.027,26.031,26.035,26.039,26.043,26.047,26.051,26.055,26.059,26.063,26.067,26.071,26.075,26.079,26.079,26.543,26.547,26.551,26.555,26.558999999999997,26.563,26.567,26.570999999999998,26.575,26.579,26.583,26.587,26.590999999999998,26.595,26.599,26.602999999999998,26.607,26.611,26.615,26.619,26.622999999999998,26.627,26.631,26.634999999999998,26.639,26.643,26.647,26.651,26.654999999999998,26.659,26.663,26.666999999999998,26.671,26.675,26.679,26.683,26.686999999999998,26.691,26.695,26.698999999999998,26.703,26.707,26.711,26.715,26.718999999999998,26.723,26.727,26.730999999999998,26.735,26.739,26.743,26.747,26.750999999999998,26.755,26.759,26.762999999999998,26.767,26.771,26.775,26.779,26.782999999999998,26.787,26.791,26.794999999999998,26.799,26.803,26.807,26.811,26.814999999999998,26.819,26.823,26.826999999999998,26.831,26.835,26.839,26.843,26.846999999999998,26.851,26.855,26.858999999999998,26.863,26.867,26.871,26.875,26.878999999999998,26.883,26.887,26.891,26.895,26.899,26.903,26.907,26.910999999999998,26.915,26.919,26.923,26.927,26.931,26.935,26.939,26.939,27.403000000000002,27.407000000000004,27.411,27.415000000000003,27.419,27.423000000000002,27.427000000000003,27.431,27.435000000000002,27.439000000000004,27.443,27.447000000000003,27.451,27.455000000000002,27.459000000000003,27.463,27.467000000000002,27.471000000000004,27.475,27.479000000000003,27.483,27.487000000000002,27.491000000000003,27.495,27.499000000000002,27.503000000000004,27.507,27.511000000000003,27.515,27.519000000000002,27.523000000000003,27.527,27.531000000000002,27.535000000000004,27.539,27.543000000000003,27.547,27.551000000000002,27.555000000000003,27.559,27.563000000000002,27.567000000000004,27.571,27.575000000000003,27.579,27.583000000000002,27.587000000000003,27.591,27.595000000000002,27.599000000000004,27.603,27.607000000000003,27.611,27.615000000000002,27.619000000000003,27.623,27.627000000000002,27.631000000000004,27.635,27.639000000000003,27.643,27.647000000000002,27.651000000000003,27.655,27.659000000000002,27.663000000000004,27.667,27.671000000000003,27.675,27.679000000000002,27.683000000000003,27.687,27.691000000000003,27.695000000000004,27.699,27.703000000000003,27.707,27.711000000000002,27.715000000000003,27.719,27.723000000000003,27.727000000000004,27.731,27.735000000000003,27.739,27.743000000000002,27.747000000000003,27.751,27.755000000000003,27.759000000000004,27.763,27.767000000000003,27.771,27.775000000000002,27.779000000000003,27.783,27.787000000000003,27.791000000000004,27.795,27.799000000000003,27.799000000000003,28.263,28.267000000000003,28.271,28.275000000000002,28.279,28.283,28.287000000000003,28.291,28.295,28.299000000000003,28.303,28.307000000000002,28.311,28.315,28.319000000000003,28.323,28.327,28.331000000000003,28.335,28.339000000000002,28.343,28.347,28.351000000000003,28.355,28.359,28.363000000000003,28.367,28.371000000000002,28.375,28.379,28.383000000000003,28.387,28.391000000000002,28.395000000000003,28.399,28.403000000000002,28.407,28.411,28.415000000000003,28.419,28.423000000000002,28.427000000000003,28.431,28.435000000000002,28.439,28.443,28.447000000000003,28.451,28.455000000000002,28.459000000000003,28.463,28.467000000000002,28.471,28.475,28.479000000000003,28.483,28.487000000000002,28.491000000000003,28.495,28.499000000000002,28.503,28.507,28.511000000000003,28.515,28.519000000000002,28.523000000000003,28.527,28.531000000000002,28.535,28.539,28.543000000000003,28.547,28.551000000000002,28.555000000000003,28.559,28.563000000000002,28.567,28.571,28.575000000000003,28.579,28.583000000000002,28.587000000000003,28.591,28.595000000000002,28.599,28.603,28.607000000000003,28.611,28.615000000000002,28.619000000000003,28.623,28.627000000000002,28.631,28.635,28.639000000000003,28.643,28.647000000000002,28.651000000000003,28.655,28.659000000000002,28.659000000000002,29.123,29.127000000000002,29.131,29.135,29.139,29.143,29.147000000000002,29.151,29.155,29.159000000000002,29.163,29.167,29.171,29.175,29.179000000000002,29.183,29.187,29.191000000000003,29.195,29.199,29.203,29.207,29.211000000000002,29.215,29.219,29.223000000000003,29.227,29.231,29.235,29.239,29.243000000000002,29.247,29.251,29.255000000000003,29.259,29.263,29.267,29.271,29.275000000000002,29.279,29.283,29.287000000000003,29.291,29.295,29.299,29.303,29.307000000000002,29.311,29.315,29.319000000000003,29.323,29.327,29.331,29.335,29.339000000000002,29.343,29.347,29.351000000000003,29.355,29.359,29.363,29.367,29.371000000000002,29.375,29.379,29.383000000000003,29.387,29.391000000000002,29.395,29.399,29.403000000000002,29.407,29.411,29.415000000000003,29.419,29.423000000000002,29.427,29.431,29.435000000000002,29.439,29.443,29.447000000000003,29.451,29.455000000000002,29.459,29.463,29.467000000000002,29.471,29.475,29.479000000000003,29.483,29.487000000000002,29.491,29.495,29.499000000000002,29.503,29.507,29.511000000000003,29.515,29.519000000000002,29.519000000000002,29.983,29.987000000000002,29.991,29.995,29.999,30.003,30.007,30.011,30.015,30.019000000000002,30.023,30.027,30.031,30.035,30.039,30.043,30.047,30.051000000000002,30.055,30.059,30.063,30.067,30.071,30.075,30.079,30.083000000000002,30.087,30.091,30.095,30.099,30.103,30.107,30.111,30.115000000000002,30.119,30.123,30.127,30.131,30.135,30.139,30.143,30.147000000000002,30.151,30.155,30.159,30.163,30.167,30.171,30.175,30.179000000000002,30.183,30.187,30.191,30.195,30.199,30.203,30.207,30.211000000000002,30.215,30.219,30.223,30.227,30.231,30.235,30.239,30.243000000000002,30.247,30.251,30.255,30.259,30.263,30.267,30.271,30.275000000000002,30.279,30.283,30.287,30.291,30.295,30.299,30.303,30.307000000000002,30.311,30.315,30.319,30.323,30.327,30.331,30.335,30.339000000000002,30.343,30.347,30.351,30.355,30.359,30.363,30.367,30.371000000000002,30.375,30.379,30.379,30.843,30.847,30.851,30.855,30.858999999999998,30.863,30.867,30.871,30.875,30.879,30.883,30.887,30.891,30.895,30.899,30.903,30.907,30.911,30.915,30.919,30.923,30.927,30.931,30.935,30.939,30.943,30.947,30.951,30.955,30.959,30.963,30.967,30.971,30.975,30.979,30.983,30.987,30.991,30.995,30.999,31.003,31.007,31.011,31.015,31.019,31.023,31.027,31.031,31.035,31.039,31.043,31.047,31.051,31.055,31.059,31.063,31.067,31.071,31.075,31.079,31.083,31.087,31.091,31.095,31.099,31.103,31.107,31.111,31.115,31.119,31.123,31.127,31.131,31.135,31.139,31.143,31.147,31.151,31.155,31.159,31.163,31.167,31.171,31.175,31.179,31.183,31.187,31.191,31.195,31.199,31.203,31.207,31.211,31.215,31.219,31.223,31.227,31.231,31.235,31.239,31.239,31.703,31.707,31.711,31.715,31.718999999999998,31.723,31.727,31.730999999999998,31.735,31.739,31.743,31.747,31.750999999999998,31.755,31.759,31.762999999999998,31.767,31.771,31.775,31.779,31.782999999999998,31.787,31.791,31.794999999999998,31.799,31.803,31.807,31.811,31.814999999999998,31.819,31.823,31.826999999999998,31.831,31.835,31.839,31.843,31.846999999999998,31.851,31.855,31.858999999999998,31.863,31.867,31.871,31.875,31.878999999999998,31.883,31.887,31.891,31.895,31.899,31.903,31.907,31.910999999999998,31.915,31.919,31.923,31.927,31.931,31.935,31.939,31.942999999999998,31.947,31.951,31.955,31.959,31.963,31.967,31.971,31.974999999999998,31.979,31.983,31.987,31.991,31.995,31.999,32.003,32.007,32.011,32.015,32.019,32.022999999999996,32.027,32.031,32.035,32.039,32.043,32.047,32.051,32.055,32.059,32.063,32.067,32.071,32.075,32.079,32.083,32.086999999999996,32.091,32.095,32.099,32.099,32.563,32.567,32.571000000000005,32.575,32.579,32.583000000000006,32.587,32.591,32.595,32.599000000000004,32.603,32.607,32.611000000000004,32.615,32.619,32.623000000000005,32.627,32.631,32.635000000000005,32.639,32.643,32.647000000000006,32.651,32.655,32.659,32.663000000000004,32.667,32.671,32.675000000000004,32.679,32.683,32.687000000000005,32.691,32.695,32.699000000000005,32.703,32.707,32.711000000000006,32.715,32.719,32.723,32.727000000000004,32.731,32.735,32.739000000000004,32.743,32.747,32.751000000000005,32.755,32.759,32.763000000000005,32.767,32.771,32.775000000000006,32.779,32.783,32.787,32.791000000000004,32.795,32.799,32.803000000000004,32.807,32.811,32.815000000000005,32.819,32.823,32.827000000000005,32.831,32.835,32.839000000000006,32.843,32.847,32.851,32.855000000000004,32.859,32.863,32.867000000000004,32.871,32.875,32.879000000000005,32.883,32.887,32.891000000000005,32.895,32.899,32.903000000000006,32.907000000000004,32.911,32.915,32.919000000000004,32.923,32.927,32.931000000000004,32.935,32.939,32.943000000000005,32.947,32.951,32.955000000000005,32.959,32.959,33.423,33.427,33.431000000000004,33.435,33.439,33.443000000000005,33.447,33.451,33.455,33.459,33.463,33.467,33.471000000000004,33.475,33.479,33.483000000000004,33.487,33.491,33.495000000000005,33.499,33.503,33.507000000000005,33.511,33.515,33.519,33.523,33.527,33.531,33.535000000000004,33.539,33.543,33.547000000000004,33.551,33.555,33.559000000000005,33.563,33.567,33.571000000000005,33.575,33.579,33.583,33.587,33.591,33.595,33.599000000000004,33.603,33.607,33.611000000000004,33.615,33.619,33.623000000000005,33.627,33.631,33.635000000000005,33.639,33.643,33.647,33.651,33.655,33.659,33.663000000000004,33.667,33.671,33.675000000000004,33.679,33.683,33.687000000000005,33.691,33.695,33.699000000000005,33.703,33.707,33.711,33.715,33.719,33.723,33.727000000000004,33.731,33.735,33.739000000000004,33.743,33.747,33.751000000000005,33.755,33.759,33.763000000000005,33.767,33.771,33.775,33.779,33.783,33.787,33.791000000000004,33.795,33.799,33.803000000000004,33.807,33.811,33.815000000000005,33.819,33.819,34.283,34.287,34.291000000000004,34.295,34.299,34.303000000000004,34.307,34.311,34.315,34.319,34.323,34.327,34.331,34.335,34.339,34.343,34.347,34.351,34.355000000000004,34.359,34.363,34.367000000000004,34.371,34.375,34.379,34.383,34.387,34.391,34.395,34.399,34.403,34.407000000000004,34.411,34.415,34.419000000000004,34.423,34.427,34.431000000000004,34.435,34.439,34.443,34.447,34.451,34.455,34.459,34.463,34.467,34.471000000000004,34.475,34.479,34.483000000000004,34.487,34.491,34.495000000000005,34.499,34.503,34.507,34.511,34.515,34.519,34.523,34.527,34.531,34.535000000000004,34.539,34.543,34.547000000000004,34.551,34.555,34.559000000000005,34.563,34.567,34.571,34.575,34.579,34.583,34.587,34.591,34.595,34.599000000000004,34.603,34.607,34.611000000000004,34.615,34.619,34.623000000000005,34.627,34.631,34.635,34.639,34.643,34.647,34.651,34.655,34.659,34.663000000000004,34.667,34.671,34.675000000000004,34.679,34.679,35.143,35.147,35.151,35.155,35.159,35.163000000000004,35.167,35.171,35.175,35.179,35.183,35.187,35.191,35.195,35.199,35.203,35.207,35.211,35.215,35.219,35.223,35.227000000000004,35.231,35.235,35.239,35.243,35.247,35.251,35.255,35.259,35.263,35.267,35.271,35.275,35.279,35.283,35.287,35.291000000000004,35.295,35.299,35.303,35.307,35.311,35.315,35.319,35.323,35.327,35.331,35.335,35.339,35.343,35.347,35.351,35.355000000000004,35.359,35.363,35.367,35.371,35.375,35.379,35.383,35.387,35.391,35.395,35.399,35.403,35.407000000000004,35.411,35.415,35.419000000000004,35.423,35.427,35.431,35.435,35.439,35.443,35.447,35.451,35.455,35.459,35.463,35.467,35.471000000000004,35.475,35.479,35.483000000000004,35.487,35.491,35.495,35.499,35.503,35.507,35.511,35.515,35.519,35.523,35.527,35.531,35.535000000000004,35.539,35.539,36.003,36.007,36.011,36.015,36.019,36.023,36.027,36.031,36.035,36.039,36.043,36.047,36.051,36.055,36.059,36.063,36.067,36.071,36.075,36.079,36.083,36.087,36.091,36.095,36.099,36.103,36.107,36.111,36.115,36.119,36.123,36.127,36.131,36.135,36.139,36.143,36.147,36.151,36.155,36.159,36.163,36.167,36.171,36.175,36.179,36.183,36.187,36.191,36.195,36.199,36.203,36.207,36.211,36.215,36.219,36.223,36.227,36.231,36.235,36.239,36.243,36.247,36.251,36.255,36.259,36.263,36.267,36.271,36.275,36.279,36.283,36.287,36.291,36.295,36.299,36.303,36.307,36.311,36.315,36.319,36.323,36.327,36.331,36.335,36.339,36.343,36.347,36.351,36.355,36.359,36.363,36.367,36.371,36.375,36.379,36.383,36.387,36.391,36.395,36.399,36.399,36.863,36.867,36.871,36.875,36.879,36.883,36.887,36.891,36.894999999999996,36.899,36.903,36.907,36.911,36.915,36.919,36.923,36.927,36.931,36.935,36.939,36.943,36.947,36.951,36.955,36.958999999999996,36.963,36.967,36.971,36.975,36.979,36.983,36.987,36.991,36.995,36.999,37.003,37.007,37.011,37.015,37.019,37.022999999999996,37.027,37.031,37.035,37.039,37.043,37.047,37.051,37.055,37.059,37.063,37.067,37.071,37.075,37.079,37.083,37.086999999999996,37.091,37.095,37.099,37.103,37.107,37.111,37.115,37.119,37.123,37.127,37.131,37.135,37.139,37.143,37.147,37.150999999999996,37.155,37.159,37.163,37.167,37.171,37.175,37.179,37.183,37.187,37.191,37.195,37.199,37.203,37.207,37.211,37.214999999999996,37.219,37.223,37.227,37.231,37.235,37.239,37.243,37.247,37.251,37.255,37.259,37.259,37.723,37.727,37.731,37.735,37.739,37.743,37.747,37.751,37.754999999999995,37.759,37.763,37.766999999999996,37.771,37.775,37.778999999999996,37.783,37.787,37.791,37.795,37.799,37.803,37.807,37.811,37.815,37.818999999999996,37.823,37.827,37.830999999999996,37.835,37.839,37.842999999999996,37.847,37.851,37.855,37.859,37.863,37.867,37.871,37.875,37.879,37.882999999999996,37.887,37.891,37.894999999999996,37.899,37.903,37.907,37.911,37.915,37.919,37.923,37.927,37.931,37.935,37.939,37.943,37.946999999999996,37.951,37.955,37.958999999999996,37.963,37.967,37.971,37.975,37.979,37.983,37.987,37.991,37.995,37.999,38.003,38.007,38.010999999999996,38.015,38.019,38.022999999999996,38.027,38.031,38.035,38.039,38.043,38.047,38.051,38.055,38.059,38.063,38.067,38.071,38.074999999999996,38.079,38.083,38.086999999999996,38.091,38.095,38.099,38.103,38.107,38.111,38.115,38.119,38.119,38.583,38.586999999999996,38.591,38.595,38.599,38.603,38.607,38.611,38.614999999999995,38.619,38.623,38.626999999999995,38.631,38.635,38.638999999999996,38.643,38.647,38.650999999999996,38.655,38.659,38.663,38.667,38.671,38.675,38.678999999999995,38.683,38.687,38.690999999999995,38.695,38.699,38.702999999999996,38.707,38.711,38.714999999999996,38.719,38.723,38.727,38.731,38.735,38.739,38.742999999999995,38.747,38.751,38.754999999999995,38.759,38.763,38.766999999999996,38.771,38.775,38.778999999999996,38.783,38.787,38.791,38.795,38.799,38.803,38.806999999999995,38.811,38.815,38.818999999999996,38.823,38.827,38.830999999999996,38.835,38.839,38.842999999999996,38.847,38.851,38.855,38.859,38.863,38.867,38.870999999999995,38.875,38.879,38.882999999999996,38.887,38.891,38.894999999999996,38.899,38.903,38.907,38.911,38.915,38.919,38.923,38.927,38.931,38.934999999999995,38.939,38.943,38.946999999999996,38.951,38.955,38.958999999999996,38.963,38.967,38.971,38.975,38.979,38.979,39.443,39.446999999999996,39.451,39.455,39.458999999999996,39.463,39.467,39.471,39.474999999999994,39.479,39.483,39.486999999999995,39.491,39.495,39.498999999999995,39.503,39.507,39.510999999999996,39.515,39.519,39.522999999999996,39.527,39.531,39.535,39.538999999999994,39.543,39.547,39.550999999999995,39.555,39.559,39.562999999999995,39.567,39.571,39.574999999999996,39.579,39.583,39.586999999999996,39.591,39.595,39.599,39.602999999999994,39.607,39.611,39.614999999999995,39.619,39.623,39.626999999999995,39.631,39.635,39.638999999999996,39.643,39.647,39.650999999999996,39.655,39.659,39.663,39.666999999999994,39.671,39.675,39.678999999999995,39.683,39.687,39.690999999999995,39.695,39.699,39.702999999999996,39.707,39.711,39.714999999999996,39.719,39.723,39.727,39.730999999999995,39.735,39.739,39.742999999999995,39.747,39.751,39.754999999999995,39.759,39.763,39.766999999999996,39.771,39.775,39.778999999999996,39.783,39.787,39.791,39.794999999999995,39.799,39.803,39.806999999999995,39.811,39.815,39.818999999999996,39.823,39.827,39.830999999999996,39.835,39.839,39.839,40.303000000000004,40.307,40.31100000000001,40.315000000000005,40.319,40.32300000000001,40.327000000000005,40.331,40.335,40.339000000000006,40.343,40.347,40.351000000000006,40.355000000000004,40.359,40.36300000000001,40.367000000000004,40.371,40.37500000000001,40.379000000000005,40.383,40.38700000000001,40.391000000000005,40.395,40.399,40.403000000000006,40.407000000000004,40.411,40.415000000000006,40.419000000000004,40.423,40.42700000000001,40.431000000000004,40.435,40.43900000000001,40.443000000000005,40.447,40.45100000000001,40.455000000000005,40.459,40.463,40.467000000000006,40.471000000000004,40.475,40.479000000000006,40.483000000000004,40.487,40.49100000000001,40.495000000000005,40.499,40.50300000000001,40.507000000000005,40.511,40.51500000000001,40.519000000000005,40.523,40.527,40.531000000000006,40.535000000000004,40.539,40.543000000000006,40.547000000000004,40.551,40.55500000000001,40.559000000000005,40.563,40.56700000000001,40.571000000000005,40.575,40.57900000000001,40.583000000000006,40.587,40.591,40.595000000000006,40.599000000000004,40.603,40.607000000000006,40.611000000000004,40.615,40.61900000000001,40.623000000000005,40.627,40.63100000000001,40.635000000000005,40.639,40.64300000000001,40.647000000000006,40.651,40.655,40.659000000000006,40.663000000000004,40.667,40.67100000000001,40.675000000000004,40.679,40.68300000000001,40.687000000000005,40.691,40.69500000000001,40.699000000000005,40.699000000000005,41.164,41.168,41.172000000000004,41.176,41.18,41.184000000000005,41.188,41.192,41.196,41.2,41.204,41.208,41.212,41.216,41.22,41.224000000000004,41.228,41.232,41.236000000000004,41.24,41.244,41.248000000000005,41.252,41.256,41.26,41.264,41.268,41.272,41.276,41.28,41.284,41.288000000000004,41.292,41.296,41.300000000000004,41.304,41.308,41.312000000000005,41.316,41.32,41.324,41.328,41.332,41.336,41.34,41.344,41.348,41.352000000000004,41.356,41.36,41.364000000000004,41.368,41.372,41.376000000000005,41.38,41.384,41.388,41.392,41.396,41.4,41.404,41.408,41.412,41.416000000000004,41.42,41.424,41.428000000000004,41.432,41.436,41.440000000000005,41.444,41.448,41.452,41.456,41.46,41.464,41.468,41.472,41.476,41.480000000000004,41.484,41.488,41.492000000000004,41.496,41.5,41.504000000000005,41.508,41.512,41.516,41.52,41.524,41.528,41.532000000000004,41.536,41.54,41.544000000000004,41.548,41.552,41.556000000000004,41.56,41.56,42.024,42.028,42.032000000000004,42.036,42.04,42.044000000000004,42.048,42.052,42.056,42.06,42.064,42.068,42.072,42.076,42.08,42.084,42.088,42.092,42.096000000000004,42.1,42.104,42.108000000000004,42.112,42.116,42.12,42.124,42.128,42.132,42.136,42.14,42.144,42.148,42.152,42.156,42.160000000000004,42.164,42.168,42.172000000000004,42.176,42.18,42.184,42.188,42.192,42.196,42.2,42.204,42.208,42.212,42.216,42.22,42.224000000000004,42.228,42.232,42.236000000000004,42.24,42.244,42.248,42.252,42.256,42.26,42.264,42.268,42.272,42.276,42.28,42.284,42.288000000000004,42.292,42.296,42.300000000000004,42.304,42.308,42.312,42.316,42.32,42.324,42.328,42.332,42.336,42.34,42.344,42.348,42.352000000000004,42.356,42.36,42.364000000000004,42.368,42.372,42.376,42.38,42.384,42.388,42.392,42.396,42.4,42.404,42.408,42.412,42.416000000000004,42.42,42.42,42.884,42.888,42.892,42.896,42.9,42.904,42.908,42.912,42.916,42.92,42.924,42.928,42.932,42.936,42.94,42.944,42.948,42.952,42.956,42.96,42.964,42.968,42.972,42.976,42.98,42.984,42.988,42.992,42.996,43.0,43.004,43.008,43.012,43.016,43.02,43.024,43.028,43.032000000000004,43.036,43.04,43.044,43.048,43.052,43.056,43.06,43.064,43.068,43.072,43.076,43.08,43.084,43.088,43.092,43.096000000000004,43.1,43.104,43.108,43.112,43.116,43.12,43.124,43.128,43.132,43.136,43.14,43.144,43.148,43.152,43.156,43.160000000000004,43.164,43.168,43.172,43.176,43.18,43.184,43.188,43.192,43.196,43.2,43.204,43.208,43.212,43.216,43.22,43.224000000000004,43.228,43.232,43.236,43.24,43.244,43.248,43.252,43.256,43.26,43.264,43.268,43.272,43.276,43.28,43.28,43.744,43.748,43.752,43.756,43.76,43.764,43.768,43.772,43.775999999999996,43.78,43.784,43.788,43.792,43.796,43.8,43.804,43.808,43.812,43.816,43.82,43.824,43.828,43.832,43.836,43.839999999999996,43.844,43.848,43.852,43.856,43.86,43.864,43.868,43.872,43.876,43.88,43.884,43.888,43.892,43.896,43.9,43.903999999999996,43.908,43.912,43.916,43.92,43.924,43.928,43.932,43.936,43.94,43.944,43.948,43.952,43.956,43.96,43.964,43.967999999999996,43.972,43.976,43.98,43.984,43.988,43.992,43.996,44.0,44.004,44.008,44.012,44.016,44.02,44.024,44.028,44.032,44.036,44.04,44.044,44.048,44.052,44.056,44.06,44.064,44.068,44.072,44.076,44.08,44.084,44.088,44.092,44.096,44.1,44.104,44.108,44.112,44.116,44.12,44.124,44.128,44.132,44.136,44.14,44.14,44.604,44.608,44.612,44.616,44.62,44.624,44.628,44.632,44.635999999999996,44.64,44.644,44.647999999999996,44.652,44.656,44.66,44.664,44.668,44.672,44.676,44.68,44.684,44.688,44.692,44.696,44.699999999999996,44.704,44.708,44.711999999999996,44.716,44.72,44.724,44.728,44.732,44.736,44.74,44.744,44.748,44.752,44.756,44.76,44.763999999999996,44.768,44.772,44.775999999999996,44.78,44.784,44.788,44.792,44.796,44.8,44.804,44.808,44.812,44.816,44.82,44.824,44.827999999999996,44.832,44.836,44.839999999999996,44.844,44.848,44.852,44.856,44.86,44.864,44.868,44.872,44.876,44.88,44.884,44.888,44.891999999999996,44.896,44.9,44.903999999999996,44.908,44.912,44.916,44.92,44.924,44.928,44.932,44.936,44.94,44.944,44.948,44.952,44.955999999999996,44.96,44.964,44.967999999999996,44.972,44.976,44.98,44.984,44.988,44.992,44.996,45.0,45.0,45.464,45.467999999999996,45.472,45.476,45.48,45.484,45.488,45.492,45.495999999999995,45.5,45.504,45.507999999999996,45.512,45.516,45.519999999999996,45.524,45.528,45.532,45.536,45.54,45.544,45.548,45.552,45.556,45.559999999999995,45.564,45.568,45.571999999999996,45.576,45.58,45.583999999999996,45.588,45.592,45.596,45.6,45.604,45.608,45.612,45.616,45.62,45.623999999999995,45.628,45.632,45.635999999999996,45.64,45.644,45.647999999999996,45.652,45.656,45.66,45.664,45.668,45.672,45.676,45.68,45.684,45.687999999999995,45.692,45.696,45.699999999999996,45.704,45.708,45.711999999999996,45.716,45.72,45.724,45.728,45.732,45.736,45.74,45.744,45.748,45.751999999999995,45.756,45.76,45.763999999999996,45.768,45.772,45.775999999999996,45.78,45.784,45.788,45.792,45.796,45.8,45.804,45.808,45.812,45.815999999999995,45.82,45.824,45.827999999999996,45.832,45.836,45.839999999999996,45.844,45.848,45.852,45.856,45.86,45.86,46.324,46.327999999999996,46.332,46.336,46.339999999999996,46.344,46.348,46.352,46.355999999999995,46.36,46.364,46.367999999999995,46.372,46.376,46.379999999999995,46.384,46.388,46.391999999999996,46.396,46.4,46.403999999999996,46.408,46.412,46.416,46.419999999999995,46.424,46.428,46.431999999999995,46.436,46.44,46.443999999999996,46.448,46.452,46.455999999999996,46.46,46.464,46.467999999999996,46.472,46.476,46.48,46.483999999999995,46.488,46.492,46.495999999999995,46.5,46.504,46.507999999999996,46.512,46.516,46.519999999999996,46.524,46.528,46.532,46.536,46.54,46.544,46.547999999999995,46.552,46.556,46.559999999999995,46.564,46.568,46.571999999999996,46.576,46.58,46.583999999999996,46.588,46.592,46.596,46.6,46.604,46.608,46.611999999999995,46.616,46.62,46.623999999999995,46.628,46.632,46.635999999999996,46.64,46.644,46.647999999999996,46.652,46.656,46.66,46.664,46.668,46.672,46.675999999999995,46.68,46.684,46.687999999999995,46.692,46.696,46.699999999999996,46.704,46.708,46.711999999999996,46.716,46.72,46.72,47.184,47.187999999999995,47.192,47.196,47.199999999999996,47.204,47.208,47.211999999999996,47.215999999999994,47.22,47.224,47.227999999999994,47.232,47.236,47.239999999999995,47.244,47.248,47.251999999999995,47.256,47.26,47.263999999999996,47.268,47.272,47.275999999999996,47.279999999999994,47.284,47.288,47.291999999999994,47.296,47.3,47.303999999999995,47.308,47.312,47.315999999999995,47.32,47.324,47.327999999999996,47.332,47.336,47.339999999999996,47.343999999999994,47.348,47.352,47.355999999999995,47.36,47.364,47.367999999999995,47.372,47.376,47.379999999999995,47.384,47.388,47.391999999999996,47.396,47.4,47.403999999999996,47.407999999999994,47.412,47.416,47.419999999999995,47.424,47.428,47.431999999999995,47.436,47.44,47.443999999999996,47.448,47.452,47.455999999999996,47.46,47.464,47.467999999999996,47.471999999999994,47.476,47.48,47.483999999999995,47.488,47.492,47.495999999999995,47.5,47.504,47.507999999999996,47.512,47.516,47.519999999999996,47.524,47.528,47.532,47.535999999999994,47.54,47.544,47.547999999999995,47.552,47.556,47.559999999999995,47.564,47.568,47.571999999999996,47.576,47.58,47.58,48.044000000000004,48.048,48.05200000000001,48.056000000000004,48.06,48.06400000000001,48.068000000000005,48.072,48.076,48.080000000000005,48.084,48.088,48.092000000000006,48.096000000000004,48.1,48.104000000000006,48.108000000000004,48.112,48.11600000000001,48.120000000000005,48.124,48.12800000000001,48.132000000000005,48.136,48.14,48.144000000000005,48.148,48.152,48.156000000000006,48.160000000000004,48.164,48.168000000000006,48.172000000000004,48.176,48.18000000000001,48.184000000000005,48.188,48.19200000000001,48.196000000000005,48.2,48.204,48.208000000000006,48.212,48.216,48.220000000000006,48.224000000000004,48.228,48.232000000000006,48.236000000000004,48.24,48.24400000000001,48.248000000000005,48.252,48.25600000000001,48.260000000000005,48.264,48.268,48.272000000000006,48.276,48.28,48.284000000000006,48.288000000000004,48.292,48.29600000000001,48.300000000000004,48.304,48.30800000000001,48.312000000000005,48.316,48.32000000000001,48.324000000000005,48.328,48.332,48.336000000000006,48.34,48.344,48.348000000000006,48.352000000000004,48.356,48.36000000000001,48.364000000000004,48.368,48.37200000000001,48.376000000000005,48.38,48.38400000000001,48.388000000000005,48.392,48.396,48.400000000000006,48.404,48.408,48.412000000000006,48.416000000000004,48.42,48.42400000000001,48.428000000000004,48.432,48.43600000000001,48.440000000000005,48.440000000000005,48.903,48.907,48.911,48.915,48.919,48.923,48.927,48.931,48.934999999999995,48.939,48.943,48.946999999999996,48.951,48.955,48.958999999999996,48.963,48.967,48.971,48.975,48.979,48.983,48.987,48.991,48.995,48.998999999999995,49.003,49.007,49.010999999999996,49.015,49.019,49.022999999999996,49.027,49.031,49.035,49.039,49.043,49.047,49.051,49.055,49.059,49.062999999999995,49.067,49.071,49.074999999999996,49.079,49.083,49.086999999999996,49.091,49.095,49.099,49.103,49.107,49.111,49.115,49.119,49.123,49.126999999999995,49.131,49.135,49.138999999999996,49.143,49.147,49.150999999999996,49.155,49.159,49.163,49.167,49.171,49.175,49.179,49.183,49.187,49.190999999999995,49.195,49.199,49.202999999999996,49.207,49.211,49.214999999999996,49.219,49.223,49.227,49.231,49.235,49.239,49.243,49.247,49.251,49.254999999999995,49.259,49.263,49.266999999999996,49.271,49.275,49.278999999999996,49.283,49.287,49.291,49.295,49.299,49.299,49.763,49.766999999999996,49.771,49.775,49.778999999999996,49.783,49.787,49.791,49.794999999999995,49.799,49.803,49.806999999999995,49.811,49.815,49.818999999999996,49.823,49.827,49.830999999999996,49.835,49.839,49.842999999999996,49.847,49.851,49.855,49.858999999999995,49.863,49.867,49.870999999999995,49.875,49.879,49.882999999999996,49.887,49.891,49.894999999999996,49.899,49.903,49.907,49.911,49.915,49.919,49.922999999999995,49.927,49.931,49.934999999999995,49.939,49.943,49.946999999999996,49.951,49.955,49.958999999999996,49.963,49.967,49.971,49.975,49.979,49.983,49.986999999999995,49.991,49.995,49.998999999999995,50.003,50.007,50.010999999999996,50.015,50.019,50.022999999999996,50.027,50.031,50.035,50.039,50.043,50.047,50.050999999999995,50.055,50.059,50.062999999999995,50.067,50.071,50.074999999999996,50.079,50.083,50.086999999999996,50.091,50.095,50.099,50.103,50.107,50.111,50.114999999999995,50.119,50.123,50.126999999999995,50.131,50.135,50.138999999999996,50.143,50.147,50.150999999999996,50.155,50.159,50.159,50.623,50.626999999999995,50.631,50.635,50.638999999999996,50.643,50.647,50.650999999999996,50.654999999999994,50.659,50.663,50.666999999999994,50.671,50.675,50.678999999999995,50.683,50.687,50.690999999999995,50.695,50.699,50.702999999999996,50.707,50.711,50.714999999999996,50.718999999999994,50.723,50.727,50.730999999999995,50.735,50.739,50.742999999999995,50.747,50.751,50.754999999999995,50.759,50.763,50.766999999999996,50.771,50.775,50.778999999999996,50.782999999999994,50.787,50.791,50.794999999999995,50.799,50.803,50.806999999999995,50.811,50.815,50.818999999999996,50.823,50.827,50.830999999999996,50.835,50.839,50.842999999999996,50.846999999999994,50.851,50.855,50.858999999999995,50.863,50.867,50.870999999999995,50.875,50.879,50.882999999999996,50.887,50.891,50.894999999999996,50.899,50.903,50.907,50.910999999999994,50.915,50.919,50.922999999999995,50.927,50.931,50.934999999999995,50.939,50.943,50.946999999999996,50.951,50.955,50.958999999999996,50.963,50.967,50.971,50.974999999999994,50.979,50.983,50.986999999999995,50.991,50.995,50.998999999999995,51.003,51.007,51.010999999999996,51.015,51.019,51.019,51.483000000000004,51.487,51.49100000000001,51.495000000000005,51.499,51.50300000000001,51.507000000000005,51.511,51.515,51.519000000000005,51.523,51.527,51.531000000000006,51.535000000000004,51.539,51.543000000000006,51.547000000000004,51.551,51.55500000000001,51.559000000000005,51.563,51.56700000000001,51.571000000000005,51.575,51.579,51.583000000000006,51.587,51.591,51.595000000000006,51.599000000000004,51.603,51.607000000000006,51.611000000000004,51.615,51.61900000000001,51.623000000000005,51.627,51.63100000000001,51.635000000000005,51.639,51.643,51.647000000000006,51.651,51.655,51.659000000000006,51.663000000000004,51.667,51.67100000000001,51.675000000000004,51.679,51.68300000000001,51.687000000000005,51.691,51.69500000000001,51.699000000000005,51.703,51.707,51.711000000000006,51.715,51.719,51.723000000000006,51.727000000000004,51.731,51.73500000000001,51.739000000000004,51.743,51.74700000000001,51.751000000000005,51.755,51.75900000000001,51.763000000000005,51.767,51.771,51.775000000000006,51.779,51.783,51.787000000000006,51.791000000000004,51.795,51.79900000000001,51.803000000000004,51.807,51.81100000000001,51.815000000000005,51.819,51.82300000000001,51.827000000000005,51.831,51.835,51.839000000000006,51.843,51.847,51.851000000000006,51.855000000000004,51.859,51.86300000000001,51.867000000000004,51.871,51.87500000000001,51.879000000000005,51.879000000000005,52.343,52.347,52.351000000000006,52.355000000000004,52.359,52.36300000000001,52.367000000000004,52.371,52.375,52.379000000000005,52.383,52.387,52.391000000000005,52.395,52.399,52.403000000000006,52.407000000000004,52.411,52.415000000000006,52.419000000000004,52.423,52.42700000000001,52.431000000000004,52.435,52.439,52.443000000000005,52.447,52.451,52.455000000000005,52.459,52.463,52.467000000000006,52.471000000000004,52.475,52.479000000000006,52.483000000000004,52.487,52.49100000000001,52.495000000000005,52.499,52.503,52.507000000000005,52.511,52.515,52.519000000000005,52.523,52.527,52.531000000000006,52.535000000000004,52.539,52.543000000000006,52.547000000000004,52.551,52.55500000000001,52.559000000000005,52.563,52.567,52.571000000000005,52.575,52.579,52.583000000000006,52.587,52.591,52.595000000000006,52.599000000000004,52.603,52.607000000000006,52.611000000000004,52.615,52.61900000000001,52.623000000000005,52.627,52.631,52.635000000000005,52.639,52.643,52.647000000000006,52.651,52.655,52.659000000000006,52.663000000000004,52.667,52.67100000000001,52.675000000000004,52.679,52.68300000000001,52.687000000000005,52.691,52.695,52.699000000000005,52.703,52.707,52.711000000000006,52.715,52.719,52.723000000000006,52.727000000000004,52.731,52.73500000000001,52.739000000000004,52.739000000000004,53.203,53.207,53.211000000000006,53.215,53.219,53.223000000000006,53.227000000000004,53.231,53.235,53.239000000000004,53.243,53.247,53.251000000000005,53.255,53.259,53.263000000000005,53.267,53.271,53.275000000000006,53.279,53.283,53.287000000000006,53.291000000000004,53.295,53.299,53.303000000000004,53.307,53.311,53.315000000000005,53.319,53.323,53.327000000000005,53.331,53.335,53.339000000000006,53.343,53.347,53.351000000000006,53.355000000000004,53.359,53.363,53.367000000000004,53.371,53.375,53.379000000000005,53.383,53.387,53.391000000000005,53.395,53.399,53.403000000000006,53.407000000000004,53.411,53.415000000000006,53.419000000000004,53.423,53.427,53.431000000000004,53.435,53.439,53.443000000000005,53.447,53.451,53.455000000000005,53.459,53.463,53.467000000000006,53.471000000000004,53.475,53.479000000000006,53.483000000000004,53.487,53.491,53.495000000000005,53.499,53.503,53.507000000000005,53.511,53.515,53.519000000000005,53.523,53.527,53.531000000000006,53.535000000000004,53.539,53.543000000000006,53.547000000000004,53.551,53.555,53.559000000000005,53.563,53.567,53.571000000000005,53.575,53.579,53.583000000000006,53.587,53.591,53.595000000000006,53.599000000000004,53.599000000000004,54.063,54.067,54.071000000000005,54.075,54.079,54.083000000000006,54.087,54.091,54.095,54.099000000000004,54.103,54.107,54.111000000000004,54.115,54.119,54.123000000000005,54.127,54.131,54.135000000000005,54.139,54.143,54.147000000000006,54.151,54.155,54.159,54.163000000000004,54.167,54.171,54.175000000000004,54.179,54.183,54.187000000000005,54.191,54.195,54.199000000000005,54.203,54.207,54.211000000000006,54.215,54.219,54.223,54.227000000000004,54.231,54.235,54.239000000000004,54.243,54.247,54.251000000000005,54.255,54.259,54.263000000000005,54.267,54.271,54.275000000000006,54.279,54.283,54.287,54.291000000000004,54.295,54.299,54.303000000000004,54.307,54.311,54.315000000000005,54.319,54.323,54.327000000000005,54.331,54.335,54.339000000000006,54.343,54.347,54.351,54.355000000000004,54.359,54.363,54.367000000000004,54.371,54.375,54.379000000000005,54.383,54.387,54.391000000000005,54.395,54.399,54.403000000000006,54.407000000000004,54.411,54.415,54.419000000000004,54.423,54.427,54.431000000000004,54.435,54.439,54.443000000000005,54.447,54.451,54.455000000000005,54.459,54.459,54.923,54.927,54.931000000000004,54.935,54.939,54.943000000000005,54.947,54.951,54.955,54.959,54.963,54.967,54.971000000000004,54.975,54.979,54.983000000000004,54.987,54.991,54.995000000000005,54.999,55.003,55.007000000000005,55.011,55.015,55.019,55.023,55.027,55.031,55.035000000000004,55.039,55.043,55.047000000000004,55.051,55.055,55.059000000000005,55.063,55.067,55.071000000000005,55.075,55.079,55.083,55.087,55.091,55.095,55.099000000000004,55.103,55.107,55.111000000000004,55.115,55.119,55.123000000000005,55.127,55.131,55.135000000000005,55.139,55.143,55.147,55.151,55.155,55.159,55.163000000000004,55.167,55.171,55.175000000000004,55.179,55.183,55.187000000000005,55.191,55.195,55.199000000000005,55.203,55.207,55.211,55.215,55.219,55.223,55.227000000000004,55.231,55.235,55.239000000000004,55.243,55.247,55.251000000000005,55.255,55.259,55.263000000000005,55.267,55.271,55.275,55.279,55.283,55.287,55.291000000000004,55.295,55.299,55.303000000000004,55.307,55.311,55.315000000000005,55.319,55.319,55.783,55.787,55.791000000000004,55.795,55.799,55.803000000000004,55.807,55.811,55.815,55.819,55.823,55.827,55.831,55.835,55.839,55.843,55.847,55.851,55.855000000000004,55.859,55.863,55.867000000000004,55.871,55.875,55.879,55.883,55.887,55.891,55.895,55.899,55.903,55.907000000000004,55.911,55.915,55.919000000000004,55.923,55.927,55.931000000000004,55.935,55.939,55.943,55.947,55.951,55.955,55.959,55.963,55.967,55.971000000000004,55.975,55.979,55.983000000000004,55.987,55.991,55.995000000000005,55.999,56.003,56.007,56.011,56.015,56.019,56.023,56.027,56.031,56.035000000000004,56.039,56.043,56.047000000000004,56.051,56.055,56.059000000000005,56.063,56.067,56.071,56.075,56.079,56.083,56.087,56.091,56.095,56.099000000000004,56.103,56.107,56.111000000000004,56.115,56.119,56.123000000000005,56.127,56.131,56.135,56.139,56.143,56.147,56.151,56.155,56.159,56.163000000000004,56.167,56.171,56.175000000000004,56.179,56.179,56.643,56.647,56.651,56.655,56.659,56.663000000000004,56.667,56.671,56.675,56.679,56.683,56.687,56.691,56.695,56.699,56.703,56.707,56.711,56.715,56.719,56.723,56.727000000000004,56.731,56.735,56.739,56.743,56.747,56.751,56.755,56.759,56.763,56.767,56.771,56.775,56.779,56.783,56.787,56.791000000000004,56.795,56.799,56.803,56.807,56.811,56.815,56.819,56.823,56.827,56.831,56.835,56.839,56.843,56.847,56.851,56.855000000000004,56.859,56.863,56.867,56.871,56.875,56.879,56.883,56.887,56.891,56.895,56.899,56.903,56.907000000000004,56.911,56.915,56.919000000000004,56.923,56.927,56.931,56.935,56.939,56.943,56.947,56.951,56.955,56.959,56.963,56.967,56.971000000000004,56.975,56.979,56.983000000000004,56.987,56.991,56.995,56.999,57.003,57.007,57.011,57.015,57.019,57.023,57.027,57.031,57.035000000000004,57.039,57.039,57.503,57.507,57.511,57.515,57.519,57.523,57.527,57.531,57.535,57.539,57.543,57.547,57.551,57.555,57.559,57.563,57.567,57.571,57.575,57.579,57.583,57.587,57.591,57.595,57.599,57.603,57.607,57.611,57.615,57.619,57.623,57.627,57.631,57.635,57.639,57.643,57.647,57.651,57.655,57.659,57.663,57.667,57.671,57.675,57.679,57.683,57.687,57.691,57.695,57.699,57.703,57.707,57.711,57.715,57.719,57.723,57.727,57.731,57.735,57.739,57.743,57.747,57.751,57.755,57.759,57.763,57.767,57.771,57.775,57.779,57.783,57.787,57.791,57.795,57.799,57.803,57.807,57.811,57.815,57.819,57.823,57.827,57.831,57.835,57.839,57.843,57.847,57.851,57.855,57.859,57.863,57.867,57.871,57.875,57.879,57.883,57.887,57.891,57.895,57.899,57.899,58.363,58.367,58.371,58.375,58.379,58.383,58.387,58.391,58.394999999999996,58.399,58.403,58.407,58.411,58.415,58.419,58.423,58.427,58.431,58.435,58.439,58.443,58.447,58.451,58.455,58.458999999999996,58.463,58.467,58.471,58.475,58.479,58.483,58.487,58.491,58.495,58.499,58.503,58.507,58.511,58.515,58.519,58.522999999999996,58.527,58.531,58.535,58.539,58.543,58.547,58.551,58.555,58.559,58.563,58.567,58.571,58.575,58.579,58.583,58.586999999999996,58.591,58.595,58.599,58.603,58.607,58.611,58.615,58.619,58.623,58.627,58.631,58.635,58.639,58.643,58.647,58.650999999999996,58.655,58.659,58.663,58.667,58.671,58.675,58.679,58.683,58.687,58.691,58.695,58.699,58.703,58.707,58.711,58.714999999999996,58.719,58.723,58.727,58.731,58.735,58.739,58.743,58.747,58.751,58.755,58.759,58.759,59.223,59.227,59.231,59.235,59.239,59.243,59.247,59.251,59.254999999999995,59.259,59.263,59.266999999999996,59.271,59.275,59.278999999999996,59.283,59.287,59.291,59.295,59.299,59.303,59.307,59.311,59.315,59.318999999999996,59.323,59.327,59.330999999999996,59.335,59.339,59.342999999999996,59.347,59.351,59.355,59.359,59.363,59.367,59.371,59.375,59.379,59.382999999999996,59.387,59.391,59.394999999999996,59.399,59.403,59.407,59.411,59.415,59.419,59.423,59.427,59.431,59.435,59.439,59.443,59.446999999999996,59.451,59.455,59.458999999999996,59.463,59.467,59.471,59.475,59.479,59.483,59.487,59.491,59.495,59.499,59.503,59.507,59.510999999999996,59.515,59.519,59.522999999999996,59.527,59.531,59.535,59.539,59.543,59.547,59.551,59.555,59.559,59.563,59.567,59.571,59.574999999999996,59.579,59.583,59.586999999999996,59.591,59.595,59.599,59.603,59.607,59.611,59.615,59.619,59.619,60.083,60.086999999999996,60.091,60.095,60.099,60.103,60.107,60.111,60.114999999999995,60.119,60.123,60.126999999999995,60.131,60.135,60.138999999999996,60.143,60.147,60.150999999999996,60.155,60.159,60.163,60.167,60.171,60.175,60.178999999999995,60.183,60.187,60.190999999999995,60.195,60.199,60.202999999999996,60.207,60.211,60.214999999999996,60.219,60.223,60.227,60.231,60.235,60.239,60.242999999999995,60.247,60.251,60.254999999999995,60.259,60.263,60.266999999999996,60.271,60.275,60.278999999999996,60.283,60.287,60.291,60.295,60.299,60.303,60.306999999999995,60.311,60.315,60.318999999999996,60.323,60.327,60.330999999999996,60.335,60.339,60.342999999999996,60.347,60.351,60.355,60.359,60.363,60.367,60.370999999999995,60.375,60.379,60.382999999999996,60.387,60.391,60.394999999999996,60.399,60.403,60.407,60.411,60.415,60.419,60.423,60.427,60.431,60.434999999999995,60.439,60.443,60.446999999999996,60.451,60.455,60.458999999999996,60.463,60.467,60.471,60.475,60.479,60.479,60.943,60.946999999999996,60.951,60.955,60.958999999999996,60.963,60.967,60.971,60.974999999999994,60.979,60.983,60.986999999999995,60.991,60.995,60.998999999999995,61.003,61.007,61.010999999999996,61.015,61.019,61.022999999999996,61.027,61.031,61.035,61.038999999999994,61.043,61.047,61.050999999999995,61.055,61.059,61.062999999999995,61.067,61.071,61.074999999999996,61.079,61.083,61.086999999999996,61.091,61.095,61.099,61.102999999999994,61.107,61.111,61.114999999999995,61.119,61.123,61.126999999999995,61.131,61.135,61.138999999999996,61.143,61.147,61.150999999999996,61.155,61.159,61.163,61.166999999999994,61.171,61.175,61.178999999999995,61.183,61.187,61.190999999999995,61.195,61.199,61.202999999999996,61.207,61.211,61.214999999999996,61.219,61.223,61.227,61.230999999999995,61.235,61.239,61.242999999999995,61.247,61.251,61.254999999999995,61.259,61.263,61.266999999999996,61.271,61.275,61.278999999999996,61.283,61.287,61.291,61.294999999999995,61.299,61.303,61.306999999999995,61.311,61.315,61.318999999999996,61.323,61.327,61.330999999999996,61.335,61.339,61.339,61.803000000000004,61.807,61.81100000000001,61.815000000000005,61.819,61.82300000000001,61.827000000000005,61.831,61.835,61.839000000000006,61.843,61.847,61.851000000000006,61.855000000000004,61.859,61.86300000000001,61.867000000000004,61.871,61.87500000000001,61.879000000000005,61.883,61.88700000000001,61.891000000000005,61.895,61.899,61.903000000000006,61.907000000000004,61.911,61.915000000000006,61.919000000000004,61.923,61.92700000000001,61.931000000000004,61.935,61.93900000000001,61.943000000000005,61.947,61.95100000000001,61.955000000000005,61.959,61.963,61.967000000000006,61.971000000000004,61.975,61.979000000000006,61.983000000000004,61.987,61.99100000000001,61.995000000000005,61.999,62.00300000000001,62.007000000000005,62.011,62.01500000000001,62.019000000000005,62.023,62.027,62.031000000000006,62.035000000000004,62.039,62.043000000000006,62.047000000000004,62.051,62.05500000000001,62.059000000000005,62.063,62.06700000000001,62.071000000000005,62.075,62.07900000000001,62.083000000000006,62.087,62.091,62.095000000000006,62.099000000000004,62.103,62.107000000000006,62.111000000000004,62.115,62.11900000000001,62.123000000000005,62.127,62.13100000000001,62.135000000000005,62.139,62.14300000000001,62.147000000000006,62.151,62.155,62.159000000000006,62.163000000000004,62.167,62.17100000000001,62.175000000000004,62.179,62.18300000000001,62.187000000000005,62.191,62.19500000000001,62.199000000000005,62.199000000000005,62.663000000000004,62.667,62.67100000000001,62.675000000000004,62.679,62.68300000000001,62.687000000000005,62.691,62.695,62.699000000000005,62.703,62.707,62.711000000000006,62.715,62.719,62.723000000000006,62.727000000000004,62.731,62.73500000000001,62.739000000000004,62.743,62.74700000000001,62.751000000000005,62.755,62.759,62.763000000000005,62.767,62.771,62.775000000000006,62.779,62.783,62.787000000000006,62.791000000000004,62.795,62.79900000000001,62.803000000000004,62.807,62.81100000000001,62.815000000000005,62.819,62.823,62.827000000000005,62.831,62.835,62.839000000000006,62.843,62.847,62.851000000000006,62.855000000000004,62.859,62.86300000000001,62.867000000000004,62.871,62.87500000000001,62.879000000000005,62.883,62.887,62.891000000000005,62.895,62.899,62.903000000000006,62.907000000000004,62.911,62.915000000000006,62.919000000000004,62.923,62.92700000000001,62.931000000000004,62.935,62.93900000000001,62.943000000000005,62.947,62.951,62.955000000000005,62.959,62.963,62.967000000000006,62.971000000000004,62.975,62.979000000000006,62.983000000000004,62.987,62.99100000000001,62.995000000000005,62.999,63.00300000000001,63.007000000000005,63.011,63.015,63.019000000000005,63.023,63.027,63.031000000000006,63.035000000000004,63.039,63.043000000000006,63.047000000000004,63.051,63.05500000000001,63.059000000000005,63.059000000000005,63.523,63.527,63.531000000000006,63.535000000000004,63.539,63.543000000000006,63.547000000000004,63.551,63.555,63.559000000000005,63.563,63.567,63.571000000000005,63.575,63.579,63.583000000000006,63.587,63.591,63.595000000000006,63.599000000000004,63.603,63.607000000000006,63.611000000000004,63.615,63.619,63.623000000000005,63.627,63.631,63.635000000000005,63.639,63.643,63.647000000000006,63.651,63.655,63.659000000000006,63.663000000000004,63.667,63.67100000000001,63.675000000000004,63.679,63.683,63.687000000000005,63.691,63.695,63.699000000000005,63.703,63.707,63.711000000000006,63.715,63.719,63.723000000000006,63.727000000000004,63.731,63.73500000000001,63.739000000000004,63.743,63.747,63.751000000000005,63.755,63.759,63.763000000000005,63.767,63.771,63.775000000000006,63.779,63.783,63.787000000000006,63.791000000000004,63.795,63.79900000000001,63.803000000000004,63.807,63.811,63.815000000000005,63.819,63.823,63.827000000000005,63.831,63.835,63.839000000000006,63.843,63.847,63.851000000000006,63.855000000000004,63.859,63.86300000000001,63.867000000000004,63.871,63.875,63.879000000000005,63.883,63.887,63.891000000000005,63.895,63.899,63.903000000000006,63.907000000000004,63.911,63.915000000000006,63.919000000000004,63.919000000000004,64.383,64.387,64.39099999999999,64.395,64.399,64.40299999999999,64.407,64.411,64.41499999999999,64.419,64.423,64.42699999999999,64.431,64.435,64.439,64.443,64.44699999999999,64.451,64.455,64.45899999999999,64.463,64.467,64.47099999999999,64.475,64.479,64.48299999999999,64.487,64.491,64.49499999999999,64.499,64.503,64.50699999999999,64.511,64.515,64.51899999999999,64.523,64.527,64.53099999999999,64.535,64.539,64.54299999999999,64.547,64.551,64.55499999999999,64.559,64.563,64.567,64.571,64.57499999999999,64.579,64.583,64.58699999999999,64.591,64.595,64.59899999999999,64.603,64.607,64.61099999999999,64.615,64.619,64.62299999999999,64.627,64.631,64.63499999999999,64.639,64.643,64.64699999999999,64.651,64.655,64.65899999999999,64.663,64.667,64.67099999999999,64.675,64.679,64.68299999999999,64.687,64.691,64.695,64.699,64.70299999999999,64.707,64.711,64.71499999999999,64.719,64.723,64.72699999999999,64.731,64.735,64.73899999999999,64.743,64.747,64.75099999999999,64.755,64.759,64.76299999999999,64.767,64.771,64.77499999999999,64.779,64.779,65.243,65.247,65.25099999999999,65.255,65.259,65.26299999999999,65.267,65.271,65.27499999999999,65.279,65.283,65.28699999999999,65.291,65.295,65.29899999999999,65.303,65.30699999999999,65.31099999999999,65.315,65.31899999999999,65.323,65.327,65.33099999999999,65.335,65.339,65.34299999999999,65.347,65.351,65.35499999999999,65.359,65.363,65.36699999999999,65.371,65.375,65.37899999999999,65.383,65.387,65.39099999999999,65.395,65.399,65.40299999999999,65.407,65.411,65.41499999999999,65.419,65.423,65.42699999999999,65.431,65.43499999999999,65.439,65.443,65.44699999999999,65.451,65.455,65.45899999999999,65.463,65.467,65.47099999999999,65.475,65.479,65.48299999999999,65.487,65.491,65.49499999999999,65.499,65.503,65.50699999999999,65.511,65.515,65.51899999999999,65.523,65.527,65.53099999999999,65.535,65.539,65.54299999999999,65.547,65.551,65.55499999999999,65.559,65.56299999999999,65.567,65.571,65.57499999999999,65.579,65.583,65.58699999999999,65.591,65.595,65.59899999999999,65.603,65.607,65.61099999999999,65.615,65.619,65.62299999999999,65.627,65.631,65.63499999999999,65.639,65.639,66.103,66.107,66.11099999999999,66.115,66.119,66.12299999999999,66.127,66.131,66.13499999999999,66.139,66.143,66.14699999999999,66.151,66.155,66.15899999999999,66.163,66.16699999999999,66.17099999999999,66.175,66.17899999999999,66.18299999999999,66.187,66.19099999999999,66.195,66.199,66.20299999999999,66.207,66.211,66.21499999999999,66.219,66.223,66.22699999999999,66.231,66.235,66.23899999999999,66.243,66.247,66.25099999999999,66.255,66.259,66.26299999999999,66.267,66.271,66.27499999999999,66.279,66.283,66.28699999999999,66.291,66.29499999999999,66.29899999999999,66.303,66.30699999999999,66.31099999999999,66.315,66.31899999999999,66.323,66.327,66.33099999999999,66.335,66.339,66.34299999999999,66.347,66.351,66.35499999999999,66.359,66.363,66.36699999999999,66.371,66.375,66.37899999999999,66.383,66.387,66.39099999999999,66.395,66.399,66.40299999999999,66.407,66.411,66.41499999999999,66.419,66.42299999999999,66.42699999999999,66.431,66.43499999999999,66.439,66.443,66.44699999999999,66.451,66.455,66.45899999999999,66.463,66.467,66.47099999999999,66.475,66.479,66.48299999999999,66.487,66.491,66.49499999999999,66.499,66.499,66.96300000000001,66.96700000000001,66.971,66.97500000000001,66.97900000000001,66.983,66.98700000000001,66.99100000000001,66.995,66.99900000000001,67.00300000000001,67.007,67.01100000000001,67.01500000000001,67.019,67.02300000000001,67.027,67.031,67.03500000000001,67.039,67.043,67.04700000000001,67.051,67.055,67.05900000000001,67.063,67.06700000000001,67.07100000000001,67.075,67.07900000000001,67.08300000000001,67.087,67.09100000000001,67.09500000000001,67.099,67.10300000000001,67.10700000000001,67.111,67.11500000000001,67.11900000000001,67.123,67.12700000000001,67.13100000000001,67.135,67.13900000000001,67.14300000000001,67.147,67.15100000000001,67.155,67.159,67.16300000000001,67.167,67.171,67.17500000000001,67.179,67.183,67.18700000000001,67.191,67.19500000000001,67.19900000000001,67.203,67.20700000000001,67.21100000000001,67.215,67.21900000000001,67.22300000000001,67.227,67.23100000000001,67.23500000000001,67.239,67.24300000000001,67.24700000000001,67.251,67.25500000000001,67.25900000000001,67.263,67.26700000000001,67.27100000000002,67.275,67.27900000000001,67.283,67.287,67.29100000000001,67.295,67.299,67.30300000000001,67.307,67.311,67.31500000000001,67.319,67.32300000000001,67.32700000000001,67.331,67.33500000000001,67.33900000000001,67.343,67.34700000000001,67.35100000000001,67.355,67.35900000000001,67.35900000000001,67.82300000000001,67.82700000000001,67.831,67.83500000000001,67.83900000000001,67.843,67.84700000000001,67.85100000000001,67.855,67.85900000000001,67.86300000000001,67.867,67.87100000000001,67.87500000000001,67.879,67.88300000000001,67.887,67.891,67.89500000000001,67.899,67.903,67.90700000000001,67.911,67.915,67.91900000000001,67.923,67.927,67.93100000000001,67.935,67.93900000000001,67.94300000000001,67.947,67.95100000000001,67.95500000000001,67.959,67.96300000000001,67.96700000000001,67.971,67.97500000000001,67.97900000000001,67.983,67.98700000000001,67.99100000000001,67.995,67.99900000000001,68.00300000000001,68.007,68.01100000000001,68.015,68.019,68.02300000000001,68.027,68.031,68.03500000000001,68.039,68.043,68.04700000000001,68.051,68.055,68.05900000000001,68.063,68.06700000000001,68.07100000000001,68.075,68.07900000000001,68.08300000000001,68.087,68.09100000000001,68.09500000000001,68.099,68.10300000000001,68.10700000000001,68.111,68.11500000000001,68.11900000000001,68.123,68.12700000000001,68.13100000000001,68.135,68.13900000000001,68.143,68.147,68.15100000000001,68.155,68.159,68.16300000000001,68.167,68.171,68.17500000000001,68.179,68.183,68.18700000000001,68.191,68.19500000000001,68.19900000000001,68.203,68.20700000000001,68.21100000000001,68.215,68.21900000000001,68.21900000000001,68.683,68.68700000000001,68.691,68.69500000000001,68.69900000000001,68.703,68.70700000000001,68.71100000000001,68.715,68.71900000000001,68.72300000000001,68.727,68.73100000000001,68.73500000000001,68.739,68.74300000000001,68.747,68.751,68.75500000000001,68.759,68.763,68.76700000000001,68.771,68.775,68.77900000000001,68.783,68.787,68.79100000000001,68.795,68.799,68.80300000000001,68.807,68.811,68.81500000000001,68.819,68.82300000000001,68.82700000000001,68.831,68.83500000000001,68.83900000000001,68.843,68.84700000000001,68.85100000000001,68.855,68.85900000000001,68.86300000000001,68.867,68.87100000000001,68.875,68.879,68.88300000000001,68.887,68.891,68.89500000000001,68.899,68.903,68.90700000000001,68.911,68.915,68.91900000000001,68.923,68.927,68.93100000000001,68.935,68.93900000000001,68.94300000000001,68.947,68.95100000000001,68.95500000000001,68.959,68.96300000000001,68.96700000000001,68.971,68.97500000000001,68.97900000000001,68.983,68.98700000000001,68.99100000000001,68.995,68.99900000000001,69.003,69.007,69.01100000000001,69.015,69.019,69.02300000000001,69.027,69.031,69.03500000000001,69.039,69.043,69.04700000000001,69.051,69.055,69.05900000000001,69.063,69.06700000000001,69.07100000000001,69.075,69.07900000000001,69.07900000000001,69.543,69.54700000000001,69.551,69.555,69.55900000000001,69.563,69.56700000000001,69.57100000000001,69.575,69.57900000000001,69.58300000000001,69.587,69.59100000000001,69.59500000000001,69.599,69.60300000000001,69.607,69.611,69.61500000000001,69.619,69.623,69.62700000000001,69.631,69.635,69.63900000000001,69.643,69.647,69.65100000000001,69.655,69.659,69.66300000000001,69.667,69.671,69.67500000000001,69.679,69.683,69.68700000000001,69.691,69.69500000000001,69.69900000000001,69.703,69.70700000000001,69.71100000000001,69.715,69.71900000000001,69.72300000000001,69.727,69.73100000000001,69.735,69.739,69.74300000000001,69.747,69.751,69.75500000000001,69.759,69.763,69.76700000000001,69.771,69.775,69.77900000000001,69.783,69.787,69.79100000000001,69.795,69.799,69.80300000000001,69.807,69.811,69.81500000000001,69.819,69.82300000000001,69.82700000000001,69.831,69.83500000000001,69.83900000000001,69.843,69.84700000000001,69.85100000000001,69.855,69.85900000000001,69.863,69.867,69.87100000000001,69.875,69.879,69.88300000000001,69.887,69.891,69.89500000000001,69.899,69.903,69.90700000000001,69.911,69.915,69.91900000000001,69.923,69.927,69.93100000000001,69.935,69.93900000000001,69.93900000000001,70.403,70.40700000000001,70.411,70.415,70.41900000000001,70.423,70.427,70.43100000000001,70.435,70.43900000000001,70.44300000000001,70.447,70.45100000000001,70.45500000000001,70.459,70.46300000000001,70.467,70.471,70.47500000000001,70.479,70.483,70.48700000000001,70.491,70.495,70.49900000000001,70.503,70.507,70.51100000000001,70.515,70.519,70.52300000000001,70.527,70.531,70.53500000000001,70.539,70.543,70.54700000000001,70.551,70.555,70.55900000000001,70.563,70.56700000000001,70.57100000000001,70.575,70.57900000000001,70.58300000000001,70.587,70.59100000000001,70.595,70.599,70.60300000000001,70.607,70.611,70.61500000000001,70.619,70.623,70.62700000000001,70.631,70.635,70.63900000000001,70.643,70.647,70.65100000000001,70.655,70.659,70.66300000000001,70.667,70.671,70.67500000000001,70.679,70.683,70.68700000000001,70.691,70.69500000000001,70.69900000000001,70.703,70.70700000000001,70.71100000000001,70.715,70.71900000000001,70.723,70.727,70.73100000000001,70.735,70.739,70.74300000000001,70.747,70.751,70.75500000000001,70.759,70.763,70.76700000000001,70.771,70.775,70.77900000000001,70.783,70.787,70.79100000000001,70.795,70.799,70.799,71.263,71.26700000000001,71.271,71.275,71.27900000000001,71.283,71.287,71.29100000000001,71.295,71.299,71.30300000000001,71.307,71.311,71.31500000000001,71.319,71.32300000000001,71.327,71.331,71.33500000000001,71.339,71.343,71.34700000000001,71.351,71.355,71.35900000000001,71.363,71.367,71.37100000000001,71.375,71.379,71.38300000000001,71.387,71.391,71.39500000000001,71.399,71.403,71.40700000000001,71.411,71.415,71.41900000000001,71.423,71.427,71.43100000000001,71.435,71.43900000000001,71.44300000000001,71.447,71.45100000000001,71.455,71.459,71.46300000000001,71.467,71.471,71.47500000000001,71.479,71.483,71.48700000000001,71.491,71.495,71.49900000000001,71.503,71.507,71.51100000000001,71.515,71.519,71.52300000000001,71.527,71.531,71.53500000000001,71.539,71.543,71.54700000000001,71.551,71.555,71.55900000000001,71.563,71.56700000000001,71.57100000000001,71.575,71.57900000000001,71.583,71.587,71.59100000000001,71.595,71.599,71.60300000000001,71.607,71.611,71.61500000000001,71.619,71.623,71.62700000000001,71.631,71.635,71.63900000000001,71.643,71.647,71.65100000000001,71.655,71.659,71.659,72.123,72.12700000000001,72.131,72.135,72.13900000000001,72.143,72.147,72.15100000000001,72.155,72.159,72.16300000000001,72.167,72.171,72.17500000000001,72.179,72.183,72.187,72.191,72.19500000000001,72.199,72.203,72.20700000000001,72.211,72.215,72.21900000000001,72.223,72.227,72.23100000000001,72.235,72.239,72.24300000000001,72.247,72.251,72.25500000000001,72.259,72.263,72.26700000000001,72.271,72.275,72.27900000000001,72.283,72.287,72.29100000000001,72.295,72.299,72.30300000000001,72.307,72.311,72.315,72.319,72.32300000000001,72.327,72.331,72.33500000000001,72.339,72.343,72.34700000000001,72.351,72.355,72.35900000000001,72.363,72.367,72.37100000000001,72.375,72.379,72.38300000000001,72.387,72.391,72.39500000000001,72.399,72.403,72.40700000000001,72.411,72.415,72.41900000000001,72.423,72.427,72.43100000000001,72.435,72.43900000000001,72.443,72.447,72.45100000000001,72.455,72.459,72.46300000000001,72.467,72.471,72.47500000000001,72.479,72.483,72.48700000000001,72.491,72.495,72.49900000000001,72.503,72.507,72.51100000000001,72.515,72.519,72.519,72.983,72.98700000000001,72.991,72.995,72.99900000000001,73.003,73.007,73.01100000000001,73.015,73.019,73.02300000000001,73.027,73.031,73.03500000000001,73.039,73.043,73.047,73.051,73.055,73.059,73.063,73.06700000000001,73.071,73.075,73.07900000000001,73.083,73.087,73.09100000000001,73.095,73.099,73.10300000000001,73.107,73.111,73.11500000000001,73.119,73.123,73.12700000000001,73.131,73.135,73.13900000000001,73.143,73.147,73.15100000000001,73.155,73.159,73.16300000000001,73.167,73.171,73.175,73.179,73.183,73.187,73.191,73.19500000000001,73.199,73.203,73.20700000000001,73.211,73.215,73.21900000000001,73.223,73.227,73.23100000000001,73.235,73.239,73.24300000000001,73.247,73.251,73.25500000000001,73.259,73.263,73.26700000000001,73.271,73.275,73.27900000000001,73.283,73.287,73.29100000000001,73.295,73.299,73.303,73.307,73.311,73.315,73.319,73.32300000000001,73.327,73.331,73.33500000000001,73.339,73.343,73.34700000000001,73.351,73.355,73.35900000000001,73.363,73.367,73.37100000000001,73.375,73.379,73.379,73.843,73.84700000000001,73.851,73.855,73.85900000000001,73.863,73.867,73.87100000000001,73.875,73.879,73.88300000000001,73.887,73.891,73.89500000000001,73.899,73.903,73.907,73.911,73.915,73.919,73.923,73.927,73.931,73.935,73.93900000000001,73.943,73.947,73.95100000000001,73.955,73.959,73.96300000000001,73.967,73.971,73.97500000000001,73.979,73.983,73.98700000000001,73.991,73.995,73.99900000000001,74.003,74.007,74.01100000000001,74.015,74.019,74.02300000000001,74.027,74.031,74.035,74.039,74.043,74.047,74.051,74.055,74.059,74.063,74.06700000000001,74.071,74.075,74.07900000000001,74.083,74.087,74.09100000000001,74.095,74.099,74.10300000000001,74.107,74.111,74.11500000000001,74.119,74.123,74.12700000000001,74.131,74.135,74.13900000000001,74.143,74.147,74.15100000000001,74.155,74.159,74.163,74.167,74.171,74.175,74.179,74.183,74.187,74.191,74.19500000000001,74.199,74.203,74.20700000000001,74.211,74.215,74.21900000000001,74.223,74.227,74.23100000000001,74.235,74.239,74.239,74.703,74.70700000000001,74.711,74.715,74.71900000000001,74.723,74.727,74.73100000000001,74.735,74.739,74.74300000000001,74.747,74.751,74.75500000000001,74.759,74.763,74.767,74.771,74.775,74.779,74.783,74.787,74.791,74.795,74.799,74.803,74.807,74.811,74.815,74.819,74.82300000000001,74.827,74.831,74.83500000000001,74.839,74.843,74.84700000000001,74.851,74.855,74.85900000000001,74.863,74.867,74.87100000000001,74.875,74.879,74.88300000000001,74.887,74.891,74.895,74.899,74.903,74.907,74.911,74.915,74.919,74.923,74.927,74.931,74.935,74.93900000000001,74.943,74.947,74.95100000000001,74.955,74.959,74.96300000000001,74.967,74.971,74.97500000000001,74.979,74.983,74.98700000000001,74.991,74.995,74.99900000000001,75.003,75.007,75.01100000000001,75.015,75.019,75.023,75.027,75.031,75.035,75.039,75.043,75.047,75.051,75.055,75.059,75.063,75.06700000000001,75.071,75.075,75.07900000000001,75.083,75.087,75.09100000000001,75.095,75.099,75.099,75.563,75.56700000000001,75.571,75.575,75.57900000000001,75.583,75.587,75.59100000000001,75.595,75.599,75.60300000000001,75.607,75.611,75.61500000000001,75.619,75.623,75.627,75.631,75.635,75.639,75.643,75.647,75.651,75.655,75.659,75.663,75.667,75.671,75.675,75.679,75.683,75.687,75.691,75.69500000000001,75.699,75.703,75.70700000000001,75.711,75.715,75.71900000000001,75.723,75.727,75.73100000000001,75.735,75.739,75.74300000000001,75.747,75.751,75.755,75.759,75.763,75.767,75.771,75.775,75.779,75.783,75.787,75.791,75.795,75.799,75.803,75.807,75.811,75.815,75.819,75.82300000000001,75.827,75.831,75.83500000000001,75.839,75.843,75.84700000000001,75.851,75.855,75.85900000000001,75.863,75.867,75.87100000000001,75.875,75.879,75.883,75.887,75.891,75.895,75.899,75.903,75.907,75.911,75.915,75.919,75.923,75.927,75.931,75.935,75.93900000000001,75.943,75.947,75.95100000000001,75.955,75.959,75.959,76.423,76.427,76.431,76.435,76.43900000000001,76.443,76.447,76.45100000000001,76.455,76.459,76.46300000000001,76.467,76.471,76.47500000000001,76.479,76.483,76.487,76.491,76.495,76.499,76.503,76.507,76.511,76.515,76.519,76.523,76.527,76.531,76.535,76.539,76.543,76.547,76.551,76.555,76.559,76.563,76.56700000000001,76.571,76.575,76.57900000000001,76.583,76.587,76.59100000000001,76.595,76.599,76.60300000000001,76.607,76.611,76.615,76.619,76.623,76.627,76.631,76.635,76.639,76.643,76.647,76.651,76.655,76.659,76.663,76.667,76.671,76.675,76.679,76.683,76.687,76.691,76.69500000000001,76.699,76.703,76.70700000000001,76.711,76.715,76.71900000000001,76.723,76.727,76.73100000000001,76.735,76.739,76.743,76.747,76.751,76.755,76.759,76.763,76.767,76.771,76.775,76.779,76.783,76.787,76.791,76.795,76.799,76.803,76.807,76.811,76.815,76.819,76.819,77.283,77.287,77.291,77.295,77.299,77.303,77.307,77.311,77.315,77.319,77.32300000000001,77.327,77.331,77.33500000000001,77.339,77.343,77.347,77.351,77.355,77.359,77.363,77.367,77.371,77.375,77.379,77.383,77.387,77.391,77.395,77.399,77.403,77.407,77.411,77.415,77.419,77.423,77.427,77.431,77.435,77.43900000000001,77.443,77.447,77.45100000000001,77.455,77.459,77.46300000000001,77.467,77.471,77.475,77.479,77.483,77.487,77.491,77.495,77.499,77.503,77.507,77.511,77.515,77.519,77.523,77.527,77.531,77.535,77.539,77.543,77.547,77.551,77.555,77.559,77.563,77.56700000000001,77.571,77.575,77.57900000000001,77.583,77.587,77.59100000000001,77.595,77.599,77.603,77.607,77.611,77.615,77.619,77.623,77.627,77.631,77.635,77.639,77.643,77.647,77.651,77.655,77.659,77.663,77.667,77.671,77.675,77.679,77.679,78.143,78.147,78.151,78.155,78.159,78.163,78.167,78.171,78.175,78.179,78.183,78.187,78.191,78.19500000000001,78.199,78.203,78.207,78.211,78.215,78.219,78.223,78.227,78.231,78.235,78.239,78.243,78.247,78.251,78.255,78.259,78.263,78.267,78.271,78.275,78.279,78.283,78.287,78.291,78.295,78.299,78.303,78.307,78.311,78.315,78.319,78.32300000000001,78.327,78.331,78.335,78.339,78.343,78.347,78.351,78.355,78.359,78.363,78.367,78.371,78.375,78.379,78.383,78.387,78.391,78.395,78.399,78.403,78.407,78.411,78.415,78.419,78.423,78.427,78.431,78.435,78.43900000000001,78.443,78.447,78.45100000000001,78.455,78.459,78.463,78.467,78.471,78.475,78.479,78.483,78.487,78.491,78.495,78.499,78.503,78.507,78.511,78.515,78.519,78.523,78.527,78.531,78.535,78.539,78.539,79.003,79.007,79.011,79.015,79.019,79.023,79.027,79.031,79.035,79.039,79.043,79.047,79.051,79.055,79.059,79.063,79.067,79.071,79.075,79.079,79.083,79.087,79.091,79.095,79.099,79.103,79.107,79.111,79.115,79.119,79.123,79.127,79.131,79.135,79.139,79.143,79.147,79.151,79.155,79.159,79.163,79.167,79.171,79.175,79.179,79.183,79.187,79.191,79.195,79.199,79.203,79.207,79.211,79.215,79.219,79.223,79.227,79.231,79.235,79.239,79.243,79.247,79.251,79.255,79.259,79.263,79.267,79.271,79.275,79.279,79.283,79.287,79.291,79.295,79.299,79.303,79.307,79.311,79.315,79.319,79.323,79.327,79.331,79.335,79.339,79.343,79.347,79.351,79.355,79.359,79.363,79.367,79.371,79.375,79.379,79.383,79.387,79.391,79.395,79.399,79.399,79.863,79.867,79.871,79.875,79.879,79.883,79.887,79.891,79.895,79.899,79.903,79.907,79.911,79.915,79.919,79.923,79.92699999999999,79.931,79.935,79.939,79.943,79.947,79.951,79.955,79.959,79.963,79.967,79.971,79.975,79.979,79.983,79.987,79.991,79.995,79.999,80.003,80.007,80.011,80.015,80.019,80.023,80.027,80.031,80.035,80.039,80.043,80.047,80.051,80.05499999999999,80.059,80.063,80.067,80.071,80.075,80.079,80.083,80.087,80.091,80.095,80.099,80.103,80.107,80.111,80.115,80.119,80.123,80.127,80.131,80.135,80.139,80.143,80.147,80.151,80.155,80.159,80.163,80.167,80.171,80.175,80.179,80.18299999999999,80.187,80.191,80.195,80.199,80.203,80.207,80.211,80.215,80.219,80.223,80.227,80.231,80.235,80.239,80.243,80.247,80.251,80.255,80.259,80.259,80.723,80.727,80.731,80.735,80.739,80.743,80.747,80.751,80.755,80.759,80.763,80.767,80.771,80.775,80.779,80.783,80.78699999999999,80.791,80.795,80.79899999999999,80.803,80.807,80.81099999999999,80.815,80.819,80.823,80.827,80.831,80.835,80.839,80.843,80.847,80.851,80.855,80.859,80.863,80.867,80.871,80.875,80.879,80.883,80.887,80.891,80.895,80.899,80.903,80.907,80.911,80.91499999999999,80.919,80.923,80.92699999999999,80.931,80.935,80.939,80.943,80.947,80.951,80.955,80.959,80.963,80.967,80.971,80.975,80.979,80.983,80.987,80.991,80.995,80.999,81.003,81.007,81.011,81.015,81.019,81.023,81.027,81.031,81.035,81.039,81.04299999999999,81.047,81.051,81.05499999999999,81.059,81.063,81.067,81.071,81.075,81.079,81.083,81.087,81.091,81.095,81.099,81.103,81.107,81.111,81.115,81.119,81.119,81.583,81.587,81.591,81.595,81.599,81.603,81.607,81.611,81.615,81.619,81.623,81.627,81.631,81.635,81.639,81.643,81.64699999999999,81.651,81.655,81.65899999999999,81.663,81.667,81.67099999999999,81.675,81.679,81.68299999999999,81.687,81.691,81.695,81.699,81.703,81.707,81.711,81.715,81.719,81.723,81.727,81.731,81.735,81.739,81.743,81.747,81.751,81.755,81.759,81.763,81.767,81.771,81.77499999999999,81.779,81.783,81.78699999999999,81.791,81.795,81.79899999999999,81.803,81.807,81.81099999999999,81.815,81.819,81.823,81.827,81.831,81.835,81.839,81.843,81.847,81.851,81.855,81.859,81.863,81.867,81.871,81.875,81.879,81.883,81.887,81.891,81.895,81.899,81.90299999999999,81.907,81.911,81.91499999999999,81.919,81.923,81.92699999999999,81.931,81.935,81.939,81.943,81.947,81.951,81.955,81.959,81.963,81.967,81.971,81.975,81.979,81.979,82.443,82.447,82.451,82.455,82.459,82.463,82.467,82.471,82.475,82.479,82.483,82.487,82.491,82.495,82.499,82.503,82.50699999999999,82.511,82.515,82.51899999999999,82.523,82.527,82.53099999999999,82.535,82.539,82.54299999999999,82.547,82.551,82.55499999999999,82.559,82.563,82.567,82.571,82.575,82.579,82.583,82.587,82.591,82.595,82.599,82.603,82.607,82.611,82.615,82.619,82.623,82.627,82.631,82.63499999999999,82.639,82.643,82.64699999999999,82.651,82.655,82.65899999999999,82.663,82.667,82.67099999999999,82.675,82.679,82.68299999999999,82.687,82.691,82.695,82.699,82.703,82.707,82.711,82.715,82.719,82.723,82.727,82.731,82.735,82.739,82.743,82.747,82.751,82.755,82.759,82.76299999999999,82.767,82.771,82.77499999999999,82.779,82.783,82.78699999999999,82.791,82.795,82.79899999999999,82.803,82.807,82.81099999999999,82.815,82.819,82.823,82.827,82.831,82.835,82.839,82.839,83.303,83.307,83.31099999999999,83.315,83.319,83.323,83.327,83.331,83.335,83.339,83.343,83.347,83.351,83.355,83.359,83.363,83.36699999999999,83.371,83.375,83.37899999999999,83.383,83.387,83.39099999999999,83.395,83.399,83.40299999999999,83.407,83.411,83.41499999999999,83.419,83.423,83.42699999999999,83.431,83.435,83.439,83.443,83.447,83.451,83.455,83.459,83.463,83.467,83.471,83.475,83.479,83.483,83.487,83.491,83.49499999999999,83.499,83.503,83.50699999999999,83.511,83.515,83.51899999999999,83.523,83.527,83.53099999999999,83.535,83.539,83.54299999999999,83.547,83.551,83.55499999999999,83.559,83.563,83.567,83.571,83.575,83.579,83.583,83.587,83.591,83.595,83.599,83.603,83.607,83.611,83.615,83.619,83.62299999999999,83.627,83.631,83.63499999999999,83.639,83.643,83.64699999999999,83.651,83.655,83.65899999999999,83.663,83.667,83.67099999999999,83.675,83.679,83.68299999999999,83.687,83.691,83.695,83.699,83.699,84.163,84.167,84.17099999999999,84.175,84.179,84.18299999999999,84.187,84.191,84.195,84.199,84.203,84.207,84.211,84.215,84.219,84.223,84.22699999999999,84.231,84.235,84.23899999999999,84.243,84.247,84.25099999999999,84.255,84.259,84.26299999999999,84.267,84.271,84.27499999999999,84.279,84.283,84.28699999999999,84.291,84.295,84.29899999999999,84.303,84.307,84.31099999999999,84.315,84.319,84.323,84.327,84.331,84.335,84.339,84.343,84.347,84.351,84.35499999999999,84.359,84.363,84.36699999999999,84.371,84.375,84.37899999999999,84.383,84.387,84.39099999999999,84.395,84.399,84.40299999999999,84.407,84.411,84.41499999999999,84.419,84.423,84.42699999999999,84.431,84.435,84.439,84.443,84.447,84.451,84.455,84.459,84.463,84.467,84.471,84.475,84.479,84.48299999999999,84.487,84.491,84.49499999999999,84.499,84.503,84.50699999999999,84.511,84.515,84.51899999999999,84.523,84.527,84.53099999999999,84.535,84.539,84.54299999999999,84.547,84.551,84.55499999999999,84.559,84.559,85.023,85.027,85.03099999999999,85.035,85.039,85.04299999999999,85.047,85.051,85.05499999999999,85.059,85.063,85.067,85.071,85.075,85.079,85.083,85.08699999999999,85.091,85.095,85.09899999999999,85.103,85.107,85.11099999999999,85.115,85.119,85.12299999999999,85.127,85.131,85.13499999999999,85.139,85.143,85.14699999999999,85.151,85.155,85.15899999999999,85.163,85.167,85.17099999999999,85.175,85.179,85.18299999999999,85.187,85.191,85.195,85.199,85.203,85.207,85.211,85.21499999999999,85.219,85.223,85.22699999999999,85.231,85.235,85.23899999999999,85.243,85.247,85.25099999999999,85.255,85.259,85.26299999999999,85.267,85.271,85.27499999999999,85.279,85.283,85.28699999999999,85.291,85.295,85.29899999999999,85.303,85.307,85.31099999999999,85.315,85.319,85.323,85.327,85.331,85.335,85.339,85.34299999999999,85.347,85.351,85.35499999999999,85.359,85.363,85.36699999999999,85.371,85.375,85.37899999999999,85.383,85.387,85.39099999999999,85.395,85.399,85.40299999999999,85.407,85.411,85.41499999999999,85.419,85.419,85.883,85.887,85.89099999999999,85.895,85.899,85.90299999999999,85.907,85.911,85.91499999999999,85.919,85.923,85.92699999999999,85.931,85.935,85.939,85.943,85.94699999999999,85.951,85.955,85.95899999999999,85.963,85.967,85.97099999999999,85.975,85.979,85.98299999999999,85.987,85.991,85.99499999999999,85.999,86.003,86.00699999999999,86.011,86.015,86.01899999999999,86.023,86.027,86.03099999999999,86.035,86.039,86.04299999999999,86.047,86.051,86.05499999999999,86.059,86.063,86.067,86.071,86.07499999999999,86.079,86.083,86.08699999999999,86.091,86.095,86.09899999999999,86.103,86.107,86.11099999999999,86.115,86.119,86.12299999999999,86.127,86.131,86.13499999999999,86.139,86.143,86.14699999999999,86.151,86.155,86.15899999999999,86.163,86.167,86.17099999999999,86.175,86.179,86.18299999999999,86.187,86.191,86.195,86.199,86.20299999999999,86.207,86.211,86.21499999999999,86.219,86.223,86.22699999999999,86.231,86.235,86.23899999999999,86.243,86.247,86.25099999999999,86.255,86.259,86.26299999999999,86.267,86.271,86.27499999999999,86.279,86.279,86.743,86.747,86.75099999999999,86.755,86.759,86.76299999999999,86.767,86.771,86.77499999999999,86.779,86.783,86.78699999999999,86.791,86.795,86.79899999999999,86.803,86.80699999999999,86.81099999999999,86.815,86.81899999999999,86.823,86.827,86.83099999999999,86.835,86.839,86.84299999999999,86.847,86.851,86.85499999999999,86.859,86.863,86.86699999999999,86.871,86.875,86.87899999999999,86.883,86.887,86.89099999999999,86.895,86.899,86.90299999999999,86.907,86.911,86.91499999999999,86.919,86.923,86.92699999999999,86.931,86.93499999999999,86.939,86.943,86.94699999999999,86.951,86.955,86.95899999999999,86.963,86.967,86.97099999999999,86.975,86.979,86.98299999999999,86.987,86.991,86.99499999999999,86.999,87.003,87.00699999999999,87.011,87.015,87.01899999999999,87.023,87.027,87.03099999999999,87.035,87.039,87.04299999999999,87.047,87.051,87.05499999999999,87.059,87.06299999999999,87.067,87.071,87.07499999999999,87.079,87.083,87.08699999999999,87.091,87.095,87.09899999999999,87.103,87.107,87.11099999999999,87.115,87.119,87.12299999999999,87.127,87.131,87.13499999999999,87.139,87.139,87.60300000000001,87.60700000000001,87.611,87.61500000000001,87.61900000000001,87.623,87.62700000000001,87.63100000000001,87.635,87.63900000000001,87.64300000000001,87.647,87.65100000000001,87.65500000000002,87.659,87.66300000000001,87.667,87.671,87.67500000000001,87.679,87.683,87.68700000000001,87.691,87.69500000000001,87.69900000000001,87.703,87.70700000000001,87.71100000000001,87.715,87.71900000000001,87.72300000000001,87.727,87.73100000000001,87.73500000000001,87.739,87.74300000000001,87.74700000000001,87.751,87.75500000000001,87.75900000000001,87.763,87.76700000000001,87.77100000000002,87.775,87.77900000000001,87.78300000000002,87.787,87.79100000000001,87.795,87.799,87.80300000000001,87.807,87.811,87.81500000000001,87.819,87.82300000000001,87.82700000000001,87.831,87.83500000000001,87.83900000000001,87.843,87.84700000000001,87.85100000000001,87.855,87.85900000000001,87.86300000000001,87.867,87.87100000000001,87.87500000000001,87.879,87.88300000000001,87.88700000000001,87.891,87.89500000000001,87.89900000000002,87.903,87.90700000000001,87.91100000000002,87.915,87.91900000000001,87.923,87.927,87.93100000000001,87.935,87.93900000000001,87.94300000000001,87.947,87.95100000000001,87.95500000000001,87.959,87.96300000000001,87.96700000000001,87.971,87.97500000000001,87.97900000000001,87.983,87.98700000000001,87.99100000000001,87.995,87.99900000000001,87.99900000000001,88.46300000000001,88.46700000000001,88.471,88.47500000000001,88.47900000000001,88.483,88.48700000000001,88.49100000000001,88.495,88.49900000000001,88.50300000000001,88.507,88.51100000000001,88.51500000000001,88.519,88.52300000000001,88.527,88.531,88.53500000000001,88.539,88.543,88.54700000000001,88.551,88.555,88.55900000000001,88.563,88.56700000000001,88.57100000000001,88.575,88.57900000000001,88.58300000000001,88.587,88.59100000000001,88.59500000000001,88.599,88.60300000000001,88.60700000000001,88.611,88.61500000000001,88.61900000000001,88.623,88.62700000000001,88.63100000000001,88.635,88.63900000000001,88.64300000000001,88.647,88.65100000000001,88.655,88.659,88.66300000000001,88.667,88.671,88.67500000000001,88.679,88.683,88.68700000000001,88.691,88.69500000000001,88.69900000000001,88.703,88.70700000000001,88.71100000000001,88.715,88.71900000000001,88.72300000000001,88.727,88.73100000000001,88.73500000000001,88.739,88.74300000000001,88.74700000000001,88.751,88.75500000000001,88.75900000000001,88.763,88.76700000000001,88.77100000000002,88.775,88.77900000000001,88.783,88.787,88.79100000000001,88.795,88.799,88.80300000000001,88.807,88.811,88.81500000000001,88.819,88.82300000000001,88.82700000000001,88.831,88.83500000000001,88.83900000000001,88.843,88.84700000000001,88.85100000000001,88.855,88.85900000000001,88.85900000000001,89.32300000000001,89.32700000000001,89.331,89.33500000000001,89.33900000000001,89.343,89.34700000000001,89.35100000000001,89.355,89.35900000000001,89.36300000000001,89.367,89.37100000000001,89.37500000000001,89.379,89.38300000000001,89.387,89.391,89.39500000000001,89.399,89.403,89.40700000000001,89.411,89.415,89.41900000000001,89.423,89.427,89.43100000000001,89.435,89.43900000000001,89.44300000000001,89.447,89.45100000000001,89.45500000000001,89.459,89.46300000000001,89.46700000000001,89.471,89.47500000000001,89.47900000000001,89.483,89.48700000000001,89.49100000000001,89.495,89.49900000000001,89.50300000000001,89.507,89.51100000000001,89.515,89.519,89.52300000000001,89.527,89.531,89.53500000000001,89.539,89.543,89.54700000000001,89.551,89.555,89.55900000000001,89.563,89.56700000000001,89.57100000000001,89.575,89.57900000000001,89.58300000000001,89.587,89.59100000000001,89.59500000000001,89.599,89.60300000000001,89.60700000000001,89.611,89.61500000000001,89.61900000000001,89.623,89.62700000000001,89.63100000000001,89.635,89.63900000000001,89.643,89.647,89.65100000000001,89.655,89.659,89.66300000000001,89.667,89.671,89.67500000000001,89.679,89.683,89.68700000000001,89.691,89.69500000000001,89.69900000000001,89.703,89.70700000000001,89.71100000000001,89.715,89.71900000000001,89.71900000000001,114.903,114.90700000000001,114.911,114.915,114.91900000000001,114.923,114.927,114.93100000000001,114.935,114.93900000000001,114.94300000000001,114.947,114.95100000000001,114.95500000000001,114.959,114.96300000000001,114.967,114.971,114.97500000000001,114.979,114.983,114.98700000000001,114.991,114.995,114.99900000000001,115.003,115.007,115.01100000000001,115.015,115.019,115.02300000000001,115.027,115.031,115.03500000000001,115.039,115.043,115.04700000000001,115.051,115.055,115.05900000000001,115.063,115.06700000000001,115.07100000000001,115.075,115.07900000000001,115.08300000000001,115.087,115.09100000000001,115.095,115.099,115.10300000000001,115.107,115.111,115.11500000000001,115.119,115.123,115.12700000000001,115.131,115.135,115.13900000000001,115.143,115.147,115.15100000000001,115.155,115.159,115.16300000000001,115.167,115.171,115.17500000000001,115.179,115.183,115.18700000000001,115.191,115.19500000000001,115.19900000000001,115.203,115.20700000000001,115.21100000000001,115.215,115.21900000000001,115.223,115.227,115.23100000000001,115.235,115.239,115.24300000000001,115.247,115.251,115.25500000000001,115.259,115.263,115.26700000000001,115.271,115.275,115.27900000000001,115.283,115.287,115.29100000000001,115.295,115.299,115.299,115.763,115.76700000000001,115.771,115.775,115.77900000000001,115.783,115.787,115.79100000000001,115.795,115.799,115.80300000000001,115.807,115.811,115.81500000000001,115.819,115.82300000000001,115.827,115.831,115.83500000000001,115.839,115.843,115.84700000000001,115.851,115.855,115.85900000000001,115.863,115.867,115.87100000000001,115.875,115.879,115.88300000000001,115.887,115.891,115.89500000000001,115.899,115.903,115.90700000000001,115.911,115.915,115.91900000000001,115.923,115.927,115.93100000000001,115.935,115.93900000000001,115.94300000000001,115.947,115.95100000000001,115.955,115.959,115.96300000000001,115.967,115.971,115.97500000000001,115.979,115.983,115.98700000000001,115.991,115.995,115.99900000000001,116.003,116.007,116.01100000000001,116.015,116.019,116.02300000000001,116.027,116.031,116.03500000000001,116.039,116.043,116.04700000000001,116.051,116.055,116.05900000000001,116.063,116.06700000000001,116.07100000000001,116.075,116.07900000000001,116.083,116.087,116.09100000000001,116.095,116.099,116.10300000000001,116.107,116.111,116.11500000000001,116.119,116.123,116.12700000000001,116.131,116.135,116.13900000000001,116.143,116.147,116.15100000000001,116.155,116.159,116.159,116.623,116.62700000000001,116.631,116.635,116.63900000000001,116.643,116.647,116.65100000000001,116.655,116.659,116.66300000000001,116.667,116.671,116.67500000000001,116.679,116.683,116.687,116.691,116.69500000000001,116.699,116.703,116.70700000000001,116.711,116.715,116.71900000000001,116.723,116.727,116.73100000000001,116.735,116.739,116.74300000000001,116.747,116.751,116.75500000000001,116.759,116.763,116.76700000000001,116.771,116.775,116.77900000000001,116.783,116.787,116.79100000000001,116.795,116.799,116.80300000000001,116.807,116.811,116.815,116.819,116.82300000000001,116.827,116.831,116.83500000000001,116.839,116.843,116.84700000000001,116.851,116.855,116.85900000000001,116.863,116.867,116.87100000000001,116.875,116.879,116.88300000000001,116.887,116.891,116.89500000000001,116.899,116.903,116.90700000000001,116.911,116.915,116.91900000000001,116.923,116.927,116.93100000000001,116.935,116.93900000000001,116.943,116.947,116.95100000000001,116.955,116.959,116.96300000000001,116.967,116.971,116.97500000000001,116.979,116.983,116.98700000000001,116.991,116.995,116.99900000000001,117.003,117.007,117.01100000000001,117.015,117.019,117.019,117.483,117.48700000000001,117.491,117.495,117.49900000000001,117.503,117.507,117.51100000000001,117.515,117.519,117.52300000000001,117.527,117.531,117.53500000000001,117.539,117.543,117.547,117.551,117.555,117.559,117.563,117.56700000000001,117.571,117.575,117.57900000000001,117.583,117.587,117.59100000000001,117.595,117.599,117.60300000000001,117.607,117.611,117.61500000000001,117.619,117.623,117.62700000000001,117.631,117.635,117.63900000000001,117.643,117.647,117.65100000000001,117.655,117.659,117.66300000000001,117.667,117.671,117.675,117.679,117.683,117.687,117.691,117.69500000000001,117.699,117.703,117.70700000000001,117.711,117.715,117.71900000000001,117.723,117.727,117.73100000000001,117.735,117.739,117.74300000000001,117.747,117.751,117.75500000000001,117.759,117.763,117.76700000000001,117.771,117.775,117.77900000000001,117.783,117.787,117.79100000000001,117.795,117.799,117.803,117.807,117.811,117.815,117.819,117.82300000000001,117.827,117.831,117.83500000000001,117.839,117.843,117.84700000000001,117.851,117.855,117.85900000000001,117.863,117.867,117.87100000000001,117.875,117.879,117.879,118.343,118.34700000000001,118.351,118.355,118.35900000000001,118.363,118.367,118.37100000000001,118.375,118.379,118.38300000000001,118.387,118.391,118.39500000000001,118.399,118.403,118.407,118.411,118.415,118.419,118.423,118.427,118.431,118.435,118.43900000000001,118.443,118.447,118.45100000000001,118.455,118.459,118.46300000000001,118.467,118.471,118.47500000000001,118.479,118.483,118.48700000000001,118.491,118.495,118.49900000000001,118.503,118.507,118.51100000000001,118.515,118.519,118.52300000000001,118.527,118.531,118.535,118.539,118.543,118.547,118.551,118.555,118.559,118.563,118.56700000000001,118.571,118.575,118.57900000000001,118.583,118.587,118.59100000000001,118.595,118.599,118.60300000000001,118.607,118.611,118.61500000000001,118.619,118.623,118.62700000000001,118.631,118.635,118.63900000000001,118.643,118.647,118.65100000000001,118.655,118.659,118.663,118.667,118.671,118.675,118.679,118.683,118.687,118.691,118.69500000000001,118.699,118.703,118.70700000000001,118.711,118.715,118.71900000000001,118.723,118.727,118.73100000000001,118.735,118.739,118.739,119.203,119.20700000000001,119.211,119.215,119.21900000000001,119.223,119.227,119.23100000000001,119.235,119.239,119.24300000000001,119.247,119.251,119.25500000000001,119.259,119.263,119.267,119.271,119.275,119.279,119.283,119.287,119.291,119.295,119.299,119.303,119.307,119.311,119.315,119.319,119.32300000000001,119.327,119.331,119.33500000000001,119.339,119.343,119.34700000000001,119.351,119.355,119.35900000000001,119.363,119.367,119.37100000000001,119.375,119.379,119.38300000000001,119.387,119.391,119.395,119.399,119.403,119.407,119.411,119.415,119.419,119.423,119.427,119.431,119.435,119.43900000000001,119.443,119.447,119.45100000000001,119.455,119.459,119.46300000000001,119.467,119.471,119.47500000000001,119.479,119.483,119.48700000000001,119.491,119.495,119.49900000000001,119.503,119.507,119.51100000000001,119.515,119.519,119.523,119.527,119.531,119.535,119.539,119.543,119.547,119.551,119.555,119.559,119.563,119.56700000000001,119.571,119.575,119.57900000000001,119.583,119.587,119.59100000000001,119.595,119.599,119.599,120.063,120.06700000000001,120.071,120.075,120.07900000000001,120.083,120.087,120.09100000000001,120.095,120.099,120.10300000000001,120.107,120.111,120.11500000000001,120.119,120.123,120.127,120.131,120.135,120.139,120.143,120.147,120.151,120.155,120.159,120.163,120.167,120.171,120.175,120.179,120.183,120.187,120.191,120.19500000000001,120.199,120.203,120.20700000000001,120.211,120.215,120.21900000000001,120.223,120.227,120.23100000000001,120.235,120.239,120.24300000000001,120.247,120.251,120.255,120.259,120.263,120.267,120.271,120.275,120.279,120.283,120.287,120.291,120.295,120.299,120.303,120.307,120.311,120.315,120.319,120.32300000000001,120.327,120.331,120.33500000000001,120.339,120.343,120.34700000000001,120.351,120.355,120.35900000000001,120.363,120.367,120.37100000000001,120.375,120.379,120.383,120.387,120.391,120.395,120.399,120.403,120.407,120.411,120.415,120.419,120.423,120.427,120.431,120.435,120.43900000000001,120.443,120.447,120.45100000000001,120.455,120.459,120.459,120.923,120.927,120.931,120.935,120.93900000000001,120.943,120.947,120.95100000000001,120.955,120.959,120.96300000000001,120.967,120.971,120.97500000000001,120.979,120.983,120.987,120.991,120.995,120.999,121.003,121.007,121.011,121.015,121.019,121.023,121.027,121.031,121.035,121.039,121.043,121.047,121.051,121.055,121.059,121.063,121.06700000000001,121.071,121.075,121.07900000000001,121.083,121.087,121.09100000000001,121.095,121.099,121.10300000000001,121.107,121.111,121.115,121.119,121.123,121.127,121.131,121.135,121.139,121.143,121.147,121.151,121.155,121.159,121.163,121.167,121.171,121.175,121.179,121.183,121.187,121.191,121.19500000000001,121.199,121.203,121.20700000000001,121.211,121.215,121.21900000000001,121.223,121.227,121.23100000000001,121.235,121.239,121.243,121.247,121.251,121.255,121.259,121.263,121.267,121.271,121.275,121.279,121.283,121.287,121.291,121.295,121.299,121.303,121.307,121.311,121.315,121.319,121.319,121.783,121.787,121.791,121.795,121.799,121.803,121.807,121.811,121.815,121.819,121.82300000000001,121.827,121.831,121.83500000000001,121.839,121.843,121.847,121.851,121.855,121.859,121.863,121.867,121.871,121.875,121.879,121.883,121.887,121.891,121.895,121.899,121.903,121.907,121.911,121.915,121.919,121.923,121.927,121.931,121.935,121.93900000000001,121.943,121.947,121.95100000000001,121.955,121.959,121.96300000000001,121.967,121.971,121.975,121.979,121.983,121.987,121.991,121.995,121.999,122.003,122.007,122.011,122.015,122.019,122.023,122.027,122.031,122.035,122.039,122.043,122.047,122.051,122.055,122.059,122.063,122.06700000000001,122.071,122.075,122.07900000000001,122.083,122.087,122.09100000000001,122.095,122.099,122.103,122.107,122.111,122.115,122.119,122.123,122.127,122.131,122.135,122.139,122.143,122.147,122.151,122.155,122.159,122.163,122.167,122.171,122.175,122.179,122.179,122.643,122.647,122.651,122.655,122.659,122.663,122.667,122.671,122.675,122.679,122.683,122.687,122.691,122.69500000000001,122.699,122.703,122.707,122.711,122.715,122.719,122.723,122.727,122.731,122.735,122.739,122.743,122.747,122.751,122.755,122.759,122.763,122.767,122.771,122.775,122.779,122.783,122.787,122.791,122.795,122.799,122.803,122.807,122.811,122.815,122.819,122.82300000000001,122.827,122.831,122.835,122.839,122.843,122.847,122.851,122.855,122.859,122.863,122.867,122.871,122.875,122.879,122.883,122.887,122.891,122.895,122.899,122.903,122.907,122.911,122.915,122.919,122.923,122.927,122.931,122.935,122.93900000000001,122.943,122.947,122.95100000000001,122.955,122.959,122.963,122.967,122.971,122.975,122.979,122.983,122.987,122.991,122.995,122.999,123.003,123.007,123.011,123.015,123.019,123.023,123.027,123.031,123.035,123.039,123.039,123.503,123.507,123.511,123.515,123.519,123.523,123.527,123.531,123.535,123.539,123.543,123.547,123.551,123.555,123.559,123.563,123.567,123.571,123.575,123.579,123.583,123.587,123.591,123.595,123.599,123.603,123.607,123.611,123.615,123.619,123.623,123.627,123.631,123.635,123.639,123.643,123.647,123.651,123.655,123.659,123.663,123.667,123.671,123.675,123.679,123.683,123.687,123.691,123.695,123.699,123.703,123.707,123.711,123.715,123.719,123.723,123.727,123.731,123.735,123.739,123.743,123.747,123.751,123.755,123.759,123.763,123.767,123.771,123.775,123.779,123.783,123.787,123.791,123.795,123.799,123.803,123.807,123.811,123.815,123.819,123.823,123.827,123.831,123.835,123.839,123.843,123.847,123.851,123.855,123.859,123.863,123.867,123.871,123.875,123.879,123.883,123.887,123.891,123.895,123.899,123.899,124.363,124.367,124.371,124.375,124.379,124.383,124.387,124.391,124.395,124.399,124.403,124.407,124.411,124.415,124.419,124.423,124.42699999999999,124.431,124.435,124.439,124.443,124.447,124.451,124.455,124.459,124.463,124.467,124.471,124.475,124.479,124.483,124.487,124.491,124.495,124.499,124.503,124.507,124.511,124.515,124.519,124.523,124.527,124.531,124.535,124.539,124.543,124.547,124.551,124.55499999999999,124.559,124.563,124.567,124.571,124.575,124.579,124.583,124.587,124.591,124.595,124.599,124.603,124.607,124.611,124.615,124.619,124.623,124.627,124.631,124.635,124.639,124.643,124.647,124.651,124.655,124.659,124.663,124.667,124.671,124.675,124.679,124.68299999999999,124.687,124.691,124.695,124.699,124.703,124.707,124.711,124.715,124.719,124.723,124.727,124.731,124.735,124.739,124.743,124.747,124.751,124.755,124.759,124.759,125.224,125.22800000000001,125.232,125.236,125.24000000000001,125.244,125.248,125.25200000000001,125.256,125.26,125.26400000000001,125.268,125.272,125.27600000000001,125.28,125.284,125.288,125.292,125.296,125.3,125.304,125.308,125.312,125.316,125.32000000000001,125.324,125.328,125.33200000000001,125.336,125.34,125.34400000000001,125.348,125.352,125.35600000000001,125.36,125.364,125.36800000000001,125.372,125.376,125.38000000000001,125.384,125.388,125.39200000000001,125.396,125.4,125.40400000000001,125.408,125.412,125.416,125.42,125.424,125.428,125.432,125.436,125.44,125.444,125.44800000000001,125.452,125.456,125.46000000000001,125.464,125.468,125.47200000000001,125.476,125.48,125.48400000000001,125.488,125.492,125.49600000000001,125.5,125.504,125.50800000000001,125.512,125.516,125.52000000000001,125.524,125.528,125.53200000000001,125.536,125.54,125.544,125.548,125.552,125.556,125.56,125.56400000000001,125.568,125.572,125.57600000000001,125.58,125.584,125.58800000000001,125.592,125.596,125.60000000000001,125.604,125.608,125.61200000000001,125.616,125.62,125.62,126.084,126.08800000000001,126.092,126.096,126.10000000000001,126.104,126.108,126.11200000000001,126.116,126.12,126.12400000000001,126.128,126.132,126.13600000000001,126.14,126.144,126.148,126.152,126.156,126.16,126.164,126.168,126.172,126.176,126.18,126.184,126.188,126.19200000000001,126.196,126.2,126.20400000000001,126.208,126.212,126.21600000000001,126.22,126.224,126.22800000000001,126.232,126.236,126.24000000000001,126.244,126.248,126.25200000000001,126.256,126.26,126.26400000000001,126.268,126.272,126.276,126.28,126.284,126.288,126.292,126.296,126.3,126.304,126.308,126.312,126.316,126.32000000000001,126.324,126.328,126.33200000000001,126.336,126.34,126.34400000000001,126.348,126.352,126.35600000000001,126.36,126.364,126.36800000000001,126.372,126.376,126.38000000000001,126.384,126.388,126.39200000000001,126.396,126.4,126.404,126.408,126.412,126.416,126.42,126.424,126.428,126.432,126.436,126.44,126.444,126.44800000000001,126.452,126.456,126.46000000000001,126.464,126.468,126.47200000000001,126.476,126.48,126.48,126.944,126.94800000000001,126.952,126.956,126.96000000000001,126.964,126.968,126.97200000000001,126.976,126.98,126.98400000000001,126.988,126.992,126.99600000000001,127.0,127.004,127.008,127.012,127.016,127.02,127.024,127.028,127.032,127.036,127.04,127.044,127.048,127.052,127.056,127.06,127.06400000000001,127.068,127.072,127.07600000000001,127.08,127.084,127.08800000000001,127.092,127.096,127.10000000000001,127.104,127.108,127.11200000000001,127.116,127.12,127.12400000000001,127.128,127.132,127.136,127.14,127.144,127.148,127.152,127.156,127.16,127.164,127.168,127.172,127.176,127.18,127.184,127.188,127.19200000000001,127.196,127.2,127.20400000000001,127.208,127.212,127.21600000000001,127.22,127.224,127.22800000000001,127.232,127.236,127.24000000000001,127.244,127.248,127.25200000000001,127.256,127.26,127.264,127.268,127.272,127.276,127.28,127.284,127.288,127.292,127.296,127.3,127.304,127.308,127.312,127.316,127.32000000000001,127.324,127.328,127.33200000000001,127.336,127.34,127.34,127.804,127.808,127.812,127.816,127.82000000000001,127.824,127.828,127.83200000000001,127.836,127.84,127.84400000000001,127.848,127.852,127.85600000000001,127.86,127.864,127.868,127.872,127.876,127.88,127.884,127.888,127.892,127.896,127.9,127.904,127.908,127.912,127.916,127.92,127.924,127.928,127.932,127.936,127.94,127.944,127.94800000000001,127.952,127.956,127.96000000000001,127.964,127.968,127.97200000000001,127.976,127.98,127.98400000000001,127.988,127.992,127.996,128.0,128.004,128.008,128.012,128.016,128.02,128.024,128.028,128.032,128.036,128.04,128.044,128.048,128.052,128.056,128.06,128.064,128.068,128.072,128.076,128.08,128.084,128.088,128.092,128.096,128.1,128.104,128.108,128.112,128.116,128.12,128.124,128.12800000000001,128.132,128.136,128.14000000000001,128.144,128.148,128.15200000000002,128.156,128.16,128.16400000000002,128.168,128.172,128.17600000000002,128.18,128.184,128.188,128.192,128.196,128.2,128.2,128.66400000000002,128.668,128.67200000000003,128.67600000000002,128.68,128.68400000000003,128.68800000000002,128.692,128.69600000000003,128.70000000000002,128.704,128.70800000000003,128.71200000000002,128.716,128.72000000000003,128.72400000000002,128.728,128.73200000000003,128.73600000000002,128.74,128.74400000000003,128.74800000000002,128.752,128.75600000000003,128.76000000000002,128.764,128.76800000000003,128.77200000000002,128.776,128.78000000000003,128.78400000000002,128.788,128.792,128.79600000000002,128.8,128.804,128.80800000000002,128.812,128.816,128.82000000000002,128.824,128.828,128.83200000000002,128.836,128.84,128.84400000000002,128.848,128.852,128.85600000000002,128.86,128.864,128.86800000000002,128.872,128.876,128.88000000000002,128.88400000000001,128.888,128.89200000000002,128.89600000000002,128.9,128.90400000000002,128.90800000000002,128.912,128.91600000000003,128.92000000000002,128.924,128.92800000000003,128.93200000000002,128.936,128.94000000000003,128.94400000000002,128.948,128.95200000000003,128.95600000000002,128.96,128.96400000000003,128.96800000000002,128.972,128.97600000000003,128.98000000000002,128.984,128.98800000000003,128.99200000000002,128.996,129.00000000000003,129.00400000000002,129.008,129.01200000000003,129.01600000000002,129.02,129.02400000000003,129.02800000000002,129.032,129.03600000000003,129.04000000000002,129.044,129.048,129.05200000000002,129.056,129.06,129.06,129.524,129.528,129.532,129.536,129.54,129.544,129.548,129.552,129.556,129.56,129.564,129.568,129.572,129.576,129.58,129.584,129.588,129.592,129.596,129.6,129.604,129.608,129.612,129.616,129.62,129.624,129.62800000000001,129.632,129.636,129.64000000000001,129.644,129.648,129.652,129.656,129.66,129.664,129.668,129.672,129.676,129.68,129.684,129.688,129.692,129.696,129.7,129.704,129.708,129.712,129.716,129.72,129.724,129.728,129.732,129.736,129.74,129.744,129.748,129.752,129.756,129.76,129.764,129.768,129.772,129.776,129.78,129.784,129.788,129.792,129.796,129.8,129.804,129.808,129.812,129.816,129.82,129.824,129.828,129.832,129.836,129.84,129.844,129.848,129.852,129.856,129.86,129.864,129.868,129.872,129.876,129.88,129.88400000000001,129.888,129.892,129.89600000000002,129.9,129.904,129.908,129.912,129.916,129.92,129.92,130.38400000000001,130.388,130.39200000000002,130.39600000000002,130.4,130.40400000000002,130.40800000000002,130.412,130.41600000000003,130.42000000000002,130.424,130.42800000000003,130.43200000000002,130.436,130.44000000000003,130.44400000000002,130.448,130.45200000000003,130.45600000000002,130.46,130.46400000000003,130.46800000000002,130.472,130.47600000000003,130.48000000000002,130.484,130.48800000000003,130.49200000000002,130.496,130.50000000000003,130.50400000000002,130.508,130.512,130.51600000000002,130.52,130.524,130.52800000000002,130.532,130.536,130.54000000000002,130.544,130.548,130.55200000000002,130.556,130.56,130.56400000000002,130.568,130.572,130.57600000000002,130.58,130.584,130.58800000000002,130.592,130.596,130.60000000000002,130.604,130.608,130.61200000000002,130.616,130.62,130.62400000000002,130.62800000000001,130.632,130.63600000000002,130.64000000000001,130.644,130.64800000000002,130.65200000000002,130.656,130.66000000000003,130.66400000000002,130.668,130.67200000000003,130.67600000000002,130.68,130.68400000000003,130.68800000000002,130.692,130.69600000000003,130.70000000000002,130.704,130.70800000000003,130.71200000000002,130.716,130.72000000000003,130.72400000000002,130.728,130.73200000000003,130.73600000000002,130.74,130.74400000000003,130.74800000000002,130.752,130.75600000000003,130.76000000000002,130.764,130.768,130.77200000000002,130.776,130.78,130.78,131.244,131.248,131.252,131.256,131.26,131.264,131.268,131.272,131.276,131.28,131.284,131.288,131.292,131.296,131.3,131.304,131.308,131.312,131.316,131.32,131.324,131.328,131.332,131.336,131.34,131.344,131.348,131.352,131.356,131.36,131.364,131.368,131.37199999999999,131.376,131.38,131.384,131.388,131.392,131.396,131.4,131.404,131.408,131.412,131.416,131.42,131.424,131.428,131.432,131.436,131.44,131.444,131.448,131.452,131.456,131.46,131.464,131.468,131.472,131.476,131.48,131.484,131.488,131.492,131.496,131.5,131.504,131.508,131.512,131.516,131.52,131.524,131.528,131.532,131.536,131.54,131.544,131.548,131.552,131.556,131.56,131.564,131.568,131.572,131.576,131.58,131.584,131.588,131.592,131.596,131.6,131.604,131.608,131.612,131.616,131.62,131.624,131.628,131.632,131.636,131.64,131.64,132.104,132.108,132.11200000000002,132.116,132.12,132.12400000000002,132.12800000000001,132.132,132.13600000000002,132.14000000000001,132.144,132.14800000000002,132.15200000000002,132.156,132.16000000000003,132.16400000000002,132.168,132.17200000000003,132.17600000000002,132.18,132.18400000000003,132.18800000000002,132.192,132.19600000000003,132.20000000000002,132.204,132.20800000000003,132.21200000000002,132.216,132.22000000000003,132.22400000000002,132.228,132.232,132.23600000000002,132.24,132.244,132.24800000000002,132.252,132.256,132.26000000000002,132.264,132.268,132.27200000000002,132.276,132.28,132.28400000000002,132.288,132.292,132.29600000000002,132.3,132.304,132.30800000000002,132.312,132.316,132.32000000000002,132.324,132.328,132.33200000000002,132.336,132.34,132.34400000000002,132.348,132.352,132.35600000000002,132.36,132.364,132.36800000000002,132.372,132.376,132.38000000000002,132.38400000000001,132.388,132.39200000000002,132.39600000000002,132.4,132.40400000000002,132.40800000000002,132.412,132.41600000000003,132.42000000000002,132.424,132.42800000000003,132.43200000000002,132.436,132.44000000000003,132.44400000000002,132.448,132.45200000000003,132.45600000000002,132.46,132.46400000000003,132.46800000000002,132.472,132.47600000000003,132.48000000000002,132.484,132.488,132.49200000000002,132.496,132.5,132.5,132.964,132.968,132.972,132.976,132.98,132.984,132.988,132.992,132.996,133.0,133.004,133.008,133.012,133.016,133.02,133.024,133.028,133.032,133.036,133.04,133.044,133.048,133.052,133.056,133.06,133.064,133.068,133.072,133.076,133.08,133.084,133.088,133.09199999999998,133.096,133.1,133.10399999999998,133.108,133.112,133.11599999999999,133.12,133.124,133.128,133.132,133.136,133.14,133.144,133.148,133.152,133.156,133.16,133.164,133.168,133.172,133.176,133.18,133.184,133.188,133.192,133.196,133.2,133.204,133.208,133.212,133.216,133.22,133.224,133.228,133.232,133.236,133.24,133.244,133.248,133.252,133.256,133.26,133.264,133.268,133.272,133.276,133.28,133.284,133.288,133.292,133.296,133.3,133.304,133.308,133.312,133.316,133.32,133.324,133.328,133.332,133.336,133.34,133.344,133.34799999999998,133.352,133.356,133.35999999999999,133.35999999999999,133.824,133.828,133.83200000000002,133.836,133.84,133.84400000000002,133.848,133.852,133.85600000000002,133.86,133.864,133.86800000000002,133.872,133.876,133.88000000000002,133.88400000000001,133.888,133.89200000000002,133.89600000000002,133.9,133.90400000000002,133.90800000000002,133.912,133.91600000000003,133.92000000000002,133.924,133.92800000000003,133.93200000000002,133.936,133.94000000000003,133.94400000000002,133.948,133.952,133.95600000000002,133.96,133.964,133.96800000000002,133.972,133.976,133.98000000000002,133.984,133.988,133.99200000000002,133.996,134.0,134.00400000000002,134.008,134.012,134.01600000000002,134.02,134.024,134.02800000000002,134.032,134.036,134.04000000000002,134.044,134.048,134.05200000000002,134.056,134.06,134.06400000000002,134.068,134.072,134.07600000000002,134.08,134.084,134.08800000000002,134.092,134.096,134.10000000000002,134.104,134.108,134.11200000000002,134.116,134.12,134.12400000000002,134.12800000000001,134.132,134.13600000000002,134.14000000000001,134.144,134.14800000000002,134.15200000000002,134.156,134.16000000000003,134.16400000000002,134.168,134.17200000000003,134.17600000000002,134.18,134.18400000000003,134.18800000000002,134.192,134.19600000000003,134.20000000000002,134.204,134.208,134.21200000000002,134.216,134.22,134.22,134.684,134.688,134.692,134.696,134.7,134.704,134.708,134.712,134.716,134.72,134.724,134.728,134.732,134.736,134.74,134.744,134.748,134.752,134.756,134.76,134.764,134.768,134.772,134.776,134.78,134.784,134.788,134.792,134.796,134.8,134.804,134.808,134.81199999999998,134.816,134.82,134.82399999999998,134.828,134.832,134.83599999999998,134.84,134.844,134.84799999999998,134.852,134.856,134.85999999999999,134.864,134.868,134.87199999999999,134.876,134.88,134.884,134.888,134.892,134.896,134.9,134.904,134.908,134.912,134.916,134.92,134.924,134.928,134.932,134.936,134.94,134.944,134.948,134.952,134.956,134.96,134.964,134.968,134.972,134.976,134.98,134.984,134.988,134.992,134.996,135.0,135.004,135.008,135.012,135.016,135.02,135.024,135.028,135.032,135.036,135.04,135.044,135.048,135.052,135.056,135.06,135.064,135.06799999999998,135.072,135.076,135.07999999999998,135.07999999999998,135.544,135.548,135.55200000000002,135.556,135.56,135.56400000000002,135.568,135.572,135.57600000000002,135.58,135.584,135.58800000000002,135.592,135.596,135.60000000000002,135.604,135.608,135.61200000000002,135.616,135.62,135.62400000000002,135.62800000000001,135.632,135.63600000000002,135.64000000000001,135.644,135.64800000000002,135.65200000000002,135.656,135.66000000000003,135.66400000000002,135.668,135.672,135.67600000000002,135.68,135.684,135.68800000000002,135.692,135.696,135.70000000000002,135.704,135.708,135.71200000000002,135.716,135.72,135.72400000000002,135.728,135.732,135.73600000000002,135.74,135.744,135.74800000000002,135.752,135.756,135.76000000000002,135.764,135.768,135.77200000000002,135.776,135.78,135.78400000000002,135.788,135.792,135.79600000000002,135.8,135.804,135.80800000000002,135.812,135.816,135.82000000000002,135.824,135.828,135.83200000000002,135.836,135.84,135.84400000000002,135.848,135.852,135.85600000000002,135.86,135.864,135.86800000000002,135.872,135.876,135.88000000000002,135.88400000000001,135.888,135.89200000000002,135.89600000000002,135.9,135.90400000000002,135.90800000000002,135.912,135.91600000000003,135.92000000000002,135.924,135.928,135.93200000000002,135.936,135.94,135.94,136.404,136.408,136.412,136.416,136.42,136.424,136.428,136.432,136.436,136.44,136.444,136.448,136.452,136.456,136.46,136.464,136.468,136.472,136.476,136.48,136.484,136.488,136.492,136.496,136.5,136.504,136.508,136.512,136.516,136.52,136.524,136.528,136.53199999999998,136.536,136.54,136.54399999999998,136.548,136.552,136.55599999999998,136.56,136.564,136.56799999999998,136.572,136.576,136.57999999999998,136.584,136.588,136.59199999999998,136.596,136.6,136.60399999999998,136.608,136.612,136.61599999999999,136.62,136.624,136.628,136.632,136.636,136.64,136.644,136.648,136.652,136.656,136.66,136.664,136.668,136.672,136.676,136.68,136.684,136.688,136.692,136.696,136.7,136.704,136.708,136.712,136.716,136.72,136.724,136.728,136.732,136.736,136.74,136.744,136.748,136.752,136.756,136.76,136.764,136.768,136.772,136.776,136.78,136.784,136.78799999999998,136.792,136.796,136.79999999999998,136.79999999999998,137.264,137.268,137.27200000000002,137.276,137.28,137.28400000000002,137.288,137.292,137.29600000000002,137.3,137.304,137.30800000000002,137.312,137.316,137.32000000000002,137.324,137.328,137.33200000000002,137.336,137.34,137.34400000000002,137.348,137.352,137.35600000000002,137.36,137.364,137.36800000000002,137.372,137.376,137.38000000000002,137.38400000000001,137.388,137.392,137.39600000000002,137.4,137.404,137.40800000000002,137.412,137.416,137.42000000000002,137.424,137.428,137.43200000000002,137.436,137.44,137.44400000000002,137.448,137.452,137.45600000000002,137.46,137.464,137.46800000000002,137.472,137.476,137.48000000000002,137.484,137.488,137.49200000000002,137.496,137.5,137.50400000000002,137.508,137.512,137.51600000000002,137.52,137.524,137.52800000000002,137.532,137.536,137.54000000000002,137.544,137.548,137.55200000000002,137.556,137.56,137.56400000000002,137.568,137.572,137.57600000000002,137.58,137.584,137.58800000000002,137.592,137.596,137.60000000000002,137.604,137.608,137.61200000000002,137.616,137.62,137.62400000000002,137.62800000000001,137.632,137.63600000000002,137.64000000000001,137.644,137.648,137.65200000000002,137.656,137.66,137.66,138.124,138.128,138.132,138.136,138.14,138.144,138.148,138.152,138.156,138.16,138.164,138.168,138.172,138.176,138.18,138.184,138.188,138.192,138.196,138.2,138.204,138.208,138.212,138.216,138.22,138.224,138.228,138.232,138.236,138.24,138.244,138.248,138.25199999999998,138.256,138.26,138.26399999999998,138.268,138.272,138.27599999999998,138.28,138.284,138.28799999999998,138.292,138.296,138.29999999999998,138.304,138.308,138.31199999999998,138.316,138.32,138.32399999999998,138.328,138.332,138.33599999999998,138.34,138.344,138.34799999999998,138.352,138.356,138.35999999999999,138.364,138.368,138.37199999999999,138.376,138.38,138.384,138.388,138.392,138.396,138.4,138.404,138.408,138.412,138.416,138.42,138.424,138.428,138.432,138.436,138.44,138.444,138.448,138.452,138.456,138.46,138.464,138.468,138.472,138.476,138.48,138.484,138.488,138.492,138.496,138.5,138.504,138.50799999999998,138.512,138.516,138.51999999999998,138.51999999999998,138.984,138.988,138.99200000000002,138.996,139.0,139.00400000000002,139.008,139.012,139.01600000000002,139.02,139.024,139.02800000000002,139.032,139.036,139.04000000000002,139.044,139.048,139.05200000000002,139.056,139.06,139.06400000000002,139.068,139.072,139.07600000000002,139.08,139.084,139.08800000000002,139.092,139.096,139.10000000000002,139.104,139.108,139.112,139.116,139.12,139.124,139.12800000000001,139.132,139.136,139.14000000000001,139.144,139.148,139.15200000000002,139.156,139.16,139.16400000000002,139.168,139.172,139.17600000000002,139.18,139.184,139.18800000000002,139.192,139.196,139.20000000000002,139.204,139.208,139.21200000000002,139.216,139.22,139.22400000000002,139.228,139.232,139.23600000000002,139.24,139.244,139.24800000000002,139.252,139.256,139.26000000000002,139.264,139.268,139.27200000000002,139.276,139.28,139.28400000000002,139.288,139.292,139.29600000000002,139.3,139.304,139.30800000000002,139.312,139.316,139.32000000000002,139.324,139.328,139.33200000000002,139.336,139.34,139.34400000000002,139.348,139.352,139.35600000000002,139.36,139.364,139.368,139.372,139.376,139.38,139.38,139.844,139.84799999999998,139.852,139.856,139.85999999999999,139.864,139.868,139.87199999999999,139.876,139.88,139.884,139.888,139.892,139.896,139.9,139.904,139.908,139.912,139.916,139.92,139.924,139.928,139.932,139.936,139.94,139.944,139.948,139.952,139.956,139.96,139.964,139.968,139.97199999999998,139.976,139.98,139.98399999999998,139.988,139.992,139.99599999999998,140.0,140.004,140.00799999999998,140.012,140.016,140.01999999999998,140.024,140.028,140.03199999999998,140.036,140.04,140.04399999999998,140.048,140.052,140.05599999999998,140.06,140.064,140.06799999999998,140.072,140.076,140.07999999999998,140.084,140.088,140.09199999999998,140.096,140.1,140.10399999999998,140.108,140.112,140.11599999999999,140.12,140.124,140.128,140.132,140.136,140.14,140.144,140.148,140.152,140.156,140.16,140.164,140.168,140.172,140.176,140.18,140.184,140.188,140.192,140.196,140.2,140.204,140.208,140.212,140.216,140.22,140.224,140.22799999999998,140.232,140.236,140.23999999999998,140.23999999999998,140.704,140.708,140.71200000000002,140.716,140.72,140.72400000000002,140.728,140.732,140.73600000000002,140.74,140.744,140.74800000000002,140.752,140.756,140.76000000000002,140.764,140.768,140.77200000000002,140.776,140.78,140.78400000000002,140.788,140.792,140.79600000000002,140.8,140.804,140.80800000000002,140.812,140.816,140.82000000000002,140.824,140.828,140.832,140.836,140.84,140.844,140.848,140.852,140.856,140.86,140.864,140.868,140.872,140.876,140.88,140.88400000000001,140.888,140.892,140.89600000000002,140.9,140.904,140.90800000000002,140.912,140.916,140.92000000000002,140.924,140.928,140.93200000000002,140.936,140.94,140.94400000000002,140.948,140.952,140.95600000000002,140.96,140.964,140.96800000000002,140.972,140.976,140.98000000000002,140.984,140.988,140.99200000000002,140.996,141.0,141.00400000000002,141.008,141.012,141.01600000000002,141.02,141.024,141.02800000000002,141.032,141.036,141.04000000000002,141.044,141.048,141.05200000000002,141.056,141.06,141.06400000000002,141.068,141.072,141.07600000000002,141.08,141.084,141.088,141.092,141.096,141.1,141.1,141.564,141.56799999999998,141.572,141.576,141.57999999999998,141.584,141.588,141.59199999999998,141.596,141.6,141.60399999999998,141.608,141.612,141.61599999999999,141.62,141.624,141.628,141.632,141.636,141.64,141.644,141.648,141.652,141.656,141.66,141.664,141.668,141.672,141.676,141.68,141.684,141.688,141.69199999999998,141.696,141.7,141.70399999999998,141.708,141.712,141.71599999999998,141.72,141.724,141.72799999999998,141.732,141.736,141.73999999999998,141.744,141.748,141.75199999999998,141.756,141.76,141.76399999999998,141.768,141.772,141.77599999999998,141.78,141.784,141.78799999999998,141.792,141.796,141.79999999999998,141.804,141.808,141.81199999999998,141.816,141.82,141.82399999999998,141.828,141.832,141.83599999999998,141.84,141.844,141.84799999999998,141.852,141.856,141.85999999999999,141.864,141.868,141.87199999999999,141.876,141.88,141.884,141.888,141.892,141.896,141.9,141.904,141.908,141.912,141.916,141.92,141.924,141.928,141.932,141.936,141.94,141.944,141.94799999999998,141.952,141.956,141.95999999999998,141.95999999999998,142.424,142.428,142.43200000000002,142.436,142.44,142.44400000000002,142.448,142.452,142.45600000000002,142.46,142.464,142.46800000000002,142.472,142.476,142.48000000000002,142.484,142.488,142.49200000000002,142.496,142.5,142.50400000000002,142.508,142.512,142.51600000000002,142.52,142.524,142.52800000000002,142.532,142.536,142.54000000000002,142.544,142.548,142.552,142.556,142.56,142.564,142.568,142.572,142.576,142.58,142.584,142.588,142.592,142.596,142.6,142.604,142.608,142.612,142.616,142.62,142.624,142.62800000000001,142.632,142.636,142.64000000000001,142.644,142.648,142.65200000000002,142.656,142.66,142.66400000000002,142.668,142.672,142.67600000000002,142.68,142.684,142.68800000000002,142.692,142.696,142.70000000000002,142.704,142.708,142.71200000000002,142.716,142.72,142.72400000000002,142.728,142.732,142.73600000000002,142.74,142.744,142.74800000000002,142.752,142.756,142.76000000000002,142.764,142.768,142.77200000000002,142.776,142.78,142.78400000000002,142.788,142.792,142.79600000000002,142.8,142.804,142.808,142.812,142.816,142.82,142.82,143.284,143.28799999999998,143.292,143.296,143.29999999999998,143.304,143.308,143.31199999999998,143.316,143.32,143.32399999999998,143.328,143.332,143.33599999999998,143.34,143.344,143.34799999999998,143.352,143.356,143.35999999999999,143.364,143.368,143.37199999999999,143.376,143.38,143.384,143.388,143.392,143.396,143.4,143.404,143.408,143.41199999999998,143.416,143.42,143.42399999999998,143.428,143.432,143.43599999999998,143.44,143.444,143.44799999999998,143.452,143.456,143.45999999999998,143.464,143.468,143.47199999999998,143.476,143.48,143.48399999999998,143.488,143.492,143.49599999999998,143.5,143.504,143.50799999999998,143.512,143.516,143.51999999999998,143.524,143.528,143.53199999999998,143.536,143.54,143.54399999999998,143.548,143.552,143.55599999999998,143.56,143.564,143.56799999999998,143.572,143.576,143.57999999999998,143.584,143.588,143.59199999999998,143.596,143.6,143.60399999999998,143.608,143.612,143.61599999999999,143.62,143.624,143.628,143.632,143.636,143.64,143.644,143.648,143.652,143.656,143.66,143.664,143.66799999999998,143.672,143.676,143.67999999999998,143.67999999999998,144.144,144.148,144.15200000000002,144.156,144.16,144.16400000000002,144.168,144.172,144.17600000000002,144.18,144.184,144.18800000000002,144.192,144.196,144.20000000000002,144.204,144.208,144.21200000000002,144.216,144.22,144.22400000000002,144.228,144.232,144.23600000000002,144.24,144.244,144.24800000000002,144.252,144.256,144.26000000000002,144.264,144.268,144.272,144.276,144.28,144.284,144.288,144.292,144.296,144.3,144.304,144.308,144.312,144.316,144.32,144.324,144.328,144.332,144.336,144.34,144.344,144.348,144.352,144.356,144.36,144.364,144.368,144.372,144.376,144.38,144.38400000000001,144.388,144.392,144.39600000000002,144.4,144.404,144.40800000000002,144.412,144.416,144.42000000000002,144.424,144.428,144.43200000000002,144.436,144.44,144.44400000000002,144.448,144.452,144.45600000000002,144.46,144.464,144.46800000000002,144.472,144.476,144.48000000000002,144.484,144.488,144.49200000000002,144.496,144.5,144.50400000000002,144.508,144.512,144.51600000000002,144.52,144.524,144.528,144.532,144.536,144.54,144.54,145.004,145.00799999999998,145.012,145.016,145.01999999999998,145.024,145.028,145.03199999999998,145.036,145.04,145.04399999999998,145.048,145.052,145.05599999999998,145.06,145.064,145.06799999999998,145.072,145.076,145.07999999999998,145.084,145.088,145.09199999999998,145.096,145.1,145.10399999999998,145.108,145.112,145.11599999999999,145.12,145.124,145.128,145.13199999999998,145.136,145.14,145.14399999999998,145.148,145.152,145.15599999999998,145.16,145.164,145.16799999999998,145.172,145.176,145.17999999999998,145.184,145.188,145.19199999999998,145.196,145.2,145.20399999999998,145.208,145.212,145.21599999999998,145.22,145.224,145.22799999999998,145.232,145.236,145.23999999999998,145.244,145.248,145.25199999999998,145.256,145.26,145.26399999999998,145.268,145.272,145.27599999999998,145.28,145.284,145.28799999999998,145.292,145.296,145.29999999999998,145.304,145.308,145.31199999999998,145.316,145.32,145.32399999999998,145.328,145.332,145.33599999999998,145.34,145.344,145.34799999999998,145.352,145.356,145.35999999999999,145.364,145.368,145.37199999999999,145.376,145.38,145.384,145.38799999999998,145.392,145.396,145.39999999999998,145.39999999999998,145.864,145.868,145.872,145.876,145.88,145.88400000000001,145.888,145.892,145.89600000000002,145.9,145.904,145.90800000000002,145.912,145.916,145.92000000000002,145.924,145.928,145.93200000000002,145.936,145.94,145.94400000000002,145.948,145.952,145.95600000000002,145.96,145.964,145.96800000000002,145.972,145.976,145.98000000000002,145.984,145.988,145.992,145.996,146.0,146.004,146.008,146.012,146.016,146.02,146.024,146.028,146.032,146.036,146.04,146.044,146.048,146.052,146.056,146.06,146.064,146.068,146.072,146.076,146.08,146.084,146.088,146.092,146.096,146.1,146.104,146.108,146.112,146.116,146.12,146.124,146.12800000000001,146.132,146.136,146.14000000000001,146.144,146.148,146.15200000000002,146.156,146.16,146.16400000000002,146.168,146.172,146.17600000000002,146.18,146.184,146.18800000000002,146.192,146.196,146.20000000000002,146.204,146.208,146.21200000000002,146.216,146.22,146.22400000000002,146.228,146.232,146.23600000000002,146.24,146.244,146.248,146.252,146.256,146.26,146.26,146.724,146.72799999999998,146.732,146.736,146.73999999999998,146.744,146.748,146.75199999999998,146.756,146.76,146.76399999999998,146.768,146.772,146.77599999999998,146.78,146.784,146.78799999999998,146.792,146.796,146.79999999999998,146.804,146.808,146.81199999999998,146.816,146.82,146.82399999999998,146.828,146.832,146.83599999999998,146.84,146.844,146.84799999999998,146.85199999999998,146.856,146.85999999999999,146.86399999999998,146.868,146.87199999999999,146.87599999999998,146.88,146.884,146.88799999999998,146.892,146.896,146.89999999999998,146.904,146.908,146.91199999999998,146.916,146.92,146.92399999999998,146.928,146.932,146.93599999999998,146.94,146.944,146.94799999999998,146.952,146.956,146.95999999999998,146.964,146.968,146.97199999999998,146.976,146.98,146.98399999999998,146.988,146.992,146.99599999999998,147.0,147.004,147.00799999999998,147.012,147.016,147.01999999999998,147.024,147.028,147.03199999999998,147.036,147.04,147.04399999999998,147.048,147.052,147.05599999999998,147.06,147.064,147.06799999999998,147.072,147.076,147.07999999999998,147.084,147.088,147.09199999999998,147.096,147.1,147.10399999999998,147.10799999999998,147.112,147.11599999999999,147.11999999999998,147.11999999999998,147.584,147.588,147.592,147.596,147.6,147.604,147.608,147.612,147.616,147.62,147.624,147.62800000000001,147.632,147.636,147.64000000000001,147.644,147.648,147.65200000000002,147.656,147.66,147.66400000000002,147.668,147.672,147.67600000000002,147.68,147.684,147.68800000000002,147.692,147.696,147.70000000000002,147.704,147.708,147.712,147.716,147.72,147.724,147.728,147.732,147.736,147.74,147.744,147.748,147.752,147.756,147.76,147.764,147.768,147.772,147.776,147.78,147.784,147.788,147.792,147.796,147.8,147.804,147.808,147.812,147.816,147.82,147.824,147.828,147.832,147.836,147.84,147.844,147.848,147.852,147.856,147.86,147.864,147.868,147.872,147.876,147.88,147.88400000000001,147.888,147.892,147.89600000000002,147.9,147.904,147.90800000000002,147.912,147.916,147.92000000000002,147.924,147.928,147.93200000000002,147.936,147.94,147.94400000000002,147.948,147.952,147.95600000000002,147.96,147.964,147.968,147.972,147.976,147.98,147.98,148.44400000000002,148.448,148.45200000000003,148.45600000000002,148.46,148.46400000000003,148.46800000000002,148.472,148.47600000000003,148.48000000000002,148.484,148.48800000000003,148.49200000000002,148.496,148.50000000000003,148.50400000000002,148.508,148.51200000000003,148.51600000000002,148.52,148.52400000000003,148.52800000000002,148.532,148.53600000000003,148.54000000000002,148.544,148.54800000000003,148.55200000000002,148.556,148.56000000000003,148.56400000000002,148.568,148.572,148.57600000000002,148.58,148.584,148.58800000000002,148.592,148.596,148.60000000000002,148.604,148.608,148.61200000000002,148.616,148.62,148.62400000000002,148.62800000000001,148.632,148.63600000000002,148.64000000000001,148.644,148.64800000000002,148.65200000000002,148.656,148.66000000000003,148.66400000000002,148.668,148.67200000000003,148.67600000000002,148.68,148.68400000000003,148.68800000000002,148.692,148.69600000000003,148.70000000000002,148.704,148.70800000000003,148.71200000000002,148.716,148.72000000000003,148.72400000000002,148.728,148.73200000000003,148.73600000000002,148.74,148.74400000000003,148.74800000000002,148.752,148.75600000000003,148.76000000000002,148.764,148.76800000000003,148.77200000000002,148.776,148.78000000000003,148.78400000000002,148.788,148.79200000000003,148.79600000000002,148.8,148.80400000000003,148.80800000000002,148.812,148.81600000000003,148.82000000000002,148.824,148.828,148.83200000000002,148.836,148.84,148.84,149.304,149.308,149.312,149.316,149.32,149.324,149.328,149.332,149.336,149.34,149.344,149.348,149.352,149.356,149.36,149.364,149.368,149.372,149.376,149.38,149.38400000000001,149.388,149.392,149.39600000000002,149.4,149.404,149.40800000000002,149.412,149.416,149.42000000000002,149.424,149.428,149.432,149.436,149.44,149.444,149.448,149.452,149.456,149.46,149.464,149.468,149.472,149.476,149.48,149.484,149.488,149.492,149.496,149.5,149.504,149.508,149.512,149.516,149.52,149.524,149.528,149.532,149.536,149.54,149.544,149.548,149.552,149.556,149.56,149.564,149.568,149.572,149.576,149.58,149.584,149.588,149.592,149.596,149.6,149.604,149.608,149.612,149.616,149.62,149.624,149.62800000000001,149.632,149.636,149.64000000000001,149.644,149.648,149.65200000000002,149.656,149.66,149.66400000000002,149.668,149.672,149.67600000000002,149.68,149.684,149.688,149.692,149.696,149.7,149.7,150.16400000000002,150.168,150.17200000000003,150.17600000000002,150.18,150.18400000000003,150.18800000000002,150.192,150.19600000000003,150.20000000000002,150.204,150.20800000000003,150.21200000000002,150.216,150.22000000000003,150.22400000000002,150.228,150.23200000000003,150.23600000000002,150.24,150.24400000000003,150.24800000000002,150.252,150.25600000000003,150.26000000000002,150.264,150.26800000000003,150.27200000000002,150.276,150.28000000000003,150.28400000000002,150.288,150.292,150.29600000000002,150.3,150.304,150.30800000000002,150.312,150.316,150.32000000000002,150.324,150.328,150.33200000000002,150.336,150.34,150.34400000000002,150.348,150.352,150.35600000000002,150.36,150.364,150.36800000000002,150.372,150.376,150.38000000000002,150.38400000000001,150.388,150.39200000000002,150.39600000000002,150.4,150.40400000000002,150.40800000000002,150.412,150.41600000000003,150.42000000000002,150.424,150.42800000000003,150.43200000000002,150.436,150.44000000000003,150.44400000000002,150.448,150.45200000000003,150.45600000000002,150.46,150.46400000000003,150.46800000000002,150.472,150.47600000000003,150.48000000000002,150.484,150.48800000000003,150.49200000000002,150.496,150.50000000000003,150.50400000000002,150.508,150.51200000000003,150.51600000000002,150.52,150.52400000000003,150.52800000000002,150.532,150.53600000000003,150.54000000000002,150.544,150.548,150.55200000000002,150.556,150.56,150.56,151.024,151.028,151.032,151.036,151.04,151.044,151.048,151.052,151.056,151.06,151.064,151.068,151.072,151.076,151.08,151.084,151.088,151.092,151.096,151.1,151.104,151.108,151.112,151.116,151.12,151.124,151.12800000000001,151.132,151.136,151.14000000000001,151.144,151.148,151.152,151.156,151.16,151.164,151.168,151.172,151.176,151.18,151.184,151.188,151.192,151.196,151.2,151.204,151.208,151.212,151.216,151.22,151.224,151.228,151.232,151.236,151.24,151.244,151.248,151.252,151.256,151.26,151.264,151.268,151.272,151.276,151.28,151.284,151.288,151.292,151.296,151.3,151.304,151.308,151.312,151.316,151.32,151.324,151.328,151.332,151.336,151.34,151.344,151.348,151.352,151.356,151.36,151.364,151.368,151.372,151.376,151.38,151.38400000000001,151.388,151.392,151.39600000000002,151.4,151.404,151.408,151.412,151.416,151.42,151.42,151.88400000000001,151.888,151.89200000000002,151.89600000000002,151.9,151.90400000000002,151.90800000000002,151.912,151.91600000000003,151.92000000000002,151.924,151.92800000000003,151.93200000000002,151.936,151.94000000000003,151.94400000000002,151.948,151.95200000000003,151.95600000000002,151.96,151.96400000000003,151.96800000000002,151.972,151.97600000000003,151.98000000000002,151.984,151.98800000000003,151.99200000000002,151.996,152.00000000000003,152.00400000000002,152.008,152.012,152.01600000000002,152.02,152.024,152.02800000000002,152.032,152.036,152.04000000000002,152.044,152.048,152.05200000000002,152.056,152.06,152.06400000000002,152.068,152.072,152.07600000000002,152.08,152.084,152.08800000000002,152.092,152.096,152.10000000000002,152.104,152.108,152.11200000000002,152.116,152.12,152.12400000000002,152.12800000000001,152.132,152.13600000000002,152.14000000000001,152.144,152.14800000000002,152.15200000000002,152.156,152.16000000000003,152.16400000000002,152.168,152.17200000000003,152.17600000000002,152.18,152.18400000000003,152.18800000000002,152.192,152.19600000000003,152.20000000000002,152.204,152.20800000000003,152.21200000000002,152.216,152.22000000000003,152.22400000000002,152.228,152.23200000000003,152.23600000000002,152.24,152.24400000000003,152.24800000000002,152.252,152.25600000000003,152.26000000000002,152.264,152.268,152.27200000000002,152.276,152.28,152.28,152.744,152.748,152.752,152.756,152.76,152.764,152.768,152.772,152.776,152.78,152.784,152.788,152.792,152.796,152.8,152.804,152.808,152.812,152.816,152.82,152.824,152.828,152.832,152.836,152.84,152.844,152.848,152.852,152.856,152.86,152.864,152.868,152.87199999999999,152.876,152.88,152.884,152.888,152.892,152.896,152.9,152.904,152.908,152.912,152.916,152.92,152.924,152.928,152.932,152.936,152.94,152.944,152.948,152.952,152.956,152.96,152.964,152.968,152.972,152.976,152.98,152.984,152.988,152.992,152.996,153.0,153.004,153.008,153.012,153.016,153.02,153.024,153.028,153.032,153.036,153.04,153.044,153.048,153.052,153.056,153.06,153.064,153.068,153.072,153.076,153.08,153.084,153.088,153.092,153.096,153.1,153.104,153.108,153.112,153.116,153.12,153.124,153.128,153.132,153.136,153.14,153.14,153.604,153.608,153.61200000000002,153.616,153.62,153.62400000000002,153.62800000000001,153.632,153.63600000000002,153.64000000000001,153.644,153.64800000000002,153.65200000000002,153.656,153.66000000000003,153.66400000000002,153.668,153.67200000000003,153.67600000000002,153.68,153.68400000000003,153.68800000000002,153.692,153.69600000000003,153.70000000000002,153.704,153.70800000000003,153.71200000000002,153.716,153.72000000000003,153.72400000000002,153.728,153.732,153.73600000000002,153.74,153.744,153.74800000000002,153.752,153.756,153.76000000000002,153.764,153.768,153.77200000000002,153.776,153.78,153.78400000000002,153.788,153.792,153.79600000000002,153.8,153.804,153.80800000000002,153.812,153.816,153.82000000000002,153.824,153.828,153.83200000000002,153.836,153.84,153.84400000000002,153.848,153.852,153.85600000000002,153.86,153.864,153.86800000000002,153.872,153.876,153.88000000000002,153.88400000000001,153.888,153.89200000000002,153.89600000000002,153.9,153.90400000000002,153.90800000000002,153.912,153.91600000000003,153.92000000000002,153.924,153.92800000000003,153.93200000000002,153.936,153.94000000000003,153.94400000000002,153.948,153.95200000000003,153.95600000000002,153.96,153.96400000000003,153.96800000000002,153.972,153.97600000000003,153.98000000000002,153.984,153.988,153.99200000000002,153.996,154.0,154.0,154.464,154.468,154.472,154.476,154.48,154.484,154.488,154.492,154.496,154.5,154.504,154.508,154.512,154.516,154.52,154.524,154.528,154.532,154.536,154.54,154.544,154.548,154.552,154.556,154.56,154.564,154.568,154.572,154.576,154.58,154.584,154.588,154.59199999999998,154.596,154.6,154.60399999999998,154.608,154.612,154.61599999999999,154.62,154.624,154.628,154.632,154.636,154.64,154.644,154.648,154.652,154.656,154.66,154.664,154.668,154.672,154.676,154.68,154.684,154.688,154.692,154.696,154.7,154.704,154.708,154.712,154.716,154.72,154.724,154.728,154.732,154.736,154.74,154.744,154.748,154.752,154.756,154.76,154.764,154.768,154.772,154.776,154.78,154.784,154.788,154.792,154.796,154.8,154.804,154.808,154.812,154.816,154.82,154.824,154.828,154.832,154.836,154.84,154.844,154.84799999999998,154.852,154.856,154.85999999999999,154.85999999999999,155.324,155.328,155.33200000000002,155.336,155.34,155.34400000000002,155.348,155.352,155.35600000000002,155.36,155.364,155.36800000000002,155.372,155.376,155.38000000000002,155.38400000000001,155.388,155.39200000000002,155.39600000000002,155.4,155.40400000000002,155.40800000000002,155.412,155.41600000000003,155.42000000000002,155.424,155.42800000000003,155.43200000000002,155.436,155.44000000000003,155.44400000000002,155.448,155.452,155.45600000000002,155.46,155.464,155.46800000000002,155.472,155.476,155.48000000000002,155.484,155.488,155.49200000000002,155.496,155.5,155.50400000000002,155.508,155.512,155.51600000000002,155.52,155.524,155.52800000000002,155.532,155.536,155.54000000000002,155.544,155.548,155.55200000000002,155.556,155.56,155.56400000000002,155.568,155.572,155.57600000000002,155.58,155.584,155.58800000000002,155.592,155.596,155.60000000000002,155.604,155.608,155.61200000000002,155.616,155.62,155.62400000000002,155.62800000000001,155.632,155.63600000000002,155.64000000000001,155.644,155.64800000000002,155.65200000000002,155.656,155.66000000000003,155.66400000000002,155.668,155.67200000000003,155.67600000000002,155.68,155.68400000000003,155.68800000000002,155.692,155.69600000000003,155.70000000000002,155.704,155.708,155.71200000000002,155.716,155.72,155.72,156.184,156.188,156.192,156.196,156.2,156.204,156.208,156.212,156.216,156.22,156.224,156.228,156.232,156.236,156.24,156.244,156.248,156.252,156.256,156.26,156.264,156.268,156.272,156.276,156.28,156.284,156.288,156.292,156.296,156.3,156.304,156.308,156.31199999999998,156.316,156.32,156.32399999999998,156.328,156.332,156.33599999999998,156.34,156.344,156.34799999999998,156.352,156.356,156.35999999999999,156.364,156.368,156.37199999999999,156.376,156.38,156.384,156.388,156.392,156.396,156.4,156.404,156.408,156.412,156.416,156.42,156.424,156.428,156.432,156.436,156.44,156.444,156.448,156.452,156.456,156.46,156.464,156.468,156.472,156.476,156.48,156.484,156.488,156.492,156.496,156.5,156.504,156.508,156.512,156.516,156.52,156.524,156.528,156.532,156.536,156.54,156.544,156.548,156.552,156.556,156.56,156.564,156.56799999999998,156.572,156.576,156.57999999999998,156.57999999999998,157.044,157.048,157.05200000000002,157.056,157.06,157.06400000000002,157.068,157.072,157.07600000000002,157.08,157.084,157.08800000000002,157.092,157.096,157.10000000000002,157.104,157.108,157.11200000000002,157.116,157.12,157.12400000000002,157.12800000000001,157.132,157.13600000000002,157.14000000000001,157.144,157.14800000000002,157.15200000000002,157.156,157.16000000000003,157.16400000000002,157.168,157.172,157.17600000000002,157.18,157.184,157.18800000000002,157.192,157.196,157.20000000000002,157.204,157.208,157.21200000000002,157.216,157.22,157.22400000000002,157.228,157.232,157.23600000000002,157.24,157.244,157.24800000000002,157.252,157.256,157.26000000000002,157.264,157.268,157.27200000000002,157.276,157.28,157.28400000000002,157.288,157.292,157.29600000000002,157.3,157.304,157.30800000000002,157.312,157.316,157.32000000000002,157.324,157.328,157.33200000000002,157.336,157.34,157.34400000000002,157.348,157.352,157.35600000000002,157.36,157.364,157.36800000000002,157.372,157.376,157.38000000000002,157.38400000000001,157.388,157.39200000000002,157.39600000000002,157.4,157.40400000000002,157.40800000000002,157.412,157.41600000000003,157.42000000000002,157.424,157.428,157.43200000000002,157.436,157.44,157.44,157.904,157.908,157.912,157.916,157.92,157.924,157.928,157.932,157.936,157.94,157.944,157.948,157.952,157.956,157.96,157.964,157.968,157.972,157.976,157.98,157.984,157.988,157.992,157.996,158.0,158.004,158.008,158.012,158.016,158.02,158.024,158.028,158.03199999999998,158.036,158.04,158.04399999999998,158.048,158.052,158.05599999999998,158.06,158.064,158.06799999999998,158.072,158.076,158.07999999999998,158.084,158.088,158.09199999999998,158.096,158.1,158.10399999999998,158.108,158.112,158.11599999999999,158.12,158.124,158.128,158.132,158.136,158.14,158.144,158.148,158.152,158.156,158.16,158.164,158.168,158.172,158.176,158.18,158.184,158.188,158.192,158.196,158.2,158.204,158.208,158.212,158.216,158.22,158.224,158.228,158.232,158.236,158.24,158.244,158.248,158.252,158.256,158.26,158.264,158.268,158.272,158.276,158.28,158.284,158.28799999999998,158.292,158.296,158.29999999999998,158.29999999999998,158.764,158.768,158.77200000000002,158.776,158.78,158.78400000000002,158.788,158.792,158.79600000000002,158.8,158.804,158.80800000000002,158.812,158.816,158.82000000000002,158.824,158.828,158.83200000000002,158.836,158.84,158.84400000000002,158.848,158.852,158.85600000000002,158.86,158.864,158.86800000000002,158.872,158.876,158.88000000000002,158.88400000000001,158.888,158.892,158.89600000000002,158.9,158.904,158.90800000000002,158.912,158.916,158.92000000000002,158.924,158.928,158.93200000000002,158.936,158.94,158.94400000000002,158.948,158.952,158.95600000000002,158.96,158.964,158.96800000000002,158.972,158.976,158.98000000000002,158.984,158.988,158.99200000000002,158.996,159.0,159.00400000000002,159.008,159.012,159.01600000000002,159.02,159.024,159.02800000000002,159.032,159.036,159.04000000000002,159.044,159.048,159.05200000000002,159.056,159.06,159.06400000000002,159.068,159.072,159.07600000000002,159.08,159.084,159.08800000000002,159.092,159.096,159.10000000000002,159.104,159.108,159.11200000000002,159.116,159.12,159.12400000000002,159.12800000000001,159.132,159.13600000000002,159.14000000000001,159.144,159.148,159.15200000000002,159.156,159.16,159.16,159.624,159.628,159.632,159.636,159.64,159.644,159.648,159.652,159.656,159.66,159.664,159.668,159.672,159.676,159.68,159.684,159.688,159.692,159.696,159.7,159.704,159.708,159.712,159.716,159.72,159.724,159.728,159.732,159.736,159.74,159.744,159.748,159.75199999999998,159.756,159.76,159.76399999999998,159.768,159.772,159.77599999999998,159.78,159.784,159.78799999999998,159.792,159.796,159.79999999999998,159.804,159.808,159.81199999999998,159.816,159.82,159.82399999999998,159.828,159.832,159.83599999999998,159.84,159.844,159.84799999999998,159.852,159.856,159.85999999999999,159.864,159.868,159.87199999999999,159.876,159.88,159.884,159.888,159.892,159.896,159.9,159.904,159.908,159.912,159.916,159.92,159.924,159.928,159.932,159.936,159.94,159.944,159.948,159.952,159.956,159.96,159.964,159.968,159.972,159.976,159.98,159.984,159.988,159.992,159.996,160.0,160.004,160.00799999999998,160.012,160.016,160.01999999999998,160.01999999999998,160.484,160.488,160.49200000000002,160.496,160.5,160.50400000000002,160.508,160.512,160.51600000000002,160.52,160.524,160.52800000000002,160.532,160.536,160.54000000000002,160.544,160.548,160.55200000000002,160.556,160.56,160.56400000000002,160.568,160.572,160.57600000000002,160.58,160.584,160.58800000000002,160.592,160.596,160.60000000000002,160.604,160.608,160.612,160.616,160.62,160.624,160.62800000000001,160.632,160.636,160.64000000000001,160.644,160.648,160.65200000000002,160.656,160.66,160.66400000000002,160.668,160.672,160.67600000000002,160.68,160.684,160.68800000000002,160.692,160.696,160.70000000000002,160.704,160.708,160.71200000000002,160.716,160.72,160.72400000000002,160.728,160.732,160.73600000000002,160.74,160.744,160.74800000000002,160.752,160.756,160.76000000000002,160.764,160.768,160.77200000000002,160.776,160.78,160.78400000000002,160.788,160.792,160.79600000000002,160.8,160.804,160.80800000000002,160.812,160.816,160.82000000000002,160.824,160.828,160.83200000000002,160.836,160.84,160.84400000000002,160.848,160.852,160.85600000000002,160.86,160.864,160.868,160.872,160.876,160.88,160.88,161.344,161.34799999999998,161.352,161.356,161.35999999999999,161.364,161.368,161.37199999999999,161.376,161.38,161.384,161.388,161.392,161.396,161.4,161.404,161.408,161.412,161.416,161.42,161.424,161.428,161.432,161.436,161.44,161.444,161.448,161.452,161.456,161.46,161.464,161.468,161.47199999999998,161.476,161.48,161.48399999999998,161.488,161.492,161.49599999999998,161.5,161.504,161.50799999999998,161.512,161.516,161.51999999999998,161.524,161.528,161.53199999999998,161.536,161.54,161.54399999999998,161.548,161.552,161.55599999999998,161.56,161.564,161.56799999999998,161.572,161.576,161.57999999999998,161.584,161.588,161.59199999999998,161.596,161.6,161.60399999999998,161.608,161.612,161.61599999999999,161.62,161.624,161.628,161.632,161.636,161.64,161.644,161.648,161.652,161.656,161.66,161.664,161.668,161.672,161.676,161.68,161.684,161.688,161.692,161.696,161.7,161.704,161.708,161.712,161.716,161.72,161.724,161.72799999999998,161.732,161.736,161.73999999999998,161.73999999999998,162.204,162.208,162.21200000000002,162.216,162.22,162.22400000000002,162.228,162.232,162.23600000000002,162.24,162.244,162.24800000000002,162.252,162.256,162.26000000000002,162.264,162.268,162.27200000000002,162.276,162.28,162.28400000000002,162.288,162.292,162.29600000000002,162.3,162.304,162.30800000000002,162.312,162.316,162.32000000000002,162.324,162.328,162.332,162.336,162.34,162.344,162.348,162.352,162.356,162.36,162.364,162.368,162.372,162.376,162.38,162.38400000000001,162.388,162.392,162.39600000000002,162.4,162.404,162.40800000000002,162.412,162.416,162.42000000000002,162.424,162.428,162.43200000000002,162.436,162.44,162.44400000000002,162.448,162.452,162.45600000000002,162.46,162.464,162.46800000000002,162.472,162.476,162.48000000000002,162.484,162.488,162.49200000000002,162.496,162.5,162.50400000000002,162.508,162.512,162.51600000000002,162.52,162.524,162.52800000000002,162.532,162.536,162.54000000000002,162.544,162.548,162.55200000000002,162.556,162.56,162.56400000000002,162.568,162.572,162.57600000000002,162.58,162.584,162.588,162.592,162.596,162.6,162.6,163.064,163.06799999999998,163.072,163.076,163.07999999999998,163.084,163.088,163.09199999999998,163.096,163.1,163.10399999999998,163.108,163.112,163.11599999999999,163.12,163.124,163.128,163.132,163.136,163.14,163.144,163.148,163.152,163.156,163.16,163.164,163.168,163.172,163.176,163.18,163.184,163.188,163.19199999999998,163.196,163.2,163.20399999999998,163.208,163.212,163.21599999999998,163.22,163.224,163.22799999999998,163.232,163.236,163.23999999999998,163.244,163.248,163.25199999999998,163.256,163.26,163.26399999999998,163.268,163.272,163.27599999999998,163.28,163.284,163.28799999999998,163.292,163.296,163.29999999999998,163.304,163.308,163.31199999999998,163.316,163.32,163.32399999999998,163.328,163.332,163.33599999999998,163.34,163.344,163.34799999999998,163.352,163.356,163.35999999999999,163.364,163.368,163.37199999999999,163.376,163.38,163.384,163.388,163.392,163.396,163.4,163.404,163.408,163.412,163.416,163.42,163.424,163.428,163.432,163.436,163.44,163.444,163.44799999999998,163.452,163.456,163.45999999999998,163.45999999999998,163.924,163.928,163.93200000000002,163.936,163.94,163.94400000000002,163.948,163.952,163.95600000000002,163.96,163.964,163.96800000000002,163.972,163.976,163.98000000000002,163.984,163.988,163.99200000000002,163.996,164.0,164.00400000000002,164.008,164.012,164.01600000000002,164.02,164.024,164.02800000000002,164.032,164.036,164.04000000000002,164.044,164.048,164.052,164.056,164.06,164.064,164.068,164.072,164.076,164.08,164.084,164.088,164.092,164.096,164.1,164.104,164.108,164.112,164.116,164.12,164.124,164.12800000000001,164.132,164.136,164.14000000000001,164.144,164.148,164.15200000000002,164.156,164.16,164.16400000000002,164.168,164.172,164.17600000000002,164.18,164.184,164.18800000000002,164.192,164.196,164.20000000000002,164.204,164.208,164.21200000000002,164.216,164.22,164.22400000000002,164.228,164.232,164.23600000000002,164.24,164.244,164.24800000000002,164.252,164.256,164.26000000000002,164.264,164.268,164.27200000000002,164.276,164.28,164.28400000000002,164.288,164.292,164.29600000000002,164.3,164.304,164.308,164.312,164.316,164.32,164.32,164.784,164.78799999999998,164.792,164.796,164.79999999999998,164.804,164.808,164.81199999999998,164.816,164.82,164.82399999999998,164.828,164.832,164.83599999999998,164.84,164.844,164.84799999999998,164.852,164.856,164.85999999999999,164.864,164.868,164.87199999999999,164.876,164.88,164.884,164.888,164.892,164.896,164.9,164.904,164.908,164.91199999999998,164.916,164.92,164.92399999999998,164.928,164.932,164.93599999999998,164.94,164.944,164.94799999999998,164.952,164.956,164.95999999999998,164.964,164.968,164.97199999999998,164.976,164.98,164.98399999999998,164.988,164.992,164.99599999999998,165.0,165.004,165.00799999999998,165.012,165.016,165.01999999999998,165.024,165.028,165.03199999999998,165.036,165.04,165.04399999999998,165.048,165.052,165.05599999999998,165.06,165.064,165.06799999999998,165.072,165.076,165.07999999999998,165.084,165.088,165.09199999999998,165.096,165.1,165.10399999999998,165.108,165.112,165.11599999999999,165.12,165.124,165.128,165.132,165.136,165.14,165.144,165.148,165.152,165.156,165.16,165.164,165.16799999999998,165.172,165.176,165.17999999999998,165.17999999999998,165.644,165.648,165.65200000000002,165.656,165.66,165.66400000000002,165.668,165.672,165.67600000000002,165.68,165.684,165.68800000000002,165.692,165.696,165.70000000000002,165.704,165.708,165.71200000000002,165.716,165.72,165.72400000000002,165.728,165.732,165.73600000000002,165.74,165.744,165.74800000000002,165.752,165.756,165.76000000000002,165.764,165.768,165.772,165.776,165.78,165.784,165.788,165.792,165.796,165.8,165.804,165.808,165.812,165.816,165.82,165.824,165.828,165.832,165.836,165.84,165.844,165.848,165.852,165.856,165.86,165.864,165.868,165.872,165.876,165.88,165.88400000000001,165.888,165.892,165.89600000000002,165.9,165.904,165.90800000000002,165.912,165.916,165.92000000000002,165.924,165.928,165.93200000000002,165.936,165.94,165.94400000000002,165.948,165.952,165.95600000000002,165.96,165.964,165.96800000000002,165.972,165.976,165.98000000000002,165.984,165.988,165.99200000000002,165.996,166.0,166.00400000000002,166.008,166.012,166.01600000000002,166.02,166.024,166.028,166.032,166.036,166.04,166.04,166.50300000000001,166.507,166.51100000000002,166.51500000000001,166.519,166.52300000000002,166.52700000000002,166.531,166.53500000000003,166.53900000000002,166.543,166.54700000000003,166.55100000000002,166.555,166.55900000000003,166.56300000000002,166.567,166.57100000000003,166.57500000000002,166.579,166.58300000000003,166.58700000000002,166.591,166.59500000000003,166.59900000000002,166.603,166.60700000000003,166.61100000000002,166.615,166.61900000000003,166.62300000000002,166.627,166.631,166.63500000000002,166.639,166.643,166.64700000000002,166.651,166.655,166.65900000000002,166.663,166.667,166.67100000000002,166.675,166.679,166.68300000000002,166.687,166.691,166.69500000000002,166.699,166.703,166.70700000000002,166.711,166.715,166.71900000000002,166.723,166.727,166.73100000000002,166.735,166.739,166.74300000000002,166.747,166.751,166.75500000000002,166.75900000000001,166.763,166.76700000000002,166.77100000000002,166.775,166.77900000000002,166.78300000000002,166.787,166.79100000000003,166.79500000000002,166.799,166.80300000000003,166.80700000000002,166.811,166.81500000000003,166.81900000000002,166.823,166.82700000000003,166.83100000000002,166.835,166.83900000000003,166.84300000000002,166.847,166.85100000000003,166.85500000000002,166.859,166.86300000000003,166.86700000000002,166.871,166.87500000000003,166.87900000000002,166.883,166.887,166.89100000000002,166.895,166.899,166.899,167.363,167.367,167.371,167.375,167.379,167.383,167.387,167.391,167.395,167.399,167.403,167.407,167.411,167.415,167.419,167.423,167.427,167.431,167.435,167.439,167.443,167.447,167.451,167.455,167.459,167.463,167.467,167.471,167.475,167.479,167.483,167.487,167.49099999999999,167.495,167.499,167.503,167.507,167.511,167.515,167.519,167.523,167.527,167.531,167.535,167.539,167.543,167.547,167.551,167.555,167.559,167.563,167.567,167.571,167.575,167.579,167.583,167.587,167.591,167.595,167.599,167.603,167.607,167.611,167.615,167.619,167.623,167.627,167.631,167.635,167.639,167.643,167.647,167.651,167.655,167.659,167.663,167.667,167.671,167.675,167.679,167.683,167.687,167.691,167.695,167.699,167.703,167.707,167.711,167.715,167.719,167.723,167.727,167.731,167.735,167.739,167.743,167.74699999999999,167.751,167.755,167.759,167.759,168.223,168.227,168.23100000000002,168.235,168.239,168.24300000000002,168.247,168.251,168.25500000000002,168.25900000000001,168.263,168.26700000000002,168.27100000000002,168.275,168.27900000000002,168.28300000000002,168.287,168.29100000000003,168.29500000000002,168.299,168.30300000000003,168.30700000000002,168.311,168.31500000000003,168.31900000000002,168.323,168.32700000000003,168.33100000000002,168.335,168.33900000000003,168.34300000000002,168.347,168.351,168.35500000000002,168.359,168.363,168.36700000000002,168.371,168.375,168.37900000000002,168.383,168.387,168.39100000000002,168.395,168.399,168.40300000000002,168.407,168.411,168.41500000000002,168.419,168.423,168.42700000000002,168.431,168.435,168.43900000000002,168.443,168.447,168.45100000000002,168.455,168.459,168.46300000000002,168.467,168.471,168.47500000000002,168.479,168.483,168.48700000000002,168.491,168.495,168.49900000000002,168.50300000000001,168.507,168.51100000000002,168.51500000000001,168.519,168.52300000000002,168.52700000000002,168.531,168.53500000000003,168.53900000000002,168.543,168.54700000000003,168.55100000000002,168.555,168.55900000000003,168.56300000000002,168.567,168.57100000000003,168.57500000000002,168.579,168.58300000000003,168.58700000000002,168.591,168.59500000000003,168.59900000000002,168.603,168.607,168.61100000000002,168.615,168.619,168.619,169.083,169.087,169.091,169.095,169.099,169.103,169.107,169.111,169.115,169.119,169.123,169.127,169.131,169.135,169.139,169.143,169.147,169.151,169.155,169.159,169.163,169.167,169.171,169.175,169.179,169.183,169.187,169.191,169.195,169.199,169.203,169.207,169.21099999999998,169.215,169.219,169.22299999999998,169.227,169.231,169.23499999999999,169.239,169.243,169.24699999999999,169.251,169.255,169.259,169.263,169.267,169.271,169.275,169.279,169.283,169.287,169.291,169.295,169.299,169.303,169.307,169.311,169.315,169.319,169.323,169.327,169.331,169.335,169.339,169.343,169.347,169.351,169.355,169.359,169.363,169.367,169.371,169.375,169.379,169.383,169.387,169.391,169.395,169.399,169.403,169.407,169.411,169.415,169.419,169.423,169.427,169.431,169.435,169.439,169.443,169.447,169.451,169.455,169.459,169.463,169.46699999999998,169.471,169.475,169.47899999999998,169.47899999999998,169.943,169.947,169.95100000000002,169.955,169.959,169.96300000000002,169.967,169.971,169.97500000000002,169.979,169.983,169.98700000000002,169.991,169.995,169.99900000000002,170.00300000000001,170.007,170.01100000000002,170.01500000000001,170.019,170.02300000000002,170.02700000000002,170.031,170.03500000000003,170.03900000000002,170.043,170.04700000000003,170.05100000000002,170.055,170.05900000000003,170.06300000000002,170.067,170.071,170.07500000000002,170.079,170.083,170.08700000000002,170.091,170.095,170.09900000000002,170.103,170.107,170.11100000000002,170.115,170.119,170.12300000000002,170.127,170.131,170.13500000000002,170.139,170.143,170.14700000000002,170.151,170.155,170.15900000000002,170.163,170.167,170.17100000000002,170.175,170.179,170.18300000000002,170.187,170.191,170.19500000000002,170.199,170.203,170.20700000000002,170.211,170.215,170.21900000000002,170.223,170.227,170.23100000000002,170.235,170.239,170.24300000000002,170.247,170.251,170.25500000000002,170.25900000000001,170.263,170.26700000000002,170.27100000000002,170.275,170.27900000000002,170.28300000000002,170.287,170.29100000000003,170.29500000000002,170.299,170.30300000000003,170.30700000000002,170.311,170.31500000000003,170.31900000000002,170.323,170.327,170.33100000000002,170.335,170.339,170.339,170.803,170.807,170.811,170.815,170.819,170.823,170.827,170.831,170.835,170.839,170.843,170.847,170.851,170.855,170.859,170.863,170.867,170.871,170.875,170.879,170.883,170.887,170.891,170.895,170.899,170.903,170.907,170.911,170.915,170.919,170.923,170.927,170.93099999999998,170.935,170.939,170.94299999999998,170.947,170.951,170.95499999999998,170.959,170.963,170.96699999999998,170.971,170.975,170.97899999999998,170.983,170.987,170.99099999999999,170.995,170.999,171.003,171.007,171.011,171.015,171.019,171.023,171.027,171.031,171.035,171.039,171.043,171.047,171.051,171.055,171.059,171.063,171.067,171.071,171.075,171.079,171.083,171.087,171.091,171.095,171.099,171.103,171.107,171.111,171.115,171.119,171.123,171.127,171.131,171.135,171.139,171.143,171.147,171.151,171.155,171.159,171.163,171.167,171.171,171.175,171.179,171.183,171.18699999999998,171.191,171.195,171.19899999999998,171.19899999999998,171.663,171.667,171.67100000000002,171.675,171.679,171.68300000000002,171.687,171.691,171.69500000000002,171.699,171.703,171.70700000000002,171.711,171.715,171.71900000000002,171.723,171.727,171.73100000000002,171.735,171.739,171.74300000000002,171.747,171.751,171.75500000000002,171.75900000000001,171.763,171.76700000000002,171.77100000000002,171.775,171.77900000000002,171.78300000000002,171.787,171.791,171.79500000000002,171.799,171.803,171.80700000000002,171.811,171.815,171.81900000000002,171.823,171.827,171.83100000000002,171.835,171.839,171.84300000000002,171.847,171.851,171.85500000000002,171.859,171.863,171.86700000000002,171.871,171.875,171.87900000000002,171.883,171.887,171.89100000000002,171.895,171.899,171.90300000000002,171.907,171.911,171.91500000000002,171.919,171.923,171.92700000000002,171.931,171.935,171.93900000000002,171.943,171.947,171.95100000000002,171.955,171.959,171.96300000000002,171.967,171.971,171.97500000000002,171.979,171.983,171.98700000000002,171.991,171.995,171.99900000000002,172.00300000000001,172.007,172.01100000000002,172.01500000000001,172.019,172.02300000000002,172.02700000000002,172.031,172.03500000000003,172.03900000000002,172.043,172.047,172.05100000000002,172.055,172.059,172.059,172.523,172.527,172.531,172.535,172.539,172.543,172.547,172.551,172.555,172.559,172.563,172.567,172.571,172.575,172.579,172.583,172.587,172.591,172.595,172.599,172.603,172.607,172.611,172.615,172.619,172.623,172.627,172.631,172.635,172.639,172.643,172.647,172.65099999999998,172.655,172.659,172.66299999999998,172.667,172.671,172.67499999999998,172.679,172.683,172.68699999999998,172.691,172.695,172.69899999999998,172.703,172.707,172.71099999999998,172.715,172.719,172.72299999999998,172.727,172.731,172.73499999999999,172.739,172.743,172.74699999999999,172.751,172.755,172.759,172.763,172.767,172.771,172.775,172.779,172.783,172.787,172.791,172.795,172.799,172.803,172.807,172.811,172.815,172.819,172.823,172.827,172.831,172.835,172.839,172.843,172.847,172.851,172.855,172.859,172.863,172.867,172.871,172.875,172.879,172.883,172.887,172.891,172.895,172.899,172.903,172.90699999999998,172.911,172.915,172.91899999999998,172.91899999999998,173.383,173.387,173.39100000000002,173.395,173.399,173.40300000000002,173.407,173.411,173.41500000000002,173.419,173.423,173.42700000000002,173.431,173.435,173.43900000000002,173.443,173.447,173.45100000000002,173.455,173.459,173.46300000000002,173.467,173.471,173.47500000000002,173.479,173.483,173.48700000000002,173.491,173.495,173.49900000000002,173.50300000000001,173.507,173.511,173.51500000000001,173.519,173.523,173.52700000000002,173.531,173.535,173.53900000000002,173.543,173.547,173.55100000000002,173.555,173.559,173.56300000000002,173.567,173.571,173.57500000000002,173.579,173.583,173.58700000000002,173.591,173.595,173.59900000000002,173.603,173.607,173.61100000000002,173.615,173.619,173.62300000000002,173.627,173.631,173.63500000000002,173.639,173.643,173.64700000000002,173.651,173.655,173.65900000000002,173.663,173.667,173.67100000000002,173.675,173.679,173.68300000000002,173.687,173.691,173.69500000000002,173.699,173.703,173.70700000000002,173.711,173.715,173.71900000000002,173.723,173.727,173.73100000000002,173.735,173.739,173.74300000000002,173.747,173.751,173.75500000000002,173.75900000000001,173.763,173.767,173.77100000000002,173.775,173.779,173.779,174.243,174.24699999999999,174.251,174.255,174.259,174.263,174.267,174.271,174.275,174.279,174.283,174.287,174.291,174.295,174.299,174.303,174.307,174.311,174.315,174.319,174.323,174.327,174.331,174.335,174.339,174.343,174.347,174.351,174.355,174.359,174.363,174.367,174.37099999999998,174.375,174.379,174.38299999999998,174.387,174.391,174.39499999999998,174.399,174.403,174.40699999999998,174.411,174.415,174.41899999999998,174.423,174.427,174.43099999999998,174.435,174.439,174.44299999999998,174.447,174.451,174.45499999999998,174.459,174.463,174.46699999999998,174.471,174.475,174.47899999999998,174.483,174.487,174.49099999999999,174.495,174.499,174.503,174.507,174.511,174.515,174.519,174.523,174.527,174.531,174.535,174.539,174.543,174.547,174.551,174.555,174.559,174.563,174.567,174.571,174.575,174.579,174.583,174.587,174.591,174.595,174.599,174.603,174.607,174.611,174.615,174.619,174.623,174.62699999999998,174.631,174.635,174.63899999999998,174.63899999999998,175.103,175.107,175.11100000000002,175.115,175.119,175.12300000000002,175.127,175.131,175.13500000000002,175.139,175.143,175.14700000000002,175.151,175.155,175.15900000000002,175.163,175.167,175.17100000000002,175.175,175.179,175.18300000000002,175.187,175.191,175.19500000000002,175.199,175.203,175.20700000000002,175.211,175.215,175.21900000000002,175.223,175.227,175.231,175.235,175.239,175.243,175.247,175.251,175.255,175.25900000000001,175.263,175.267,175.27100000000002,175.275,175.279,175.28300000000002,175.287,175.291,175.29500000000002,175.299,175.303,175.30700000000002,175.311,175.315,175.31900000000002,175.323,175.327,175.33100000000002,175.335,175.339,175.34300000000002,175.347,175.351,175.35500000000002,175.359,175.363,175.36700000000002,175.371,175.375,175.37900000000002,175.383,175.387,175.39100000000002,175.395,175.399,175.40300000000002,175.407,175.411,175.41500000000002,175.419,175.423,175.42700000000002,175.431,175.435,175.43900000000002,175.443,175.447,175.45100000000002,175.455,175.459,175.46300000000002,175.467,175.471,175.47500000000002,175.479,175.483,175.487,175.491,175.495,175.499,175.499,175.963,175.96699999999998,175.971,175.975,175.97899999999998,175.983,175.987,175.99099999999999,175.995,175.999,176.003,176.007,176.011,176.015,176.019,176.023,176.027,176.031,176.035,176.039,176.043,176.047,176.051,176.055,176.059,176.063,176.067,176.071,176.075,176.079,176.083,176.087,176.09099999999998,176.095,176.099,176.10299999999998,176.107,176.111,176.11499999999998,176.119,176.123,176.12699999999998,176.131,176.135,176.13899999999998,176.143,176.147,176.15099999999998,176.155,176.159,176.16299999999998,176.167,176.171,176.17499999999998,176.179,176.183,176.18699999999998,176.191,176.195,176.19899999999998,176.203,176.207,176.21099999999998,176.215,176.219,176.22299999999998,176.227,176.231,176.23499999999999,176.239,176.243,176.24699999999999,176.251,176.255,176.259,176.263,176.267,176.271,176.275,176.279,176.283,176.287,176.291,176.295,176.299,176.303,176.307,176.311,176.315,176.319,176.323,176.327,176.331,176.335,176.339,176.343,176.34699999999998,176.351,176.355,176.35899999999998,176.35899999999998,176.823,176.827,176.83100000000002,176.835,176.839,176.84300000000002,176.847,176.851,176.85500000000002,176.859,176.863,176.86700000000002,176.871,176.875,176.87900000000002,176.883,176.887,176.89100000000002,176.895,176.899,176.90300000000002,176.907,176.911,176.91500000000002,176.919,176.923,176.92700000000002,176.931,176.935,176.93900000000002,176.943,176.947,176.951,176.955,176.959,176.963,176.967,176.971,176.975,176.979,176.983,176.987,176.991,176.995,176.999,177.00300000000001,177.007,177.011,177.01500000000001,177.019,177.023,177.02700000000002,177.031,177.035,177.03900000000002,177.043,177.047,177.05100000000002,177.055,177.059,177.06300000000002,177.067,177.071,177.07500000000002,177.079,177.083,177.08700000000002,177.091,177.095,177.09900000000002,177.103,177.107,177.11100000000002,177.115,177.119,177.12300000000002,177.127,177.131,177.13500000000002,177.139,177.143,177.14700000000002,177.151,177.155,177.15900000000002,177.163,177.167,177.17100000000002,177.175,177.179,177.18300000000002,177.187,177.191,177.19500000000002,177.199,177.203,177.207,177.211,177.215,177.219,177.219,177.683,177.68699999999998,177.691,177.695,177.69899999999998,177.703,177.707,177.71099999999998,177.715,177.719,177.72299999999998,177.727,177.731,177.73499999999999,177.739,177.743,177.74699999999999,177.751,177.755,177.759,177.763,177.767,177.771,177.775,177.779,177.783,177.787,177.791,177.795,177.799,177.803,177.807,177.81099999999998,177.815,177.819,177.82299999999998,177.827,177.831,177.83499999999998,177.839,177.843,177.84699999999998,177.851,177.855,177.85899999999998,177.863,177.867,177.87099999999998,177.875,177.879,177.88299999999998,177.887,177.891,177.89499999999998,177.899,177.903,177.90699999999998,177.911,177.915,177.91899999999998,177.923,177.927,177.93099999999998,177.935,177.939,177.94299999999998,177.947,177.951,177.95499999999998,177.959,177.963,177.96699999999998,177.971,177.975,177.97899999999998,177.983,177.987,177.99099999999999,177.995,177.999,178.003,178.007,178.011,178.015,178.019,178.023,178.027,178.031,178.035,178.039,178.043,178.047,178.051,178.055,178.059,178.063,178.06699999999998,178.071,178.075,178.07899999999998,178.07899999999998,178.543,178.547,178.55100000000002,178.555,178.559,178.56300000000002,178.567,178.571,178.57500000000002,178.579,178.583,178.58700000000002,178.591,178.595,178.59900000000002,178.603,178.607,178.61100000000002,178.615,178.619,178.62300000000002,178.627,178.631,178.63500000000002,178.639,178.643,178.64700000000002,178.651,178.655,178.65900000000002,178.663,178.667,178.671,178.675,178.679,178.683,178.687,178.691,178.695,178.699,178.703,178.707,178.711,178.715,178.719,178.723,178.727,178.731,178.735,178.739,178.743,178.747,178.751,178.755,178.75900000000001,178.763,178.767,178.77100000000002,178.775,178.779,178.78300000000002,178.787,178.791,178.79500000000002,178.799,178.803,178.80700000000002,178.811,178.815,178.81900000000002,178.823,178.827,178.83100000000002,178.835,178.839,178.84300000000002,178.847,178.851,178.85500000000002,178.859,178.863,178.86700000000002,178.871,178.875,178.87900000000002,178.883,178.887,178.89100000000002,178.895,178.899,178.90300000000002,178.907,178.911,178.91500000000002,178.919,178.923,178.927,178.931,178.935,178.939,178.939,179.403,179.40699999999998,179.411,179.415,179.41899999999998,179.423,179.427,179.43099999999998,179.435,179.439,179.44299999999998,179.447,179.451,179.45499999999998,179.459,179.463,179.46699999999998,179.471,179.475,179.47899999999998,179.483,179.487,179.49099999999999,179.495,179.499,179.503,179.507,179.511,179.515,179.519,179.523,179.527,179.53099999999998,179.535,179.539,179.54299999999998,179.547,179.551,179.55499999999998,179.559,179.563,179.56699999999998,179.571,179.575,179.57899999999998,179.583,179.587,179.59099999999998,179.595,179.599,179.60299999999998,179.607,179.611,179.61499999999998,179.619,179.623,179.62699999999998,179.631,179.635,179.63899999999998,179.643,179.647,179.65099999999998,179.655,179.659,179.66299999999998,179.667,179.671,179.67499999999998,179.679,179.683,179.68699999999998,179.691,179.695,179.69899999999998,179.703,179.707,179.71099999999998,179.715,179.719,179.72299999999998,179.727,179.731,179.73499999999999,179.739,179.743,179.74699999999999,179.751,179.755,179.759,179.763,179.767,179.771,179.775,179.779,179.783,179.78699999999998,179.791,179.795,179.79899999999998,179.79899999999998,180.263,180.267,180.27100000000002,180.275,180.279,180.28300000000002,180.287,180.291,180.29500000000002,180.299,180.303,180.30700000000002,180.311,180.315,180.31900000000002,180.323,180.327,180.33100000000002,180.335,180.339,180.34300000000002,180.347,180.351,180.35500000000002,180.359,180.363,180.36700000000002,180.371,180.375,180.37900000000002,180.383,180.387,180.391,180.395,180.399,180.403,180.407,180.411,180.415,180.419,180.423,180.427,180.431,180.435,180.439,180.443,180.447,180.451,180.455,180.459,180.463,180.467,180.471,180.475,180.479,180.483,180.487,180.491,180.495,180.499,180.50300000000001,180.507,180.511,180.51500000000001,180.519,180.523,180.52700000000002,180.531,180.535,180.53900000000002,180.543,180.547,180.55100000000002,180.555,180.559,180.56300000000002,180.567,180.571,180.57500000000002,180.579,180.583,180.58700000000002,180.591,180.595,180.59900000000002,180.603,180.607,180.61100000000002,180.615,180.619,180.62300000000002,180.627,180.631,180.63500000000002,180.639,180.643,180.647,180.651,180.655,180.659,180.659,181.123,181.12699999999998,181.131,181.135,181.13899999999998,181.143,181.147,181.15099999999998,181.155,181.159,181.16299999999998,181.167,181.171,181.17499999999998,181.179,181.183,181.18699999999998,181.191,181.195,181.19899999999998,181.203,181.207,181.21099999999998,181.215,181.219,181.22299999999998,181.227,181.231,181.23499999999999,181.239,181.243,181.24699999999999,181.25099999999998,181.255,181.259,181.26299999999998,181.267,181.271,181.27499999999998,181.279,181.283,181.28699999999998,181.291,181.295,181.29899999999998,181.303,181.307,181.31099999999998,181.315,181.319,181.32299999999998,181.327,181.331,181.33499999999998,181.339,181.343,181.34699999999998,181.351,181.355,181.35899999999998,181.363,181.367,181.37099999999998,181.375,181.379,181.38299999999998,181.387,181.391,181.39499999999998,181.399,181.403,181.40699999999998,181.411,181.415,181.41899999999998,181.423,181.427,181.43099999999998,181.435,181.439,181.44299999999998,181.447,181.451,181.45499999999998,181.459,181.463,181.46699999999998,181.471,181.475,181.47899999999998,181.483,181.487,181.49099999999999,181.495,181.499,181.503,181.50699999999998,181.511,181.515,181.51899999999998,181.51899999999998,181.983,181.987,181.991,181.995,181.999,182.00300000000001,182.007,182.011,182.01500000000001,182.019,182.023,182.02700000000002,182.031,182.035,182.03900000000002,182.043,182.047,182.05100000000002,182.055,182.059,182.06300000000002,182.067,182.071,182.07500000000002,182.079,182.083,182.08700000000002,182.091,182.095,182.09900000000002,182.103,182.107,182.111,182.115,182.119,182.123,182.127,182.131,182.135,182.139,182.143,182.147,182.151,182.155,182.159,182.163,182.167,182.171,182.175,182.179,182.183,182.187,182.191,182.195,182.199,182.203,182.207,182.211,182.215,182.219,182.223,182.227,182.231,182.235,182.239,182.243,182.247,182.251,182.255,182.25900000000001,182.263,182.267,182.27100000000002,182.275,182.279,182.28300000000002,182.287,182.291,182.29500000000002,182.299,182.303,182.30700000000002,182.311,182.315,182.31900000000002,182.323,182.327,182.33100000000002,182.335,182.339,182.34300000000002,182.347,182.351,182.35500000000002,182.359,182.363,182.367,182.371,182.375,182.379,182.379,182.84300000000002,182.847,182.85100000000003,182.85500000000002,182.859,182.86300000000003,182.86700000000002,182.871,182.87500000000003,182.87900000000002,182.883,182.88700000000003,182.89100000000002,182.895,182.89900000000003,182.90300000000002,182.907,182.91100000000003,182.91500000000002,182.919,182.92300000000003,182.92700000000002,182.931,182.93500000000003,182.93900000000002,182.943,182.94700000000003,182.95100000000002,182.955,182.95900000000003,182.96300000000002,182.967,182.971,182.97500000000002,182.979,182.983,182.98700000000002,182.991,182.995,182.99900000000002,183.00300000000001,183.007,183.01100000000002,183.01500000000001,183.019,183.02300000000002,183.02700000000002,183.031,183.03500000000003,183.03900000000002,183.043,183.04700000000003,183.05100000000002,183.055,183.05900000000003,183.06300000000002,183.067,183.07100000000003,183.07500000000002,183.079,183.08300000000003,183.08700000000002,183.091,183.09500000000003,183.09900000000002,183.103,183.10700000000003,183.11100000000002,183.115,183.11900000000003,183.12300000000002,183.127,183.13100000000003,183.13500000000002,183.139,183.14300000000003,183.14700000000002,183.151,183.15500000000003,183.15900000000002,183.163,183.16700000000003,183.17100000000002,183.175,183.17900000000003,183.18300000000002,183.187,183.19100000000003,183.19500000000002,183.199,183.20300000000003,183.20700000000002,183.211,183.21500000000003,183.21900000000002,183.223,183.227,183.23100000000002,183.235,183.239,183.239,183.703,183.707,183.711,183.715,183.719,183.723,183.727,183.731,183.735,183.739,183.743,183.747,183.751,183.755,183.75900000000001,183.763,183.767,183.77100000000002,183.775,183.779,183.78300000000002,183.787,183.791,183.79500000000002,183.799,183.803,183.80700000000002,183.811,183.815,183.81900000000002,183.823,183.827,183.831,183.835,183.839,183.843,183.847,183.851,183.855,183.859,183.863,183.867,183.871,183.875,183.879,183.883,183.887,183.891,183.895,183.899,183.903,183.907,183.911,183.915,183.919,183.923,183.927,183.931,183.935,183.939,183.943,183.947,183.951,183.955,183.959,183.963,183.967,183.971,183.975,183.979,183.983,183.987,183.991,183.995,183.999,184.00300000000001,184.007,184.011,184.01500000000001,184.019,184.023,184.02700000000002,184.031,184.035,184.03900000000002,184.043,184.047,184.05100000000002,184.055,184.059,184.06300000000002,184.067,184.071,184.07500000000002,184.079,184.083,184.087,184.091,184.095,184.099,184.099,184.56300000000002,184.567,184.57100000000003,184.57500000000002,184.579,184.58300000000003,184.58700000000002,184.591,184.59500000000003,184.59900000000002,184.603,184.60700000000003,184.61100000000002,184.615,184.61900000000003,184.62300000000002,184.627,184.63100000000003,184.63500000000002,184.639,184.64300000000003,184.64700000000002,184.651,184.65500000000003,184.65900000000002,184.663,184.66700000000003,184.67100000000002,184.675,184.67900000000003,184.68300000000002,184.687,184.691,184.69500000000002,184.699,184.703,184.70700000000002,184.711,184.715,184.71900000000002,184.723,184.727,184.73100000000002,184.735,184.739,184.74300000000002,184.747,184.751,184.75500000000002,184.75900000000001,184.763,184.76700000000002,184.77100000000002,184.775,184.77900000000002,184.78300000000002,184.787,184.79100000000003,184.79500000000002,184.799,184.80300000000003,184.80700000000002,184.811,184.81500000000003,184.81900000000002,184.823,184.82700000000003,184.83100000000002,184.835,184.83900000000003,184.84300000000002,184.847,184.85100000000003,184.85500000000002,184.859,184.86300000000003,184.86700000000002,184.871,184.87500000000003,184.87900000000002,184.883,184.88700000000003,184.89100000000002,184.895,184.89900000000003,184.90300000000002,184.907,184.91100000000003,184.91500000000002,184.919,184.92300000000003,184.92700000000002,184.931,184.93500000000003,184.93900000000002,184.943,184.947,184.95100000000002,184.955,184.959,184.959,185.423,185.427,185.431,185.435,185.439,185.443,185.447,185.451,185.455,185.459,185.463,185.467,185.471,185.475,185.479,185.483,185.487,185.491,185.495,185.499,185.50300000000001,185.507,185.511,185.51500000000001,185.519,185.523,185.52700000000002,185.531,185.535,185.53900000000002,185.543,185.547,185.551,185.555,185.559,185.563,185.567,185.571,185.575,185.579,185.583,185.587,185.591,185.595,185.599,185.603,185.607,185.611,185.615,185.619,185.623,185.627,185.631,185.635,185.639,185.643,185.647,185.651,185.655,185.659,185.663,185.667,185.671,185.675,185.679,185.683,185.687,185.691,185.695,185.699,185.703,185.707,185.711,185.715,185.719,185.723,185.727,185.731,185.735,185.739,185.743,185.747,185.751,185.755,185.75900000000001,185.763,185.767,185.77100000000002,185.775,185.779,185.78300000000002,185.787,185.791,185.79500000000002,185.799,185.803,185.807,185.811,185.815,185.819,185.819,186.28300000000002,186.287,186.29100000000003,186.29500000000002,186.299,186.30300000000003,186.30700000000002,186.311,186.31500000000003,186.31900000000002,186.323,186.32700000000003,186.33100000000002,186.335,186.33900000000003,186.34300000000002,186.347,186.35100000000003,186.35500000000002,186.359,186.36300000000003,186.36700000000002,186.371,186.37500000000003,186.37900000000002,186.383,186.38700000000003,186.39100000000002,186.395,186.39900000000003,186.40300000000002,186.407,186.411,186.41500000000002,186.419,186.423,186.42700000000002,186.431,186.435,186.43900000000002,186.443,186.447,186.45100000000002,186.455,186.459,186.46300000000002,186.467,186.471,186.47500000000002,186.479,186.483,186.48700000000002,186.491,186.495,186.49900000000002,186.50300000000001,186.507,186.51100000000002,186.51500000000001,186.519,186.52300000000002,186.52700000000002,186.531,186.53500000000003,186.53900000000002,186.543,186.54700000000003,186.55100000000002,186.555,186.55900000000003,186.56300000000002,186.567,186.57100000000003,186.57500000000002,186.579,186.58300000000003,186.58700000000002,186.591,186.59500000000003,186.59900000000002,186.603,186.60700000000003,186.61100000000002,186.615,186.61900000000003,186.62300000000002,186.627,186.63100000000003,186.63500000000002,186.639,186.64300000000003,186.64700000000002,186.651,186.65500000000003,186.65900000000002,186.663,186.667,186.67100000000002,186.675,186.679,186.679,187.143,187.147,187.151,187.155,187.159,187.163,187.167,187.171,187.175,187.179,187.183,187.187,187.191,187.195,187.199,187.203,187.207,187.211,187.215,187.219,187.223,187.227,187.231,187.235,187.239,187.243,187.247,187.251,187.255,187.25900000000001,187.263,187.267,187.271,187.275,187.279,187.283,187.287,187.291,187.295,187.299,187.303,187.307,187.311,187.315,187.319,187.323,187.327,187.331,187.335,187.339,187.343,187.347,187.351,187.355,187.359,187.363,187.367,187.371,187.375,187.379,187.383,187.387,187.391,187.395,187.399,187.403,187.407,187.411,187.415,187.419,187.423,187.427,187.431,187.435,187.439,187.443,187.447,187.451,187.455,187.459,187.463,187.467,187.471,187.475,187.479,187.483,187.487,187.491,187.495,187.499,187.50300000000001,187.507,187.511,187.51500000000001,187.519,187.523,187.527,187.531,187.535,187.539,187.539,188.00300000000001,188.007,188.01100000000002,188.01500000000001,188.019,188.02300000000002,188.02700000000002,188.031,188.03500000000003,188.03900000000002,188.043,188.04700000000003,188.05100000000002,188.055,188.05900000000003,188.06300000000002,188.067,188.07100000000003,188.07500000000002,188.079,188.08300000000003,188.08700000000002,188.091,188.09500000000003,188.09900000000002,188.103,188.10700000000003,188.11100000000002,188.115,188.11900000000003,188.12300000000002,188.127,188.131,188.13500000000002,188.139,188.143,188.14700000000002,188.151,188.155,188.15900000000002,188.163,188.167,188.17100000000002,188.175,188.179,188.18300000000002,188.187,188.191,188.19500000000002,188.199,188.203,188.20700000000002,188.211,188.215,188.21900000000002,188.223,188.227,188.23100000000002,188.235,188.239,188.24300000000002,188.247,188.251,188.25500000000002,188.25900000000001,188.263,188.26700000000002,188.27100000000002,188.275,188.27900000000002,188.28300000000002,188.287,188.29100000000003,188.29500000000002,188.299,188.30300000000003,188.30700000000002,188.311,188.31500000000003,188.31900000000002,188.323,188.32700000000003,188.33100000000002,188.335,188.33900000000003,188.34300000000002,188.347,188.35100000000003,188.35500000000002,188.359,188.36300000000003,188.36700000000002,188.371,188.37500000000003,188.37900000000002,188.383,188.387,188.39100000000002,188.395,188.399,188.399,188.863,188.867,188.871,188.875,188.879,188.883,188.887,188.891,188.895,188.899,188.903,188.907,188.911,188.915,188.919,188.923,188.927,188.931,188.935,188.939,188.943,188.947,188.951,188.955,188.959,188.963,188.967,188.971,188.975,188.979,188.983,188.987,188.99099999999999,188.995,188.999,189.003,189.007,189.011,189.015,189.019,189.023,189.027,189.031,189.035,189.039,189.043,189.047,189.051,189.055,189.059,189.063,189.067,189.071,189.075,189.079,189.083,189.087,189.091,189.095,189.099,189.103,189.107,189.111,189.115,189.119,189.123,189.127,189.131,189.135,189.139,189.143,189.147,189.151,189.155,189.159,189.163,189.167,189.171,189.175,189.179,189.183,189.187,189.191,189.195,189.199,189.203,189.207,189.211,189.215,189.219,189.223,189.227,189.231,189.235,189.239,189.243,189.24699999999999,189.251,189.255,189.259,189.259,189.723,189.727,189.73100000000002,189.735,189.739,189.74300000000002,189.747,189.751,189.75500000000002,189.75900000000001,189.763,189.76700000000002,189.77100000000002,189.775,189.77900000000002,189.78300000000002,189.787,189.79100000000003,189.79500000000002,189.799,189.80300000000003,189.80700000000002,189.811,189.81500000000003,189.81900000000002,189.823,189.82700000000003,189.83100000000002,189.835,189.83900000000003,189.84300000000002,189.847,189.851,189.85500000000002,189.859,189.863,189.86700000000002,189.871,189.875,189.87900000000002,189.883,189.887,189.89100000000002,189.895,189.899,189.90300000000002,189.907,189.911,189.91500000000002,189.919,189.923,189.92700000000002,189.931,189.935,189.93900000000002,189.943,189.947,189.95100000000002,189.955,189.959,189.96300000000002,189.967,189.971,189.97500000000002,189.979,189.983,189.98700000000002,189.991,189.995,189.99900000000002,190.00300000000001,190.007,190.01100000000002,190.01500000000001,190.019,190.02300000000002,190.02700000000002,190.031,190.03500000000003,190.03900000000002,190.043,190.04700000000003,190.05100000000002,190.055,190.05900000000003,190.06300000000002,190.067,190.07100000000003,190.07500000000002,190.079,190.08300000000003,190.08700000000002,190.091,190.09500000000003,190.09900000000002,190.103,190.107,190.11100000000002,190.115,190.119,190.119,190.583,190.587,190.591,190.595,190.599,190.603,190.607,190.611,190.615,190.619,190.623,190.627,190.631,190.635,190.639,190.643,190.647,190.651,190.655,190.659,190.663,190.667,190.671,190.675,190.679,190.683,190.687,190.691,190.695,190.699,190.703,190.707,190.71099999999998,190.715,190.719,190.72299999999998,190.727,190.731,190.73499999999999,190.739,190.743,190.74699999999999,190.751,190.755,190.759,190.763,190.767,190.771,190.775,190.779,190.783,190.787,190.791,190.795,190.799,190.803,190.807,190.811,190.815,190.819,190.823,190.827,190.831,190.835,190.839,190.843,190.847,190.851,190.855,190.859,190.863,190.867,190.871,190.875,190.879,190.883,190.887,190.891,190.895,190.899,190.903,190.907,190.911,190.915,190.919,190.923,190.927,190.931,190.935,190.939,190.943,190.947,190.951,190.955,190.959,190.963,190.96699999999998,190.971,190.975,190.97899999999998,190.97899999999998,191.443,191.447,191.45100000000002,191.455,191.459,191.46300000000002,191.467,191.471,191.47500000000002,191.479,191.483,191.48700000000002,191.491,191.495,191.49900000000002,191.50300000000001,191.507,191.51100000000002,191.51500000000001,191.519,191.52300000000002,191.52700000000002,191.531,191.53500000000003,191.53900000000002,191.543,191.54700000000003,191.55100000000002,191.555,191.55900000000003,191.56300000000002,191.567,191.571,191.57500000000002,191.579,191.583,191.58700000000002,191.591,191.595,191.59900000000002,191.603,191.607,191.61100000000002,191.615,191.619,191.62300000000002,191.627,191.631,191.63500000000002,191.639,191.643,191.64700000000002,191.651,191.655,191.65900000000002,191.663,191.667,191.67100000000002,191.675,191.679,191.68300000000002,191.687,191.691,191.69500000000002,191.699,191.703,191.70700000000002,191.711,191.715,191.71900000000002,191.723,191.727,191.73100000000002,191.735,191.739,191.74300000000002,191.747,191.751,191.75500000000002,191.75900000000001,191.763,191.76700000000002,191.77100000000002,191.775,191.77900000000002,191.78300000000002,191.787,191.79100000000003,191.79500000000002,191.799,191.80300000000003,191.80700000000002,191.811,191.81500000000003,191.81900000000002,191.823,191.827,191.83100000000002,191.835,191.839,191.839,192.303,192.307,192.311,192.315,192.319,192.323,192.327,192.331,192.335,192.339,192.343,192.347,192.351,192.355,192.359,192.363,192.367,192.371,192.375,192.379,192.383,192.387,192.391,192.395,192.399,192.403,192.407,192.411,192.415,192.419,192.423,192.427,192.43099999999998,192.435,192.439,192.44299999999998,192.447,192.451,192.45499999999998,192.459,192.463,192.46699999999998,192.471,192.475,192.47899999999998,192.483,192.487,192.49099999999999,192.495,192.499,192.503,192.507,192.511,192.515,192.519,192.523,192.527,192.531,192.535,192.539,192.543,192.547,192.551,192.555,192.559,192.563,192.567,192.571,192.575,192.579,192.583,192.587,192.591,192.595,192.599,192.603,192.607,192.611,192.615,192.619,192.623,192.627,192.631,192.635,192.639,192.643,192.647,192.651,192.655,192.659,192.663,192.667,192.671,192.675,192.679,192.683,192.68699999999998,192.691,192.695,192.69899999999998,192.69899999999998,193.163,193.167,193.17100000000002,193.175,193.179,193.18300000000002,193.187,193.191,193.19500000000002,193.199,193.203,193.20700000000002,193.211,193.215,193.21900000000002,193.223,193.227,193.23100000000002,193.235,193.239,193.24300000000002,193.247,193.251,193.25500000000002,193.25900000000001,193.263,193.26700000000002,193.27100000000002,193.275,193.27900000000002,193.28300000000002,193.287,193.291,193.29500000000002,193.299,193.303,193.30700000000002,193.311,193.315,193.31900000000002,193.323,193.327,193.33100000000002,193.335,193.339,193.34300000000002,193.347,193.351,193.35500000000002,193.359,193.363,193.36700000000002,193.371,193.375,193.37900000000002,193.383,193.387,193.39100000000002,193.395,193.399,193.40300000000002,193.407,193.411,193.41500000000002,193.419,193.423,193.42700000000002,193.431,193.435,193.43900000000002,193.443,193.447,193.45100000000002,193.455,193.459,193.46300000000002,193.467,193.471,193.47500000000002,193.479,193.483,193.48700000000002,193.491,193.495,193.49900000000002,193.50300000000001,193.507,193.51100000000002,193.51500000000001,193.519,193.52300000000002,193.52700000000002,193.531,193.53500000000003,193.53900000000002,193.543,193.547,193.55100000000002,193.555,193.559,193.559,194.023,194.027,194.031,194.035,194.039,194.043,194.047,194.051,194.055,194.059,194.063,194.067,194.071,194.075,194.079,194.083,194.087,194.091,194.095,194.099,194.103,194.107,194.111,194.115,194.119,194.123,194.127,194.131,194.135,194.139,194.143,194.147,194.15099999999998,194.155,194.159,194.16299999999998,194.167,194.171,194.17499999999998,194.179,194.183,194.18699999999998,194.191,194.195,194.19899999999998,194.203,194.207,194.21099999999998,194.215,194.219,194.22299999999998,194.227,194.231,194.23499999999999,194.239,194.243,194.24699999999999,194.251,194.255,194.259,194.263,194.267,194.271,194.275,194.279,194.283,194.287,194.291,194.295,194.299,194.303,194.307,194.311,194.315,194.319,194.323,194.327,194.331,194.335,194.339,194.343,194.347,194.351,194.355,194.359,194.363,194.367,194.371,194.375,194.379,194.383,194.387,194.391,194.395,194.399,194.403,194.40699999999998,194.411,194.415,194.41899999999998,194.41899999999998,194.883,194.887,194.89100000000002,194.895,194.899,194.90300000000002,194.907,194.911,194.91500000000002,194.919,194.923,194.92700000000002,194.931,194.935,194.93900000000002,194.943,194.947,194.95100000000002,194.955,194.959,194.96300000000002,194.967,194.971,194.97500000000002,194.979,194.983,194.98700000000002,194.991,194.995,194.99900000000002,195.00300000000001,195.007,195.011,195.01500000000001,195.019,195.023,195.02700000000002,195.031,195.035,195.03900000000002,195.043,195.047,195.05100000000002,195.055,195.059,195.06300000000002,195.067,195.071,195.07500000000002,195.079,195.083,195.08700000000002,195.091,195.095,195.09900000000002,195.103,195.107,195.11100000000002,195.115,195.119,195.12300000000002,195.127,195.131,195.13500000000002,195.139,195.143,195.14700000000002,195.151,195.155,195.15900000000002,195.163,195.167,195.17100000000002,195.175,195.179,195.18300000000002,195.187,195.191,195.19500000000002,195.199,195.203,195.20700000000002,195.211,195.215,195.21900000000002,195.223,195.227,195.23100000000002,195.235,195.239,195.24300000000002,195.247,195.251,195.25500000000002,195.25900000000001,195.263,195.267,195.27100000000002,195.275,195.279,195.279,195.743,195.74699999999999,195.751,195.755,195.759,195.763,195.767,195.771,195.775,195.779,195.783,195.787,195.791,195.795,195.799,195.803,195.807,195.811,195.815,195.819,195.823,195.827,195.831,195.835,195.839,195.843,195.847,195.851,195.855,195.859,195.863,195.867,195.87099999999998,195.875,195.879,195.88299999999998,195.887,195.891,195.89499999999998,195.899,195.903,195.90699999999998,195.911,195.915,195.91899999999998,195.923,195.927,195.93099999999998,195.935,195.939,195.94299999999998,195.947,195.951,195.95499999999998,195.959,195.963,195.96699999999998,195.971,195.975,195.97899999999998,195.983,195.987,195.99099999999999,195.995,195.999,196.003,196.007,196.011,196.015,196.019,196.023,196.027,196.031,196.035,196.039,196.043,196.047,196.051,196.055,196.059,196.063,196.067,196.071,196.075,196.079,196.083,196.087,196.091,196.095,196.099,196.103,196.107,196.111,196.115,196.119,196.123,196.12699999999998,196.131,196.135,196.13899999999998,196.13899999999998,196.603,196.607,196.61100000000002,196.615,196.619,196.62300000000002,196.627,196.631,196.63500000000002,196.639,196.643,196.64700000000002,196.651,196.655,196.65900000000002,196.663,196.667,196.67100000000002,196.675,196.679,196.68300000000002,196.687,196.691,196.69500000000002,196.699,196.703,196.70700000000002,196.711,196.715,196.71900000000002,196.723,196.727,196.731,196.735,196.739,196.743,196.747,196.751,196.755,196.75900000000001,196.763,196.767,196.77100000000002,196.775,196.779,196.78300000000002,196.787,196.791,196.79500000000002,196.799,196.803,196.80700000000002,196.811,196.815,196.81900000000002,196.823,196.827,196.83100000000002,196.835,196.839,196.84300000000002,196.847,196.851,196.85500000000002,196.859,196.863,196.86700000000002,196.871,196.875,196.87900000000002,196.883,196.887,196.89100000000002,196.895,196.899,196.90300000000002,196.907,196.911,196.91500000000002,196.919,196.923,196.92700000000002,196.931,196.935,196.93900000000002,196.943,196.947,196.95100000000002,196.955,196.959,196.96300000000002,196.967,196.971,196.97500000000002,196.979,196.983,196.987,196.991,196.995,196.999,196.999,197.463,197.46699999999998,197.471,197.475,197.47899999999998,197.483,197.487,197.49099999999999,197.495,197.499,197.503,197.507,197.511,197.515,197.519,197.523,197.527,197.531,197.535,197.539,197.543,197.547,197.551,197.555,197.559,197.563,197.567,197.571,197.575,197.579,197.583,197.587,197.59099999999998,197.595,197.599,197.60299999999998,197.607,197.611,197.61499999999998,197.619,197.623,197.62699999999998,197.631,197.635,197.63899999999998,197.643,197.647,197.65099999999998,197.655,197.659,197.66299999999998,197.667,197.671,197.67499999999998,197.679,197.683,197.68699999999998,197.691,197.695,197.69899999999998,197.703,197.707,197.71099999999998,197.715,197.719,197.72299999999998,197.727,197.731,197.73499999999999,197.739,197.743,197.74699999999999,197.751,197.755,197.759,197.763,197.767,197.771,197.775,197.779,197.783,197.787,197.791,197.795,197.799,197.803,197.807,197.811,197.815,197.819,197.823,197.827,197.831,197.835,197.839,197.843,197.84699999999998,197.851,197.855,197.85899999999998,197.85899999999998,198.323,198.327,198.33100000000002,198.335,198.339,198.34300000000002,198.347,198.351,198.35500000000002,198.359,198.363,198.36700000000002,198.371,198.375,198.37900000000002,198.383,198.387,198.39100000000002,198.395,198.399,198.40300000000002,198.407,198.411,198.41500000000002,198.419,198.423,198.42700000000002,198.431,198.435,198.43900000000002,198.443,198.447,198.451,198.455,198.459,198.463,198.467,198.471,198.475,198.479,198.483,198.487,198.491,198.495,198.499,198.50300000000001,198.507,198.511,198.51500000000001,198.519,198.523,198.52700000000002,198.531,198.535,198.53900000000002,198.543,198.547,198.55100000000002,198.555,198.559,198.56300000000002,198.567,198.571,198.57500000000002,198.579,198.583,198.58700000000002,198.591,198.595,198.59900000000002,198.603,198.607,198.61100000000002,198.615,198.619,198.62300000000002,198.627,198.631,198.63500000000002,198.639,198.643,198.64700000000002,198.651,198.655,198.65900000000002,198.663,198.667,198.67100000000002,198.675,198.679,198.68300000000002,198.687,198.691,198.69500000000002,198.699,198.703,198.707,198.711,198.715,198.719,198.719,199.183,199.18699999999998,199.191,199.195,199.19899999999998,199.203,199.207,199.21099999999998,199.215,199.219,199.22299999999998,199.227,199.231,199.23499999999999,199.239,199.243,199.24699999999999,199.251,199.255,199.259,199.263,199.267,199.271,199.275,199.279,199.283,199.287,199.291,199.295,199.299,199.303,199.307,199.31099999999998,199.315,199.319,199.32299999999998,199.327,199.331,199.33499999999998,199.339,199.343,199.34699999999998,199.351,199.355,199.35899999999998,199.363,199.367,199.37099999999998,199.375,199.379,199.38299999999998,199.387,199.391,199.39499999999998,199.399,199.403,199.40699999999998,199.411,199.415,199.41899999999998,199.423,199.427,199.43099999999998,199.435,199.439,199.44299999999998,199.447,199.451,199.45499999999998,199.459,199.463,199.46699999999998,199.471,199.475,199.47899999999998,199.483,199.487,199.49099999999999,199.495,199.499,199.503,199.507,199.511,199.515,199.519,199.523,199.527,199.531,199.535,199.539,199.543,199.547,199.551,199.555,199.559,199.563,199.56699999999998,199.571,199.575,199.57899999999998,199.57899999999998,200.043,200.047,200.05100000000002,200.055,200.059,200.06300000000002,200.067,200.071,200.07500000000002,200.079,200.083,200.08700000000002,200.091,200.095,200.09900000000002,200.103,200.107,200.11100000000002,200.115,200.119,200.12300000000002,200.127,200.131,200.13500000000002,200.139,200.143,200.14700000000002,200.151,200.155,200.15900000000002,200.163,200.167,200.171,200.175,200.179,200.183,200.187,200.191,200.195,200.199,200.203,200.207,200.211,200.215,200.219,200.223,200.227,200.231,200.235,200.239,200.243,200.247,200.251,200.255,200.25900000000001,200.263,200.267,200.27100000000002,200.275,200.279,200.28300000000002,200.287,200.291,200.29500000000002,200.299,200.303,200.30700000000002,200.311,200.315,200.31900000000002,200.323,200.327,200.33100000000002,200.335,200.339,200.34300000000002,200.347,200.351,200.35500000000002,200.359,200.363,200.36700000000002,200.371,200.375,200.37900000000002,200.383,200.387,200.39100000000002,200.395,200.399,200.40300000000002,200.407,200.411,200.41500000000002,200.419,200.423,200.427,200.431,200.435,200.439,200.439,225.62300000000002,225.627,225.63100000000003,225.63500000000002,225.639,225.64300000000003,225.64700000000002,225.651,225.65500000000003,225.65900000000002,225.663,225.66700000000003,225.67100000000002,225.675,225.67900000000003,225.68300000000002,225.687,225.69100000000003,225.69500000000002,225.699,225.70300000000003,225.70700000000002,225.711,225.71500000000003,225.71900000000002,225.723,225.72700000000003,225.73100000000002,225.735,225.73900000000003,225.74300000000002,225.747,225.751,225.75500000000002,225.75900000000001,225.763,225.76700000000002,225.77100000000002,225.775,225.77900000000002,225.78300000000002,225.787,225.79100000000003,225.79500000000002,225.799,225.80300000000003,225.80700000000002,225.811,225.81500000000003,225.81900000000002,225.823,225.82700000000003,225.83100000000002,225.835,225.83900000000003,225.84300000000002,225.847,225.85100000000003,225.85500000000002,225.859,225.86300000000003,225.86700000000002,225.871,225.87500000000003,225.87900000000002,225.883,225.88700000000003,225.89100000000002,225.895,225.89900000000003,225.90300000000002,225.907,225.91100000000003,225.91500000000002,225.919,225.92300000000003,225.92700000000002,225.931,225.93500000000003,225.93900000000002,225.943,225.94700000000003,225.95100000000002,225.955,225.95900000000003,225.96300000000002,225.967,225.97100000000003,225.97500000000002,225.979,225.98300000000003,225.98700000000002,225.991,225.99500000000003,225.99900000000002,226.00300000000001,226.007,226.01100000000002,226.01500000000001,226.019,226.019,226.484,226.488,226.49200000000002,226.496,226.5,226.50400000000002,226.508,226.512,226.51600000000002,226.52,226.524,226.52800000000002,226.532,226.536,226.54000000000002,226.544,226.548,226.55200000000002,226.556,226.56,226.56400000000002,226.568,226.572,226.57600000000002,226.58,226.584,226.58800000000002,226.592,226.596,226.60000000000002,226.604,226.608,226.612,226.616,226.62,226.624,226.62800000000001,226.632,226.636,226.64000000000001,226.644,226.648,226.65200000000002,226.656,226.66,226.66400000000002,226.668,226.672,226.67600000000002,226.68,226.684,226.68800000000002,226.692,226.696,226.70000000000002,226.704,226.708,226.71200000000002,226.716,226.72,226.72400000000002,226.728,226.732,226.73600000000002,226.74,226.744,226.74800000000002,226.752,226.756,226.76000000000002,226.764,226.768,226.77200000000002,226.776,226.78,226.78400000000002,226.788,226.792,226.79600000000002,226.8,226.804,226.80800000000002,226.812,226.816,226.82000000000002,226.824,226.828,226.83200000000002,226.836,226.84,226.84400000000002,226.848,226.852,226.85600000000002,226.86,226.864,226.868,226.872,226.876,226.88,226.88,227.34300000000002,227.347,227.35100000000003,227.35500000000002,227.359,227.36300000000003,227.36700000000002,227.371,227.37500000000003,227.37900000000002,227.383,227.38700000000003,227.39100000000002,227.395,227.39900000000003,227.40300000000002,227.407,227.41100000000003,227.41500000000002,227.419,227.42300000000003,227.42700000000002,227.431,227.43500000000003,227.43900000000002,227.443,227.44700000000003,227.45100000000002,227.455,227.45900000000003,227.46300000000002,227.467,227.471,227.47500000000002,227.479,227.483,227.48700000000002,227.491,227.495,227.49900000000002,227.50300000000001,227.507,227.51100000000002,227.51500000000001,227.519,227.52300000000002,227.52700000000002,227.531,227.53500000000003,227.53900000000002,227.543,227.54700000000003,227.55100000000002,227.555,227.55900000000003,227.56300000000002,227.567,227.57100000000003,227.57500000000002,227.579,227.58300000000003,227.58700000000002,227.591,227.59500000000003,227.59900000000002,227.603,227.60700000000003,227.61100000000002,227.615,227.61900000000003,227.62300000000002,227.627,227.63100000000003,227.63500000000002,227.639,227.64300000000003,227.64700000000002,227.651,227.65500000000003,227.65900000000002,227.663,227.66700000000003,227.67100000000002,227.675,227.67900000000003,227.68300000000002,227.687,227.69100000000003,227.69500000000002,227.699,227.70300000000003,227.70700000000002,227.711,227.71500000000003,227.71900000000002,227.723,227.727,227.73100000000002,227.735,227.739,227.739,228.204,228.208,228.21200000000002,228.216,228.22,228.22400000000002,228.228,228.232,228.23600000000002,228.24,228.244,228.24800000000002,228.252,228.256,228.26000000000002,228.264,228.268,228.27200000000002,228.276,228.28,228.28400000000002,228.288,228.292,228.29600000000002,228.3,228.304,228.30800000000002,228.312,228.316,228.32000000000002,228.324,228.328,228.332,228.336,228.34,228.344,228.348,228.352,228.356,228.36,228.364,228.368,228.372,228.376,228.38,228.38400000000001,228.388,228.392,228.39600000000002,228.4,228.404,228.40800000000002,228.412,228.416,228.42000000000002,228.424,228.428,228.43200000000002,228.436,228.44,228.44400000000002,228.448,228.452,228.45600000000002,228.46,228.464,228.46800000000002,228.472,228.476,228.48000000000002,228.484,228.488,228.49200000000002,228.496,228.5,228.50400000000002,228.508,228.512,228.51600000000002,228.52,228.524,228.52800000000002,228.532,228.536,228.54000000000002,228.544,228.548,228.55200000000002,228.556,228.56,228.56400000000002,228.568,228.572,228.57600000000002,228.58,228.584,228.588,228.592,228.596,228.6,228.6,229.06300000000002,229.067,229.07100000000003,229.07500000000002,229.079,229.08300000000003,229.08700000000002,229.091,229.09500000000003,229.09900000000002,229.103,229.10700000000003,229.11100000000002,229.115,229.11900000000003,229.12300000000002,229.127,229.13100000000003,229.13500000000002,229.139,229.14300000000003,229.14700000000002,229.151,229.15500000000003,229.15900000000002,229.163,229.16700000000003,229.17100000000002,229.175,229.17900000000003,229.18300000000002,229.187,229.191,229.19500000000002,229.199,229.203,229.20700000000002,229.211,229.215,229.21900000000002,229.223,229.227,229.23100000000002,229.235,229.239,229.24300000000002,229.247,229.251,229.25500000000002,229.25900000000001,229.263,229.26700000000002,229.27100000000002,229.275,229.27900000000002,229.28300000000002,229.287,229.29100000000003,229.29500000000002,229.299,229.30300000000003,229.30700000000002,229.311,229.31500000000003,229.31900000000002,229.323,229.32700000000003,229.33100000000002,229.335,229.33900000000003,229.34300000000002,229.347,229.35100000000003,229.35500000000002,229.359,229.36300000000003,229.36700000000002,229.371,229.37500000000003,229.37900000000002,229.383,229.38700000000003,229.39100000000002,229.395,229.39900000000003,229.40300000000002,229.407,229.41100000000003,229.41500000000002,229.419,229.42300000000003,229.42700000000002,229.431,229.43500000000003,229.43900000000002,229.443,229.447,229.45100000000002,229.455,229.459,229.459,229.924,229.928,229.93200000000002,229.936,229.94,229.94400000000002,229.948,229.952,229.95600000000002,229.96,229.964,229.96800000000002,229.972,229.976,229.98000000000002,229.984,229.988,229.99200000000002,229.996,230.0,230.00400000000002,230.008,230.012,230.01600000000002,230.02,230.024,230.02800000000002,230.032,230.036,230.04000000000002,230.044,230.048,230.052,230.056,230.06,230.064,230.068,230.072,230.076,230.08,230.084,230.088,230.092,230.096,230.1,230.104,230.108,230.112,230.116,230.12,230.124,230.12800000000001,230.132,230.136,230.14000000000001,230.144,230.148,230.15200000000002,230.156,230.16,230.16400000000002,230.168,230.172,230.17600000000002,230.18,230.184,230.18800000000002,230.192,230.196,230.20000000000002,230.204,230.208,230.21200000000002,230.216,230.22,230.22400000000002,230.228,230.232,230.23600000000002,230.24,230.244,230.24800000000002,230.252,230.256,230.26000000000002,230.264,230.268,230.27200000000002,230.276,230.28,230.28400000000002,230.288,230.292,230.29600000000002,230.3,230.304,230.308,230.312,230.316,230.32,230.32,230.78300000000002,230.787,230.79100000000003,230.79500000000002,230.799,230.80300000000003,230.80700000000002,230.811,230.81500000000003,230.81900000000002,230.823,230.82700000000003,230.83100000000002,230.835,230.83900000000003,230.84300000000002,230.847,230.85100000000003,230.85500000000002,230.859,230.86300000000003,230.86700000000002,230.871,230.87500000000003,230.87900000000002,230.883,230.88700000000003,230.89100000000002,230.895,230.89900000000003,230.90300000000002,230.907,230.911,230.91500000000002,230.919,230.923,230.92700000000002,230.931,230.935,230.93900000000002,230.943,230.947,230.95100000000002,230.955,230.959,230.96300000000002,230.967,230.971,230.97500000000002,230.979,230.983,230.98700000000002,230.991,230.995,230.99900000000002,231.00300000000001,231.007,231.01100000000002,231.01500000000001,231.019,231.02300000000002,231.02700000000002,231.031,231.03500000000003,231.03900000000002,231.043,231.04700000000003,231.05100000000002,231.055,231.05900000000003,231.06300000000002,231.067,231.07100000000003,231.07500000000002,231.079,231.08300000000003,231.08700000000002,231.091,231.09500000000003,231.09900000000002,231.103,231.10700000000003,231.11100000000002,231.115,231.11900000000003,231.12300000000002,231.127,231.13100000000003,231.13500000000002,231.139,231.14300000000003,231.14700000000002,231.151,231.15500000000003,231.15900000000002,231.163,231.167,231.17100000000002,231.175,231.179,231.179,231.644,231.648,231.65200000000002,231.656,231.66,231.66400000000002,231.668,231.672,231.67600000000002,231.68,231.684,231.68800000000002,231.692,231.696,231.70000000000002,231.704,231.708,231.71200000000002,231.716,231.72,231.72400000000002,231.728,231.732,231.73600000000002,231.74,231.744,231.74800000000002,231.752,231.756,231.76000000000002,231.764,231.768,231.772,231.776,231.78,231.784,231.788,231.792,231.796,231.8,231.804,231.808,231.812,231.816,231.82,231.824,231.828,231.832,231.836,231.84,231.844,231.848,231.852,231.856,231.86,231.864,231.868,231.872,231.876,231.88,231.88400000000001,231.888,231.892,231.89600000000002,231.9,231.904,231.90800000000002,231.912,231.916,231.92000000000002,231.924,231.928,231.93200000000002,231.936,231.94,231.94400000000002,231.948,231.952,231.95600000000002,231.96,231.964,231.96800000000002,231.972,231.976,231.98000000000002,231.984,231.988,231.99200000000002,231.996,232.0,232.00400000000002,232.008,232.012,232.01600000000002,232.02,232.024,232.028,232.032,232.036,232.04,232.04,232.50300000000001,232.507,232.51100000000002,232.51500000000001,232.519,232.52300000000002,232.52700000000002,232.531,232.53500000000003,232.53900000000002,232.543,232.54700000000003,232.55100000000002,232.555,232.55900000000003,232.56300000000002,232.567,232.57100000000003,232.57500000000002,232.579,232.58300000000003,232.58700000000002,232.591,232.59500000000003,232.59900000000002,232.603,232.60700000000003,232.61100000000002,232.615,232.61900000000003,232.62300000000002,232.627,232.631,232.63500000000002,232.639,232.643,232.64700000000002,232.651,232.655,232.65900000000002,232.663,232.667,232.67100000000002,232.675,232.679,232.68300000000002,232.687,232.691,232.69500000000002,232.699,232.703,232.70700000000002,232.711,232.715,232.71900000000002,232.723,232.727,232.73100000000002,232.735,232.739,232.74300000000002,232.747,232.751,232.75500000000002,232.75900000000001,232.763,232.76700000000002,232.77100000000002,232.775,232.77900000000002,232.78300000000002,232.787,232.79100000000003,232.79500000000002,232.799,232.80300000000003,232.80700000000002,232.811,232.81500000000003,232.81900000000002,232.823,232.82700000000003,232.83100000000002,232.835,232.83900000000003,232.84300000000002,232.847,232.85100000000003,232.85500000000002,232.859,232.86300000000003,232.86700000000002,232.871,232.87500000000003,232.87900000000002,232.883,232.887,232.89100000000002,232.895,232.899,232.899,233.364,233.368,233.372,233.376,233.38,233.38400000000001,233.388,233.392,233.39600000000002,233.4,233.404,233.40800000000002,233.412,233.416,233.42000000000002,233.424,233.428,233.43200000000002,233.436,233.44,233.44400000000002,233.448,233.452,233.45600000000002,233.46,233.464,233.46800000000002,233.472,233.476,233.48000000000002,233.484,233.488,233.492,233.496,233.5,233.504,233.508,233.512,233.516,233.52,233.524,233.528,233.532,233.536,233.54,233.544,233.548,233.552,233.556,233.56,233.564,233.568,233.572,233.576,233.58,233.584,233.588,233.592,233.596,233.6,233.604,233.608,233.612,233.616,233.62,233.624,233.62800000000001,233.632,233.636,233.64000000000001,233.644,233.648,233.65200000000002,233.656,233.66,233.66400000000002,233.668,233.672,233.67600000000002,233.68,233.684,233.68800000000002,233.692,233.696,233.70000000000002,233.704,233.708,233.71200000000002,233.716,233.72,233.72400000000002,233.728,233.732,233.73600000000002,233.74,233.744,233.748,233.752,233.756,233.76,233.76,234.223,234.227,234.23100000000002,234.235,234.239,234.24300000000002,234.247,234.251,234.25500000000002,234.25900000000001,234.263,234.26700000000002,234.27100000000002,234.275,234.27900000000002,234.28300000000002,234.287,234.29100000000003,234.29500000000002,234.299,234.30300000000003,234.30700000000002,234.311,234.31500000000003,234.31900000000002,234.323,234.32700000000003,234.33100000000002,234.335,234.33900000000003,234.34300000000002,234.347,234.351,234.35500000000002,234.359,234.363,234.36700000000002,234.371,234.375,234.37900000000002,234.383,234.387,234.39100000000002,234.395,234.399,234.40300000000002,234.407,234.411,234.41500000000002,234.419,234.423,234.42700000000002,234.431,234.435,234.43900000000002,234.443,234.447,234.45100000000002,234.455,234.459,234.46300000000002,234.467,234.471,234.47500000000002,234.479,234.483,234.48700000000002,234.491,234.495,234.49900000000002,234.50300000000001,234.507,234.51100000000002,234.51500000000001,234.519,234.52300000000002,234.52700000000002,234.531,234.53500000000003,234.53900000000002,234.543,234.54700000000003,234.55100000000002,234.555,234.55900000000003,234.56300000000002,234.567,234.57100000000003,234.57500000000002,234.579,234.58300000000003,234.58700000000002,234.591,234.59500000000003,234.59900000000002,234.603,234.607,234.61100000000002,234.615,234.619,234.619,235.084,235.088,235.092,235.096,235.1,235.104,235.108,235.112,235.116,235.12,235.124,235.12800000000001,235.132,235.136,235.14000000000001,235.144,235.148,235.15200000000002,235.156,235.16,235.16400000000002,235.168,235.172,235.17600000000002,235.18,235.184,235.18800000000002,235.192,235.196,235.20000000000002,235.204,235.208,235.212,235.216,235.22,235.224,235.228,235.232,235.236,235.24,235.244,235.248,235.252,235.256,235.26,235.264,235.268,235.272,235.276,235.28,235.284,235.288,235.292,235.296,235.3,235.304,235.308,235.312,235.316,235.32,235.324,235.328,235.332,235.336,235.34,235.344,235.348,235.352,235.356,235.36,235.364,235.368,235.372,235.376,235.38,235.38400000000001,235.388,235.392,235.39600000000002,235.4,235.404,235.40800000000002,235.412,235.416,235.42000000000002,235.424,235.428,235.43200000000002,235.436,235.44,235.44400000000002,235.448,235.452,235.45600000000002,235.46,235.464,235.468,235.472,235.476,235.48,235.48,235.943,235.947,235.95100000000002,235.955,235.959,235.96300000000002,235.967,235.971,235.97500000000002,235.979,235.983,235.98700000000002,235.991,235.995,235.99900000000002,236.00300000000001,236.007,236.01100000000002,236.01500000000001,236.019,236.02300000000002,236.02700000000002,236.031,236.03500000000003,236.03900000000002,236.043,236.04700000000003,236.05100000000002,236.055,236.05900000000003,236.06300000000002,236.067,236.071,236.07500000000002,236.079,236.083,236.08700000000002,236.091,236.095,236.09900000000002,236.103,236.107,236.11100000000002,236.115,236.119,236.12300000000002,236.127,236.131,236.13500000000002,236.139,236.143,236.14700000000002,236.151,236.155,236.15900000000002,236.163,236.167,236.17100000000002,236.175,236.179,236.18300000000002,236.187,236.191,236.19500000000002,236.199,236.203,236.20700000000002,236.211,236.215,236.21900000000002,236.223,236.227,236.23100000000002,236.235,236.239,236.24300000000002,236.247,236.251,236.25500000000002,236.25900000000001,236.263,236.26700000000002,236.27100000000002,236.275,236.27900000000002,236.28300000000002,236.287,236.29100000000003,236.29500000000002,236.299,236.30300000000003,236.30700000000002,236.311,236.31500000000003,236.31900000000002,236.323,236.327,236.33100000000002,236.335,236.339,236.339,236.804,236.808,236.812,236.816,236.82,236.824,236.828,236.832,236.836,236.84,236.844,236.848,236.852,236.856,236.86,236.864,236.868,236.872,236.876,236.88,236.88400000000001,236.888,236.892,236.89600000000002,236.9,236.904,236.90800000000002,236.912,236.916,236.92000000000002,236.924,236.928,236.932,236.936,236.94,236.944,236.948,236.952,236.956,236.96,236.964,236.968,236.972,236.976,236.98,236.984,236.988,236.992,236.996,237.0,237.004,237.008,237.012,237.016,237.02,237.024,237.028,237.032,237.036,237.04,237.044,237.048,237.052,237.056,237.06,237.064,237.068,237.072,237.076,237.08,237.084,237.088,237.092,237.096,237.1,237.104,237.108,237.112,237.116,237.12,237.124,237.12800000000001,237.132,237.136,237.14000000000001,237.144,237.148,237.15200000000002,237.156,237.16,237.16400000000002,237.168,237.172,237.17600000000002,237.18,237.184,237.188,237.192,237.196,237.2,237.2,237.663,237.667,237.67100000000002,237.675,237.679,237.68300000000002,237.687,237.691,237.69500000000002,237.699,237.703,237.70700000000002,237.711,237.715,237.71900000000002,237.723,237.727,237.73100000000002,237.735,237.739,237.74300000000002,237.747,237.751,237.75500000000002,237.75900000000001,237.763,237.76700000000002,237.77100000000002,237.775,237.77900000000002,237.78300000000002,237.787,237.791,237.79500000000002,237.799,237.803,237.80700000000002,237.811,237.815,237.81900000000002,237.823,237.827,237.83100000000002,237.835,237.839,237.84300000000002,237.847,237.851,237.85500000000002,237.859,237.863,237.86700000000002,237.871,237.875,237.87900000000002,237.883,237.887,237.89100000000002,237.895,237.899,237.90300000000002,237.907,237.911,237.91500000000002,237.919,237.923,237.92700000000002,237.931,237.935,237.93900000000002,237.943,237.947,237.95100000000002,237.955,237.959,237.96300000000002,237.967,237.971,237.97500000000002,237.979,237.983,237.98700000000002,237.991,237.995,237.99900000000002,238.00300000000001,238.007,238.01100000000002,238.01500000000001,238.019,238.02300000000002,238.02700000000002,238.031,238.03500000000003,238.03900000000002,238.043,238.047,238.05100000000002,238.055,238.059,238.059,238.524,238.528,238.532,238.536,238.54,238.544,238.548,238.552,238.556,238.56,238.564,238.568,238.572,238.576,238.58,238.584,238.588,238.592,238.596,238.6,238.604,238.608,238.612,238.616,238.62,238.624,238.62800000000001,238.632,238.636,238.64000000000001,238.644,238.648,238.652,238.656,238.66,238.664,238.668,238.672,238.676,238.68,238.684,238.688,238.692,238.696,238.7,238.704,238.708,238.712,238.716,238.72,238.724,238.728,238.732,238.736,238.74,238.744,238.748,238.752,238.756,238.76,238.764,238.768,238.772,238.776,238.78,238.784,238.788,238.792,238.796,238.8,238.804,238.808,238.812,238.816,238.82,238.824,238.828,238.832,238.836,238.84,238.844,238.848,238.852,238.856,238.86,238.864,238.868,238.872,238.876,238.88,238.88400000000001,238.888,238.892,238.89600000000002,238.9,238.904,238.908,238.912,238.916,238.92,238.92,239.383,239.387,239.39100000000002,239.395,239.399,239.40300000000002,239.407,239.411,239.41500000000002,239.419,239.423,239.42700000000002,239.431,239.435,239.43900000000002,239.443,239.447,239.45100000000002,239.455,239.459,239.46300000000002,239.467,239.471,239.47500000000002,239.479,239.483,239.48700000000002,239.491,239.495,239.49900000000002,239.50300000000001,239.507,239.511,239.51500000000001,239.519,239.523,239.52700000000002,239.531,239.535,239.53900000000002,239.543,239.547,239.55100000000002,239.555,239.559,239.56300000000002,239.567,239.571,239.57500000000002,239.579,239.583,239.58700000000002,239.591,239.595,239.59900000000002,239.603,239.607,239.61100000000002,239.615,239.619,239.62300000000002,239.627,239.631,239.63500000000002,239.639,239.643,239.64700000000002,239.651,239.655,239.65900000000002,239.663,239.667,239.67100000000002,239.675,239.679,239.68300000000002,239.687,239.691,239.69500000000002,239.699,239.703,239.70700000000002,239.711,239.715,239.71900000000002,239.723,239.727,239.73100000000002,239.735,239.739,239.74300000000002,239.747,239.751,239.75500000000002,239.75900000000001,239.763,239.767,239.77100000000002,239.775,239.779,239.779,240.243,240.24699999999999,240.251,240.255,240.259,240.263,240.267,240.271,240.275,240.279,240.283,240.287,240.291,240.295,240.299,240.303,240.307,240.311,240.315,240.319,240.323,240.327,240.331,240.335,240.339,240.343,240.347,240.351,240.355,240.359,240.363,240.367,240.37099999999998,240.375,240.379,240.38299999999998,240.387,240.391,240.39499999999998,240.399,240.403,240.40699999999998,240.411,240.415,240.41899999999998,240.423,240.427,240.43099999999998,240.435,240.439,240.44299999999998,240.447,240.451,240.45499999999998,240.459,240.463,240.46699999999998,240.471,240.475,240.47899999999998,240.483,240.487,240.49099999999999,240.495,240.499,240.503,240.507,240.511,240.515,240.519,240.523,240.527,240.531,240.535,240.539,240.543,240.547,240.551,240.555,240.559,240.563,240.567,240.571,240.575,240.579,240.583,240.587,240.591,240.595,240.599,240.603,240.607,240.611,240.615,240.619,240.623,240.62699999999998,240.631,240.635,240.63899999999998,240.63899999999998,241.103,241.107,241.11100000000002,241.115,241.119,241.12300000000002,241.127,241.131,241.13500000000002,241.139,241.143,241.14700000000002,241.151,241.155,241.15900000000002,241.163,241.167,241.17100000000002,241.175,241.179,241.18300000000002,241.187,241.191,241.19500000000002,241.199,241.203,241.20700000000002,241.211,241.215,241.21900000000002,241.223,241.227,241.231,241.235,241.239,241.243,241.247,241.251,241.255,241.25900000000001,241.263,241.267,241.27100000000002,241.275,241.279,241.28300000000002,241.287,241.291,241.29500000000002,241.299,241.303,241.30700000000002,241.311,241.315,241.31900000000002,241.323,241.327,241.33100000000002,241.335,241.339,241.34300000000002,241.347,241.351,241.35500000000002,241.359,241.363,241.36700000000002,241.371,241.375,241.37900000000002,241.383,241.387,241.39100000000002,241.395,241.399,241.40300000000002,241.407,241.411,241.41500000000002,241.419,241.423,241.42700000000002,241.431,241.435,241.43900000000002,241.443,241.447,241.45100000000002,241.455,241.459,241.46300000000002,241.467,241.471,241.47500000000002,241.479,241.483,241.487,241.491,241.495,241.499,241.499,241.963,241.96699999999998,241.971,241.975,241.97899999999998,241.983,241.987,241.99099999999999,241.995,241.999,242.003,242.007,242.011,242.015,242.019,242.023,242.027,242.031,242.035,242.039,242.043,242.047,242.051,242.055,242.059,242.063,242.067,242.071,242.075,242.079,242.083,242.087,242.09099999999998,242.095,242.099,242.10299999999998,242.107,242.111,242.11499999999998,242.119,242.123,242.12699999999998,242.131,242.135,242.13899999999998,242.143,242.147,242.15099999999998,242.155,242.159,242.16299999999998,242.167,242.171,242.17499999999998,242.179,242.183,242.18699999999998,242.191,242.195,242.19899999999998,242.203,242.207,242.21099999999998,242.215,242.219,242.22299999999998,242.227,242.231,242.23499999999999,242.239,242.243,242.24699999999999,242.251,242.255,242.259,242.263,242.267,242.271,242.275,242.279,242.283,242.287,242.291,242.295,242.299,242.303,242.307,242.311,242.315,242.319,242.323,242.327,242.331,242.335,242.339,242.343,242.34699999999998,242.351,242.355,242.35899999999998,242.35899999999998,242.823,242.827,242.83100000000002,242.835,242.839,242.84300000000002,242.847,242.851,242.85500000000002,242.859,242.863,242.86700000000002,242.871,242.875,242.87900000000002,242.883,242.887,242.89100000000002,242.895,242.899,242.90300000000002,242.907,242.911,242.91500000000002,242.919,242.923,242.92700000000002,242.931,242.935,242.93900000000002,242.943,242.947,242.951,242.955,242.959,242.963,242.967,242.971,242.975,242.979,242.983,242.987,242.991,242.995,242.999,243.00300000000001,243.007,243.011,243.01500000000001,243.019,243.023,243.02700000000002,243.031,243.035,243.03900000000002,243.043,243.047,243.05100000000002,243.055,243.059,243.06300000000002,243.067,243.071,243.07500000000002,243.079,243.083,243.08700000000002,243.091,243.095,243.09900000000002,243.103,243.107,243.11100000000002,243.115,243.119,243.12300000000002,243.127,243.131,243.13500000000002,243.139,243.143,243.14700000000002,243.151,243.155,243.15900000000002,243.163,243.167,243.17100000000002,243.175,243.179,243.18300000000002,243.187,243.191,243.19500000000002,243.199,243.203,243.207,243.211,243.215,243.219,243.219,243.683,243.68699999999998,243.691,243.695,243.69899999999998,243.703,243.707,243.71099999999998,243.715,243.719,243.72299999999998,243.727,243.731,243.73499999999999,243.739,243.743,243.74699999999999,243.751,243.755,243.759,243.763,243.767,243.771,243.775,243.779,243.783,243.787,243.791,243.795,243.799,243.803,243.807,243.81099999999998,243.815,243.819,243.82299999999998,243.827,243.831,243.83499999999998,243.839,243.843,243.84699999999998,243.851,243.855,243.85899999999998,243.863,243.867,243.87099999999998,243.875,243.879,243.88299999999998,243.887,243.891,243.89499999999998,243.899,243.903,243.90699999999998,243.911,243.915,243.91899999999998,243.923,243.927,243.93099999999998,243.935,243.939,243.94299999999998,243.947,243.951,243.95499999999998,243.959,243.963,243.96699999999998,243.971,243.975,243.97899999999998,243.983,243.987,243.99099999999999,243.995,243.999,244.003,244.007,244.011,244.015,244.019,244.023,244.027,244.031,244.035,244.039,244.043,244.047,244.051,244.055,244.059,244.063,244.06699999999998,244.071,244.075,244.07899999999998,244.07899999999998,244.543,244.547,244.55100000000002,244.555,244.559,244.56300000000002,244.567,244.571,244.57500000000002,244.579,244.583,244.58700000000002,244.591,244.595,244.59900000000002,244.603,244.607,244.61100000000002,244.615,244.619,244.62300000000002,244.627,244.631,244.63500000000002,244.639,244.643,244.64700000000002,244.651,244.655,244.65900000000002,244.663,244.667,244.671,244.675,244.679,244.683,244.687,244.691,244.695,244.699,244.703,244.707,244.711,244.715,244.719,244.723,244.727,244.731,244.735,244.739,244.743,244.747,244.751,244.755,244.75900000000001,244.763,244.767,244.77100000000002,244.775,244.779,244.78300000000002,244.787,244.791,244.79500000000002,244.799,244.803,244.80700000000002,244.811,244.815,244.81900000000002,244.823,244.827,244.83100000000002,244.835,244.839,244.84300000000002,244.847,244.851,244.85500000000002,244.859,244.863,244.86700000000002,244.871,244.875,244.87900000000002,244.883,244.887,244.89100000000002,244.895,244.899,244.90300000000002,244.907,244.911,244.91500000000002,244.919,244.923,244.927,244.931,244.935,244.939,244.939,245.403,245.40699999999998,245.411,245.415,245.41899999999998,245.423,245.427,245.43099999999998,245.435,245.439,245.44299999999998,245.447,245.451,245.45499999999998,245.459,245.463,245.46699999999998,245.471,245.475,245.47899999999998,245.483,245.487,245.49099999999999,245.495,245.499,245.503,245.507,245.511,245.515,245.519,245.523,245.527,245.53099999999998,245.535,245.539,245.54299999999998,245.547,245.551,245.55499999999998,245.559,245.563,245.56699999999998,245.571,245.575,245.57899999999998,245.583,245.587,245.59099999999998,245.595,245.599,245.60299999999998,245.607,245.611,245.61499999999998,245.619,245.623,245.62699999999998,245.631,245.635,245.63899999999998,245.643,245.647,245.65099999999998,245.655,245.659,245.66299999999998,245.667,245.671,245.67499999999998,245.679,245.683,245.68699999999998,245.691,245.695,245.69899999999998,245.703,245.707,245.71099999999998,245.715,245.719,245.72299999999998,245.727,245.731,245.73499999999999,245.739,245.743,245.74699999999999,245.751,245.755,245.759,245.763,245.767,245.771,245.775,245.779,245.783,245.78699999999998,245.791,245.795,245.79899999999998,245.79899999999998,246.263,246.267,246.27100000000002,246.275,246.279,246.28300000000002,246.287,246.291,246.29500000000002,246.299,246.303,246.30700000000002,246.311,246.315,246.31900000000002,246.323,246.327,246.33100000000002,246.335,246.339,246.34300000000002,246.347,246.351,246.35500000000002,246.359,246.363,246.36700000000002,246.371,246.375,246.37900000000002,246.383,246.387,246.391,246.395,246.399,246.403,246.407,246.411,246.415,246.419,246.423,246.427,246.431,246.435,246.439,246.443,246.447,246.451,246.455,246.459,246.463,246.467,246.471,246.475,246.479,246.483,246.487,246.491,246.495,246.499,246.50300000000001,246.507,246.511,246.51500000000001,246.519,246.523,246.52700000000002,246.531,246.535,246.53900000000002,246.543,246.547,246.55100000000002,246.555,246.559,246.56300000000002,246.567,246.571,246.57500000000002,246.579,246.583,246.58700000000002,246.591,246.595,246.59900000000002,246.603,246.607,246.61100000000002,246.615,246.619,246.62300000000002,246.627,246.631,246.63500000000002,246.639,246.643,246.647,246.651,246.655,246.659,246.659,247.12300000000002,247.127,247.13100000000003,247.13500000000002,247.139,247.14300000000003,247.14700000000002,247.151,247.15500000000003,247.15900000000002,247.163,247.16700000000003,247.17100000000002,247.175,247.17900000000003,247.18300000000002,247.187,247.19100000000003,247.19500000000002,247.199,247.20300000000003,247.20700000000002,247.211,247.21500000000003,247.21900000000002,247.223,247.22700000000003,247.23100000000002,247.235,247.23900000000003,247.24300000000002,247.247,247.251,247.25500000000002,247.25900000000001,247.263,247.26700000000002,247.27100000000002,247.275,247.27900000000002,247.28300000000002,247.287,247.29100000000003,247.29500000000002,247.299,247.30300000000003,247.30700000000002,247.311,247.31500000000003,247.31900000000002,247.323,247.32700000000003,247.33100000000002,247.335,247.33900000000003,247.34300000000002,247.347,247.35100000000003,247.35500000000002,247.359,247.36300000000003,247.36700000000002,247.371,247.37500000000003,247.37900000000002,247.383,247.38700000000003,247.39100000000002,247.395,247.39900000000003,247.40300000000002,247.407,247.41100000000003,247.41500000000002,247.419,247.42300000000003,247.42700000000002,247.431,247.43500000000003,247.43900000000002,247.443,247.44700000000003,247.45100000000002,247.455,247.45900000000003,247.46300000000002,247.467,247.47100000000003,247.47500000000002,247.479,247.48300000000003,247.48700000000002,247.491,247.49500000000003,247.49900000000002,247.50300000000001,247.507,247.51100000000002,247.51500000000001,247.519,247.519,247.983,247.987,247.991,247.995,247.999,248.00300000000001,248.007,248.011,248.01500000000001,248.019,248.023,248.02700000000002,248.031,248.035,248.03900000000002,248.043,248.047,248.05100000000002,248.055,248.059,248.06300000000002,248.067,248.071,248.07500000000002,248.079,248.083,248.08700000000002,248.091,248.095,248.09900000000002,248.103,248.107,248.111,248.115,248.119,248.123,248.127,248.131,248.135,248.139,248.143,248.147,248.151,248.155,248.159,248.163,248.167,248.171,248.175,248.179,248.183,248.187,248.191,248.195,248.199,248.203,248.207,248.211,248.215,248.219,248.223,248.227,248.231,248.235,248.239,248.243,248.247,248.251,248.255,248.25900000000001,248.263,248.267,248.27100000000002,248.275,248.279,248.28300000000002,248.287,248.291,248.29500000000002,248.299,248.303,248.30700000000002,248.311,248.315,248.31900000000002,248.323,248.327,248.33100000000002,248.335,248.339,248.34300000000002,248.347,248.351,248.35500000000002,248.359,248.363,248.367,248.371,248.375,248.379,248.379,248.84300000000002,248.847,248.85100000000003,248.85500000000002,248.859,248.86300000000003,248.86700000000002,248.871,248.87500000000003,248.87900000000002,248.883,248.88700000000003,248.89100000000002,248.895,248.89900000000003,248.90300000000002,248.907,248.91100000000003,248.91500000000002,248.919,248.92300000000003,248.92700000000002,248.931,248.93500000000003,248.93900000000002,248.943,248.94700000000003,248.95100000000002,248.955,248.95900000000003,248.96300000000002,248.967,248.971,248.97500000000002,248.979,248.983,248.98700000000002,248.991,248.995,248.99900000000002,249.00300000000001,249.007,249.01100000000002,249.01500000000001,249.019,249.02300000000002,249.02700000000002,249.031,249.03500000000003,249.03900000000002,249.043,249.04700000000003,249.05100000000002,249.055,249.05900000000003,249.06300000000002,249.067,249.07100000000003,249.07500000000002,249.079,249.08300000000003,249.08700000000002,249.091,249.09500000000003,249.09900000000002,249.103,249.10700000000003,249.11100000000002,249.115,249.11900000000003,249.12300000000002,249.127,249.13100000000003,249.13500000000002,249.139,249.14300000000003,249.14700000000002,249.151,249.15500000000003,249.15900000000002,249.163,249.16700000000003,249.17100000000002,249.175,249.17900000000003,249.18300000000002,249.187,249.19100000000003,249.19500000000002,249.199,249.20300000000003,249.20700000000002,249.211,249.21500000000003,249.21900000000002,249.223,249.227,249.23100000000002,249.235,249.239,249.239,249.703,249.707,249.711,249.715,249.719,249.723,249.727,249.731,249.735,249.739,249.743,249.747,249.751,249.755,249.75900000000001,249.763,249.767,249.77100000000002,249.775,249.779,249.78300000000002,249.787,249.791,249.79500000000002,249.799,249.803,249.80700000000002,249.811,249.815,249.81900000000002,249.823,249.827,249.831,249.835,249.839,249.843,249.847,249.851,249.855,249.859,249.863,249.867,249.871,249.875,249.879,249.883,249.887,249.891,249.895,249.899,249.903,249.907,249.911,249.915,249.919,249.923,249.927,249.931,249.935,249.939,249.943,249.947,249.951,249.955,249.959,249.963,249.967,249.971,249.975,249.979,249.983,249.987,249.991,249.995,249.999,250.00300000000001,250.007,250.011,250.01500000000001,250.019,250.023,250.02700000000002,250.031,250.035,250.03900000000002,250.043,250.047,250.05100000000002,250.055,250.059,250.06300000000002,250.067,250.071,250.07500000000002,250.079,250.083,250.087,250.091,250.095,250.099,250.099,250.56300000000002,250.567,250.57100000000003,250.57500000000002,250.579,250.58300000000003,250.58700000000002,250.591,250.59500000000003,250.59900000000002,250.603,250.60700000000003,250.61100000000002,250.615,250.61900000000003,250.62300000000002,250.627,250.63100000000003,250.63500000000002,250.639,250.64300000000003,250.64700000000002,250.651,250.65500000000003,250.65900000000002,250.663,250.66700000000003,250.67100000000002,250.675,250.67900000000003,250.68300000000002,250.687,250.691,250.69500000000002,250.699,250.703,250.70700000000002,250.711,250.715,250.71900000000002,250.723,250.727,250.73100000000002,250.735,250.739,250.74300000000002,250.747,250.751,250.75500000000002,250.75900000000001,250.763,250.76700000000002,250.77100000000002,250.775,250.77900000000002,250.78300000000002,250.787,250.79100000000003,250.79500000000002,250.799,250.80300000000003,250.80700000000002,250.811,250.81500000000003,250.81900000000002,250.823,250.82700000000003,250.83100000000002,250.835,250.83900000000003,250.84300000000002,250.847,250.85100000000003,250.85500000000002,250.859,250.86300000000003,250.86700000000002,250.871,250.87500000000003,250.87900000000002,250.883,250.88700000000003,250.89100000000002,250.895,250.89900000000003,250.90300000000002,250.907,250.91100000000003,250.91500000000002,250.919,250.92300000000003,250.92700000000002,250.931,250.93500000000003,250.93900000000002,250.943,250.947,250.95100000000002,250.955,250.959,250.959,251.423,251.427,251.431,251.435,251.439,251.443,251.447,251.451,251.455,251.459,251.463,251.467,251.471,251.475,251.479,251.483,251.487,251.491,251.495,251.499,251.50300000000001,251.507,251.511,251.51500000000001,251.519,251.523,251.52700000000002,251.531,251.535,251.53900000000002,251.543,251.547,251.551,251.555,251.559,251.563,251.567,251.571,251.575,251.579,251.583,251.587,251.591,251.595,251.599,251.603,251.607,251.611,251.615,251.619,251.623,251.627,251.631,251.635,251.639,251.643,251.647,251.651,251.655,251.659,251.663,251.667,251.671,251.675,251.679,251.683,251.687,251.691,251.695,251.699,251.703,251.707,251.711,251.715,251.719,251.723,251.727,251.731,251.735,251.739,251.743,251.747,251.751,251.755,251.75900000000001,251.763,251.767,251.77100000000002,251.775,251.779,251.78300000000002,251.787,251.791,251.79500000000002,251.799,251.803,251.807,251.811,251.815,251.819,251.819,252.28300000000002,252.287,252.29100000000003,252.29500000000002,252.299,252.30300000000003,252.30700000000002,252.311,252.31500000000003,252.31900000000002,252.323,252.32700000000003,252.33100000000002,252.335,252.33900000000003,252.34300000000002,252.347,252.35100000000003,252.35500000000002,252.359,252.36300000000003,252.36700000000002,252.371,252.37500000000003,252.37900000000002,252.383,252.38700000000003,252.39100000000002,252.395,252.39900000000003,252.40300000000002,252.407,252.411,252.41500000000002,252.419,252.423,252.42700000000002,252.431,252.435,252.43900000000002,252.443,252.447,252.45100000000002,252.455,252.459,252.46300000000002,252.467,252.471,252.47500000000002,252.479,252.483,252.48700000000002,252.491,252.495,252.49900000000002,252.50300000000001,252.507,252.51100000000002,252.51500000000001,252.519,252.52300000000002,252.52700000000002,252.531,252.53500000000003,252.53900000000002,252.543,252.54700000000003,252.55100000000002,252.555,252.55900000000003,252.56300000000002,252.567,252.57100000000003,252.57500000000002,252.579,252.58300000000003,252.58700000000002,252.591,252.59500000000003,252.59900000000002,252.603,252.60700000000003,252.61100000000002,252.615,252.61900000000003,252.62300000000002,252.627,252.63100000000003,252.63500000000002,252.639,252.64300000000003,252.64700000000002,252.651,252.65500000000003,252.65900000000002,252.663,252.667,252.67100000000002,252.675,252.679,252.679,253.143,253.147,253.151,253.155,253.159,253.163,253.167,253.171,253.175,253.179,253.183,253.187,253.191,253.195,253.199,253.203,253.207,253.211,253.215,253.219,253.223,253.227,253.231,253.235,253.239,253.243,253.247,253.251,253.255,253.25900000000001,253.263,253.267,253.271,253.275,253.279,253.283,253.287,253.291,253.295,253.299,253.303,253.307,253.311,253.315,253.319,253.323,253.327,253.331,253.335,253.339,253.343,253.347,253.351,253.355,253.359,253.363,253.367,253.371,253.375,253.379,253.383,253.387,253.391,253.395,253.399,253.403,253.407,253.411,253.415,253.419,253.423,253.427,253.431,253.435,253.439,253.443,253.447,253.451,253.455,253.459,253.463,253.467,253.471,253.475,253.479,253.483,253.487,253.491,253.495,253.499,253.50300000000001,253.507,253.511,253.51500000000001,253.519,253.523,253.527,253.531,253.535,253.539,253.539,254.00300000000001,254.007,254.01100000000002,254.01500000000001,254.019,254.02300000000002,254.02700000000002,254.031,254.03500000000003,254.03900000000002,254.043,254.04700000000003,254.05100000000002,254.055,254.05900000000003,254.06300000000002,254.067,254.07100000000003,254.07500000000002,254.079,254.08300000000003,254.08700000000002,254.091,254.09500000000003,254.09900000000002,254.103,254.10700000000003,254.11100000000002,254.115,254.11900000000003,254.12300000000002,254.127,254.131,254.13500000000002,254.139,254.143,254.14700000000002,254.151,254.155,254.15900000000002,254.163,254.167,254.17100000000002,254.175,254.179,254.18300000000002,254.187,254.191,254.19500000000002,254.199,254.203,254.20700000000002,254.211,254.215,254.21900000000002,254.223,254.227,254.23100000000002,254.235,254.239,254.24300000000002,254.247,254.251,254.25500000000002,254.25900000000001,254.263,254.26700000000002,254.27100000000002,254.275,254.27900000000002,254.28300000000002,254.287,254.29100000000003,254.29500000000002,254.299,254.30300000000003,254.30700000000002,254.311,254.31500000000003,254.31900000000002,254.323,254.32700000000003,254.33100000000002,254.335,254.33900000000003,254.34300000000002,254.347,254.35100000000003,254.35500000000002,254.359,254.36300000000003,254.36700000000002,254.371,254.37500000000003,254.37900000000002,254.383,254.387,254.39100000000002,254.395,254.399,254.399,254.863,254.867,254.871,254.875,254.879,254.883,254.887,254.891,254.895,254.899,254.903,254.907,254.911,254.915,254.919,254.923,254.927,254.931,254.935,254.939,254.943,254.947,254.951,254.955,254.959,254.963,254.967,254.971,254.975,254.979,254.983,254.987,254.99099999999999,254.995,254.999,255.003,255.007,255.011,255.015,255.019,255.023,255.027,255.031,255.035,255.039,255.043,255.047,255.051,255.055,255.059,255.063,255.067,255.071,255.075,255.079,255.083,255.087,255.091,255.095,255.099,255.103,255.107,255.111,255.115,255.119,255.123,255.127,255.131,255.135,255.139,255.143,255.147,255.151,255.155,255.159,255.163,255.167,255.171,255.175,255.179,255.183,255.187,255.191,255.195,255.199,255.203,255.207,255.211,255.215,255.219,255.223,255.227,255.231,255.235,255.239,255.243,255.24699999999999,255.251,255.255,255.259,255.259,255.723,255.727,255.73100000000002,255.735,255.739,255.74300000000002,255.747,255.751,255.75500000000002,255.75900000000001,255.763,255.76700000000002,255.77100000000002,255.775,255.77900000000002,255.78300000000002,255.787,255.79100000000003,255.79500000000002,255.799,255.80300000000003,255.80700000000002,255.811,255.81500000000003,255.81900000000002,255.823,255.82700000000003,255.83100000000002,255.835,255.83900000000003,255.84300000000002,255.847,255.851,255.85500000000002,255.859,255.863,255.86700000000002,255.871,255.875,255.87900000000002,255.883,255.887,255.89100000000002,255.895,255.899,255.90300000000002,255.907,255.911,255.91500000000002,255.919,255.923,255.92700000000002,255.931,255.935,255.93900000000002,255.943,255.947,255.95100000000002,255.955,255.959,255.96300000000002,255.967,255.971,255.97500000000002,255.979,255.983,255.98700000000002,255.991,255.995,255.99900000000002,256.003,256.007,256.011,256.015,256.019,256.023,256.027,256.031,256.035,256.039,256.043,256.047,256.051,256.055,256.059,256.063,256.067,256.071,256.075,256.079,256.083,256.087,256.091,256.095,256.099,256.103,256.107,256.111,256.115,256.119,256.119,256.583,256.58700000000005,256.591,256.595,256.59900000000005,256.603,256.607,256.61100000000005,256.615,256.619,256.62300000000005,256.627,256.63100000000003,256.63500000000005,256.639,256.64300000000003,256.64700000000005,256.651,256.65500000000003,256.65900000000005,256.663,256.66700000000003,256.67100000000005,256.675,256.67900000000003,256.68300000000005,256.687,256.69100000000003,256.69500000000005,256.699,256.70300000000003,256.70700000000005,256.711,256.71500000000003,256.71900000000005,256.723,256.72700000000003,256.73100000000005,256.735,256.73900000000003,256.74300000000005,256.747,256.75100000000003,256.75500000000005,256.759,256.76300000000003,256.76700000000005,256.771,256.77500000000003,256.77900000000005,256.783,256.78700000000003,256.79100000000005,256.795,256.79900000000004,256.80300000000005,256.807,256.81100000000004,256.81500000000005,256.819,256.82300000000004,256.82700000000006,256.831,256.83500000000004,256.839,256.843,256.84700000000004,256.851,256.855,256.85900000000004,256.863,256.867,256.87100000000004,256.875,256.879,256.88300000000004,256.887,256.891,256.89500000000004,256.899,256.903,256.90700000000004,256.911,256.915,256.91900000000004,256.923,256.927,256.93100000000004,256.935,256.939,256.94300000000004,256.947,256.951,256.95500000000004,256.959,256.963,256.96700000000004,256.971,256.975,256.97900000000004,256.97900000000004,257.443,257.447,257.45099999999996,257.455,257.459,257.46299999999997,257.467,257.471,257.47499999999997,257.479,257.483,257.48699999999997,257.491,257.495,257.49899999999997,257.503,257.507,257.51099999999997,257.515,257.519,257.52299999999997,257.527,257.531,257.53499999999997,257.539,257.543,257.54699999999997,257.551,257.555,257.55899999999997,257.563,257.567,257.57099999999997,257.575,257.579,257.58299999999997,257.587,257.591,257.59499999999997,257.599,257.603,257.60699999999997,257.611,257.615,257.61899999999997,257.623,257.627,257.631,257.635,257.639,257.643,257.647,257.651,257.655,257.659,257.663,257.667,257.671,257.675,257.679,257.683,257.687,257.691,257.695,257.69899999999996,257.703,257.707,257.71099999999996,257.715,257.719,257.72299999999996,257.727,257.731,257.73499999999996,257.739,257.743,257.74699999999996,257.751,257.755,257.75899999999996,257.763,257.767,257.77099999999996,257.775,257.779,257.78299999999996,257.787,257.791,257.79499999999996,257.799,257.803,257.80699999999996,257.811,257.815,257.81899999999996,257.823,257.827,257.83099999999996,257.835,257.839,257.839,258.303,258.307,258.311,258.315,258.319,258.323,258.327,258.331,258.335,258.339,258.343,258.347,258.351,258.355,258.359,258.363,258.367,258.371,258.375,258.379,258.383,258.387,258.391,258.395,258.399,258.403,258.407,258.411,258.415,258.419,258.423,258.427,258.431,258.435,258.439,258.443,258.447,258.451,258.455,258.459,258.463,258.467,258.471,258.475,258.479,258.483,258.487,258.491,258.495,258.499,258.503,258.507,258.511,258.515,258.519,258.523,258.527,258.531,258.535,258.539,258.543,258.547,258.551,258.555,258.55899999999997,258.563,258.567,258.57099999999997,258.575,258.579,258.58299999999997,258.587,258.591,258.59499999999997,258.599,258.603,258.60699999999997,258.611,258.615,258.61899999999997,258.623,258.627,258.631,258.635,258.639,258.643,258.647,258.651,258.655,258.659,258.663,258.667,258.671,258.675,258.679,258.683,258.687,258.691,258.695,258.699,258.699,259.163,259.16700000000003,259.171,259.175,259.17900000000003,259.183,259.187,259.19100000000003,259.195,259.199,259.20300000000003,259.207,259.211,259.21500000000003,259.219,259.223,259.22700000000003,259.231,259.235,259.23900000000003,259.243,259.247,259.25100000000003,259.255,259.259,259.26300000000003,259.267,259.271,259.27500000000003,259.279,259.283,259.28700000000003,259.291,259.295,259.29900000000004,259.303,259.307,259.31100000000004,259.315,259.319,259.32300000000004,259.327,259.331,259.33500000000004,259.339,259.343,259.34700000000004,259.351,259.355,259.35900000000004,259.363,259.367,259.37100000000004,259.375,259.379,259.38300000000004,259.387,259.391,259.39500000000004,259.399,259.403,259.40700000000004,259.411,259.415,259.419,259.423,259.427,259.431,259.435,259.439,259.443,259.447,259.451,259.455,259.459,259.463,259.467,259.471,259.475,259.479,259.483,259.487,259.491,259.495,259.499,259.503,259.507,259.511,259.515,259.519,259.523,259.527,259.531,259.535,259.539,259.543,259.547,259.551,259.555,259.559,259.559,260.023,260.02700000000004,260.031,260.035,260.03900000000004,260.043,260.047,260.05100000000004,260.055,260.059,260.06300000000005,260.067,260.071,260.07500000000005,260.079,260.083,260.08700000000005,260.091,260.095,260.09900000000005,260.103,260.107,260.11100000000005,260.115,260.119,260.12300000000005,260.127,260.13100000000003,260.13500000000005,260.139,260.14300000000003,260.14700000000005,260.151,260.15500000000003,260.15900000000005,260.163,260.16700000000003,260.17100000000005,260.175,260.17900000000003,260.18300000000005,260.187,260.19100000000003,260.19500000000005,260.199,260.20300000000003,260.20700000000005,260.211,260.21500000000003,260.21900000000005,260.223,260.22700000000003,260.23100000000005,260.235,260.23900000000003,260.24300000000005,260.247,260.25100000000003,260.25500000000005,260.259,260.26300000000003,260.26700000000005,260.271,260.27500000000003,260.279,260.283,260.28700000000003,260.291,260.295,260.29900000000004,260.303,260.307,260.31100000000004,260.315,260.319,260.32300000000004,260.327,260.331,260.33500000000004,260.339,260.343,260.34700000000004,260.351,260.355,260.35900000000004,260.363,260.367,260.37100000000004,260.375,260.379,260.38300000000004,260.387,260.391,260.39500000000004,260.399,260.403,260.40700000000004,260.411,260.415,260.41900000000004,260.41900000000004,260.883,260.887,260.89099999999996,260.895,260.899,260.90299999999996,260.907,260.911,260.91499999999996,260.919,260.923,260.92699999999996,260.931,260.935,260.93899999999996,260.943,260.947,260.95099999999996,260.955,260.959,260.96299999999997,260.967,260.971,260.97499999999997,260.979,260.983,260.98699999999997,260.991,260.995,260.99899999999997,261.003,261.007,261.01099999999997,261.015,261.019,261.02299999999997,261.027,261.031,261.03499999999997,261.039,261.043,261.04699999999997,261.051,261.055,261.05899999999997,261.063,261.067,261.07099999999997,261.075,261.079,261.08299999999997,261.087,261.091,261.09499999999997,261.099,261.103,261.10699999999997,261.111,261.115,261.11899999999997,261.123,261.127,261.131,261.135,261.13899999999995,261.143,261.147,261.15099999999995,261.155,261.159,261.16299999999995,261.167,261.171,261.17499999999995,261.179,261.183,261.18699999999995,261.191,261.195,261.19899999999996,261.203,261.207,261.21099999999996,261.215,261.219,261.22299999999996,261.227,261.231,261.23499999999996,261.239,261.243,261.24699999999996,261.251,261.255,261.25899999999996,261.263,261.267,261.27099999999996,261.275,261.279,261.279,261.743,261.747,261.751,261.755,261.759,261.763,261.767,261.771,261.775,261.779,261.783,261.787,261.791,261.795,261.799,261.803,261.807,261.811,261.815,261.819,261.823,261.827,261.831,261.835,261.839,261.843,261.847,261.851,261.855,261.859,261.863,261.867,261.871,261.875,261.879,261.883,261.887,261.891,261.895,261.899,261.903,261.907,261.911,261.915,261.919,261.923,261.927,261.931,261.935,261.939,261.943,261.947,261.951,261.955,261.959,261.963,261.967,261.971,261.975,261.979,261.983,261.987,261.991,261.995,261.99899999999997,262.003,262.007,262.01099999999997,262.015,262.019,262.02299999999997,262.027,262.031,262.03499999999997,262.039,262.043,262.04699999999997,262.051,262.055,262.05899999999997,262.063,262.067,262.07099999999997,262.075,262.079,262.08299999999997,262.087,262.091,262.09499999999997,262.099,262.103,262.10699999999997,262.111,262.115,262.11899999999997,262.123,262.127,262.131,262.135,262.139,262.139,262.603,262.607,262.611,262.615,262.619,262.623,262.627,262.63100000000003,262.635,262.639,262.64300000000003,262.647,262.651,262.65500000000003,262.659,262.663,262.66700000000003,262.671,262.675,262.67900000000003,262.683,262.687,262.69100000000003,262.695,262.699,262.70300000000003,262.707,262.711,262.71500000000003,262.719,262.723,262.72700000000003,262.731,262.735,262.73900000000003,262.743,262.747,262.75100000000003,262.755,262.759,262.76300000000003,262.767,262.771,262.77500000000003,262.779,262.783,262.78700000000003,262.791,262.795,262.79900000000004,262.803,262.807,262.81100000000004,262.815,262.819,262.82300000000004,262.827,262.831,262.83500000000004,262.839,262.843,262.84700000000004,262.851,262.855,262.859,262.863,262.867,262.871,262.875,262.879,262.883,262.887,262.891,262.895,262.899,262.903,262.907,262.911,262.915,262.919,262.923,262.927,262.931,262.935,262.939,262.943,262.947,262.951,262.955,262.959,262.963,262.967,262.971,262.975,262.979,262.983,262.987,262.991,262.995,262.999,262.999,263.464,263.468,263.472,263.476,263.48,263.484,263.488,263.492,263.496,263.5,263.504,263.508,263.512,263.516,263.52,263.524,263.528,263.532,263.536,263.54,263.544,263.548,263.552,263.556,263.56,263.564,263.568,263.572,263.576,263.58,263.584,263.588,263.592,263.596,263.6,263.604,263.608,263.612,263.616,263.62,263.624,263.628,263.632,263.636,263.64,263.644,263.648,263.652,263.656,263.66,263.664,263.668,263.672,263.676,263.68,263.684,263.688,263.692,263.696,263.7,263.704,263.708,263.712,263.716,263.71999999999997,263.724,263.728,263.73199999999997,263.736,263.74,263.74399999999997,263.748,263.752,263.756,263.76,263.764,263.768,263.772,263.776,263.78,263.784,263.788,263.792,263.796,263.8,263.804,263.808,263.812,263.816,263.82,263.824,263.828,263.832,263.836,263.84,263.844,263.848,263.852,263.856,263.86,263.86,264.323,264.327,264.33099999999996,264.335,264.339,264.34299999999996,264.347,264.351,264.35499999999996,264.359,264.363,264.36699999999996,264.371,264.375,264.37899999999996,264.383,264.387,264.39099999999996,264.395,264.399,264.40299999999996,264.407,264.411,264.41499999999996,264.419,264.423,264.42699999999996,264.431,264.435,264.43899999999996,264.443,264.447,264.45099999999996,264.455,264.459,264.46299999999997,264.467,264.471,264.47499999999997,264.479,264.483,264.48699999999997,264.491,264.495,264.49899999999997,264.503,264.507,264.51099999999997,264.515,264.519,264.52299999999997,264.527,264.531,264.53499999999997,264.539,264.543,264.54699999999997,264.551,264.555,264.55899999999997,264.563,264.567,264.57099999999997,264.575,264.57899999999995,264.58299999999997,264.587,264.59099999999995,264.59499999999997,264.599,264.60299999999995,264.60699999999997,264.611,264.61499999999995,264.61899999999997,264.623,264.62699999999995,264.631,264.635,264.63899999999995,264.643,264.647,264.65099999999995,264.655,264.659,264.66299999999995,264.667,264.671,264.67499999999995,264.679,264.683,264.68699999999995,264.691,264.695,264.69899999999996,264.703,264.707,264.71099999999996,264.715,264.719,264.719,265.184,265.18800000000005,265.192,265.196,265.20000000000005,265.204,265.208,265.21200000000005,265.216,265.22,265.22400000000005,265.228,265.232,265.23600000000005,265.24,265.244,265.24800000000005,265.252,265.25600000000003,265.26000000000005,265.264,265.26800000000003,265.27200000000005,265.276,265.28000000000003,265.28400000000005,265.288,265.29200000000003,265.29600000000005,265.3,265.30400000000003,265.30800000000005,265.312,265.31600000000003,265.32000000000005,265.324,265.32800000000003,265.33200000000005,265.336,265.34000000000003,265.34400000000005,265.348,265.35200000000003,265.35600000000005,265.36,265.36400000000003,265.36800000000005,265.372,265.37600000000003,265.38000000000005,265.384,265.38800000000003,265.39200000000005,265.396,265.40000000000003,265.40400000000005,265.408,265.41200000000003,265.41600000000005,265.42,265.42400000000004,265.42800000000005,265.432,265.43600000000004,265.44,265.444,265.44800000000004,265.452,265.456,265.46000000000004,265.464,265.468,265.47200000000004,265.476,265.48,265.48400000000004,265.488,265.492,265.49600000000004,265.5,265.504,265.50800000000004,265.512,265.516,265.52000000000004,265.524,265.528,265.53200000000004,265.536,265.54,265.54400000000004,265.548,265.552,265.55600000000004,265.56,265.564,265.56800000000004,265.572,265.576,265.58000000000004,265.58000000000004,266.043,266.047,266.051,266.055,266.059,266.063,266.067,266.071,266.075,266.079,266.083,266.087,266.091,266.095,266.099,266.103,266.107,266.111,266.115,266.119,266.123,266.127,266.13100000000003,266.135,266.139,266.14300000000003,266.147,266.151,266.15500000000003,266.159,266.163,266.16700000000003,266.171,266.175,266.17900000000003,266.183,266.187,266.19100000000003,266.195,266.199,266.20300000000003,266.207,266.211,266.21500000000003,266.219,266.223,266.22700000000003,266.231,266.235,266.23900000000003,266.243,266.247,266.25100000000003,266.255,266.259,266.26300000000003,266.267,266.271,266.27500000000003,266.279,266.283,266.28700000000003,266.291,266.295,266.299,266.303,266.307,266.311,266.315,266.319,266.323,266.327,266.331,266.335,266.339,266.343,266.347,266.351,266.355,266.359,266.363,266.367,266.371,266.375,266.379,266.383,266.387,266.391,266.395,266.399,266.403,266.407,266.411,266.415,266.419,266.423,266.427,266.431,266.435,266.439,266.439,266.904,266.908,266.912,266.916,266.92,266.924,266.928,266.932,266.936,266.94,266.944,266.948,266.952,266.956,266.96,266.964,266.968,266.972,266.976,266.98,266.984,266.988,266.992,266.996,267.0,267.004,267.008,267.012,267.016,267.02,267.024,267.028,267.032,267.036,267.04,267.044,267.048,267.052,267.056,267.06,267.064,267.068,267.072,267.076,267.08,267.084,267.088,267.092,267.096,267.1,267.104,267.108,267.112,267.116,267.12,267.124,267.128,267.132,267.136,267.14,267.144,267.148,267.152,267.156,267.15999999999997,267.164,267.168,267.17199999999997,267.176,267.18,267.18399999999997,267.188,267.192,267.19599999999997,267.2,267.204,267.20799999999997,267.212,267.216,267.21999999999997,267.224,267.228,267.23199999999997,267.236,267.24,267.24399999999997,267.248,267.252,267.256,267.26,267.264,267.268,267.272,267.276,267.28,267.284,267.288,267.292,267.296,267.3,267.3,267.76300000000003,267.76700000000005,267.771,267.77500000000003,267.77900000000005,267.783,267.78700000000003,267.79100000000005,267.795,267.79900000000004,267.80300000000005,267.807,267.81100000000004,267.81500000000005,267.819,267.82300000000004,267.82700000000006,267.831,267.83500000000004,267.83900000000006,267.843,267.84700000000004,267.85100000000006,267.855,267.85900000000004,267.86300000000006,267.867,267.87100000000004,267.87500000000006,267.879,267.88300000000004,267.88700000000006,267.891,267.89500000000004,267.89900000000006,267.903,267.90700000000004,267.91100000000006,267.915,267.91900000000004,267.92300000000006,267.927,267.93100000000004,267.93500000000006,267.939,267.94300000000004,267.94700000000006,267.951,267.95500000000004,267.95900000000006,267.963,267.96700000000004,267.97100000000006,267.975,267.97900000000004,267.98300000000006,267.987,267.99100000000004,267.99500000000006,267.999,268.00300000000004,268.00700000000006,268.011,268.01500000000004,268.019,268.023,268.02700000000004,268.031,268.035,268.03900000000004,268.043,268.047,268.05100000000004,268.055,268.059,268.06300000000005,268.067,268.071,268.07500000000005,268.079,268.083,268.08700000000005,268.091,268.095,268.09900000000005,268.103,268.107,268.11100000000005,268.115,268.119,268.12300000000005,268.127,268.13100000000003,268.13500000000005,268.139,268.14300000000003,268.14700000000005,268.151,268.15500000000003,268.15900000000005,268.15900000000005,268.624,268.62800000000004,268.632,268.636,268.64000000000004,268.644,268.648,268.65200000000004,268.656,268.66,268.66400000000004,268.668,268.672,268.67600000000004,268.68,268.684,268.68800000000005,268.692,268.696,268.70000000000005,268.704,268.708,268.71200000000005,268.716,268.72,268.72400000000005,268.728,268.732,268.73600000000005,268.74,268.744,268.74800000000005,268.752,268.75600000000003,268.76000000000005,268.764,268.76800000000003,268.77200000000005,268.776,268.78000000000003,268.78400000000005,268.788,268.79200000000003,268.79600000000005,268.8,268.80400000000003,268.80800000000005,268.812,268.81600000000003,268.82000000000005,268.824,268.82800000000003,268.83200000000005,268.836,268.84000000000003,268.84400000000005,268.848,268.85200000000003,268.85600000000005,268.86,268.86400000000003,268.86800000000005,268.872,268.87600000000003,268.88,268.884,268.88800000000003,268.892,268.896,268.90000000000003,268.904,268.908,268.91200000000003,268.916,268.92,268.92400000000004,268.928,268.932,268.93600000000004,268.94,268.944,268.94800000000004,268.952,268.956,268.96000000000004,268.964,268.968,268.97200000000004,268.976,268.98,268.98400000000004,268.988,268.992,268.99600000000004,269.0,269.004,269.00800000000004,269.012,269.016,269.02000000000004,269.02000000000004,269.483,269.487,269.491,269.495,269.499,269.503,269.507,269.511,269.515,269.519,269.523,269.527,269.531,269.535,269.539,269.543,269.547,269.551,269.555,269.559,269.563,269.567,269.571,269.575,269.579,269.583,269.587,269.591,269.595,269.599,269.603,269.607,269.611,269.615,269.619,269.623,269.627,269.63100000000003,269.635,269.639,269.64300000000003,269.647,269.651,269.65500000000003,269.659,269.663,269.66700000000003,269.671,269.675,269.67900000000003,269.683,269.687,269.69100000000003,269.695,269.699,269.70300000000003,269.707,269.711,269.71500000000003,269.719,269.723,269.72700000000003,269.731,269.735,269.739,269.743,269.747,269.751,269.755,269.759,269.763,269.767,269.771,269.775,269.779,269.783,269.787,269.791,269.795,269.799,269.803,269.807,269.811,269.815,269.819,269.823,269.827,269.831,269.835,269.839,269.843,269.847,269.851,269.855,269.859,269.863,269.867,269.871,269.875,269.879,269.879,270.344,270.348,270.352,270.356,270.36,270.364,270.368,270.372,270.376,270.38,270.384,270.388,270.392,270.396,270.4,270.404,270.408,270.412,270.416,270.42,270.424,270.428,270.432,270.436,270.44,270.444,270.448,270.452,270.456,270.46,270.464,270.468,270.472,270.476,270.48,270.484,270.488,270.492,270.496,270.5,270.504,270.508,270.512,270.516,270.52,270.524,270.528,270.532,270.536,270.54,270.544,270.548,270.552,270.556,270.56,270.564,270.568,270.572,270.576,270.58,270.584,270.588,270.592,270.596,270.59999999999997,270.604,270.608,270.61199999999997,270.616,270.62,270.62399999999997,270.628,270.632,270.63599999999997,270.64,270.644,270.64799999999997,270.652,270.656,270.65999999999997,270.664,270.668,270.67199999999997,270.676,270.68,270.68399999999997,270.688,270.692,270.69599999999997,270.7,270.704,270.70799999999997,270.712,270.716,270.71999999999997,270.724,270.728,270.73199999999997,270.736,270.74,270.74,271.20300000000003,271.20700000000005,271.211,271.21500000000003,271.21900000000005,271.223,271.22700000000003,271.23100000000005,271.235,271.23900000000003,271.24300000000005,271.247,271.25100000000003,271.25500000000005,271.259,271.26300000000003,271.26700000000005,271.271,271.27500000000003,271.27900000000005,271.283,271.28700000000003,271.29100000000005,271.295,271.29900000000004,271.30300000000005,271.307,271.31100000000004,271.31500000000005,271.319,271.32300000000004,271.32700000000006,271.331,271.33500000000004,271.33900000000006,271.343,271.34700000000004,271.35100000000006,271.355,271.35900000000004,271.36300000000006,271.367,271.37100000000004,271.37500000000006,271.379,271.38300000000004,271.38700000000006,271.391,271.39500000000004,271.39900000000006,271.403,271.40700000000004,271.41100000000006,271.415,271.41900000000004,271.42300000000006,271.427,271.43100000000004,271.43500000000006,271.439,271.44300000000004,271.44700000000006,271.451,271.45500000000004,271.459,271.463,271.46700000000004,271.471,271.475,271.47900000000004,271.483,271.487,271.49100000000004,271.495,271.499,271.50300000000004,271.507,271.511,271.51500000000004,271.519,271.523,271.52700000000004,271.531,271.535,271.53900000000004,271.543,271.547,271.55100000000004,271.555,271.559,271.56300000000005,271.567,271.571,271.57500000000005,271.579,271.583,271.58700000000005,271.591,271.595,271.59900000000005,271.59900000000005,272.064,272.06800000000004,272.072,272.076,272.08000000000004,272.084,272.088,272.09200000000004,272.096,272.1,272.10400000000004,272.108,272.112,272.11600000000004,272.12,272.124,272.12800000000004,272.132,272.136,272.14000000000004,272.144,272.148,272.15200000000004,272.156,272.16,272.16400000000004,272.168,272.172,272.17600000000004,272.18,272.184,272.18800000000005,272.192,272.196,272.20000000000005,272.204,272.208,272.21200000000005,272.216,272.22,272.22400000000005,272.228,272.232,272.23600000000005,272.24,272.244,272.24800000000005,272.252,272.25600000000003,272.26000000000005,272.264,272.26800000000003,272.27200000000005,272.276,272.28000000000003,272.28400000000005,272.288,272.29200000000003,272.29600000000005,272.3,272.30400000000003,272.30800000000005,272.312,272.31600000000003,272.32,272.324,272.32800000000003,272.332,272.336,272.34000000000003,272.344,272.348,272.35200000000003,272.356,272.36,272.36400000000003,272.368,272.372,272.37600000000003,272.38,272.384,272.38800000000003,272.392,272.396,272.40000000000003,272.404,272.408,272.41200000000003,272.416,272.42,272.42400000000004,272.428,272.432,272.43600000000004,272.44,272.444,272.44800000000004,272.452,272.456,272.46000000000004,272.46000000000004,272.923,272.927,272.931,272.935,272.939,272.943,272.947,272.951,272.955,272.959,272.963,272.967,272.971,272.975,272.979,272.983,272.987,272.991,272.995,272.999,273.003,273.007,273.011,273.015,273.019,273.023,273.027,273.031,273.035,273.039,273.043,273.047,273.051,273.055,273.059,273.063,273.067,273.071,273.075,273.079,273.083,273.087,273.091,273.095,273.099,273.103,273.107,273.111,273.115,273.119,273.123,273.127,273.13100000000003,273.135,273.139,273.14300000000003,273.147,273.151,273.15500000000003,273.159,273.163,273.16700000000003,273.171,273.175,273.179,273.183,273.187,273.191,273.195,273.199,273.203,273.207,273.211,273.215,273.219,273.223,273.227,273.231,273.235,273.239,273.243,273.247,273.251,273.255,273.259,273.263,273.267,273.271,273.275,273.279,273.283,273.287,273.291,273.295,273.299,273.303,273.307,273.311,273.315,273.319,273.319,273.784,273.788,273.792,273.796,273.8,273.804,273.808,273.812,273.816,273.82,273.824,273.828,273.832,273.836,273.84,273.844,273.848,273.852,273.856,273.86,273.864,273.868,273.872,273.876,273.88,273.884,273.888,273.892,273.896,273.9,273.904,273.908,273.912,273.916,273.92,273.924,273.928,273.932,273.936,273.94,273.944,273.948,273.952,273.956,273.96,273.964,273.968,273.972,273.976,273.98,273.984,273.988,273.992,273.996,274.0,274.004,274.008,274.012,274.016,274.02,274.024,274.028,274.032,274.036,274.03999999999996,274.044,274.048,274.05199999999996,274.056,274.06,274.06399999999996,274.068,274.072,274.07599999999996,274.08,274.084,274.08799999999997,274.092,274.096,274.09999999999997,274.104,274.108,274.11199999999997,274.116,274.12,274.12399999999997,274.128,274.132,274.13599999999997,274.14,274.144,274.14799999999997,274.152,274.156,274.15999999999997,274.164,274.168,274.17199999999997,274.176,274.18,274.18,274.64300000000003,274.64700000000005,274.651,274.65500000000003,274.65900000000005,274.663,274.66700000000003,274.67100000000005,274.675,274.67900000000003,274.68300000000005,274.687,274.69100000000003,274.69500000000005,274.699,274.70300000000003,274.70700000000005,274.711,274.71500000000003,274.71900000000005,274.723,274.72700000000003,274.73100000000005,274.735,274.73900000000003,274.74300000000005,274.747,274.75100000000003,274.75500000000005,274.759,274.76300000000003,274.76700000000005,274.771,274.77500000000003,274.77900000000005,274.783,274.78700000000003,274.79100000000005,274.795,274.79900000000004,274.80300000000005,274.807,274.81100000000004,274.81500000000005,274.819,274.82300000000004,274.82700000000006,274.831,274.83500000000004,274.83900000000006,274.843,274.84700000000004,274.85100000000006,274.855,274.85900000000004,274.86300000000006,274.867,274.87100000000004,274.87500000000006,274.879,274.88300000000004,274.88700000000006,274.891,274.89500000000004,274.899,274.903,274.90700000000004,274.911,274.915,274.91900000000004,274.923,274.927,274.93100000000004,274.935,274.939,274.94300000000004,274.947,274.951,274.95500000000004,274.959,274.963,274.96700000000004,274.971,274.975,274.97900000000004,274.983,274.987,274.99100000000004,274.995,274.999,275.00300000000004,275.007,275.011,275.01500000000004,275.019,275.023,275.02700000000004,275.031,275.035,275.03900000000004,275.03900000000004,275.504,275.50800000000004,275.512,275.516,275.52000000000004,275.524,275.528,275.53200000000004,275.536,275.54,275.54400000000004,275.548,275.552,275.55600000000004,275.56,275.564,275.56800000000004,275.572,275.576,275.58000000000004,275.584,275.588,275.59200000000004,275.596,275.6,275.60400000000004,275.608,275.612,275.61600000000004,275.62,275.624,275.62800000000004,275.632,275.636,275.64000000000004,275.644,275.648,275.65200000000004,275.656,275.66,275.66400000000004,275.668,275.672,275.67600000000004,275.68,275.684,275.68800000000005,275.692,275.696,275.70000000000005,275.704,275.708,275.71200000000005,275.716,275.72,275.72400000000005,275.728,275.732,275.73600000000005,275.74,275.744,275.74800000000005,275.752,275.75600000000003,275.76,275.764,275.76800000000003,275.772,275.776,275.78000000000003,275.784,275.788,275.79200000000003,275.796,275.8,275.80400000000003,275.808,275.812,275.81600000000003,275.82,275.824,275.82800000000003,275.832,275.836,275.84000000000003,275.844,275.848,275.85200000000003,275.856,275.86,275.86400000000003,275.868,275.872,275.87600000000003,275.88,275.884,275.88800000000003,275.892,275.896,275.90000000000003,275.90000000000003,276.363,276.367,276.371,276.375,276.379,276.383,276.387,276.391,276.395,276.399,276.403,276.407,276.411,276.415,276.419,276.423,276.427,276.431,276.435,276.439,276.443,276.447,276.451,276.455,276.459,276.463,276.467,276.471,276.475,276.479,276.483,276.487,276.491,276.495,276.499,276.503,276.507,276.511,276.515,276.519,276.523,276.527,276.531,276.535,276.539,276.543,276.547,276.551,276.555,276.559,276.563,276.567,276.571,276.575,276.579,276.583,276.587,276.591,276.595,276.599,276.603,276.607,276.611,276.615,276.61899999999997,276.623,276.627,276.631,276.635,276.639,276.643,276.647,276.651,276.655,276.659,276.663,276.667,276.671,276.675,276.679,276.683,276.687,276.691,276.695,276.699,276.703,276.707,276.711,276.715,276.719,276.723,276.727,276.731,276.735,276.739,276.743,276.747,276.751,276.755,276.759,276.759,277.223,277.22700000000003,277.231,277.235,277.23900000000003,277.243,277.247,277.25100000000003,277.255,277.259,277.26300000000003,277.267,277.271,277.27500000000003,277.279,277.283,277.28700000000003,277.291,277.295,277.29900000000004,277.303,277.307,277.31100000000004,277.315,277.319,277.32300000000004,277.327,277.331,277.33500000000004,277.339,277.343,277.34700000000004,277.351,277.355,277.35900000000004,277.363,277.367,277.37100000000004,277.375,277.379,277.38300000000004,277.387,277.391,277.39500000000004,277.399,277.403,277.40700000000004,277.411,277.415,277.41900000000004,277.423,277.427,277.43100000000004,277.435,277.439,277.44300000000004,277.447,277.451,277.45500000000004,277.459,277.463,277.46700000000004,277.471,277.475,277.479,277.483,277.487,277.491,277.495,277.499,277.503,277.507,277.511,277.515,277.519,277.523,277.527,277.531,277.535,277.539,277.543,277.547,277.551,277.555,277.559,277.563,277.567,277.571,277.575,277.579,277.583,277.587,277.591,277.595,277.599,277.603,277.607,277.611,277.615,277.619,277.619,278.083,278.08700000000005,278.091,278.095,278.09900000000005,278.103,278.107,278.11100000000005,278.115,278.119,278.12300000000005,278.127,278.13100000000003,278.13500000000005,278.139,278.14300000000003,278.14700000000005,278.151,278.15500000000003,278.15900000000005,278.163,278.16700000000003,278.17100000000005,278.175,278.17900000000003,278.18300000000005,278.187,278.19100000000003,278.19500000000005,278.199,278.20300000000003,278.20700000000005,278.211,278.21500000000003,278.21900000000005,278.223,278.22700000000003,278.23100000000005,278.235,278.23900000000003,278.24300000000005,278.247,278.25100000000003,278.25500000000005,278.259,278.26300000000003,278.26700000000005,278.271,278.27500000000003,278.27900000000005,278.283,278.28700000000003,278.29100000000005,278.295,278.29900000000004,278.30300000000005,278.307,278.31100000000004,278.31500000000005,278.319,278.32300000000004,278.32700000000006,278.331,278.33500000000004,278.339,278.343,278.34700000000004,278.351,278.355,278.35900000000004,278.363,278.367,278.37100000000004,278.375,278.379,278.38300000000004,278.387,278.391,278.39500000000004,278.399,278.403,278.40700000000004,278.411,278.415,278.41900000000004,278.423,278.427,278.43100000000004,278.435,278.439,278.44300000000004,278.447,278.451,278.45500000000004,278.459,278.463,278.46700000000004,278.471,278.475,278.47900000000004,278.47900000000004,278.943,278.947,278.95099999999996,278.955,278.959,278.96299999999997,278.967,278.971,278.97499999999997,278.979,278.983,278.98699999999997,278.991,278.995,278.99899999999997,279.003,279.007,279.01099999999997,279.015,279.019,279.02299999999997,279.027,279.031,279.03499999999997,279.039,279.043,279.04699999999997,279.051,279.055,279.05899999999997,279.063,279.067,279.07099999999997,279.075,279.079,279.08299999999997,279.087,279.091,279.09499999999997,279.099,279.103,279.10699999999997,279.111,279.115,279.11899999999997,279.123,279.127,279.131,279.135,279.139,279.143,279.147,279.151,279.155,279.159,279.163,279.167,279.171,279.175,279.179,279.183,279.187,279.191,279.195,279.19899999999996,279.203,279.207,279.21099999999996,279.215,279.219,279.22299999999996,279.227,279.231,279.23499999999996,279.239,279.243,279.24699999999996,279.251,279.255,279.25899999999996,279.263,279.267,279.27099999999996,279.275,279.279,279.28299999999996,279.287,279.291,279.29499999999996,279.299,279.303,279.30699999999996,279.311,279.315,279.31899999999996,279.323,279.327,279.33099999999996,279.335,279.339,279.339,279.80400000000003,279.80800000000005,279.812,279.81600000000003,279.82000000000005,279.824,279.82800000000003,279.83200000000005,279.836,279.84000000000003,279.84400000000005,279.848,279.85200000000003,279.85600000000005,279.86,279.86400000000003,279.86800000000005,279.872,279.87600000000003,279.88000000000005,279.884,279.88800000000003,279.89200000000005,279.896,279.90000000000003,279.90400000000005,279.908,279.91200000000003,279.91600000000005,279.92,279.92400000000004,279.92800000000005,279.932,279.93600000000004,279.94000000000005,279.944,279.94800000000004,279.95200000000006,279.956,279.96000000000004,279.96400000000006,279.968,279.97200000000004,279.97600000000006,279.98,279.98400000000004,279.98800000000006,279.992,279.99600000000004,280.00000000000006,280.004,280.00800000000004,280.01200000000006,280.016,280.02000000000004,280.02400000000006,280.028,280.03200000000004,280.03600000000006,280.04,280.04400000000004,280.04800000000006,280.052,280.05600000000004,280.06,280.064,280.06800000000004,280.072,280.076,280.08000000000004,280.084,280.088,280.09200000000004,280.096,280.1,280.10400000000004,280.108,280.112,280.11600000000004,280.12,280.124,280.12800000000004,280.132,280.136,280.14000000000004,280.144,280.148,280.15200000000004,280.156,280.16,280.16400000000004,280.168,280.172,280.17600000000004,280.18,280.184,280.18800000000005,280.192,280.196,280.20000000000005,280.20000000000005,280.663,280.66700000000003,280.671,280.675,280.67900000000003,280.683,280.687,280.69100000000003,280.695,280.699,280.70300000000003,280.707,280.711,280.71500000000003,280.719,280.723,280.72700000000003,280.731,280.735,280.73900000000003,280.743,280.747,280.75100000000003,280.755,280.759,280.76300000000003,280.767,280.771,280.77500000000003,280.779,280.783,280.78700000000003,280.791,280.795,280.79900000000004,280.803,280.807,280.81100000000004,280.815,280.819,280.82300000000004,280.827,280.831,280.83500000000004,280.839,280.843,280.84700000000004,280.851,280.855,280.85900000000004,280.863,280.867,280.87100000000004,280.875,280.879,280.88300000000004,280.887,280.891,280.89500000000004,280.899,280.903,280.90700000000004,280.911,280.915,280.919,280.923,280.927,280.931,280.935,280.939,280.943,280.947,280.951,280.955,280.959,280.963,280.967,280.971,280.975,280.979,280.983,280.987,280.991,280.995,280.999,281.003,281.007,281.011,281.015,281.019,281.023,281.027,281.031,281.035,281.039,281.043,281.047,281.051,281.055,281.059,281.059,281.524,281.528,281.532,281.536,281.54,281.544,281.548,281.552,281.556,281.56,281.564,281.568,281.572,281.576,281.58,281.584,281.588,281.592,281.596,281.6,281.604,281.608,281.612,281.616,281.62,281.624,281.628,281.632,281.636,281.64,281.644,281.648,281.652,281.656,281.66,281.664,281.668,281.672,281.676,281.68,281.684,281.688,281.692,281.696,281.7,281.704,281.708,281.712,281.716,281.72,281.724,281.728,281.732,281.736,281.74,281.744,281.748,281.752,281.75600000000003,281.76,281.764,281.76800000000003,281.772,281.776,281.78,281.784,281.788,281.792,281.796,281.8,281.804,281.808,281.812,281.816,281.82,281.824,281.828,281.832,281.836,281.84,281.844,281.848,281.852,281.856,281.86,281.864,281.868,281.872,281.876,281.88,281.884,281.888,281.892,281.896,281.9,281.904,281.908,281.912,281.916,281.92,281.92,282.383,282.387,282.39099999999996,282.395,282.399,282.40299999999996,282.407,282.411,282.41499999999996,282.419,282.423,282.42699999999996,282.431,282.435,282.43899999999996,282.443,282.447,282.45099999999996,282.455,282.459,282.46299999999997,282.467,282.471,282.47499999999997,282.479,282.483,282.48699999999997,282.491,282.495,282.49899999999997,282.503,282.507,282.51099999999997,282.515,282.519,282.52299999999997,282.527,282.531,282.53499999999997,282.539,282.543,282.54699999999997,282.551,282.555,282.55899999999997,282.563,282.567,282.57099999999997,282.575,282.579,282.58299999999997,282.587,282.591,282.59499999999997,282.599,282.603,282.60699999999997,282.611,282.615,282.61899999999997,282.623,282.627,282.631,282.635,282.63899999999995,282.643,282.647,282.65099999999995,282.655,282.659,282.66299999999995,282.667,282.671,282.67499999999995,282.679,282.683,282.68699999999995,282.691,282.695,282.69899999999996,282.703,282.707,282.71099999999996,282.715,282.719,282.72299999999996,282.727,282.731,282.73499999999996,282.739,282.743,282.74699999999996,282.751,282.755,282.75899999999996,282.763,282.767,282.77099999999996,282.775,282.779,282.779,283.244,283.24800000000005,283.252,283.25600000000003,283.26000000000005,283.264,283.26800000000003,283.27200000000005,283.276,283.28000000000003,283.28400000000005,283.288,283.29200000000003,283.29600000000005,283.3,283.30400000000003,283.30800000000005,283.312,283.31600000000003,283.32000000000005,283.324,283.32800000000003,283.33200000000005,283.336,283.34000000000003,283.34400000000005,283.348,283.35200000000003,283.35600000000005,283.36,283.36400000000003,283.36800000000005,283.372,283.37600000000003,283.38000000000005,283.384,283.38800000000003,283.39200000000005,283.396,283.40000000000003,283.40400000000005,283.408,283.41200000000003,283.41600000000005,283.42,283.42400000000004,283.42800000000005,283.432,283.43600000000004,283.44000000000005,283.444,283.44800000000004,283.45200000000006,283.456,283.46000000000004,283.46400000000006,283.468,283.47200000000004,283.47600000000006,283.48,283.48400000000004,283.48800000000006,283.492,283.49600000000004,283.5,283.504,283.50800000000004,283.512,283.516,283.52000000000004,283.524,283.528,283.53200000000004,283.536,283.54,283.54400000000004,283.548,283.552,283.55600000000004,283.56,283.564,283.56800000000004,283.572,283.576,283.58000000000004,283.584,283.588,283.59200000000004,283.596,283.6,283.60400000000004,283.608,283.612,283.61600000000004,283.62,283.624,283.62800000000004,283.632,283.636,283.64000000000004,283.64000000000004,284.103,284.107,284.111,284.115,284.119,284.123,284.127,284.13100000000003,284.135,284.139,284.14300000000003,284.147,284.151,284.15500000000003,284.159,284.163,284.16700000000003,284.171,284.175,284.17900000000003,284.183,284.187,284.19100000000003,284.195,284.199,284.20300000000003,284.207,284.211,284.21500000000003,284.219,284.223,284.22700000000003,284.231,284.235,284.23900000000003,284.243,284.247,284.25100000000003,284.255,284.259,284.26300000000003,284.267,284.271,284.27500000000003,284.279,284.283,284.28700000000003,284.291,284.295,284.29900000000004,284.303,284.307,284.31100000000004,284.315,284.319,284.32300000000004,284.327,284.331,284.33500000000004,284.339,284.343,284.34700000000004,284.351,284.355,284.359,284.363,284.367,284.371,284.375,284.379,284.383,284.387,284.391,284.395,284.399,284.403,284.407,284.411,284.415,284.419,284.423,284.427,284.431,284.435,284.439,284.443,284.447,284.451,284.455,284.459,284.463,284.467,284.471,284.475,284.479,284.483,284.487,284.491,284.495,284.499,284.499,284.964,284.968,284.972,284.976,284.98,284.984,284.988,284.992,284.996,285.0,285.004,285.008,285.012,285.016,285.02,285.024,285.028,285.032,285.036,285.04,285.044,285.048,285.052,285.056,285.06,285.064,285.068,285.072,285.076,285.08,285.084,285.088,285.092,285.096,285.1,285.104,285.108,285.112,285.116,285.12,285.124,285.128,285.132,285.136,285.14,285.144,285.148,285.152,285.156,285.16,285.164,285.168,285.172,285.176,285.18,285.184,285.188,285.192,285.196,285.2,285.204,285.208,285.212,285.216,285.21999999999997,285.224,285.228,285.23199999999997,285.236,285.24,285.24399999999997,285.248,285.252,285.256,285.26,285.264,285.268,285.272,285.276,285.28,285.284,285.288,285.292,285.296,285.3,285.304,285.308,285.312,285.316,285.32,285.324,285.328,285.332,285.336,285.34,285.344,285.348,285.352,285.356,285.36,285.36,285.823,285.827,285.83099999999996,285.835,285.839,285.84299999999996,285.847,285.851,285.85499999999996,285.859,285.863,285.86699999999996,285.871,285.875,285.87899999999996,285.883,285.887,285.89099999999996,285.895,285.899,285.90299999999996,285.907,285.911,285.91499999999996,285.919,285.923,285.92699999999996,285.931,285.935,285.93899999999996,285.943,285.947,285.95099999999996,285.955,285.959,285.96299999999997,285.967,285.971,285.97499999999997,285.979,285.983,285.98699999999997,285.991,285.995,285.99899999999997,286.003,286.007,286.01099999999997,286.015,286.019,286.02299999999997,286.027,286.031,286.03499999999997,286.039,286.043,286.04699999999997,286.051,286.055,286.05899999999997,286.063,286.067,286.07099999999997,286.075,286.07899999999995,286.08299999999997,286.087,286.09099999999995,286.09499999999997,286.099,286.10299999999995,286.10699999999997,286.111,286.11499999999995,286.11899999999997,286.123,286.12699999999995,286.131,286.135,286.13899999999995,286.143,286.147,286.15099999999995,286.155,286.159,286.16299999999995,286.167,286.171,286.17499999999995,286.179,286.183,286.18699999999995,286.191,286.195,286.19899999999996,286.203,286.207,286.21099999999996,286.215,286.219,286.219,286.684,286.68800000000005,286.692,286.696,286.70000000000005,286.704,286.708,286.71200000000005,286.716,286.72,286.72400000000005,286.728,286.732,286.73600000000005,286.74,286.744,286.74800000000005,286.752,286.75600000000003,286.76000000000005,286.764,286.76800000000003,286.77200000000005,286.776,286.78000000000003,286.78400000000005,286.788,286.79200000000003,286.79600000000005,286.8,286.80400000000003,286.80800000000005,286.812,286.81600000000003,286.82000000000005,286.824,286.82800000000003,286.83200000000005,286.836,286.84000000000003,286.84400000000005,286.848,286.85200000000003,286.85600000000005,286.86,286.86400000000003,286.86800000000005,286.872,286.87600000000003,286.88000000000005,286.884,286.88800000000003,286.89200000000005,286.896,286.90000000000003,286.90400000000005,286.908,286.91200000000003,286.91600000000005,286.92,286.92400000000004,286.92800000000005,286.932,286.93600000000004,286.94,286.944,286.94800000000004,286.952,286.956,286.96000000000004,286.964,286.968,286.97200000000004,286.976,286.98,286.98400000000004,286.988,286.992,286.99600000000004,287.0,287.004,287.00800000000004,287.012,287.016,287.02000000000004,287.024,287.028,287.03200000000004,287.036,287.04,287.04400000000004,287.048,287.052,287.05600000000004,287.06,287.064,287.06800000000004,287.072,287.076,287.08000000000004,287.08000000000004,287.543,287.547,287.551,287.555,287.559,287.563,287.567,287.571,287.575,287.579,287.583,287.587,287.591,287.595,287.599,287.603,287.607,287.611,287.615,287.619,287.623,287.627,287.63100000000003,287.635,287.639,287.64300000000003,287.647,287.651,287.65500000000003,287.659,287.663,287.66700000000003,287.671,287.675,287.67900000000003,287.683,287.687,287.69100000000003,287.695,287.699,287.70300000000003,287.707,287.711,287.71500000000003,287.719,287.723,287.72700000000003,287.731,287.735,287.73900000000003,287.743,287.747,287.75100000000003,287.755,287.759,287.76300000000003,287.767,287.771,287.77500000000003,287.779,287.783,287.78700000000003,287.791,287.795,287.799,287.803,287.807,287.811,287.815,287.819,287.823,287.827,287.831,287.835,287.839,287.843,287.847,287.851,287.855,287.859,287.863,287.867,287.871,287.875,287.879,287.883,287.887,287.891,287.895,287.899,287.903,287.907,287.911,287.915,287.919,287.923,287.927,287.931,287.935,287.939,287.939,288.404,288.408,288.412,288.416,288.42,288.424,288.428,288.432,288.436,288.44,288.444,288.448,288.452,288.456,288.46,288.464,288.468,288.472,288.476,288.48,288.484,288.488,288.492,288.496,288.5,288.504,288.508,288.512,288.516,288.52,288.524,288.528,288.532,288.536,288.54,288.544,288.548,288.552,288.556,288.56,288.564,288.568,288.572,288.576,288.58,288.584,288.588,288.592,288.596,288.6,288.604,288.608,288.612,288.616,288.62,288.624,288.628,288.632,288.636,288.64,288.644,288.648,288.652,288.656,288.65999999999997,288.664,288.668,288.67199999999997,288.676,288.68,288.68399999999997,288.688,288.692,288.69599999999997,288.7,288.704,288.70799999999997,288.712,288.716,288.71999999999997,288.724,288.728,288.73199999999997,288.736,288.74,288.74399999999997,288.748,288.752,288.756,288.76,288.764,288.768,288.772,288.776,288.78,288.784,288.788,288.792,288.796,288.8,288.8,289.26300000000003,289.26700000000005,289.271,289.27500000000003,289.27900000000005,289.283,289.28700000000003,289.29100000000005,289.295,289.29900000000004,289.30300000000005,289.307,289.31100000000004,289.31500000000005,289.319,289.32300000000004,289.32700000000006,289.331,289.33500000000004,289.33900000000006,289.343,289.34700000000004,289.35100000000006,289.355,289.35900000000004,289.36300000000006,289.367,289.37100000000004,289.37500000000006,289.379,289.38300000000004,289.38700000000006,289.391,289.39500000000004,289.39900000000006,289.403,289.40700000000004,289.41100000000006,289.415,289.41900000000004,289.42300000000006,289.427,289.43100000000004,289.43500000000006,289.439,289.44300000000004,289.44700000000006,289.451,289.45500000000004,289.45900000000006,289.463,289.46700000000004,289.47100000000006,289.475,289.47900000000004,289.48300000000006,289.487,289.49100000000004,289.49500000000006,289.499,289.50300000000004,289.50700000000006,289.511,289.51500000000004,289.519,289.523,289.52700000000004,289.531,289.535,289.53900000000004,289.543,289.547,289.55100000000004,289.555,289.559,289.56300000000005,289.567,289.571,289.57500000000005,289.579,289.583,289.58700000000005,289.591,289.595,289.59900000000005,289.603,289.607,289.61100000000005,289.615,289.619,289.62300000000005,289.627,289.63100000000003,289.63500000000005,289.639,289.64300000000003,289.64700000000005,289.651,289.65500000000003,289.65900000000005,289.65900000000005,290.124,290.12800000000004,290.132,290.136,290.14000000000004,290.144,290.148,290.15200000000004,290.156,290.16,290.16400000000004,290.168,290.172,290.17600000000004,290.18,290.184,290.18800000000005,290.192,290.196,290.20000000000005,290.204,290.208,290.21200000000005,290.216,290.22,290.22400000000005,290.228,290.232,290.23600000000005,290.24,290.244,290.24800000000005,290.252,290.25600000000003,290.26000000000005,290.264,290.26800000000003,290.27200000000005,290.276,290.28000000000003,290.28400000000005,290.288,290.29200000000003,290.29600000000005,290.3,290.30400000000003,290.30800000000005,290.312,290.31600000000003,290.32000000000005,290.324,290.32800000000003,290.33200000000005,290.336,290.34000000000003,290.34400000000005,290.348,290.35200000000003,290.35600000000005,290.36,290.36400000000003,290.36800000000005,290.372,290.37600000000003,290.38,290.384,290.38800000000003,290.392,290.396,290.40000000000003,290.404,290.408,290.41200000000003,290.416,290.42,290.42400000000004,290.428,290.432,290.43600000000004,290.44,290.444,290.44800000000004,290.452,290.456,290.46000000000004,290.464,290.468,290.47200000000004,290.476,290.48,290.48400000000004,290.488,290.492,290.49600000000004,290.5,290.504,290.50800000000004,290.512,290.516,290.52000000000004,290.52000000000004,290.983,290.987,290.991,290.995,290.999,291.003,291.007,291.011,291.015,291.019,291.023,291.027,291.031,291.035,291.039,291.043,291.047,291.051,291.055,291.059,291.063,291.067,291.071,291.075,291.079,291.083,291.087,291.091,291.095,291.099,291.103,291.107,291.111,291.115,291.119,291.123,291.127,291.13100000000003,291.135,291.139,291.14300000000003,291.147,291.151,291.15500000000003,291.159,291.163,291.16700000000003,291.171,291.175,291.17900000000003,291.183,291.187,291.19100000000003,291.195,291.199,291.20300000000003,291.207,291.211,291.21500000000003,291.219,291.223,291.22700000000003,291.231,291.235,291.239,291.243,291.247,291.251,291.255,291.259,291.263,291.267,291.271,291.275,291.279,291.283,291.287,291.291,291.295,291.299,291.303,291.307,291.311,291.315,291.319,291.323,291.327,291.331,291.335,291.339,291.343,291.347,291.351,291.355,291.359,291.363,291.367,291.371,291.375,291.379,291.379,291.844,291.848,291.852,291.856,291.86,291.864,291.868,291.872,291.876,291.88,291.884,291.888,291.892,291.896,291.9,291.904,291.908,291.912,291.916,291.92,291.924,291.928,291.932,291.936,291.94,291.944,291.948,291.952,291.956,291.96,291.964,291.968,291.972,291.976,291.98,291.984,291.988,291.992,291.996,292.0,292.004,292.008,292.012,292.016,292.02,292.024,292.028,292.032,292.036,292.04,292.044,292.048,292.052,292.056,292.06,292.064,292.068,292.072,292.076,292.08,292.084,292.088,292.092,292.096,292.09999999999997,292.104,292.108,292.11199999999997,292.116,292.12,292.12399999999997,292.128,292.132,292.13599999999997,292.14,292.144,292.14799999999997,292.152,292.156,292.15999999999997,292.164,292.168,292.17199999999997,292.176,292.18,292.18399999999997,292.188,292.192,292.19599999999997,292.2,292.204,292.20799999999997,292.212,292.216,292.21999999999997,292.224,292.228,292.23199999999997,292.236,292.24,292.24,292.70300000000003,292.70700000000005,292.711,292.71500000000003,292.71900000000005,292.723,292.72700000000003,292.73100000000005,292.735,292.73900000000003,292.74300000000005,292.747,292.75100000000003,292.75500000000005,292.759,292.76300000000003,292.76700000000005,292.771,292.77500000000003,292.77900000000005,292.783,292.78700000000003,292.79100000000005,292.795,292.79900000000004,292.80300000000005,292.807,292.81100000000004,292.81500000000005,292.819,292.82300000000004,292.82700000000006,292.831,292.83500000000004,292.83900000000006,292.843,292.84700000000004,292.85100000000006,292.855,292.85900000000004,292.86300000000006,292.867,292.87100000000004,292.87500000000006,292.879,292.88300000000004,292.88700000000006,292.891,292.89500000000004,292.89900000000006,292.903,292.90700000000004,292.91100000000006,292.915,292.91900000000004,292.92300000000006,292.927,292.93100000000004,292.93500000000006,292.939,292.94300000000004,292.94700000000006,292.951,292.95500000000004,292.959,292.963,292.96700000000004,292.971,292.975,292.97900000000004,292.983,292.987,292.99100000000004,292.995,292.999,293.00300000000004,293.007,293.011,293.01500000000004,293.019,293.023,293.02700000000004,293.031,293.035,293.03900000000004,293.043,293.047,293.05100000000004,293.055,293.059,293.06300000000005,293.067,293.071,293.07500000000005,293.079,293.083,293.08700000000005,293.091,293.095,293.09900000000005,293.09900000000005,293.564,293.56800000000004,293.572,293.576,293.58000000000004,293.584,293.588,293.59200000000004,293.596,293.6,293.60400000000004,293.608,293.612,293.61600000000004,293.62,293.624,293.62800000000004,293.632,293.636,293.64000000000004,293.644,293.648,293.65200000000004,293.656,293.66,293.66400000000004,293.668,293.672,293.67600000000004,293.68,293.684,293.68800000000005,293.692,293.696,293.70000000000005,293.704,293.708,293.71200000000005,293.716,293.72,293.72400000000005,293.728,293.732,293.73600000000005,293.74,293.744,293.74800000000005,293.752,293.75600000000003,293.76000000000005,293.764,293.76800000000003,293.77200000000005,293.776,293.78000000000003,293.78400000000005,293.788,293.79200000000003,293.79600000000005,293.8,293.80400000000003,293.80800000000005,293.812,293.81600000000003,293.82,293.824,293.82800000000003,293.832,293.836,293.84000000000003,293.844,293.848,293.85200000000003,293.856,293.86,293.86400000000003,293.868,293.872,293.87600000000003,293.88,293.884,293.88800000000003,293.892,293.896,293.90000000000003,293.904,293.908,293.91200000000003,293.916,293.92,293.92400000000004,293.928,293.932,293.93600000000004,293.94,293.944,293.94800000000004,293.952,293.956,293.96000000000004,293.96000000000004,294.423,294.427,294.431,294.435,294.439,294.443,294.447,294.451,294.455,294.459,294.463,294.467,294.471,294.475,294.479,294.483,294.487,294.491,294.495,294.499,294.503,294.507,294.511,294.515,294.519,294.523,294.527,294.531,294.535,294.539,294.543,294.547,294.551,294.555,294.559,294.563,294.567,294.571,294.575,294.579,294.583,294.587,294.591,294.595,294.599,294.603,294.607,294.611,294.615,294.619,294.623,294.627,294.63100000000003,294.635,294.639,294.64300000000003,294.647,294.651,294.65500000000003,294.659,294.663,294.66700000000003,294.671,294.675,294.679,294.683,294.687,294.691,294.695,294.699,294.703,294.707,294.711,294.715,294.719,294.723,294.727,294.731,294.735,294.739,294.743,294.747,294.751,294.755,294.759,294.763,294.767,294.771,294.775,294.779,294.783,294.787,294.791,294.795,294.799,294.803,294.807,294.811,294.815,294.819,294.819,295.284,295.288,295.292,295.296,295.3,295.304,295.308,295.312,295.316,295.32,295.324,295.328,295.332,295.336,295.34,295.344,295.348,295.352,295.356,295.36,295.364,295.368,295.372,295.376,295.38,295.384,295.388,295.392,295.396,295.4,295.404,295.408,295.412,295.416,295.42,295.424,295.428,295.432,295.436,295.44,295.444,295.448,295.452,295.456,295.46,295.464,295.468,295.472,295.476,295.48,295.484,295.488,295.492,295.496,295.5,295.504,295.508,295.512,295.516,295.52,295.524,295.528,295.532,295.536,295.53999999999996,295.544,295.548,295.55199999999996,295.556,295.56,295.56399999999996,295.568,295.572,295.57599999999996,295.58,295.584,295.58799999999997,295.592,295.596,295.59999999999997,295.604,295.608,295.61199999999997,295.616,295.62,295.62399999999997,295.628,295.632,295.63599999999997,295.64,295.644,295.64799999999997,295.652,295.656,295.65999999999997,295.664,295.668,295.67199999999997,295.676,295.68,295.68,296.14300000000003,296.14700000000005,296.151,296.15500000000003,296.15900000000005,296.163,296.16700000000003,296.17100000000005,296.175,296.17900000000003,296.18300000000005,296.187,296.19100000000003,296.19500000000005,296.199,296.20300000000003,296.20700000000005,296.211,296.21500000000003,296.21900000000005,296.223,296.22700000000003,296.23100000000005,296.235,296.23900000000003,296.24300000000005,296.247,296.25100000000003,296.25500000000005,296.259,296.26300000000003,296.26700000000005,296.271,296.27500000000003,296.27900000000005,296.283,296.28700000000003,296.29100000000005,296.295,296.29900000000004,296.30300000000005,296.307,296.31100000000004,296.31500000000005,296.319,296.32300000000004,296.32700000000006,296.331,296.33500000000004,296.33900000000006,296.343,296.34700000000004,296.35100000000006,296.355,296.35900000000004,296.36300000000006,296.367,296.37100000000004,296.37500000000006,296.379,296.38300000000004,296.38700000000006,296.391,296.39500000000004,296.399,296.403,296.40700000000004,296.411,296.415,296.41900000000004,296.423,296.427,296.43100000000004,296.435,296.439,296.44300000000004,296.447,296.451,296.45500000000004,296.459,296.463,296.46700000000004,296.471,296.475,296.47900000000004,296.483,296.487,296.49100000000004,296.495,296.499,296.50300000000004,296.507,296.511,296.51500000000004,296.519,296.523,296.52700000000004,296.531,296.535,296.53900000000004,296.53900000000004,297.004,297.00800000000004,297.012,297.016,297.02000000000004,297.024,297.028,297.03200000000004,297.036,297.04,297.04400000000004,297.048,297.052,297.05600000000004,297.06,297.064,297.06800000000004,297.072,297.076,297.08000000000004,297.084,297.088,297.09200000000004,297.096,297.1,297.10400000000004,297.108,297.112,297.11600000000004,297.12,297.124,297.12800000000004,297.132,297.136,297.14000000000004,297.144,297.148,297.15200000000004,297.156,297.16,297.16400000000004,297.168,297.172,297.17600000000004,297.18,297.184,297.18800000000005,297.192,297.196,297.20000000000005,297.204,297.208,297.21200000000005,297.216,297.22,297.22400000000005,297.228,297.232,297.23600000000005,297.24,297.244,297.24800000000005,297.252,297.25600000000003,297.26,297.264,297.26800000000003,297.272,297.276,297.28000000000003,297.284,297.288,297.29200000000003,297.296,297.3,297.30400000000003,297.308,297.312,297.31600000000003,297.32,297.324,297.32800000000003,297.332,297.336,297.34000000000003,297.344,297.348,297.35200000000003,297.356,297.36,297.36400000000003,297.368,297.372,297.37600000000003,297.38,297.384,297.38800000000003,297.392,297.396,297.40000000000003,297.40000000000003,297.863,297.867,297.871,297.875,297.879,297.883,297.887,297.891,297.895,297.899,297.903,297.907,297.911,297.915,297.919,297.923,297.927,297.931,297.935,297.939,297.943,297.947,297.951,297.955,297.959,297.963,297.967,297.971,297.975,297.979,297.983,297.987,297.991,297.995,297.999,298.003,298.007,298.011,298.015,298.019,298.023,298.027,298.031,298.035,298.039,298.043,298.047,298.051,298.055,298.059,298.063,298.067,298.071,298.075,298.079,298.083,298.087,298.091,298.095,298.099,298.103,298.107,298.111,298.115,298.11899999999997,298.123,298.127,298.131,298.135,298.139,298.143,298.147,298.151,298.155,298.159,298.163,298.167,298.171,298.175,298.179,298.183,298.187,298.191,298.195,298.199,298.203,298.207,298.211,298.215,298.219,298.223,298.227,298.231,298.235,298.239,298.243,298.247,298.251,298.255,298.259,298.259,298.724,298.728,298.73199999999997,298.736,298.74,298.74399999999997,298.748,298.752,298.756,298.76,298.764,298.768,298.772,298.776,298.78,298.784,298.788,298.792,298.796,298.8,298.804,298.808,298.812,298.816,298.82,298.824,298.828,298.832,298.836,298.84,298.844,298.848,298.852,298.856,298.86,298.864,298.868,298.872,298.876,298.88,298.884,298.888,298.892,298.896,298.9,298.904,298.908,298.912,298.916,298.92,298.924,298.928,298.932,298.936,298.94,298.944,298.948,298.952,298.956,298.96,298.964,298.968,298.972,298.976,298.97999999999996,298.984,298.988,298.99199999999996,298.996,299.0,299.00399999999996,299.008,299.012,299.01599999999996,299.02,299.024,299.02799999999996,299.032,299.036,299.03999999999996,299.044,299.048,299.05199999999996,299.056,299.06,299.06399999999996,299.068,299.072,299.07599999999996,299.08,299.084,299.08799999999997,299.092,299.096,299.09999999999997,299.104,299.108,299.11199999999997,299.116,299.12,299.12,299.583,299.58700000000005,299.591,299.595,299.59900000000005,299.603,299.607,299.61100000000005,299.615,299.619,299.62300000000005,299.627,299.63100000000003,299.63500000000005,299.639,299.64300000000003,299.64700000000005,299.651,299.65500000000003,299.65900000000005,299.663,299.66700000000003,299.67100000000005,299.675,299.67900000000003,299.68300000000005,299.687,299.69100000000003,299.69500000000005,299.699,299.70300000000003,299.70700000000005,299.711,299.71500000000003,299.71900000000005,299.723,299.72700000000003,299.73100000000005,299.735,299.73900000000003,299.74300000000005,299.747,299.75100000000003,299.75500000000005,299.759,299.76300000000003,299.76700000000005,299.771,299.77500000000003,299.77900000000005,299.783,299.78700000000003,299.79100000000005,299.795,299.79900000000004,299.80300000000005,299.807,299.81100000000004,299.81500000000005,299.819,299.82300000000004,299.82700000000006,299.831,299.83500000000004,299.839,299.843,299.84700000000004,299.851,299.855,299.85900000000004,299.863,299.867,299.87100000000004,299.875,299.879,299.88300000000004,299.887,299.891,299.89500000000004,299.899,299.903,299.90700000000004,299.911,299.915,299.91900000000004,299.923,299.927,299.93100000000004,299.935,299.939,299.94300000000004,299.947,299.951,299.95500000000004,299.959,299.963,299.96700000000004,299.971,299.975,299.97900000000004,299.97900000000004,300.444,300.44800000000004,300.452,300.456,300.46000000000004,300.464,300.468,300.47200000000004,300.476,300.48,300.48400000000004,300.488,300.492,300.49600000000004,300.5,300.504,300.50800000000004,300.512,300.516,300.52000000000004,300.524,300.528,300.53200000000004,300.536,300.54,300.54400000000004,300.548,300.552,300.55600000000004,300.56,300.564,300.56800000000004,300.572,300.576,300.58000000000004,300.584,300.588,300.59200000000004,300.596,300.6,300.60400000000004,300.608,300.612,300.61600000000004,300.62,300.624,300.62800000000004,300.632,300.636,300.64000000000004,300.644,300.648,300.65200000000004,300.656,300.66,300.66400000000004,300.668,300.672,300.67600000000004,300.68,300.684,300.68800000000005,300.692,300.696,300.7,300.704,300.708,300.712,300.716,300.72,300.724,300.728,300.732,300.736,300.74,300.744,300.748,300.752,300.75600000000003,300.76,300.764,300.76800000000003,300.772,300.776,300.78000000000003,300.784,300.788,300.79200000000003,300.796,300.8,300.80400000000003,300.808,300.812,300.81600000000003,300.82,300.824,300.82800000000003,300.832,300.836,300.84000000000003,300.84000000000003,301.303,301.307,301.311,301.315,301.319,301.323,301.327,301.331,301.335,301.339,301.343,301.347,301.351,301.355,301.359,301.363,301.367,301.371,301.375,301.379,301.383,301.387,301.391,301.395,301.399,301.403,301.407,301.411,301.415,301.419,301.423,301.427,301.431,301.435,301.439,301.443,301.447,301.451,301.455,301.459,301.463,301.467,301.471,301.475,301.479,301.483,301.487,301.491,301.495,301.499,301.503,301.507,301.511,301.515,301.519,301.523,301.527,301.531,301.535,301.539,301.543,301.547,301.551,301.555,301.55899999999997,301.563,301.567,301.57099999999997,301.575,301.579,301.58299999999997,301.587,301.591,301.59499999999997,301.599,301.603,301.60699999999997,301.611,301.615,301.61899999999997,301.623,301.627,301.631,301.635,301.639,301.643,301.647,301.651,301.655,301.659,301.663,301.667,301.671,301.675,301.679,301.683,301.687,301.691,301.695,301.699,301.699,302.164,302.168,302.17199999999997,302.176,302.18,302.18399999999997,302.188,302.192,302.19599999999997,302.2,302.204,302.20799999999997,302.212,302.216,302.21999999999997,302.224,302.228,302.23199999999997,302.236,302.24,302.24399999999997,302.248,302.252,302.256,302.26,302.264,302.268,302.272,302.276,302.28,302.284,302.288,302.292,302.296,302.3,302.304,302.308,302.312,302.316,302.32,302.324,302.328,302.332,302.336,302.34,302.344,302.348,302.352,302.356,302.36,302.364,302.368,302.372,302.376,302.38,302.384,302.388,302.392,302.396,302.4,302.404,302.408,302.412,302.416,302.41999999999996,302.424,302.428,302.43199999999996,302.436,302.44,302.44399999999996,302.448,302.452,302.45599999999996,302.46,302.464,302.46799999999996,302.472,302.476,302.47999999999996,302.484,302.488,302.49199999999996,302.496,302.5,302.50399999999996,302.508,302.512,302.51599999999996,302.52,302.524,302.52799999999996,302.532,302.536,302.53999999999996,302.544,302.548,302.55199999999996,302.556,302.56,302.56,303.023,303.02700000000004,303.031,303.035,303.03900000000004,303.043,303.047,303.05100000000004,303.055,303.059,303.06300000000005,303.067,303.071,303.07500000000005,303.079,303.083,303.08700000000005,303.091,303.095,303.09900000000005,303.103,303.107,303.11100000000005,303.115,303.119,303.12300000000005,303.127,303.13100000000003,303.13500000000005,303.139,303.14300000000003,303.14700000000005,303.151,303.15500000000003,303.15900000000005,303.163,303.16700000000003,303.17100000000005,303.175,303.17900000000003,303.18300000000005,303.187,303.19100000000003,303.19500000000005,303.199,303.20300000000003,303.20700000000005,303.211,303.21500000000003,303.21900000000005,303.223,303.22700000000003,303.23100000000005,303.235,303.23900000000003,303.24300000000005,303.247,303.25100000000003,303.25500000000005,303.259,303.26300000000003,303.26700000000005,303.271,303.27500000000003,303.279,303.283,303.28700000000003,303.291,303.295,303.29900000000004,303.303,303.307,303.31100000000004,303.315,303.319,303.32300000000004,303.327,303.331,303.33500000000004,303.339,303.343,303.34700000000004,303.351,303.355,303.35900000000004,303.363,303.367,303.37100000000004,303.375,303.379,303.38300000000004,303.387,303.391,303.39500000000004,303.399,303.403,303.40700000000004,303.411,303.415,303.41900000000004,303.41900000000004,303.884,303.88800000000003,303.892,303.896,303.90000000000003,303.904,303.908,303.91200000000003,303.916,303.92,303.92400000000004,303.928,303.932,303.93600000000004,303.94,303.944,303.94800000000004,303.952,303.956,303.96000000000004,303.964,303.968,303.97200000000004,303.976,303.98,303.98400000000004,303.988,303.992,303.99600000000004,304.0,304.004,304.00800000000004,304.012,304.016,304.02000000000004,304.024,304.028,304.03200000000004,304.036,304.04,304.04400000000004,304.048,304.052,304.05600000000004,304.06,304.064,304.06800000000004,304.072,304.076,304.08000000000004,304.084,304.088,304.09200000000004,304.096,304.1,304.10400000000004,304.108,304.112,304.11600000000004,304.12,304.124,304.12800000000004,304.132,304.136,304.14,304.144,304.148,304.152,304.156,304.16,304.164,304.168,304.172,304.176,304.18,304.184,304.188,304.192,304.196,304.2,304.204,304.208,304.212,304.216,304.22,304.224,304.228,304.232,304.236,304.24,304.244,304.248,304.252,304.25600000000003,304.26,304.264,304.26800000000003,304.272,304.276,304.28000000000003,304.28000000000003,304.743,304.747,304.751,304.755,304.759,304.763,304.767,304.771,304.775,304.779,304.783,304.787,304.791,304.795,304.799,304.803,304.807,304.811,304.815,304.819,304.823,304.827,304.831,304.835,304.839,304.843,304.847,304.851,304.855,304.859,304.863,304.867,304.871,304.875,304.879,304.883,304.887,304.891,304.895,304.899,304.903,304.907,304.911,304.915,304.919,304.923,304.927,304.931,304.935,304.939,304.943,304.947,304.951,304.955,304.959,304.963,304.967,304.971,304.975,304.979,304.983,304.987,304.991,304.995,304.99899999999997,305.003,305.007,305.01099999999997,305.015,305.019,305.02299999999997,305.027,305.031,305.03499999999997,305.039,305.043,305.04699999999997,305.051,305.055,305.05899999999997,305.063,305.067,305.07099999999997,305.075,305.079,305.08299999999997,305.087,305.091,305.09499999999997,305.099,305.103,305.10699999999997,305.111,305.115,305.11899999999997,305.123,305.127,305.131,305.135,305.139,305.139,305.604,305.608,305.61199999999997,305.616,305.62,305.62399999999997,305.628,305.632,305.63599999999997,305.64,305.644,305.64799999999997,305.652,305.656,305.65999999999997,305.664,305.668,305.67199999999997,305.676,305.68,305.68399999999997,305.688,305.692,305.69599999999997,305.7,305.704,305.70799999999997,305.712,305.716,305.71999999999997,305.724,305.728,305.73199999999997,305.736,305.74,305.74399999999997,305.748,305.752,305.756,305.76,305.764,305.768,305.772,305.776,305.78,305.784,305.788,305.792,305.796,305.8,305.804,305.808,305.812,305.816,305.82,305.824,305.828,305.832,305.836,305.84,305.844,305.848,305.852,305.856,305.85999999999996,305.864,305.868,305.87199999999996,305.876,305.88,305.88399999999996,305.888,305.892,305.89599999999996,305.9,305.904,305.90799999999996,305.912,305.916,305.91999999999996,305.924,305.928,305.93199999999996,305.936,305.94,305.94399999999996,305.948,305.952,305.95599999999996,305.96,305.964,305.96799999999996,305.972,305.976,305.97999999999996,305.984,305.988,305.99199999999996,305.996,306.0,306.0,306.463,306.46700000000004,306.471,306.475,306.47900000000004,306.483,306.487,306.49100000000004,306.495,306.499,306.50300000000004,306.507,306.511,306.51500000000004,306.519,306.523,306.52700000000004,306.531,306.535,306.53900000000004,306.543,306.547,306.55100000000004,306.555,306.559,306.56300000000005,306.567,306.571,306.57500000000005,306.579,306.583,306.58700000000005,306.591,306.595,306.59900000000005,306.603,306.607,306.61100000000005,306.615,306.619,306.62300000000005,306.627,306.63100000000003,306.63500000000005,306.639,306.64300000000003,306.64700000000005,306.651,306.65500000000003,306.65900000000005,306.663,306.66700000000003,306.67100000000005,306.675,306.67900000000003,306.68300000000005,306.687,306.69100000000003,306.69500000000005,306.699,306.70300000000003,306.70700000000005,306.711,306.71500000000003,306.719,306.723,306.72700000000003,306.731,306.735,306.73900000000003,306.743,306.747,306.75100000000003,306.755,306.759,306.76300000000003,306.767,306.771,306.77500000000003,306.779,306.783,306.78700000000003,306.791,306.795,306.79900000000004,306.803,306.807,306.81100000000004,306.815,306.819,306.82300000000004,306.827,306.831,306.83500000000004,306.839,306.843,306.84700000000004,306.851,306.855,306.85900000000004,306.85900000000004,307.324,307.32800000000003,307.332,307.336,307.34000000000003,307.344,307.348,307.35200000000003,307.356,307.36,307.36400000000003,307.368,307.372,307.37600000000003,307.38,307.384,307.38800000000003,307.392,307.396,307.40000000000003,307.404,307.408,307.41200000000003,307.416,307.42,307.42400000000004,307.428,307.432,307.43600000000004,307.44,307.444,307.44800000000004,307.452,307.456,307.46000000000004,307.464,307.468,307.47200000000004,307.476,307.48,307.48400000000004,307.488,307.492,307.49600000000004,307.5,307.504,307.50800000000004,307.512,307.516,307.52000000000004,307.524,307.528,307.53200000000004,307.536,307.54,307.54400000000004,307.548,307.552,307.55600000000004,307.56,307.564,307.56800000000004,307.572,307.576,307.58,307.584,307.588,307.592,307.596,307.6,307.604,307.608,307.612,307.616,307.62,307.624,307.628,307.632,307.636,307.64,307.644,307.648,307.652,307.656,307.66,307.664,307.668,307.672,307.676,307.68,307.684,307.688,307.692,307.696,307.7,307.704,307.708,307.712,307.716,307.72,307.72,308.183,308.187,308.191,308.195,308.199,308.203,308.207,308.211,308.215,308.219,308.223,308.227,308.231,308.235,308.239,308.243,308.247,308.251,308.255,308.259,308.263,308.267,308.271,308.275,308.279,308.283,308.287,308.291,308.295,308.299,308.303,308.307,308.311,308.315,308.319,308.323,308.327,308.331,308.335,308.339,308.343,308.347,308.351,308.355,308.359,308.363,308.367,308.371,308.375,308.379,308.383,308.387,308.391,308.395,308.399,308.403,308.407,308.411,308.415,308.419,308.423,308.427,308.431,308.435,308.43899999999996,308.443,308.447,308.45099999999996,308.455,308.459,308.46299999999997,308.467,308.471,308.47499999999997,308.479,308.483,308.48699999999997,308.491,308.495,308.49899999999997,308.503,308.507,308.51099999999997,308.515,308.519,308.52299999999997,308.527,308.531,308.53499999999997,308.539,308.543,308.54699999999997,308.551,308.555,308.55899999999997,308.563,308.567,308.57099999999997,308.575,308.579,308.579,309.044,309.048,309.05199999999996,309.056,309.06,309.06399999999996,309.068,309.072,309.07599999999996,309.08,309.084,309.08799999999997,309.092,309.096,309.09999999999997,309.104,309.108,309.11199999999997,309.116,309.12,309.12399999999997,309.128,309.132,309.13599999999997,309.14,309.144,309.14799999999997,309.152,309.156,309.15999999999997,309.164,309.168,309.17199999999997,309.176,309.18,309.18399999999997,309.188,309.192,309.19599999999997,309.2,309.204,309.20799999999997,309.212,309.216,309.21999999999997,309.224,309.228,309.23199999999997,309.236,309.24,309.24399999999997,309.248,309.252,309.256,309.26,309.264,309.268,309.272,309.276,309.28,309.284,309.288,309.292,309.296,309.29999999999995,309.304,309.308,309.31199999999995,309.316,309.32,309.32399999999996,309.328,309.332,309.33599999999996,309.34,309.344,309.34799999999996,309.352,309.356,309.35999999999996,309.364,309.368,309.37199999999996,309.376,309.38,309.38399999999996,309.388,309.392,309.39599999999996,309.4,309.404,309.40799999999996,309.412,309.416,309.41999999999996,309.424,309.428,309.43199999999996,309.436,309.44,309.44,309.903,309.90700000000004,309.911,309.915,309.91900000000004,309.923,309.927,309.93100000000004,309.935,309.939,309.94300000000004,309.947,309.951,309.95500000000004,309.959,309.963,309.96700000000004,309.971,309.975,309.97900000000004,309.983,309.987,309.99100000000004,309.995,309.999,310.00300000000004,310.007,310.011,310.01500000000004,310.019,310.023,310.02700000000004,310.031,310.035,310.03900000000004,310.043,310.047,310.05100000000004,310.055,310.059,310.06300000000005,310.067,310.071,310.07500000000005,310.079,310.083,310.08700000000005,310.091,310.095,310.09900000000005,310.103,310.107,310.11100000000005,310.115,310.119,310.12300000000005,310.127,310.13100000000003,310.13500000000005,310.139,310.14300000000003,310.14700000000005,310.151,310.15500000000003,310.159,310.163,310.16700000000003,310.171,310.175,310.17900000000003,310.183,310.187,310.19100000000003,310.195,310.199,310.20300000000003,310.207,310.211,310.21500000000003,310.219,310.223,310.22700000000003,310.231,310.235,310.23900000000003,310.243,310.247,310.25100000000003,310.255,310.259,310.26300000000003,310.267,310.271,310.27500000000003,310.279,310.283,310.28700000000003,310.291,310.295,310.29900000000004,310.29900000000004,310.764,310.76800000000003,310.772,310.776,310.78000000000003,310.784,310.788,310.79200000000003,310.796,310.8,310.80400000000003,310.808,310.812,310.81600000000003,310.82,310.824,310.82800000000003,310.832,310.836,310.84000000000003,310.844,310.848,310.85200000000003,310.856,310.86,310.86400000000003,310.868,310.872,310.87600000000003,310.88,310.884,310.88800000000003,310.892,310.896,310.90000000000003,310.904,310.908,310.91200000000003,310.916,310.92,310.92400000000004,310.928,310.932,310.93600000000004,310.94,310.944,310.94800000000004,310.952,310.956,310.96000000000004,310.964,310.968,310.97200000000004,310.976,310.98,310.98400000000004,310.988,310.992,310.99600000000004,311.0,311.004,311.00800000000004,311.012,311.016,311.02,311.024,311.028,311.032,311.036,311.04,311.044,311.048,311.052,311.056,311.06,311.064,311.068,311.072,311.076,311.08,311.084,311.088,311.092,311.096,311.1,311.104,311.108,311.112,311.116,311.12,311.124,311.128,311.132,311.136,311.14,311.144,311.148,311.152,311.156,311.16,311.16]}], {"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/42-seq.html b/dev/assets/examples/42-seq.html index a9f34392d..af84efdd1 100644 --- a/dev/assets/examples/42-seq.html +++ b/dev/assets/examples/42-seq.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('be352b3b-19b8-4191-8720-d7667d7704d4')) { + if (document.getElementById('093bab2b-871c-4115-9cc4-ba7d262ccdaa')) { Plotly.newPlot( - 'be352b3b-19b8-4191-8720-d7667d7704d4', + '093bab2b-871c-4115-9cc4-ba7d262ccdaa', [{"showlegend":true,"x":[0.0,0.0,0.11743300249919976,3.3174330024992,3.4348660049983994,3.4348660049983994,3.4348660049983994,3.5522990074975995,5.093582506248,5.211015508747199],"xaxis":"x","y":[null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gx","yaxis":"y","legendgroup":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#636EFA"}},{"showlegend":true,"x":[0.0,0.0,0.11743300249919976,3.3174330024992,3.4348660049983994,3.4348660049983994,3.4348660049983994,3.5522990074975995,5.093582506248,5.211015508747199],"xaxis":"x","y":[null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gy","yaxis":"y","legendgroup":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#EF553B"}},{"showlegend":true,"x":[0.0,0.0,0.11743300249919976,3.3174330024992,3.4348660049983994,3.4348660049983994,3.4348660049983994,3.5522990074975995,5.093582506248,5.211015508747199],"xaxis":"x","y":[null,0.0,5.871650124959989,5.871650124959989,0.0,null,0.0,-5.871650124959989,-5.871650124959989,0.0],"type":"scatter","name":"Gz","yaxis":"y","legendgroup":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","marker":{"color":"#00CC96"}},{"showlegend":true,"x":[0.0,0.11743300249919976,0.11743300249919976,0.12806423173508016,0.12806423173508016,0.13869546097096055,0.13869546097096055,0.14932669020684095,0.14932669020684095,0.15995791944272136,0.15995791944272136,0.17058914867860175,0.17058914867860175,0.18122037791448214,0.18122037791448214,0.19185160715036256,0.19185160715036256,0.20248283638624295,0.20248283638624295,0.21311406562212334,0.21311406562212334,0.22374529485800376,0.22374529485800376,0.23437652409388415,0.23437652409388415,0.24500775332976454,0.24500775332976454,0.25563898256564493,0.25563898256564493,0.2662702118015254,0.2662702118015254,0.2769014410374057,0.2769014410374057,0.28753267027328616,0.28753267027328616,0.29816389950916655,0.29816389950916655,0.30879512874504694,0.30879512874504694,0.31942635798092733,0.31942635798092733,0.3300575872168078,0.3300575872168078,0.3406888164526881,0.3406888164526881,0.35132004568856856,0.35132004568856856,0.36195127492444895,0.36195127492444895,0.3725825041603293,0.3725825041603293,0.3832137333962097,0.3832137333962097,0.39384496263209007,0.39384496263209007,0.4044761918679704,0.4044761918679704,0.4151074211038508,0.4151074211038508,0.4257386503397312,0.4257386503397312,0.4363698795756115,0.4363698795756115,0.4470011088114919,0.4470011088114919,0.4576323380473723,0.4576323380473723,0.4682635672832527,0.4682635672832527,0.478894796519133,0.478894796519133,0.48952602575501347,0.48952602575501347,0.5001572549908938,0.5001572549908938,0.5107884842267743,0.5107884842267743,0.5214197134626546,0.5214197134626546,0.5320509426985349,0.5320509426985349,0.5426821719344154,0.5426821719344154,0.5533134011702957,0.5533134011702957,0.563944630406176,0.563944630406176,0.5745758596420565,0.5745758596420565,0.5852070888779368,0.5852070888779368,0.5958383181138172,0.5958383181138172,0.6064695473496976,0.6064695473496976,0.6171007765855779,0.6171007765855779,0.6277320058214583,0.6277320058214583,0.6383632350573387,0.6383632350573387,0.648994464293219,0.648994464293219,0.6596256935290994,0.6596256935290994,0.6702569227649798,0.6702569227649798,0.6808881520008602,0.6808881520008602,0.6915193812367405,0.6915193812367405,0.702150610472621,0.702150610472621,0.7127818397085013,0.7127818397085013,0.7234130689443817,0.7234130689443817,0.7340442981802621,0.7340442981802621,0.7446755274161424,0.7446755274161424,0.7553067566520228,0.7553067566520228,0.7659379858879032,0.7659379858879032,0.7765692151237835,0.7765692151237835,0.787200444359664,0.787200444359664,0.7978316735955443,0.7978316735955443,0.8084629028314246,0.8084629028314246,0.8190941320673051,0.8190941320673051,0.8297253613031854,0.8297253613031854,0.8403565905390658,0.8403565905390658,0.8509878197749462,0.8509878197749462,0.8616190490108265,0.8616190490108265,0.8722502782467069,0.8722502782467069,0.8828815074825873,0.8828815074825873,0.8935127367184676,0.8935127367184676,0.904143965954348,0.904143965954348,0.9147751951902284,0.9147751951902284,0.9254064244261088,0.9254064244261088,0.9360376536619891,0.9360376536619891,0.9466688828978697,0.9466688828978697,0.95730011213375,0.95730011213375,0.9679313413696303,0.9679313413696303,0.9785625706055109,0.9785625706055109,0.9891937998413912,0.9891937998413912,0.9998250290772716,0.9998250290772716,1.010456258313152,1.010456258313152,1.0210874875490323,1.0210874875490323,1.031718716784913,1.031718716784913,1.0423499460207932,1.0423499460207932,1.0529811752566738,1.0529811752566738,1.0636124044925541,1.0636124044925541,1.0742436337284345,1.0742436337284345,1.0848748629643148,1.0848748629643148,1.0955060922001951,1.0955060922001951,1.1061373214360755,1.1061373214360755,1.116768550671956,1.116768550671956,1.1273997799078364,1.1273997799078364,1.138031009143717,1.138031009143717,1.1486622383795972,1.1486622383795972,1.1592934676154776,1.1592934676154776,1.169924696851358,1.169924696851358,1.1805559260872385,1.1805559260872385,1.1911871553231188,1.1911871553231188,1.2018183845589991,1.2018183845589991,1.2124496137948795,1.2124496137948795,1.2230808430307598,1.2230808430307598,1.2337120722666401,1.2337120722666401,1.2443433015025207,1.2443433015025207,1.254974530738401,1.254974530738401,1.2656057599742814,1.2656057599742814,1.2762369892101617,1.2762369892101617,1.286868218446042,1.286868218446042,1.2974994476819224,1.2974994476819224,1.308130676917803,1.308130676917803,1.3187619061536833,1.3187619061536833,1.3293931353895636,1.3293931353895636,1.340024364625444,1.340024364625444,1.3506555938613243,1.3506555938613243,1.3612868230972048,1.3612868230972048,1.3719180523330852,1.3719180523330852,1.3825492815689655,1.3825492815689655,1.3931805108048458,1.3931805108048458,1.4038117400407262,1.4038117400407262,1.4144429692766065,1.4144429692766065,1.425074198512487,1.425074198512487,1.4357054277483674,1.4357054277483674,1.4463366569842477,1.4463366569842477,1.456967886220128,1.456967886220128,1.4675991154560084,1.4675991154560084,1.4782303446918887,1.4782303446918887,1.4888615739277693,1.4888615739277693,1.4994928031636496,1.4994928031636496,1.51012403239953,1.51012403239953,1.5207552616354103,1.5207552616354103,1.5313864908712906,1.5313864908712906,1.542017720107171,1.542017720107171,1.5526489493430515,1.5526489493430515,1.5632801785789319,1.5632801785789319,1.5739114078148122,1.5739114078148122,1.5845426370506925,1.5845426370506925,1.5951738662865729,1.5951738662865729,1.6058050955224532,1.6058050955224532,1.6164363247583338,1.6164363247583338,1.627067553994214,1.627067553994214,1.6376987832300944,1.6376987832300944,1.6483300124659748,1.6483300124659748,1.658961241701855,1.658961241701855,1.6695924709377354,1.6695924709377354,1.680223700173616,1.680223700173616,1.6908549294094963,1.6908549294094963,1.7014861586453767,1.7014861586453767,1.712117387881257,1.712117387881257,1.7227486171171373,1.7227486171171373,1.733379846353018,1.733379846353018,1.7440110755888982,1.7440110755888982,1.7546423048247786,1.7546423048247786,1.7652735340606591,1.7652735340606591,1.7759047632965395,1.7759047632965395,1.7865359925324198,1.7865359925324198,1.7971672217683003,1.7971672217683003,1.8077984510041807,1.8077984510041807,1.818429680240061,1.818429680240061,1.8290609094759414,1.8290609094759414,1.8396921387118217,1.8396921387118217,1.8503233679477022,1.8503233679477022,1.8609545971835828,1.8609545971835828,1.8715858264194631,1.8715858264194631,1.8822170556553435,1.8822170556553435,1.8928482848912238,1.8928482848912238,1.9034795141271041,1.9034795141271041,1.9141107433629845,1.9141107433629845,1.924741972598865,1.924741972598865,1.9353732018347454,1.9353732018347454,1.946004431070626,1.946004431070626,1.9566356603065065,1.9566356603065065,1.9672668895423868,1.9672668895423868,1.9778981187782672,1.9778981187782672,1.9885293480141477,1.9885293480141477,1.999160577250028,1.999160577250028,2.009791806485908,2.009791806485908,2.0204230357217887,2.0204230357217887,2.0310542649576693,2.0310542649576693,2.0416854941935494,2.0416854941935494,2.05231672342943,2.05231672342943,2.06294795266531,2.06294795266531,2.07357918190119,2.07357918190119,2.0842104111370707,2.0842104111370707,2.094841640372951,2.094841640372951,2.1054728696088314,2.1054728696088314,2.1161040988447115,2.1161040988447115,2.126735328080592,2.126735328080592,2.137366557316472,2.137366557316472,2.1479977865523527,2.1479977865523527,2.1586290157882333,2.1586290157882333,2.1692602450241134,2.1692602450241134,2.179891474259994,2.179891474259994,2.190522703495874,2.190522703495874,2.2011539327317546,2.2011539327317546,2.2117851619676356,2.2117851619676356,2.2224163912035153,2.2224163912035153,2.2330476204393963,2.2330476204393963,2.243678849675276,2.243678849675276,2.254310078911157,2.254310078911157,2.264941308147037,2.264941308147037,2.2755725373829176,2.2755725373829176,2.2862037666187978,2.2862037666187978,2.2968349958546783,2.2968349958546783,2.3074662250905584,2.3074662250905584,2.318097454326439,2.318097454326439,2.328728683562319,2.328728683562319,2.3393599127982,2.3393599127982,2.3499911420340798,2.3499911420340798,2.3606223712699608,2.3606223712699608,2.3712536005058404,2.3712536005058404,2.3818848297417214,2.3818848297417214,2.3925160589776016,2.3925160589776016,2.403147288213482,2.403147288213482,2.4137785174493622,2.4137785174493622,2.424409746685243,2.424409746685243,2.435040975921123,2.435040975921123,2.4456722051570035,2.4456722051570035,2.4563034343928836,2.4563034343928836,2.4669346636287646,2.4669346636287646,2.4775658928646442,2.4775658928646442,2.4881971221005252,2.4881971221005252,2.498828351336405,2.498828351336405,2.509459580572286,2.509459580572286,2.5200908098081665,2.5200908098081665,2.5307220390440466,2.5307220390440466,2.541353268279927,2.541353268279927,2.5519844975158072,2.5519844975158072,2.562615726751688,2.562615726751688,2.5732469559875684,2.5732469559875684,2.5838781852234485,2.5838781852234485,2.594509414459329,2.594509414459329,2.6051406436952096,2.6051406436952096,2.61577187293109,2.61577187293109,2.6264031021669703,2.6264031021669703,2.637034331402851,2.637034331402851,2.6476655606387314,2.6476655606387314,2.6582967898746115,2.6582967898746115,2.668928019110492,2.668928019110492,2.679559248346372,2.679559248346372,2.6901904775822527,2.6901904775822527,2.7008217068181333,2.7008217068181333,2.7114529360540134,2.7114529360540134,2.722084165289894,2.722084165289894,2.732715394525774,2.732715394525774,2.7433466237616546,2.7433466237616546,2.7539778529975347,2.7539778529975347,2.7646090822334153,2.7646090822334153,2.775240311469296,2.775240311469296,2.785871540705176,2.785871540705176,2.7965027699410565,2.7965027699410565,2.8071339991769366,2.8071339991769366,2.817765228412817,2.817765228412817,2.8283964576486977,2.8283964576486977,2.839027686884578,2.839027686884578,2.8496589161204584,2.8496589161204584,2.8602901453563385,2.8602901453563385,2.870921374592219,2.870921374592219,2.881552603828099,2.881552603828099,2.8921838330639797,2.8921838330639797,2.9028150622998603,2.9028150622998603,2.9134462915357404,2.9134462915357404,2.924077520771621,2.924077520771621,2.934708750007501,2.934708750007501,2.9453399792433816,2.9453399792433816,2.955971208479262,2.955971208479262,2.9666024377151423,2.9666024377151423,2.977233666951023,2.977233666951023,2.987864896186903,2.987864896186903,2.998496125422784,2.998496125422784,3.0091273546586637,3.0091273546586637,3.0197585838945447,3.0197585838945447,3.0303898131304248,3.0303898131304248,3.0410210423663053,3.0410210423663053,3.0516522716021854,3.0516522716021854,3.062283500838066,3.062283500838066,3.072914730073946,3.072914730073946,3.083545959309827,3.083545959309827,3.094177188545707,3.094177188545707,3.104808417781588,3.104808417781588,3.1154396470174675,3.1154396470174675,3.1260708762533485,3.1260708762533485,3.1367021054892286,3.1367021054892286,3.147333334725109,3.147333334725109,3.1579645639609892,3.1579645639609892,3.16859579319687,3.16859579319687,3.17922702243275,3.17922702243275,3.1898582516686305,3.1898582516686305,3.2004894809045106,3.2004894809045106,3.2111207101403916,3.2111207101403916,3.2217519393762712,3.2217519393762712,3.2323831686121522,3.2323831686121522,3.243014397848032,3.243014397848032,3.253645627083913,3.253645627083913,3.264276856319793,3.264276856319793,3.2749080855556736,3.2749080855556736,3.2855393147915537,3.2855393147915537,3.2961705440274343,3.2961705440274343,3.3068017732633144,3.3068017732633144,3.317433002499195,3.317433002499195,3.4348660049983994,3.4348660049983994,3.4348660049983994,3.4348660049983994,3.4348660049983994],"xaxis":"x","y":[null,0.0,0.0,0.0,0.0026418492095195865,0.0026418492095195865,0.005320768841917946,0.005320768841917946,0.008038539871547791,0.008038539871547791,0.010796284729789482,0.010796284729789482,0.013594105516589464,0.013594105516589464,0.01643072743881585,0.01643072743881585,0.01930315409052485,0.01930315409052485,0.022206341177472912,0.022206341177472912,0.025132895186884188,0.025132895186884188,0.028072803313359592,0.028072803313359592,0.031013200673676595,0.031013200673676595,0.03393818047893259,0.03393818047893259,0.03682865238489855,0.03682865238489855,0.03966225371449041,0.03966225371449041,0.04241331764480768,0.04241331764480768,0.045052901781090095,0.045052901781090095,0.04754887980792252,0.04754887980792252,0.04986609812165666,0.04986609812165666,0.05196659851563111,0.05196659851563111,0.053809907120375235,0.053809907120375235,0.055353388904156274,0.055353388904156274,0.05655266612506431,0.05655266612506431,0.05736209820478183,0.05736209820478183,0.05773531957699673,0.05773531957699673,0.0576258311609827,0.0576258311609827,0.056987640234131325,0.056987640234131325,0.055775942637029514,0.055775942637029514,0.05394784045170287,0.05394784045170287,0.05146308755821906,0.05146308755821906,0.048284854806882646,0.048284854806882646,0.04438050595208865,0.04438050595208865,0.03972237498823877,0.03972237498823877,0.03428853511586012,0.03428853511586012,0.02806354925427099,0.02806354925427099,0.021039191811881495,0.021039191811881495,0.013215131331566852,0.013215131331566852,0.004599563650427095,0.004599563650427095,0.0047902146465676615,0.0047902146465676615,0.014927302439532707,0.014927302439532707,0.025774769533576034,0.025774769533576034,0.03728532044675668,0.03728532044675668,0.0494010549911484,0.0494010549911484,0.062053333382799135,0.062053333382799135,0.07516275277879828,0.07516275277879828,0.08863924119988521,0.08863924119988521,0.10238227376241717,0.10238227376241717,0.11628121502252703,0.11628121502252703,0.13021579003756814,0.13021579003756814,0.14405668548599682,0.14405668548599682,0.15766628086824713,0.15766628086824713,0.1708995084501548,0.1708995084501548,0.18360483922015636,0.18360483922015636,0.1956253907253606,0.1956253907253606,0.206800151243749,0.206800151243749,0.21696531335450406,0.21696531335450406,0.2259557086003588,0.2259557086003588,0.23360633360941907,0.23360633360941907,0.23975395677357986,0.23975395677357986,0.24423879338059545,0.24423879338059545,0.24690623598081432,0.24690623598081432,0.24760862575075618,0.24760862575075618,0.24620704970656293,0.24620704970656293,0.24257314783257072,0.24257314783257072,0.23659091353449452,0.23659091353449452,0.22815847031260836,0.22815847031260836,0.21718980718622044,0.21718980718622044,0.20361645519378987,0.20361645519378987,0.18738908724890263,0.18738908724890263,0.16847902375523238,0.16847902375523238,0.14687962667625123,0.14687962667625123,0.12260756521891336,0.12260756521891336,0.09570393692425634,0.09570393692425634,0.06623522875970132,0.06623522875970132,0.03429410377392229,0.03429410377392229,0.0,0.0,0.03650047043084136,0.03650047043084136,0.07503333258307347,0.07503333258307347,0.11539727948398389,0.11539727948398389,0.15736392975613625,0.15736392975613625,0.20067831772527678,0.20067831772527678,0.24505961973778184,0.24505961973778184,0.2902021184669646,0.2902021184669646,0.3357764049703843,0.3357764049703843,0.38143081619788427,0.38143081619788427,0.42679310356032407,0.42679310356032407,0.4714723260703276,0.4714723260703276,0.5150609594776551,0.5150609594776551,0.557137210762056,0.557137210762056,0.5972675253347569,0.5972675253347569,0.6350092723550276,0.6350092723550276,0.6699135917091386,0.6699135917091386,0.7015283844436117,0.7015283844436117,0.7294014268104106,0.7294014268104106,0.7530835865852465,0.7530835865852465,0.772132118977026,0.772132118977026,0.7861140182711661,0.7861140182711661,0.7946094003550909,0.7946094003550909,0.7972148904724398,0.7972148904724398,0.7935469899534386,0.7935469899534386,0.783245395280969,0.783245395280969,0.7659762426817286,0.7659762426817286,0.7414352514843519,0.7414352514843519,0.7093507397642704,0.7093507397642704,0.6694864862993847,0.6694864862993847,0.621644413590154,0.621644413590154,0.5656670676494129,0.5656670676494129,0.5014398714359599,0.5014398714359599,0.4288931301846311,0.4288931301846311,0.3480037684652199,0.3480037684652199,0.25879678057221983,0.25879678057221983,0.1613463777944065,0.1613463777944065,0.05577681822325137,0.05577681822325137,0.0577370929838068,0.0577370929838068,0.17896984258253748,0.17896984258253748,0.30764539466330726,0.30764539466330726,0.44343772712573554,0.44343772712573554,0.5859717211588737,0.5859717211588737,0.7348244029716737,0.7348244029716737,0.8895265342847797,0.8895265342847797,1.0495645453572984,1.0495645453572984,1.2143828016040874,1.2143828016040874,1.3833861921833288,1.3833861921833288,1.5559430263231913,1.5559430263231913,1.7313882206330018,1.7313882206330018,1.9090267582300107,1.9090267582300107,2.088137398228711,2.088137398228711,2.2679766120058624,2.2679766120058624,2.4477827206896174,2.4477827206896174,2.626780206543177,2.626780206543177,2.804184169338277,2.804184169338277,2.979204897455782,2.979204897455782,3.151052522322815,3.151052522322815,3.318941723908535,3.318941723908535,3.4820964543629542,3.4820964543629542,3.6397546465017268,3.6397546465017268,3.7911728737190544,3.7911728737190544,3.935630928053378,3.935630928053378,4.072436283536103,4.072436283536103,4.200928412620585,4.200928412620585,4.320482924412244,4.320482924412244,4.430515494594689,4.430515494594689,4.530485558362394,4.530485558362394,4.619899739316935,4.619899739316935,4.698314989148548,4.698314989148548,4.765341414992802,4.765341414992802,4.820644773607647,4.820644773607647,4.863948613940437,4.863948613940437,4.895036052228764,4.895036052228764,4.913751166481921,4.913751166481921,4.92,4.92,4.913751166481921,4.913751166481921,4.895036052228765,4.895036052228765,4.863948613940438,4.863948613940438,4.820644773607647,4.820644773607647,4.765341414992803,4.765341414992803,4.69831498914855,4.69831498914855,4.619899739316935,4.619899739316935,4.530485558362394,4.530485558362394,4.430515494594691,4.430515494594691,4.3204829244122465,4.3204829244122465,4.200928412620587,4.200928412620587,4.072436283536106,4.072436283536106,3.9356309280533814,3.9356309280533814,3.7911728737190544,3.7911728737190544,3.6397546465017268,3.6397546465017268,3.482096454362958,3.482096454362958,3.3189417239085386,3.3189417239085386,3.151052522322819,3.151052522322819,2.979204897455786,2.979204897455786,2.804184169338281,2.804184169338281,2.626780206543177,2.626780206543177,2.4477827206896174,2.4477827206896174,2.2679766120058664,2.2679766120058664,2.0881373982287155,2.0881373982287155,1.909026758230014,1.909026758230014,1.7313882206330051,1.7313882206330051,1.5559430263231953,1.5559430263231953,1.3833861921833288,1.3833861921833288,1.2143828016040874,1.2143828016040874,1.0495645453572984,1.0495645453572984,0.8895265342847831,0.8895265342847831,0.734824402971677,0.734824402971677,0.5859717211588767,0.5859717211588767,0.44343772712573554,0.44343772712573554,0.30764539466330726,0.30764539466330726,0.17896984258253748,0.17896984258253748,0.0577370929838068,0.0577370929838068,0.055776818223249536,0.055776818223249536,0.16134637779440483,0.16134637779440483,0.2587967805722183,0.2587967805722183,0.3480037684652178,0.3480037684652178,0.4288931301846293,0.4288931301846293,0.5014398714359581,0.5014398714359581,0.5656670676494114,0.5656670676494114,0.6216444135901519,0.6216444135901519,0.6694864862993829,0.6694864862993829,0.7093507397642704,0.7093507397642704,0.7414352514843519,0.7414352514843519,0.7659762426817286,0.7659762426817286,0.783245395280969,0.783245395280969,0.7935469899534386,0.7935469899534386,0.7972148904724399,0.7972148904724399,0.7946094003550911,0.7946094003550911,0.7861140182711661,0.7861140182711661,0.7721321189770263,0.7721321189770263,0.7530835865852471,0.7530835865852471,0.7294014268104113,0.7294014268104113,0.7015283844436123,0.7015283844436123,0.6699135917091398,0.6699135917091398,0.6350092723550287,0.6350092723550287,0.5972675253347566,0.5972675253347566,0.557137210762056,0.557137210762056,0.5150609594776551,0.5150609594776551,0.4714723260703276,0.4714723260703276,0.42679310356032474,0.42679310356032474,0.38143081619788505,0.38143081619788505,0.33577640497038463,0.33577640497038463,0.2902021184669649,0.2902021184669649,0.24505961973778254,0.24505961973778254,0.20067831772527753,0.20067831772527753,0.15736392975613697,0.15736392975613697,0.11539727948398489,0.11539727948398489,0.07503333258307449,0.07503333258307449,0.03650047043084263,0.03650047043084263,0.0,0.0,0.03429410377392229,0.03429410377392229,0.06623522875970132,0.06623522875970132,0.09570393692425634,0.09570393692425634,0.12260756521891336,0.12260756521891336,0.14687962667625123,0.14687962667625123,0.168479023755232,0.168479023755232,0.18738908724890266,0.18738908724890266,0.20361645519378968,0.20361645519378968,0.21718980718622036,0.21718980718622036,0.22815847031260814,0.22815847031260814,0.23659091353449424,0.23659091353449424,0.24257314783257056,0.24257314783257056,0.24620704970656276,0.24620704970656276,0.24760862575075607,0.24760862575075607,0.24690623598081432,0.24690623598081432,0.24423879338059545,0.24423879338059545,0.23975395677357986,0.23975395677357986,0.23360633360941907,0.23360633360941907,0.22595570860035896,0.22595570860035896,0.21696531335450428,0.21696531335450428,0.2068001512437493,0.2068001512437493,0.19562539072536078,0.19562539072536078,0.18360483922015652,0.18360483922015652,0.1708995084501551,0.1708995084501551,0.15766628086824735,0.15766628086824735,0.14405668548599704,0.14405668548599704,0.1302157900375684,0.1302157900375684,0.11628121502252756,0.11628121502252756,0.10238227376241747,0.10238227376241747,0.08863924119988521,0.08863924119988521,0.07516275277879828,0.07516275277879828,0.062053333382799135,0.062053333382799135,0.0494010549911484,0.0494010549911484,0.03728532044675668,0.03728532044675668,0.025774769533576228,0.025774769533576228,0.014927302439533049,0.014927302439533049,0.0047902146465678246,0.0047902146465678246,0.004599563650426793,0.004599563650426793,0.013215131331566713,0.013215131331566713,0.021039191811881377,0.021039191811881377,0.02806354925427089,0.02806354925427089,0.03428853511586001,0.03428853511586001,0.0397223749882387,0.0397223749882387,0.04438050595208865,0.04438050595208865,0.048284854806882646,0.048284854806882646,0.05146308755821906,0.05146308755821906,0.05394784045170287,0.05394784045170287,0.055775942637029514,0.055775942637029514,0.05698764023413132,0.05698764023413132,0.05762583116098271,0.05762583116098271,0.0577353195769967,0.0577353195769967,0.057362098204781845,0.057362098204781845,0.05655266612506433,0.05655266612506433,0.055353388904156295,0.055353388904156295,0.053809907120375235,0.053809907120375235,0.05196659851563117,0.05196659851563117,0.04986609812165673,0.04986609812165673,0.04754887980792265,0.04754887980792265,0.045052901781090095,0.045052901781090095,0.04241331764480768,0.04241331764480768,0.03966225371449041,0.03966225371449041,0.03682865238489855,0.03682865238489855,0.03393818047893259,0.03393818047893259,0.031013200673676636,0.031013200673676636,0.028072803313359627,0.028072803313359627,0.025132895186884243,0.025132895186884243,0.02220634117747295,0.02220634117747295,0.019303154090524934,0.019303154090524934,0.016430727438815892,0.016430727438815892,0.013594105516589551,0.013594105516589551,0.010796284729789538,0.010796284729789538,0.008038539871547925,0.008038539871547925,0.005320768841917946,0.005320768841917946,0.0026418492095195865,0.0026418492095195865,0.0,0.0,0.0,null,null,null,null,null],"type":"scatter","name":"|B1|","yaxis":"y","legendgroup":"|B1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","marker":{"color":"#AB63FA"}},{"showlegend":true,"xaxis":"x","visible":"legendonly","name":"
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('d6d47016-bb61-4a36-8a2b-b1cee1968d39')) { + if (document.getElementById('759d2a7e-a650-4baf-bef9-3e29740a636f')) { Plotly.newPlot( - 'd6d47016-bb61-4a36-8a2b-b1cee1968d39', + '759d2a7e-a650-4baf-bef9-3e29740a636f', [{"y":[0.0005756025,0.0005985974,0.00065428973,0.0007396064,0.00084959867,0.0009779477,0.0011167617,0.001257579,0.0013913815,0.0015097911,0.0016047267,0.0016697013,0.0016995404,0.0016916607,0.0016456284,0.0015633327,0.0014495521,0.0013110547,0.0011569732,0.0009982195,0.00084734324,0.00071662845,0.00061689375,0.00055288966,0.00052004633,0.0005075948,0.00050675945,0.00051675434,0.0005451107,0.0006018529,0.0006918051,0.000809677,0.0009445285,0.0010827666,0.0012106834,0.0013163807,0.0013899802,0.0014236136,0.0014132182,0.001357078,0.0012569905,0.0011183462,0.00094881933,0.0007587852,0.00056182465,0.0003732139,0.00021543312,0.00013477266,0.00015735865,0.00018934261,0.00017807398,0.00010986565,2.1240814e-5,0.00020507365,0.0004419284,0.0007204168,0.0010281947,0.0013514182,0.0016753398,0.0019849634,0.002266747,0.0025091446,0.0027030024,0.0028433455,0.002928401,0.0029606854,0.0029469598,0.0028978959,0.0028267973,0.0027496174,0.0026843434,0.002648141,0.0026583555,0.0027309447,0.0028783206,0.0031104016,0.0034325495,0.0038458991,0.0043466487,0.004926418,0.005572822,0.0062700454,0.0070002847,0.0077443034,0.008483906,0.009201527,0.009883387,0.010519199,0.0111033665,0.011635394,0.012120714,0.012569595,0.012997545,0.013424442,0.013871145,0.014362358,0.014921275,0.015569711,0.01632748,0.0172087,0.018224327,0.019378453,0.02067008,0.02209307,0.023637284,0.025289245,0.0270347,0.028859954,0.030754961,0.03271457,0.034740716,0.036844905,0.03904708,0.041379806,0.04388182,0.04660335,0.049597137,0.052921236,0.056627315,0.06076336,0.0653595,0.07042868,0.07595602,0.081892334,0.088152766,0.09460542,0.10107407,0.107331276,0.113103114,0.1180619,0.12184547,0.1240453,0.12422668,0.12193274,0.11669719,0.108051926,0.09554832,0.07876696,0.05733554,0.030947976,0.0007325627,0.03749509,0.0796592,0.12697059,0.1791272,0.23565313,0.2959154,0.35910243,0.4242638,0.49032545,0.5561437,0.6205145,0.68227386,0.7403132,0.7936215,0.8414015,0.88304275,0.91816455,0.94660085,0.9684991,0.9841711,0.9941581,0.9991004,0.99981964,0.9971178,0.9918386,0.98473907,0.9765208,0.9677815,0.9589552,0.950388,0.94225854,0.9347092,0.92774373,0.92135143,0.91545004,0.909964,0.9048079,0.89989215,0.89517283,0.8906154,0.8862044,0.8819215,0.8778125,0.873904,0.8702468,0.8668628,0.8638143,0.8611328,0.85884184,0.85693115,0.85541433,0.8542393,0.853361,0.85276693,0.8523762,0.8521433,0.85202485,0.8519587,0.85192853,0.85192853,0.8519587,0.85202485,0.8521433,0.8523762,0.85276693,0.853361,0.8542393,0.85541433,0.85693115,0.85884184,0.8611328,0.8638143,0.8668628,0.8702468,0.873904,0.8778125,0.8819215,0.8862044,0.8906154,0.89517283,0.89989215,0.9048079,0.909964,0.91545004,0.92135143,0.92774373,0.9347092,0.94225854,0.950388,0.9589552,0.9677815,0.9765208,0.98473907,0.9918386,0.9971178,0.99981964,0.9991004,0.9941581,0.9841711,0.9684991,0.94660085,0.91816455,0.88304275,0.8414015,0.7936215,0.7403132,0.68227386,0.6205145,0.5561437,0.49032545,0.4242638,0.35910243,0.2959154,0.23565313,0.1791272,0.12697059,0.0796592,0.03749509,0.0007325627,0.030947976,0.05733554,0.07876696,0.09554832,0.108051926,0.11669719,0.12193274,0.12422668,0.1240453,0.12184547,0.1180619,0.113103114,0.107331276,0.10107407,0.09460542,0.088152766,0.081892334,0.07595602,0.07042868,0.0653595,0.06076336,0.056627315,0.052921236,0.049597137,0.04660335,0.04388182,0.041379806,0.03904708,0.036844905,0.034740716,0.03271457,0.030754961,0.028859954,0.0270347,0.025289245,0.023637284,0.02209307,0.02067008,0.019378453,0.018224327,0.0172087,0.01632748,0.015569711,0.014921275,0.014362358,0.013871145,0.013424442,0.012997545,0.012569595,0.012120714,0.011635394,0.0111033665,0.010519199,0.009883387,0.009201527,0.008483906,0.0077443034,0.0070002847,0.0062700454,0.005572822,0.004926418,0.0043466487,0.0038458991,0.0034325495,0.0031104016,0.0028783206,0.0027309447,0.0026583555,0.002648141,0.0026843434,0.0027496174,0.0028267973,0.0028978959,0.0029469598,0.0029606854,0.002928401,0.0028433455,0.0027030024,0.0025091446,0.002266747,0.0019849634,0.0016753398,0.0013514182,0.0010281947,0.0007204168,0.0004419284,0.00020507365,2.1240814e-5,0.00010986565,0.00017807398,0.00018934261,0.00015735865,0.00013477266,0.00021543312,0.0003732139,0.00056182465,0.0007587852,0.00094881933,0.0011183462,0.0012569905,0.001357078,0.0014132182,0.0014236136,0.0013899802,0.0013163807,0.0012106834,0.0010827666,0.0009445285,0.000809677,0.0006918051,0.0006018529,0.0005451107,0.00051675434,0.00050675945,0.0005075948,0.00052004633,0.00055288966,0.00061689375,0.00071662845,0.00084734324,0.0009982195,0.0011569732,0.0013110547,0.0014495521,0.0015633327,0.0016456284,0.0016916607,0.0016995404,0.0016697013,0.0016047267,0.0015097911,0.0013913815,0.001257579,0.0011167617,0.0009779477,0.00084959867,0.0007396064,0.00065428973,0.0005985974,0.0005756025],"type":"scatter","name":"|Mxy|","x":[-5000.0,-4974.937343358396,-4949.874686716792,-4924.812030075188,-4899.749373433584,-4874.68671679198,-4849.624060150376,-4824.561403508772,-4799.498746867168,-4774.436090225564,-4749.37343358396,-4724.310776942356,-4699.248120300752,-4674.185463659148,-4649.122807017544,-4624.06015037594,-4598.997493734336,-4573.934837092732,-4548.872180451128,-4523.809523809524,-4498.74686716792,-4473.684210526316,-4448.621553884712,-4423.558897243108,-4398.496240601504,-4373.4335839599,-4348.370927318296,-4323.308270676692,-4298.245614035088,-4273.182957393484,-4248.12030075188,-4223.057644110276,-4197.994987468672,-4172.932330827068,-4147.869674185464,-4122.80701754386,-4097.744360902256,-4072.6817042606517,-4047.6190476190477,-4022.5563909774437,-3997.4937343358397,-3972.4310776942357,-3947.3684210526317,-3922.3057644110277,-3897.2431077694237,-3872.1804511278197,-3847.1177944862156,-3822.0551378446116,-3796.9924812030076,-3771.9298245614036,-3746.8671679197996,-3721.8045112781956,-3696.7418546365916,-3671.6791979949876,-3646.6165413533836,-3621.5538847117796,-3596.4912280701756,-3571.4285714285716,-3546.3659147869676,-3521.3032581453635,-3496.2406015037595,-3471.1779448621555,-3446.1152882205515,-3421.0526315789475,-3395.9899749373435,-3370.9273182957395,-3345.8646616541355,-3320.8020050125315,-3295.7393483709275,-3270.6766917293235,-3245.6140350877195,-3220.5513784461155,-3195.4887218045114,-3170.4260651629074,-3145.3634085213034,-3120.3007518796994,-3095.2380952380954,-3070.1754385964914,-3045.1127819548874,-3020.0501253132834,-2994.9874686716794,-2969.9248120300754,-2944.8621553884714,-2919.7994987468674,-2894.7368421052633,-2869.6741854636593,-2844.6115288220553,-2819.5488721804513,-2794.4862155388473,-2769.4235588972433,-2744.3609022556393,-2719.2982456140353,-2694.2355889724313,-2669.1729323308273,-2644.1102756892233,-2619.0476190476193,-2593.9849624060153,-2568.9223057644112,-2543.8596491228072,-2518.7969924812032,-2493.7343358395988,-2468.6716791979948,-2443.6090225563908,-2418.5463659147867,-2393.4837092731827,-2368.4210526315787,-2343.3583959899747,-2318.2957393483707,-2293.2330827067667,-2268.1704260651627,-2243.1077694235587,-2218.0451127819547,-2192.9824561403507,-2167.9197994987467,-2142.8571428571427,-2117.7944862155387,-2092.7318295739346,-2067.6691729323306,-2042.6065162907269,-2017.5438596491229,-1992.4812030075188,-1967.4185463659148,-1942.3558897243108,-1917.2932330827068,-1892.2305764411028,-1867.1679197994988,-1842.1052631578948,-1817.0426065162908,-1791.9799498746868,-1766.9172932330828,-1741.8546365914788,-1716.7919799498748,-1691.7293233082708,-1666.6666666666667,-1641.6040100250627,-1616.5413533834587,-1591.4786967418547,-1566.4160401002507,-1541.3533834586467,-1516.2907268170427,-1491.2280701754387,-1466.1654135338347,-1441.1027568922307,-1416.0401002506267,-1390.9774436090227,-1365.9147869674186,-1340.8521303258146,-1315.7894736842106,-1290.7268170426066,-1265.6641604010026,-1240.6015037593984,-1215.5388471177944,-1190.4761904761904,-1165.4135338345864,-1140.3508771929824,-1115.2882205513783,-1090.2255639097743,-1065.1629072681703,-1040.1002506265663,-1015.0375939849624,-989.9749373433584,-964.9122807017544,-939.8496240601504,-914.7869674185464,-889.7243107769424,-864.6616541353384,-839.5989974937344,-814.5363408521304,-789.4736842105264,-764.4110275689223,-739.3483709273183,-714.2857142857143,-689.2230576441103,-664.1604010025063,-639.0977443609023,-614.0350877192982,-588.9724310776942,-563.9097744360902,-538.8471177944862,-513.7844611528822,-488.7218045112782,-463.6591478696742,-438.5964912280702,-413.5338345864662,-388.4711779448622,-363.40852130325817,-338.34586466165416,-313.28320802005015,-288.2205513784461,-263.1578947368421,-238.0952380952381,-213.0325814536341,-187.9699248120301,-162.90726817042608,-137.84461152882204,-112.78195488721805,-87.71929824561404,-62.65664160401003,-37.59398496240601,-12.531328320802006,12.531328320802006,37.59398496240601,62.65664160401003,87.71929824561404,112.78195488721805,137.84461152882204,162.90726817042608,187.9699248120301,213.0325814536341,238.0952380952381,263.1578947368421,288.2205513784461,313.28320802005015,338.34586466165416,363.40852130325817,388.4711779448622,413.5338345864662,438.5964912280702,463.6591478696742,488.7218045112782,513.7844611528822,538.8471177944862,563.9097744360902,588.9724310776942,614.0350877192982,639.0977443609023,664.1604010025063,689.2230576441103,714.2857142857143,739.3483709273183,764.4110275689223,789.4736842105264,814.5363408521304,839.5989974937344,864.6616541353384,889.7243107769424,914.7869674185464,939.8496240601504,964.9122807017544,989.9749373433584,1015.0375939849624,1040.1002506265663,1065.1629072681703,1090.2255639097743,1115.2882205513783,1140.3508771929824,1165.4135338345864,1190.4761904761904,1215.5388471177944,1240.6015037593984,1265.6641604010026,1290.7268170426066,1315.7894736842106,1340.8521303258146,1365.9147869674186,1390.9774436090227,1416.0401002506267,1441.1027568922307,1466.1654135338347,1491.2280701754387,1516.2907268170427,1541.3533834586467,1566.4160401002507,1591.4786967418547,1616.5413533834587,1641.6040100250627,1666.6666666666667,1691.7293233082708,1716.7919799498748,1741.8546365914788,1766.9172932330828,1791.9799498746868,1817.0426065162908,1842.1052631578948,1867.1679197994988,1892.2305764411028,1917.2932330827068,1942.3558897243108,1967.4185463659148,1992.4812030075188,2017.5438596491229,2042.6065162907269,2067.6691729323306,2092.7318295739346,2117.7944862155387,2142.8571428571427,2167.9197994987467,2192.9824561403507,2218.0451127819547,2243.1077694235587,2268.1704260651627,2293.2330827067667,2318.2957393483707,2343.3583959899747,2368.4210526315787,2393.4837092731827,2418.5463659147867,2443.6090225563908,2468.6716791979948,2493.7343358395988,2518.7969924812032,2543.8596491228072,2568.9223057644112,2593.9849624060153,2619.0476190476193,2644.1102756892233,2669.1729323308273,2694.2355889724313,2719.2982456140353,2744.3609022556393,2769.4235588972433,2794.4862155388473,2819.5488721804513,2844.6115288220553,2869.6741854636593,2894.7368421052633,2919.7994987468674,2944.8621553884714,2969.9248120300754,2994.9874686716794,3020.0501253132834,3045.1127819548874,3070.1754385964914,3095.2380952380954,3120.3007518796994,3145.3634085213034,3170.4260651629074,3195.4887218045114,3220.5513784461155,3245.6140350877195,3270.6766917293235,3295.7393483709275,3320.8020050125315,3345.8646616541355,3370.9273182957395,3395.9899749373435,3421.0526315789475,3446.1152882205515,3471.1779448621555,3496.2406015037595,3521.3032581453635,3546.3659147869676,3571.4285714285716,3596.4912280701756,3621.5538847117796,3646.6165413533836,3671.6791979949876,3696.7418546365916,3721.8045112781956,3746.8671679197996,3771.9298245614036,3796.9924812030076,3822.0551378446116,3847.1177944862156,3872.1804511278197,3897.2431077694237,3922.3057644110277,3947.3684210526317,3972.4310776942357,3997.4937343358397,4022.5563909774437,4047.6190476190477,4072.6817042606517,4097.744360902256,4122.80701754386,4147.869674185464,4172.932330827068,4197.994987468672,4223.057644110276,4248.12030075188,4273.182957393484,4298.245614035088,4323.308270676692,4348.370927318296,4373.4335839599,4398.496240601504,4423.558897243108,4448.621553884712,4473.684210526316,4498.74686716792,4523.809523809524,4548.872180451128,4573.934837092732,4598.997493734336,4624.06015037594,4649.122807017544,4674.185463659148,4699.248120300752,4724.310776942356,4749.37343358396,4774.436090225564,4799.498746867168,4824.561403508772,4849.624060150376,4874.68671679198,4899.749373433584,4924.812030075188,4949.874686716792,4974.937343358396,5000.0]},{"line":{"dash":"dash"},"y":[6.149651516116812e-6,3.677435165192216e-8,6.113102019502433e-6,6.18688226724339e-6,1.1034308271939979e-7,6.07721387410666e-6,6.224814558618307e-6,1.8397192400031262e-7,6.041967532159078e-6,6.26346908485367e-6,2.577010376068457e-7,6.007343775881019e-6,6.302866977872899e-6,3.315707194061987e-7,5.973323691491272e-6,6.343029833624305e-6,4.056214518834952e-7,5.939888644240638e-6,6.383979743074906e-6,4.798939598429109e-7,5.90702025338143e-6,6.425739320256677e-6,5.544292638774881e-7,5.87470036741731e-6,6.468331733918747e-6,6.29268736952063e-7,5.842911039176728e-6,6.511780738662369e-6,7.044541604861001e-7,5.811634501843826e-6,6.55611070784101e-6,7.800277818784659e-7,5.780853144116577e-6,6.6013466672903966e-6,8.560323736339084e-7,5.7505494856333825e-6,6.647514330471929e-6,9.325112928800281e-7,5.720706152358731e-6,6.694640134351004e-6,1.0095085430521243e-6,5.69130585206563e-6,6.742751277762173e-6,1.0870688373243004e-6,5.6623313487404345e-6,6.79187576001223e-6,1.1652376632383102e-6,5.6337654376861535e-6,6.842042422096463e-6,1.244061349902858e-6,5.605590919619924e-6,6.893280989254431e-6,1.3235871373305094e-6,5.5777905742294935e-6,6.9456221148776155e-6,1.4038632474899696e-6,5.550347134077244e-6,6.999097427921566e-6,1.4849389592884282e-6,5.523243256656115e-6,7.0537395801262265e-6,1.5668646846131549e-6,5.496461496634489e-6,7.1095822977857375e-6,1.6496920494672614e-6,5.469984276798557e-6,7.166660433968036e-6,1.7334739761241963e-6,5.443793859622199e-6,7.225010025879135e-6,1.818264771149267e-6,5.4178723141958836e-6,7.2846683504943e-6,1.9041202150040535e-6,5.392201487424291e-6,7.345673989184849e-6,1.9910976580412624e-6,5.366762968739264e-6,7.4080668893605505e-6,2.0792561185173732e-6,5.341538057578047e-6,7.471888434134076e-6,2.1686563875793705e-6,5.316507727120797e-6,7.537181512924469e-6,2.259361138177935e-6,5.291652586961892e-6,7.603990596243928e-6,2.3514350389878237e-6,5.2669528453747965e-6,7.672361815815266e-6,2.444944876132627e-6,5.24238826744404e-6,7.74234304699727e-6,2.5399596788909705e-6,5.217938133564477e-6,7.81398399765103e-6,2.636550854069708e-6,5.193581194148427e-6,7.887336300745214e-6,2.7347923267139763e-6,5.1692956227552665e-6,7.962453612485296e-6,2.834760688462236e-6,5.145058966912783e-6,8.039391716957054e-6,2.9365353559422058e-6,5.120848094802365e-6,8.118208634737956e-6,3.040198735264395e-6,5.096639141615294e-6,8.198964740759073e-6,3.145836399548663e-6,5.072407449677296e-6,8.281722886458856e-6,3.2535372743461504e-6,5.048127507370748e-6,8.366548530660566e-6,3.363393835206352e-6,5.0237728836126954e-6,8.453509878594182e-6,3.475502317974751e-6,4.999316157280075e-6,8.542678028179768e-6,3.589962940321445e-6,4.974728844498474e-6,8.634127127096284e-6,3.706880139336351e-6,4.9499813186925335e-6,8.727934537885367e-6,3.8263628221604e-6,4.925042727477185e-6,8.82418101509889e-6,3.948524634225096e-6,4.899880902784968e-6,8.9229508927059e-6,4.073484244263817e-6,4.874462265464284e-6,9.024332284037164e-6,4.201365648100602e-6,4.848751723449707e-6,9.12841729496398e-6,4.332298493103691e-6,4.8227125626158896e-6,9.235302251048221e-6,4.466418424162019e-6,4.796306329927035e-6,9.345087939377092e-6,4.6038674535501645e-6,4.7694927086541416e-6,9.45787986791082e-6,4.744794356370004e-6,4.742229384120375e-6,9.57378854136783e-6,4.889355093411065e-6,4.714471900135776e-6,9.692929757007756e-6,5.037713264553932e-6,4.68617350393467e-6,9.815424920082024e-6,5.190040593547831e-6,4.6572849806059415e-6,9.94140138324491e-6,5.346517449525911e-6,4.627754474456296e-6,1.0070992808426994e-5,5.507333405263314e-6,4.597527295846505e-6,1.0204339555759387e-5,5.672687837612426e-6,4.566545714556424e-6,1.0341589101031792e-5,5.842790572903869e-6,4.534748735596098e-6,1.0482896483540457e-5,6.017862581399367e-6,4.502071857720759e-6,1.062842478750409e-5,6.198136724647962e-6,4.468446812560019e-6,1.0778345660437889e-5,6.383858561718345e-6,4.433801281990644e-6,1.0932839870080283e-5,6.5752872180668965e-6,4.398058592605128e-6,1.1092097905858862e-5,6.7726963239673615e-6,4.3611373849094454e-6,1.125632062626025e-5,6.976375028533346e-6,4.322951253677275e-6,1.1425719957882103e-5,7.186629096239698e-6,4.283408358599366e-6,1.1600519651398468e-5,7.4037820942372885e-6,4.242411000145275e-6,1.1780956097141988e-5,7.628176677725754e-6,4.199855160102416e-6,1.1967279209950591e-5,7.8601759859616e-6,4.155629998894605e-6,1.2159753386687091e-5,8.100165156121523e-6,4.1096173103880985e-6,1.2358658543289449e-5,8.348552968864602e-6,4.061690925658023e-6,1.2564291243130018e-5,8.605773638747685e-6,4.011716062274936e-6,1.2776965920770891e-5,8.872288763387666e-6,3.959548613807603e-6,1.299701621440847e-5,9.14858944872073e-6,3.905034371356233e-6,1.3224796415664232e-5,9.435198627293489e-6,3.848008172392624e-6,1.3460683051464836e-5,9.732673592597754e-6,3.788292965653346e-6,1.370507660864844e-5,1.0041608769062178e-5,3.7256987864698646e-6,1.3958403419858179e-5,1.0362638747009983e-5,3.6600216289753553e-6,1.4221117725353037e-5,1.0696441608338262e-5,3.5910422070533477e-6,1.4493703932071904e-5,1.104374257892294e-5,3.5185245870177583e-6,1.4776679090226595e-5,1.1405318040818487e-5,3.442214681700545e-6,1.5070595613517792e-5,1.1781999949584572e-5,3.3618385859499875e-6,1.5376044269133213e-5,1.2174680700918164e-5,3.2771007360051305e-6,1.5693657470342048e-5,1.2584318500548443e-5,3.1876818716230927e-6,1.602411290664339e-5,1.3011943299529259e-5,3.093236776249026e-6,1.6368137551843498e-5,1.3458663361029812e-5,2.9933917665597905e-6,1.6726512095817346e-5,1.3925672538433767e-5,2.8877419020784387e-6,1.7100075853314666e-5,1.4414258354361704e-5,2.775847875773098e-6,1.7489732208087285e-5,1.4925810981804127e-5,2.657232546100627e-6,1.7896454661724525e-5,1.5461833244566484e-5,2.531377062258361e-6,1.8321293565596145e-5,1.60239517727928e-5,2.3977165269044253e-6,1.8765383624821665e-5,1.661392946581103e-5,2.2556351348404462e-6,1.9229952279352285e-5,1.723367944322968e-5,2.1044607123927663e-6,1.971632908091924e-5,1.7885280688892013e-5,1.9434585739067827e-6,2.022595620335123e-5,1.8570995625898932e-5,1.7718245983355762e-6,2.0760400249503033e-5,1.9293289903304274e-5,1.588677406969173e-6,2.1321365536713174e-5,2.00548547126e-5,1.3930495146583027e-6,2.1910709082624017e-5,2.085863201590261e-5,1.183877292884475e-6,2.2530457541561763e-5,2.170784312297295e-5,9.599895653417472e-7,2.3182826391183026e-5,2.2606021138160663e-5,7.200946175792218e-7,2.387024171766229e-5,2.3557047884676145e-5,4.627653684424234e-7,2.4595365011510872e-5,2.456519602683155e-5,1.8642240145575002e-7,2.536112146133593e-5,2.5635177242185515e-5,1.1068549992517688e-7,2.6170732322875015e-5,2.677219745642666e-5,4.3050373936221745e-7,2.7027752049517195e-5,2.7982020345934675e-5,7.751977212009143e-7,2.7936111007666622e-5,2.9271040554616555e-5,1.147182702940681e-6,2.890016475513527e-5,3.0646368352082036e-5,1.549158412221668e-6,2.992475107128594e-5,3.21159278252344e-5,1.9841493142446283e-6,3.10152561606935e-5,3.368857112252775e-5,2.4555515967629162e-6,3.217769176480191e-5,3.537421181641507e-5,2.967188172809808e-6,3.341878528556843e-5,3.7183981119997324e-5,3.523373287948836e-6,3.474608549605928e-5,3.913041153017447e-5,4.128988680394973e-6,3.6168087000616316e-5,4.122765352479254e-5,4.789573695328623e-6,3.7694377340325085e-5,4.349173226278334e-5,5.511432318385285e-6,3.933581158420361e-5,4.594085292539398e-5,6.301760833063273e-6,4.110472041877284e-5,4.8595765463134865e-5,7.168800711686826e-6,4.301515928753622e-5,5.1480202275290574e-5,8.12202255907387e-6,4.5083208063852824e-5,5.46214058617077e-5,9.172348439626625e-6,4.732733328804097e-5,5.805076808453256e-5,1.033242192617994e-5,4.976882827005038e-5,6.180460863627665e-5,1.1616937801020962e-5,5.2432350669710374e-5,6.592512814844707e-5,1.3043046764597874e-5,5.534658282693514e-5,7.04615817127437e-5,1.4630855040840352e-5,5.854504761307662e-5,7.547173231928067e-5,1.6404044809496334e-5,6.20671225620089e-5,8.102366206231715e-5,1.839064950578777e-5,6.595930841130598e-5,8.719804362904043e-5,2.0624028998151456e-5,7.027682616184579e-5,9.409100790139287e-5,2.3144104572960934e-5,7.508564101427922e-5,0.0001018177887003284,2.5998934108836262e-5,8.046504427480196e-5,0.00011051738716657986,2.924673598485409e-5,8.651096838605126e-5,0.00012035858181883808,3.2958509287743866e-5,9.334026894641707e-5,0.00013154772321236936,3.7221452012915604e-5,0.0001010962841335668,0.00014433890238484706,4.2143454082374443e-5,0.00010995607699087227,0.0001590472755665381,4.7859045472203806e-5,0.00012013987140598624,0.0001760665579124829,5.453731970432552e-5,0.00013192327373714053,0.00019589192180359332,6.239253448569337e-5,0.00014565282132847056,0.00021914959446334246,7.169830449170627e-5,0.00016176490916876065,0.0002466338752170375,8.280648671339382e-5,0.00018080635513647837,0.00027934972824842253,9.61718102493267e-5,0.00020344932339527822,0.0003185506230624637,0.00011238239787987627,0.00023047680574161844,0.0003657351409235801,0.00013219278606850765,0.0002626647599085377,0.00042248492024774166,0.00015654494615406362,0.0003003268548177174,0.0004897640607496996,0.00018653143114567188,0.00034173044816838646,0.0005653759943856308,0.0002231795746902925,0.00037739999305790473,0.0006345949450070658,0.0002668853524049501,0.0003670521349003577,0.0006314809870056101,0.0003182241720688263,0.00012346929597240231,0.00023905594671240097,0.00042180195769862534,0.0015594858016850484,0.0027010144832771686,0.0021499916719943737,0.025328173162394118,0.08236737089353888,0.1845844346522231,0.33103183850853807,0.5050704457107005,0.6788131153273665,0.8239622061026355,0.9232617587045594,0.9760930102794774,0.9953805568439795,0.998478502741332,0.9981758573488341,0.9990253196521659,0.9998196363449097,0.9987023760105858,0.9963263812801707,0.9950988802506145,0.9963263812801707,0.9987023760105858,0.9998196363449096,0.9990253196521658,0.9981758573488342,0.9984785027413322,0.9953805568439795,0.9760930102794775,0.9232617587045596,0.8239622061026354,0.6788131153273664,0.5050704457107005,0.3310318385085381,0.18458443465222307,0.08236737089353889,0.025328173162394125,0.0021499916719943733,0.0027010144832771686,0.0015594858016850484,0.00042180195769862534,0.00023905594671240103,0.00012346929597240231,0.0003182241720688262,0.0006314809870056101,0.0003670521349003577,0.00026688535240495013,0.000634594945007065,0.00037739999305790424,0.0002231795746902979,0.0005653759943856367,0.00034173044816839904,0.0001865314311456854,0.0004897640607497024,0.0003003268548177357,0.0001565449461540356,0.0004224849202477186,0.0002626647599085213,0.00013219278606852583,0.0003657351409236291,0.00023047680574161505,0.00011238239787987401,0.0003185506230624705,0.00020344932339527822,9.617181024931148e-5,0.0002793497282483988,0.00018080635513651182,8.280648671338159e-5,0.00024663387521702587,0.00016176490916872452,7.16983044917722e-5,0.00021914959446345483,0.00014565282132849121,6.239253448569077e-5,0.00019589192180360096,0.00013192327373713346,5.453731970433257e-5,0.00017606655791249217,0.00012013987140598495,4.785904547220343e-5,0.0001590472755665381,0.0001099560769908724,4.214345408237436e-5,0.00014433890238484703,0.00010109628413356678,3.7221452012915604e-5,0.00013154772321236942,9.33402689464171e-5,3.2958509287743846e-5,0.00012035858181883809,8.651096838605147e-5,2.9246735984851437e-5,0.00011051738716657309,8.046504427479863e-5,2.5998934108838244e-5,0.0001018177887003065,7.508564101426337e-5,2.314410457296692e-5,9.409100790136244e-5,7.027682616179909e-5,2.062402899817051e-5,8.719804362903928e-5,6.595930841129652e-5,1.8390649505774002e-5,8.102366206230239e-5,6.206712256204607e-5,1.6404044809496328e-5,7.547173231930308e-5,5.8545047613094446e-5,1.4630855040854511e-5,7.046158171273265e-5,5.534658282694061e-5,1.3043046764613756e-5,6.592512814844738e-5,5.243235066969763e-5,1.1616937801001004e-5,6.180460863626474e-5,4.9768828270030065e-5,1.0332421926177187e-5,5.805076808453244e-5,4.7327333288034774e-5,9.1723484396272e-6,5.462140586170752e-5,4.508320806385282e-5,8.12202255907385e-6,5.1480202275290534e-5,4.301515928753622e-5,7.168800711686822e-6,4.859576546313485e-5,4.11047204187728e-5,6.301760833063237e-6,4.594085292539408e-5,3.933581158420348e-5,5.511432318384911e-6,4.349173226278817e-5,3.76943773403349e-5,4.7895736953195735e-6,4.1227653524787465e-5,3.6168087000699115e-5,4.128988680415926e-6,3.913041153018276e-5,3.474608549608876e-5,3.523373287928933e-6,3.718398111997656e-5,3.3418785285549164e-5,2.9671881728443115e-6,3.5374211816291134e-5,3.217769176482082e-5,2.4555515968126654e-6,3.368857112252775e-5,3.101525616061504e-5,1.9841493142221904e-6,3.211592782527544e-5,2.9924751071210268e-5,1.5491584122609828e-6,3.064636835203513e-5,2.890016475517536e-5,1.1471827029574352e-6,2.9271040554557144e-5,2.7936111007651593e-5,7.751977211830409e-7,2.7982020345939452e-5,2.7027752049555254e-5,4.305037393507391e-7,2.677219745641882e-5,2.617073232287346e-5,1.1068549992533561e-7,2.5635177242185322e-5,2.5361121461335933e-5,1.8642240145572657e-7,2.4565196026831563e-5,2.4595365011510872e-5,4.6276536844245024e-7,2.3557047884676118e-5,2.3870241717662315e-5,7.200946175792855e-7,2.260602113816114e-5,2.3182826391182918e-5,9.599895653429838e-7,2.170784312297177e-5,2.2530457541562593e-5,1.1838772928820194e-6,2.0858632015900135e-5,2.191070908261842e-5,1.39304951463739e-6,2.005485471261791e-5,2.1321365536698327e-5,1.5886774069867878e-6,1.929328990329594e-5,2.076040024950951e-5,1.7718245983382071e-6,1.8570995625892508e-5,2.0225956203351244e-5,1.943458573918154e-6,1.7885280688887415e-5,1.9716329080897287e-5,2.104460712392606e-6,1.7233679443213134e-5,1.9229952279367284e-5,2.2556351348646337e-6,1.661392946580491e-5,1.8765383624834902e-5,2.397716526915869e-6,1.6023951772766007e-5,1.8321293565610446e-5,2.5313770622552102e-6,1.546183324456094e-5,1.7896454661725094e-5,2.6572325461005897e-6,1.4925810981804166e-5,1.7489732208087213e-5,2.7758478757730424e-6,1.4414258354361717e-5,1.7100075853314656e-5,2.887741902078436e-6,1.3925672538433797e-5,1.6726512095817362e-5,2.993391766559775e-6,1.345866336102985e-5,1.6368137551843647e-5,3.0932367762487684e-6,1.3011943299524734e-5,1.6024112906650657e-5,3.1876818716251577e-6,1.2584318500543913e-5,1.5693657470324477e-5,3.277100735993701e-6,1.217468070094309e-5,1.5376044269133488e-5,3.3618385859556597e-6,1.1781999949577577e-5,1.5070595613502683e-5,3.4422146817199476e-6,1.1405318040805827e-5,1.4776679090240462e-5,3.5185245870177472e-6,1.1043742578923301e-5,1.4493703932074587e-5,3.591042207047511e-6,1.0696441608327459e-5,1.4221117725365568e-5,3.6600216290019873e-6,1.0362638747002324e-5,1.3958403419850427e-5,3.7256987864714876e-6,1.0041608769061427e-5,1.3705076608660632e-5,3.788292965642019e-6,9.73267359259652e-6,1.3460683051465928e-5,3.848008172391939e-6,9.43519862729394e-6,1.3224796415664253e-5,3.90503437135627e-6,9.148589448720704e-6,1.2997016214408501e-5,3.959548613807591e-6,8.872288763387685e-6,1.277696592077085e-5,4.0117160622748885e-6,8.605773638747814e-6,1.2564291243129936e-5,4.0616909256581594e-6,8.348552968874344e-6,1.2358658543288656e-5,4.109617310382328e-6,8.100165156152027e-6,1.2159753386794432e-5,4.155629998898024e-6,7.860175985951871e-6,1.1967279209980264e-5,4.199855160071492e-6,7.628176677830535e-6,1.1780956096991541e-5,4.242411000123459e-6,7.403782094220552e-6,1.1600519651421546e-5,4.283408358601921e-6,7.186629096239698e-6,1.1425719957907646e-5,4.322951253663798e-6,6.976375028566021e-6,1.1256320626300148e-5,4.361137384863459e-6,6.772696323956335e-6,1.109209790583617e-5,4.398058592691187e-6,6.575287218035072e-6,1.0932839870094473e-5,4.433801281968097e-6,6.3838585617142545e-6,1.077834566040193e-5,4.468446812563775e-6,6.198136724649502e-6,1.0628424787503518e-5,4.502071857720793e-6,6.017862581399559e-6,1.0482896483540474e-5,4.5347487355960734e-6,5.84279057290386e-6,1.0341589101031787e-5,4.5665457145564115e-6,5.6726878376123605e-6,1.0204339555759457e-5,4.597527295846456e-6,5.5073334052634515e-6,1.007099280842607e-5,4.627754474453655e-6,5.3465174495211155e-6,9.941401383240594e-6,4.657284980610386e-6,5.190040593559931e-6,9.815424920068695e-6,4.686173503931927e-6,5.03771326450282e-6,9.692929757004622e-6,4.714471900137534e-6,4.889355093426056e-6,9.573788541361755e-6,4.742229384095871e-6,4.744794356351049e-6,9.457879867910818e-6,4.76949270866522e-6,4.603867453540863e-6,9.345087939362868e-6,4.7963063299391915e-6,4.466418424175268e-6,9.235302251044606e-6,4.822712562631838e-6,4.332298493120547e-6,9.128417294987098e-6,4.848751723462727e-6,4.201365648096252e-6,9.024332284041496e-6,4.874462265468197e-6,4.073484244258502e-6,8.922950892706166e-6,4.899880902784826e-6,3.948524634225056e-6,8.82418101509887e-6,4.9250427274772285e-6,3.826362822160381e-6,8.727934537885362e-6,4.949981318692535e-6,3.706880139336357e-6,8.634127127096257e-6,4.974728844498515e-6,3.589962940321423e-6,8.542678028179489e-6,4.9993161572772515e-6,3.475502317970576e-6,8.453509878594815e-6,5.023772883606947e-6,3.363393835210242e-6,8.366548530669016e-6,5.048127507377265e-6,3.253537274340434e-6,8.281722886458195e-6,5.0724074496892935e-6,3.1458363995559408e-6,8.198964740755502e-6,5.096639141610229e-6,3.040198735264099e-6,8.118208634737046e-6,5.1208480948023565e-6,2.9365353559507587e-6,8.039391716961946e-6,5.1450589668969246e-6,2.8347606884676232e-6,7.962453612497132e-6,5.169295622738778e-6,2.7347923267075473e-6,7.887336300744701e-6,5.193581194143113e-6,2.6365508540791316e-6,7.813983997641308e-6,5.217938133571322e-6,2.5399596788893404e-6,7.742343046997431e-6,5.24238826744455e-6,2.4449448761322653e-6,7.67236181581525e-6,5.2669528453748465e-6,2.351435038987862e-6,7.603990596243911e-6,5.291652586961893e-6,2.259361138177931e-6,7.537181512924457e-6,5.316507727120851e-6,2.168656387579366e-6,7.4718884341339995e-6,5.341538057578915e-6,2.0792561185256246e-6,7.408066889359787e-6,5.366762968746431e-6,1.991097658000881e-6,7.3456739891909824e-6,5.392201487443529e-6,1.904120215041912e-6,7.284668350578068e-6,5.417872314266624e-6,1.818264771128293e-6,7.225010025781087e-6,5.44379385957019e-6,1.7334739761114255e-6,7.166660433989606e-6,5.4699842768405035e-6,1.6496920494672614e-6,7.10958229779244e-6,5.496461496662024e-6,1.5668646846396808e-6,7.053739580060203e-6,5.52324325656904e-6,1.4849389592456346e-6,6.999097427960229e-6,5.550347134144374e-6,1.4038632474458955e-6,6.945622114880306e-6,5.577790574225425e-6,1.3235871373460256e-6,6.89328098924676e-6,5.605590919633079e-6,1.2440613498992934e-6,6.842042422097133e-6,5.6337654376861586e-6,1.1652376632384588e-6,6.791875760012273e-6,5.6623313487404235e-6,1.0870688373243006e-6,6.742751277762174e-6,5.691305852065618e-6,1.0095085430521052e-6,6.694640134351032e-6,5.720706152358774e-6,9.325112928800615e-7,6.647514330474312e-6,5.750549485632832e-6,8.560323736430741e-7,6.601346667288167e-6,5.780853144109628e-6,7.800277818736753e-7,6.556110707819787e-6,5.81163450185535e-6,7.044541604959903e-7,6.511780738667922e-6,5.842911039181354e-6,6.292687369608372e-7,6.468331733955836e-6,5.874700367420421e-6,5.544292638794867e-7,6.425739320256668e-6,5.9070202534151165e-6,4.798939598601531e-7,6.383979743091566e-6,5.9398886442584e-6,4.056214518941665e-7,6.343029833597594e-6,5.973323691500945e-6,3.315707193763154e-7,6.3028669778727025e-6,6.007343775886567e-6,2.5770103761301377e-7,6.263469084857804e-6,6.0419675321603004e-6,1.8397192399704009e-7,6.224814558616832e-6,6.077213874106289e-6,1.1034308271935396e-7,6.186882267243426e-6,6.1131020195024055e-6,3.6774351651905115e-8,6.14965151611682e-6],"type":"scatter","name":"|FT(B₁(t))|","x":[-47031.25000000001,-46927.083333333336,-46822.91666666667,-46718.75000000001,-46614.583333333336,-46510.41666666667,-46406.25000000001,-46302.083333333336,-46197.91666666667,-46093.75000000001,-45989.583333333336,-45885.41666666667,-45781.25000000001,-45677.083333333336,-45572.91666666667,-45468.75000000001,-45364.583333333336,-45260.41666666667,-45156.25000000001,-45052.083333333336,-44947.91666666667,-44843.75000000001,-44739.583333333336,-44635.41666666667,-44531.25000000001,-44427.083333333336,-44322.91666666667,-44218.75000000001,-44114.583333333336,-44010.41666666667,-43906.25000000001,-43802.083333333336,-43697.91666666667,-43593.75000000001,-43489.583333333336,-43385.41666666667,-43281.25000000001,-43177.083333333336,-43072.91666666667,-42968.75000000001,-42864.583333333336,-42760.41666666667,-42656.25000000001,-42552.083333333336,-42447.91666666667,-42343.75000000001,-42239.583333333336,-42135.41666666667,-42031.25000000001,-41927.083333333336,-41822.91666666667,-41718.75000000001,-41614.583333333336,-41510.41666666667,-41406.25000000001,-41302.083333333336,-41197.91666666667,-41093.75000000001,-40989.583333333336,-40885.41666666667,-40781.25000000001,-40677.083333333336,-40572.91666666667,-40468.75000000001,-40364.583333333336,-40260.41666666667,-40156.25000000001,-40052.083333333336,-39947.91666666667,-39843.75000000001,-39739.583333333336,-39635.41666666667,-39531.25000000001,-39427.083333333336,-39322.91666666667,-39218.75000000001,-39114.583333333336,-39010.41666666667,-38906.25000000001,-38802.083333333336,-38697.91666666667,-38593.75000000001,-38489.583333333336,-38385.41666666667,-38281.25000000001,-38177.083333333336,-38072.91666666667,-37968.75000000001,-37864.583333333336,-37760.41666666667,-37656.25000000001,-37552.083333333336,-37447.91666666667,-37343.75000000001,-37239.583333333336,-37135.41666666667,-37031.25000000001,-36927.083333333336,-36822.91666666667,-36718.75000000001,-36614.583333333336,-36510.41666666667,-36406.25000000001,-36302.083333333336,-36197.91666666667,-36093.75000000001,-35989.583333333336,-35885.41666666667,-35781.25000000001,-35677.083333333336,-35572.91666666667,-35468.75000000001,-35364.583333333336,-35260.41666666667,-35156.25000000001,-35052.083333333336,-34947.91666666667,-34843.75000000001,-34739.583333333336,-34635.41666666667,-34531.25000000001,-34427.083333333336,-34322.91666666667,-34218.75000000001,-34114.583333333336,-34010.41666666667,-33906.25000000001,-33802.083333333336,-33697.91666666667,-33593.75000000001,-33489.583333333336,-33385.41666666667,-33281.25000000001,-33177.083333333336,-33072.91666666667,-32968.75000000001,-32864.583333333336,-32760.41666666667,-32656.250000000004,-32552.083333333336,-32447.91666666667,-32343.750000000004,-32239.583333333336,-32135.41666666667,-32031.250000000004,-31927.083333333336,-31822.91666666667,-31718.750000000004,-31614.583333333336,-31510.41666666667,-31406.250000000004,-31302.083333333336,-31197.91666666667,-31093.750000000004,-30989.583333333336,-30885.41666666667,-30781.250000000004,-30677.083333333336,-30572.916666666668,-30468.750000000004,-30364.583333333336,-30260.416666666668,-30156.250000000004,-30052.083333333336,-29947.916666666668,-29843.750000000004,-29739.583333333336,-29635.416666666668,-29531.250000000004,-29427.083333333336,-29322.916666666668,-29218.750000000004,-29114.583333333336,-29010.416666666668,-28906.250000000004,-28802.083333333336,-28697.916666666668,-28593.750000000004,-28489.583333333336,-28385.416666666668,-28281.250000000004,-28177.083333333336,-28072.916666666668,-27968.750000000004,-27864.583333333336,-27760.416666666668,-27656.250000000004,-27552.083333333336,-27447.916666666668,-27343.750000000004,-27239.583333333336,-27135.416666666668,-27031.250000000004,-26927.083333333336,-26822.916666666668,-26718.750000000004,-26614.583333333336,-26510.416666666668,-26406.250000000004,-26302.083333333336,-26197.916666666668,-26093.750000000004,-25989.583333333336,-25885.416666666668,-25781.250000000004,-25677.083333333336,-25572.916666666668,-25468.750000000004,-25364.583333333336,-25260.416666666668,-25156.250000000004,-25052.083333333336,-24947.916666666668,-24843.750000000004,-24739.583333333336,-24635.416666666668,-24531.250000000004,-24427.083333333336,-24322.916666666668,-24218.750000000004,-24114.583333333336,-24010.416666666668,-23906.250000000004,-23802.083333333336,-23697.916666666668,-23593.750000000004,-23489.583333333336,-23385.416666666668,-23281.250000000004,-23177.083333333336,-23072.916666666668,-22968.750000000004,-22864.583333333336,-22760.416666666668,-22656.250000000004,-22552.083333333336,-22447.916666666668,-22343.750000000004,-22239.583333333336,-22135.416666666668,-22031.250000000004,-21927.083333333336,-21822.916666666668,-21718.750000000004,-21614.583333333336,-21510.416666666668,-21406.250000000004,-21302.083333333336,-21197.916666666668,-21093.750000000004,-20989.583333333336,-20885.416666666668,-20781.250000000004,-20677.083333333336,-20572.916666666668,-20468.750000000004,-20364.583333333336,-20260.416666666668,-20156.250000000004,-20052.083333333336,-19947.916666666668,-19843.750000000004,-19739.583333333336,-19635.416666666668,-19531.250000000004,-19427.083333333336,-19322.916666666668,-19218.750000000004,-19114.583333333336,-19010.416666666668,-18906.250000000004,-18802.083333333336,-18697.916666666668,-18593.750000000004,-18489.583333333336,-18385.416666666668,-18281.250000000004,-18177.083333333336,-18072.916666666668,-17968.750000000004,-17864.583333333336,-17760.416666666668,-17656.250000000004,-17552.083333333336,-17447.916666666668,-17343.750000000004,-17239.583333333336,-17135.416666666668,-17031.250000000004,-16927.083333333336,-16822.916666666668,-16718.750000000004,-16614.583333333336,-16510.416666666668,-16406.250000000004,-16302.083333333338,-16197.91666666667,-16093.750000000005,-15989.583333333338,-15885.41666666667,-15781.250000000005,-15677.083333333338,-15572.91666666667,-15468.750000000005,-15364.583333333338,-15260.41666666667,-15156.250000000005,-15052.083333333338,-14947.91666666667,-14843.750000000005,-14739.583333333338,-14635.41666666667,-14531.250000000005,-14427.083333333338,-14322.91666666667,-14218.750000000005,-14114.583333333334,-14010.41666666667,-13906.250000000005,-13802.083333333334,-13697.91666666667,-13593.750000000005,-13489.583333333334,-13385.41666666667,-13281.250000000005,-13177.083333333334,-13072.91666666667,-12968.750000000005,-12864.583333333334,-12760.41666666667,-12656.250000000005,-12552.083333333334,-12447.91666666667,-12343.750000000005,-12239.583333333334,-12135.41666666667,-12031.250000000005,-11927.083333333334,-11822.91666666667,-11718.750000000005,-11614.583333333334,-11510.41666666667,-11406.250000000005,-11302.083333333334,-11197.91666666667,-11093.750000000005,-10989.583333333334,-10885.41666666667,-10781.250000000005,-10677.083333333334,-10572.91666666667,-10468.750000000005,-10364.583333333334,-10260.41666666667,-10156.250000000005,-10052.083333333334,-9947.91666666667,-9843.750000000005,-9739.583333333334,-9635.41666666667,-9531.250000000005,-9427.083333333334,-9322.91666666667,-9218.750000000005,-9114.583333333334,-9010.41666666667,-8906.250000000005,-8802.083333333334,-8697.91666666667,-8593.750000000005,-8489.583333333334,-8385.41666666667,-8281.250000000005,-8177.083333333333,-8072.916666666669,-7968.750000000005,-7864.583333333333,-7760.416666666669,-7656.250000000005,-7552.083333333333,-7447.916666666669,-7343.750000000005,-7239.583333333333,-7135.416666666669,-7031.250000000005,-6927.083333333333,-6822.916666666669,-6718.750000000005,-6614.583333333333,-6510.416666666669,-6406.250000000005,-6302.083333333333,-6197.916666666669,-6093.750000000005,-5989.583333333333,-5885.416666666669,-5781.250000000005,-5677.083333333333,-5572.916666666669,-5468.750000000005,-5364.583333333333,-5260.416666666669,-5156.250000000005,-5052.083333333333,-4947.916666666669,-4843.750000000005,-4739.583333333333,-4635.416666666669,-4531.250000000005,-4427.083333333333,-4322.916666666669,-4218.750000000005,-4114.583333333333,-4010.4166666666692,-3906.250000000005,-3802.0833333333335,-3697.9166666666692,-3593.750000000005,-3489.5833333333335,-3385.4166666666692,-3281.250000000005,-3177.0833333333335,-3072.9166666666692,-2968.750000000005,-2864.5833333333335,-2760.4166666666692,-2656.250000000005,-2552.0833333333335,-2447.9166666666692,-2343.750000000005,-2239.5833333333335,-2135.4166666666692,-2031.2500000000048,-1927.0833333333333,-1822.916666666669,-1718.7500000000048,-1614.5833333333333,-1510.416666666669,-1406.2500000000048,-1302.0833333333333,-1197.916666666669,-1093.7500000000048,-989.5833333333334,-885.4166666666691,-781.2500000000049,-677.0833333333334,-572.9166666666691,-468.75000000000483,-364.5833333333333,-260.4166666666691,-156.25000000000486,-52.083333333333336,52.083333333330906,156.24999999999514,260.4166666666667,364.5833333333309,468.74999999999517,572.9166666666666,677.0833333333309,781.2499999999951,885.4166666666666,989.5833333333309,1093.7499999999952,1197.9166666666667,1302.083333333331,1406.2499999999952,1510.4166666666667,1614.583333333331,1718.7499999999952,1822.9166666666667,1927.083333333331,2031.2499999999952,2135.4166666666665,2239.5833333333308,2343.749999999995,2447.9166666666665,2552.0833333333308,2656.249999999995,2760.4166666666665,2864.5833333333308,2968.749999999995,3072.9166666666665,3177.0833333333308,3281.249999999995,3385.4166666666665,3489.5833333333308,3593.749999999995,3697.9166666666665,3802.0833333333308,3906.249999999995,4010.4166666666665,4114.583333333331,4218.749999999995,4322.916666666667,4427.083333333331,4531.249999999995,4635.416666666667,4739.583333333331,4843.749999999995,4947.916666666667,5052.083333333331,5156.249999999995,5260.416666666667,5364.583333333331,5468.749999999995,5572.916666666667,5677.083333333331,5781.249999999995,5885.416666666667,5989.583333333331,6093.749999999995,6197.916666666667,6302.083333333331,6406.249999999995,6510.416666666667,6614.583333333331,6718.749999999995,6822.916666666667,6927.083333333331,7031.249999999995,7135.416666666667,7239.583333333331,7343.749999999995,7447.916666666667,7552.083333333331,7656.249999999995,7760.416666666667,7864.583333333331,7968.749999999995,8072.916666666667,8177.083333333331,8281.249999999995,8385.416666666666,8489.58333333333,8593.749999999995,8697.916666666666,8802.08333333333,8906.249999999995,9010.416666666666,9114.58333333333,9218.749999999995,9322.916666666666,9427.08333333333,9531.249999999995,9635.416666666666,9739.58333333333,9843.749999999995,9947.916666666666,10052.08333333333,10156.249999999995,10260.416666666666,10364.58333333333,10468.749999999995,10572.916666666666,10677.08333333333,10781.249999999995,10885.416666666666,10989.58333333333,11093.749999999995,11197.916666666666,11302.08333333333,11406.249999999995,11510.416666666666,11614.58333333333,11718.749999999995,11822.916666666666,11927.08333333333,12031.249999999995,12135.416666666666,12239.58333333333,12343.749999999995,12447.916666666666,12552.08333333333,12656.249999999995,12760.416666666666,12864.58333333333,12968.749999999995,13072.916666666666,13177.08333333333,13281.249999999995,13385.416666666666,13489.58333333333,13593.749999999995,13697.916666666666,13802.08333333333,13906.249999999995,14010.416666666666,14114.58333333333,14218.749999999995,14322.916666666666,14427.08333333333,14531.249999999995,14635.416666666666,14739.58333333333,14843.749999999995,14947.916666666666,15052.08333333333,15156.249999999995,15260.416666666666,15364.58333333333,15468.749999999995,15572.916666666666,15677.08333333333,15781.249999999995,15885.416666666666,15989.58333333333,16093.749999999995,16197.916666666666,16302.08333333333,16406.249999999996,16510.416666666668,16614.583333333332,16718.749999999996,16822.916666666668,16927.083333333332,17031.249999999996,17135.416666666668,17239.583333333332,17343.749999999996,17447.916666666668,17552.083333333332,17656.249999999996,17760.416666666668,17864.583333333332,17968.749999999996,18072.916666666668,18177.083333333332,18281.249999999996,18385.416666666668,18489.583333333332,18593.749999999996,18697.916666666668,18802.08333333334,18906.249999999996,19010.416666666668,19114.58333333334,19218.749999999996,19322.916666666668,19427.08333333334,19531.249999999996,19635.416666666668,19739.58333333334,19843.749999999996,19947.916666666668,20052.08333333334,20156.249999999996,20260.416666666668,20364.58333333334,20468.749999999996,20572.916666666668,20677.08333333334,20781.249999999996,20885.416666666668,20989.58333333334,21093.749999999996,21197.916666666668,21302.08333333334,21406.249999999996,21510.416666666668,21614.58333333334,21718.749999999996,21822.916666666668,21927.08333333334,22031.249999999996,22135.416666666668,22239.58333333334,22343.749999999996,22447.916666666668,22552.08333333334,22656.249999999996,22760.416666666668,22864.58333333334,22968.749999999996,23072.916666666668,23177.08333333334,23281.249999999996,23385.416666666668,23489.58333333334,23593.749999999996,23697.916666666668,23802.08333333334,23906.249999999996,24010.416666666668,24114.58333333334,24218.749999999996,24322.916666666668,24427.08333333334,24531.249999999996,24635.416666666668,24739.58333333334,24843.749999999996,24947.916666666668,25052.08333333334,25156.249999999996,25260.416666666668,25364.58333333334,25468.749999999996,25572.916666666668,25677.08333333334,25781.249999999996,25885.416666666668,25989.58333333334,26093.749999999996,26197.916666666668,26302.08333333334,26406.249999999996,26510.416666666668,26614.58333333334,26718.749999999996,26822.916666666668,26927.08333333334,27031.249999999996,27135.416666666668,27239.58333333334,27343.749999999996,27447.916666666668,27552.08333333334,27656.249999999996,27760.416666666668,27864.58333333334,27968.749999999996,28072.916666666668,28177.08333333334,28281.249999999996,28385.416666666668,28489.58333333334,28593.749999999996,28697.916666666668,28802.08333333334,28906.249999999996,29010.416666666668,29114.58333333334,29218.749999999996,29322.916666666668,29427.08333333334,29531.249999999996,29635.416666666668,29739.58333333334,29843.749999999996,29947.916666666668,30052.08333333334,30156.249999999996,30260.416666666668,30364.58333333334,30468.749999999996,30572.916666666668,30677.08333333334,30781.249999999996,30885.416666666668,30989.58333333334,31093.749999999996,31197.916666666668,31302.08333333334,31406.249999999996,31510.416666666668,31614.58333333334,31718.749999999996,31822.916666666668,31927.08333333334,32031.249999999996,32135.416666666668,32239.58333333334,32343.749999999996,32447.916666666668,32552.08333333334,32656.249999999996,32760.416666666668,32864.583333333336,32968.74999999999,33072.916666666664,33177.083333333336,33281.24999999999,33385.416666666664,33489.583333333336,33593.74999999999,33697.916666666664,33802.083333333336,33906.24999999999,34010.416666666664,34114.583333333336,34218.74999999999,34322.916666666664,34427.083333333336,34531.24999999999,34635.416666666664,34739.583333333336,34843.74999999999,34947.916666666664,35052.083333333336,35156.24999999999,35260.416666666664,35364.583333333336,35468.74999999999,35572.916666666664,35677.083333333336,35781.24999999999,35885.416666666664,35989.583333333336,36093.74999999999,36197.916666666664,36302.083333333336,36406.24999999999,36510.416666666664,36614.583333333336,36718.74999999999,36822.916666666664,36927.083333333336,37031.24999999999,37135.416666666664,37239.583333333336,37343.74999999999,37447.916666666664,37552.083333333336,37656.24999999999,37760.416666666664,37864.583333333336,37968.74999999999,38072.916666666664,38177.083333333336,38281.24999999999,38385.416666666664,38489.583333333336,38593.74999999999,38697.916666666664,38802.083333333336,38906.24999999999,39010.416666666664,39114.583333333336,39218.74999999999,39322.916666666664,39427.083333333336,39531.24999999999,39635.416666666664,39739.583333333336,39843.74999999999,39947.916666666664,40052.083333333336,40156.24999999999,40260.416666666664,40364.583333333336,40468.74999999999,40572.916666666664,40677.083333333336,40781.24999999999,40885.416666666664,40989.583333333336,41093.74999999999,41197.916666666664,41302.083333333336,41406.24999999999,41510.416666666664,41614.583333333336,41718.74999999999,41822.916666666664,41927.083333333336,42031.24999999999,42135.416666666664,42239.583333333336,42343.74999999999,42447.916666666664,42552.083333333336,42656.24999999999,42760.416666666664,42864.583333333336,42968.74999999999,43072.916666666664,43177.083333333336,43281.24999999999,43385.416666666664,43489.583333333336,43593.74999999999,43697.916666666664,43802.083333333336,43906.24999999999,44010.416666666664,44114.583333333336,44218.74999999999,44322.916666666664,44427.083333333336,44531.24999999999,44635.416666666664,44739.583333333336,44843.74999999999,44947.916666666664,45052.083333333336,45156.24999999999,45260.416666666664,45364.583333333336,45468.74999999999,45572.916666666664,45677.083333333336,45781.24999999999,45885.416666666664,45989.583333333336,46093.74999999999,46197.916666666664,46302.083333333336,46406.24999999999,46510.416666666664,46614.583333333336,46718.74999999999,46822.916666666664,46927.083333333336]}], {"xaxis":{"title":{"text":"Frequency [Hz]"},"range":[-5000.0,5000.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}}}]}},"margin":{"l":50,"b":50,"r":50,"t":60},"title":"120 deg SINC pulse (TBP=8, Hamming)"}, {"editable":false,"responsive":true,"staticPlot":false,"scrollZoom":true}, diff --git a/dev/assets/examples/4b-profile.html b/dev/assets/examples/4b-profile.html index d19800b72..c76f3abb7 100644 --- a/dev/assets/examples/4b-profile.html +++ b/dev/assets/examples/4b-profile.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('b10f533d-5177-41dc-90e3-eb8f38ff771b')) { + if (document.getElementById('70606461-376f-403c-ad8d-1f808cb66489')) { Plotly.newPlot( - 'b10f533d-5177-41dc-90e3-eb8f38ff771b', + '70606461-376f-403c-ad8d-1f808cb66489', [{"y":[-1.0175732e-5,-3.5805278e-6,2.4451292e-6,7.908275e-6,1.29175605e-5,1.758691e-5,2.20314e-5,2.6433925e-5,3.0998548e-5,3.573831e-5,4.080264e-5,4.6228713e-5,5.2123694e-5,5.8432728e-5,6.504964e-5,7.1982606e-5,7.910901e-5,8.614313e-5,9.2972856e-5,9.931114e-5,0.000105113606,0.00011005292,0.00011403455,0.000116865034,0.00011842754,0.00011878576,0.00011787296,0.00011572081,0.00011246334,0.00010824688,0.000103212566,9.758761e-5,9.159293e-5,8.537717e-5,7.918115e-5,7.317451e-5,6.758311e-5,6.225938e-5,5.7548037e-5,5.320525e-5,4.934847e-5,4.573173e-5,4.232773e-5,3.9045586e-5,3.5460456e-5,3.155251e-5,2.7236585e-5,2.2094036e-5,1.6205062e-5,9.462085e-6,1.7091334e-6,-6.8860245e-6,-1.637389e-5,-2.639493e-5,-3.7055644e-5,-4.810238e-5,-5.9066115e-5,-6.992938e-5,-8.044265e-5,-9.017665e-5,-9.912465e-5,-0.00010703855,-0.00011375108,-0.00011930725,-0.0001236745,-0.00012677842,-0.0001288308,-0.0001300755,-0.0001304375,-0.00013033062,-0.00012988732,-0.00012948006,-0.00012895098,-0.00012874382,-0.00012862775,-0.00012921782,-0.00013002544,-0.000131323,-0.00013275615,-0.00013437797,-0.00013606735,-0.00013738814,-0.00013832857,-0.00013856223,-0.00013805195,-0.00013648596,-0.00013386298,-0.00013013415,-0.00012517284,-0.00011914171,-0.000112014415,-0.00010413665,-9.543417e-5,-8.629833e-5,-7.685147e-5,-6.7399e-5,-5.8159494e-5,-4.902805e-5,-4.060722e-5,-3.2644628e-5,-2.5229965e-5,-1.8413702e-5,-1.2227596e-5,-6.440212e-6,-1.1398515e-6,4.035799e-6,8.92012e-6,1.39944605e-5,1.8812541e-5,2.4017354e-5,2.8975424e-5,3.367738e-5,3.86016e-5,4.2912172e-5,4.6887668e-5,5.0006784e-5,5.2515534e-5,5.3862925e-5,5.4535354e-5,5.3758326e-5,5.2415184e-5,5.0451257e-5,4.8315967e-5,4.6814093e-5,4.594092e-5,4.67035e-5,4.9364404e-5,5.5895187e-5,6.531947e-5,7.932284e-5,9.689361e-5,0.000119049895,0.00014470937,0.00017195288,0.00020017289,0.0002256874,0.0002451311,0.00025406413,0.00024648383,0.0002172105,0.00015713274,5.9764832e-5,-8.232519e-5,-0.00027742423,-0.00053102896,-0.0008482523,-0.0012278855,-0.0016712323,-0.002171278,-0.0027197842,-0.0033030845,-0.003904365,-0.0045048296,-0.0050837398,-0.0056209564,-0.0060967356,-0.006495036,-0.0068003535,-0.007006228,-0.0071086437,-0.0071080625,-0.00701157,-0.0068288455,-0.0065736324,-0.006259769,-0.0059029013,-0.005520314,-0.0051260144,-0.0047319196,-0.004348241,-0.0039852113,-0.0036468655,-0.0033359677,-0.0030543953,-0.0028028786,-0.0025783703,-0.0023786128,-0.002200663,-0.002039805,-0.0018938035,-0.0017584413,-0.0016306527,-0.0015087873,-0.0013902932,-0.0012745261,-0.0011600852,-0.0010474697,-0.0009370039,-0.00082938373,-0.00072550774,-0.00062668324,-0.00053337216,-0.0004465729,-0.00036744028,-0.0002952516,-0.0002297312,-0.00017143786,-0.00011834502,-6.93351e-5,-2.2917986e-5,2.2917986e-5,6.93351e-5,0.00011834502,0.00017143786,0.0002297312,0.0002952516,0.00036744028,0.0004465729,0.00053337216,0.00062668324,0.00072550774,0.00082938373,0.0009370039,0.0010474697,0.0011600852,0.0012745261,0.0013902932,0.0015087873,0.0016306527,0.0017584413,0.0018938035,0.002039805,0.002200663,0.0023786128,0.0025783703,0.0028028786,0.0030543953,0.0033359677,0.0036468655,0.0039852113,0.004348241,0.0047319196,0.0051260144,0.005520314,0.0059029013,0.006259769,0.0065736324,0.0068288455,0.00701157,0.0071080625,0.0071086437,0.007006228,0.0068003535,0.006495036,0.0060967356,0.0056209564,0.0050837398,0.0045048296,0.003904365,0.0033030845,0.0027197842,0.002171278,0.0016712323,0.0012278855,0.0008482523,0.00053102896,0.00027742423,8.232519e-5,-5.9764832e-5,-0.00015713274,-0.0002172105,-0.00024648383,-0.00025406413,-0.0002451311,-0.0002256874,-0.00020017289,-0.00017195288,-0.00014470937,-0.000119049895,-9.689361e-5,-7.932284e-5,-6.531947e-5,-5.5895187e-5,-4.9364404e-5,-4.67035e-5,-4.594092e-5,-4.6814093e-5,-4.8315967e-5,-5.0451257e-5,-5.2415184e-5,-5.3758326e-5,-5.4535354e-5,-5.3862925e-5,-5.2515534e-5,-5.0006784e-5,-4.6887668e-5,-4.2912172e-5,-3.86016e-5,-3.367738e-5,-2.8975424e-5,-2.4017354e-5,-1.8812541e-5,-1.39944605e-5,-8.92012e-6,-4.035799e-6,1.1398515e-6,6.440212e-6,1.2227596e-5,1.8413702e-5,2.5229965e-5,3.2644628e-5,4.060722e-5,4.902805e-5,5.8159494e-5,6.7399e-5,7.685147e-5,8.629833e-5,9.543417e-5,0.00010413665,0.000112014415,0.00011914171,0.00012517284,0.00013013415,0.00013386298,0.00013648596,0.00013805195,0.00013856223,0.00013832857,0.00013738814,0.00013606735,0.00013437797,0.00013275615,0.000131323,0.00013002544,0.00012921782,0.00012862775,0.00012874382,0.00012895098,0.00012948006,0.00012988732,0.00013033062,0.0001304375,0.0001300755,0.0001288308,0.00012677842,0.0001236745,0.00011930725,0.00011375108,0.00010703855,9.912465e-5,9.017665e-5,8.044265e-5,6.992938e-5,5.9066115e-5,4.810238e-5,3.7055644e-5,2.639493e-5,1.637389e-5,6.8860245e-6,-1.7091334e-6,-9.462085e-6,-1.6205062e-5,-2.2094036e-5,-2.7236585e-5,-3.155251e-5,-3.5460456e-5,-3.9045586e-5,-4.232773e-5,-4.573173e-5,-4.934847e-5,-5.320525e-5,-5.7548037e-5,-6.225938e-5,-6.758311e-5,-7.317451e-5,-7.918115e-5,-8.537717e-5,-9.159293e-5,-9.758761e-5,-0.000103212566,-0.00010824688,-0.00011246334,-0.00011572081,-0.00011787296,-0.00011878576,-0.00011842754,-0.000116865034,-0.00011403455,-0.00011005292,-0.000105113606,-9.931114e-5,-9.2972856e-5,-8.614313e-5,-7.910901e-5,-7.1982606e-5,-6.504964e-5,-5.8432728e-5,-5.2123694e-5,-4.6228713e-5,-4.080264e-5,-3.573831e-5,-3.0998548e-5,-2.6433925e-5,-2.20314e-5,-1.758691e-5,-1.29175605e-5,-7.908275e-6,-2.4451292e-6,3.5805278e-6,1.0175732e-5],"type":"scatter","name":"Mx","x":[-5000.0,-4974.937343358396,-4949.874686716792,-4924.812030075188,-4899.749373433584,-4874.68671679198,-4849.624060150376,-4824.561403508772,-4799.498746867168,-4774.436090225564,-4749.37343358396,-4724.310776942356,-4699.248120300752,-4674.185463659148,-4649.122807017544,-4624.06015037594,-4598.997493734336,-4573.934837092732,-4548.872180451128,-4523.809523809524,-4498.74686716792,-4473.684210526316,-4448.621553884712,-4423.558897243108,-4398.496240601504,-4373.4335839599,-4348.370927318296,-4323.308270676692,-4298.245614035088,-4273.182957393484,-4248.12030075188,-4223.057644110276,-4197.994987468672,-4172.932330827068,-4147.869674185464,-4122.80701754386,-4097.744360902256,-4072.6817042606517,-4047.6190476190477,-4022.5563909774437,-3997.4937343358397,-3972.4310776942357,-3947.3684210526317,-3922.3057644110277,-3897.2431077694237,-3872.1804511278197,-3847.1177944862156,-3822.0551378446116,-3796.9924812030076,-3771.9298245614036,-3746.8671679197996,-3721.8045112781956,-3696.7418546365916,-3671.6791979949876,-3646.6165413533836,-3621.5538847117796,-3596.4912280701756,-3571.4285714285716,-3546.3659147869676,-3521.3032581453635,-3496.2406015037595,-3471.1779448621555,-3446.1152882205515,-3421.0526315789475,-3395.9899749373435,-3370.9273182957395,-3345.8646616541355,-3320.8020050125315,-3295.7393483709275,-3270.6766917293235,-3245.6140350877195,-3220.5513784461155,-3195.4887218045114,-3170.4260651629074,-3145.3634085213034,-3120.3007518796994,-3095.2380952380954,-3070.1754385964914,-3045.1127819548874,-3020.0501253132834,-2994.9874686716794,-2969.9248120300754,-2944.8621553884714,-2919.7994987468674,-2894.7368421052633,-2869.6741854636593,-2844.6115288220553,-2819.5488721804513,-2794.4862155388473,-2769.4235588972433,-2744.3609022556393,-2719.2982456140353,-2694.2355889724313,-2669.1729323308273,-2644.1102756892233,-2619.0476190476193,-2593.9849624060153,-2568.9223057644112,-2543.8596491228072,-2518.7969924812032,-2493.7343358395988,-2468.6716791979948,-2443.6090225563908,-2418.5463659147867,-2393.4837092731827,-2368.4210526315787,-2343.3583959899747,-2318.2957393483707,-2293.2330827067667,-2268.1704260651627,-2243.1077694235587,-2218.0451127819547,-2192.9824561403507,-2167.9197994987467,-2142.8571428571427,-2117.7944862155387,-2092.7318295739346,-2067.6691729323306,-2042.6065162907269,-2017.5438596491229,-1992.4812030075188,-1967.4185463659148,-1942.3558897243108,-1917.2932330827068,-1892.2305764411028,-1867.1679197994988,-1842.1052631578948,-1817.0426065162908,-1791.9799498746868,-1766.9172932330828,-1741.8546365914788,-1716.7919799498748,-1691.7293233082708,-1666.6666666666667,-1641.6040100250627,-1616.5413533834587,-1591.4786967418547,-1566.4160401002507,-1541.3533834586467,-1516.2907268170427,-1491.2280701754387,-1466.1654135338347,-1441.1027568922307,-1416.0401002506267,-1390.9774436090227,-1365.9147869674186,-1340.8521303258146,-1315.7894736842106,-1290.7268170426066,-1265.6641604010026,-1240.6015037593984,-1215.5388471177944,-1190.4761904761904,-1165.4135338345864,-1140.3508771929824,-1115.2882205513783,-1090.2255639097743,-1065.1629072681703,-1040.1002506265663,-1015.0375939849624,-989.9749373433584,-964.9122807017544,-939.8496240601504,-914.7869674185464,-889.7243107769424,-864.6616541353384,-839.5989974937344,-814.5363408521304,-789.4736842105264,-764.4110275689223,-739.3483709273183,-714.2857142857143,-689.2230576441103,-664.1604010025063,-639.0977443609023,-614.0350877192982,-588.9724310776942,-563.9097744360902,-538.8471177944862,-513.7844611528822,-488.7218045112782,-463.6591478696742,-438.5964912280702,-413.5338345864662,-388.4711779448622,-363.40852130325817,-338.34586466165416,-313.28320802005015,-288.2205513784461,-263.1578947368421,-238.0952380952381,-213.0325814536341,-187.9699248120301,-162.90726817042608,-137.84461152882204,-112.78195488721805,-87.71929824561404,-62.65664160401003,-37.59398496240601,-12.531328320802006,12.531328320802006,37.59398496240601,62.65664160401003,87.71929824561404,112.78195488721805,137.84461152882204,162.90726817042608,187.9699248120301,213.0325814536341,238.0952380952381,263.1578947368421,288.2205513784461,313.28320802005015,338.34586466165416,363.40852130325817,388.4711779448622,413.5338345864662,438.5964912280702,463.6591478696742,488.7218045112782,513.7844611528822,538.8471177944862,563.9097744360902,588.9724310776942,614.0350877192982,639.0977443609023,664.1604010025063,689.2230576441103,714.2857142857143,739.3483709273183,764.4110275689223,789.4736842105264,814.5363408521304,839.5989974937344,864.6616541353384,889.7243107769424,914.7869674185464,939.8496240601504,964.9122807017544,989.9749373433584,1015.0375939849624,1040.1002506265663,1065.1629072681703,1090.2255639097743,1115.2882205513783,1140.3508771929824,1165.4135338345864,1190.4761904761904,1215.5388471177944,1240.6015037593984,1265.6641604010026,1290.7268170426066,1315.7894736842106,1340.8521303258146,1365.9147869674186,1390.9774436090227,1416.0401002506267,1441.1027568922307,1466.1654135338347,1491.2280701754387,1516.2907268170427,1541.3533834586467,1566.4160401002507,1591.4786967418547,1616.5413533834587,1641.6040100250627,1666.6666666666667,1691.7293233082708,1716.7919799498748,1741.8546365914788,1766.9172932330828,1791.9799498746868,1817.0426065162908,1842.1052631578948,1867.1679197994988,1892.2305764411028,1917.2932330827068,1942.3558897243108,1967.4185463659148,1992.4812030075188,2017.5438596491229,2042.6065162907269,2067.6691729323306,2092.7318295739346,2117.7944862155387,2142.8571428571427,2167.9197994987467,2192.9824561403507,2218.0451127819547,2243.1077694235587,2268.1704260651627,2293.2330827067667,2318.2957393483707,2343.3583959899747,2368.4210526315787,2393.4837092731827,2418.5463659147867,2443.6090225563908,2468.6716791979948,2493.7343358395988,2518.7969924812032,2543.8596491228072,2568.9223057644112,2593.9849624060153,2619.0476190476193,2644.1102756892233,2669.1729323308273,2694.2355889724313,2719.2982456140353,2744.3609022556393,2769.4235588972433,2794.4862155388473,2819.5488721804513,2844.6115288220553,2869.6741854636593,2894.7368421052633,2919.7994987468674,2944.8621553884714,2969.9248120300754,2994.9874686716794,3020.0501253132834,3045.1127819548874,3070.1754385964914,3095.2380952380954,3120.3007518796994,3145.3634085213034,3170.4260651629074,3195.4887218045114,3220.5513784461155,3245.6140350877195,3270.6766917293235,3295.7393483709275,3320.8020050125315,3345.8646616541355,3370.9273182957395,3395.9899749373435,3421.0526315789475,3446.1152882205515,3471.1779448621555,3496.2406015037595,3521.3032581453635,3546.3659147869676,3571.4285714285716,3596.4912280701756,3621.5538847117796,3646.6165413533836,3671.6791979949876,3696.7418546365916,3721.8045112781956,3746.8671679197996,3771.9298245614036,3796.9924812030076,3822.0551378446116,3847.1177944862156,3872.1804511278197,3897.2431077694237,3922.3057644110277,3947.3684210526317,3972.4310776942357,3997.4937343358397,4022.5563909774437,4047.6190476190477,4072.6817042606517,4097.744360902256,4122.80701754386,4147.869674185464,4172.932330827068,4197.994987468672,4223.057644110276,4248.12030075188,4273.182957393484,4298.245614035088,4323.308270676692,4348.370927318296,4373.4335839599,4398.496240601504,4423.558897243108,4448.621553884712,4473.684210526316,4498.74686716792,4523.809523809524,4548.872180451128,4573.934837092732,4598.997493734336,4624.06015037594,4649.122807017544,4674.185463659148,4699.248120300752,4724.310776942356,4749.37343358396,4774.436090225564,4799.498746867168,4824.561403508772,4849.624060150376,4874.68671679198,4899.749373433584,4924.812030075188,4949.874686716792,4974.937343358396,5000.0]},{"y":[-0.00015324359,-0.00016201187,-0.00017840632,-0.00020165404,-0.00023052929,-0.0002633577,-0.00029813472,-0.00033267896,-0.0003648602,-0.00039242092,-0.00041353336,-0.00042658127,-0.00043051157,-0.0004247068,-0.00040922416,-0.00038461093,-0.00035208894,-0.00031334333,-0.0002704953,-0.00022587404,-0.00018213481,-0.00014174539,-0.000107103246,-8.024904e-5,-6.270488e-5,-5.5576482e-5,-5.923301e-5,-7.343379e-5,-9.709747e-5,-0.00012877618,-0.0001663229,-0.00020719353,-0.0002486116,-0.0002877354,-0.0003217898,-0.000348315,-0.00036528613,-0.00037116162,-0.0003653188,-0.00034758612,-0.00031887932,-0.00028064364,-0.00023507606,-0.00018494355,-0.00013332201,-8.357931e-5,-3.8962375e-5,-2.5867257e-6,2.286206e-5,3.5323723e-5,3.3437413e-5,1.6765829e-5,-1.4301248e-5,-5.8593614e-5,-0.00011385214,-0.00017725432,-0.00024550353,-0.00031481133,-0.0003813781,-0.0004414976,-0.00049182295,-0.00052958116,-0.0005527985,-0.0005604661,-0.0005525039,-0.00052999775,-0.00049480784,-0.00044996035,-0.0003990061,-0.00034604495,-0.00029554876,-0.00025183856,-0.00021902283,-0.00020055924,-0.00019921374,-0.00021661673,-0.00025339832,-0.0003088329,-0.00038114563,-0.0004673633,-0.0005637818,-0.0006658182,-0.0007685054,-0.00086681615,-0.0009560294,-0.0010318316,-0.0010908862,-0.0011307833,-0.0011506606,-0.0011506131,-0.0011324829,-0.001099091,-0.0010545024,-0.0010035428,-0.0009515391,-0.00090407336,-0.000866177,-0.00084251526,-0.0008367402,-0.0008512521,-0.0008869936,-0.0009434869,-0.001018672,-0.0011093823,-0.0012112409,-0.0013195495,-0.0014293003,-0.001535831,-0.0016355392,-0.0017262101,-0.0018073553,-0.0018806668,-0.0019502376,-0.0020218864,-0.002103676,-0.002204467,-0.0023336369,-0.0024999315,-0.0027098455,-0.0029660962,-0.0032665816,-0.0036021736,-0.0039551076,-0.004297987,-0.0045919274,-0.0047859643,-0.004816608,-0.0046074493,-0.0040698675,-0.0031041573,-0.0016009709,0.0005563235,0.0034889819,0.0073189926,0.012166714,0.018145548,0.02535807,0.03389251,0.04381832,0.055182178,0.06800387,0.0822759,0.09795955,0.11498305,0.13324563,0.15261196,0.17292571,0.19399723,0.2156205,0.23757267,0.25963578,0.28156286,0.303137,0.3241375,0.34435877,0.36362657,0.38178855,0.39871782,0.4143122,0.42851898,0.4412961,0.4526468,0.46258658,0.4711752,0.47847104,0.48456985,0.4895749,0.49359208,0.49675393,0.49917603,0.5009862,0.50228596,0.5032021,0.503822,0.5042465,0.50453585,0.5047531,0.50494075,0.50513184,0.5053419,0.50558394,0.5058555,0.5061387,0.50642693,0.5067007,0.5069463,0.5071412,0.5072768,0.50734836,0.5073542,0.50728476,0.5071662,0.5069927,0.50677925,0.5065556,0.50633305,0.5061276,0.50596035,0.5058379,0.50576764,0.50576764,0.5058379,0.50596035,0.5061276,0.50633305,0.5065556,0.50677925,0.5069927,0.5071662,0.50728476,0.5073542,0.50734836,0.5072768,0.5071412,0.5069463,0.5067007,0.50642693,0.5061387,0.5058555,0.50558394,0.5053419,0.50513184,0.50494075,0.5047531,0.50453585,0.5042465,0.503822,0.5032021,0.50228596,0.5009862,0.49917603,0.49675393,0.49359208,0.4895749,0.48456985,0.47847104,0.4711752,0.46258658,0.4526468,0.4412961,0.42851898,0.4143122,0.39871782,0.38178855,0.36362657,0.34435877,0.3241375,0.303137,0.28156286,0.25963578,0.23757267,0.2156205,0.19399723,0.17292571,0.15261196,0.13324563,0.11498305,0.09795955,0.0822759,0.06800387,0.055182178,0.04381832,0.03389251,0.02535807,0.018145548,0.012166714,0.0073189926,0.0034889819,0.0005563235,-0.0016009709,-0.0031041573,-0.0040698675,-0.0046074493,-0.004816608,-0.0047859643,-0.0045919274,-0.004297987,-0.0039551076,-0.0036021736,-0.0032665816,-0.0029660962,-0.0027098455,-0.0024999315,-0.0023336369,-0.002204467,-0.002103676,-0.0020218864,-0.0019502376,-0.0018806668,-0.0018073553,-0.0017262101,-0.0016355392,-0.001535831,-0.0014293003,-0.0013195495,-0.0012112409,-0.0011093823,-0.001018672,-0.0009434869,-0.0008869936,-0.0008512521,-0.0008367402,-0.00084251526,-0.000866177,-0.00090407336,-0.0009515391,-0.0010035428,-0.0010545024,-0.001099091,-0.0011324829,-0.0011506131,-0.0011506606,-0.0011307833,-0.0010908862,-0.0010318316,-0.0009560294,-0.00086681615,-0.0007685054,-0.0006658182,-0.0005637818,-0.0004673633,-0.00038114563,-0.0003088329,-0.00025339832,-0.00021661673,-0.00019921374,-0.00020055924,-0.00021902283,-0.00025183856,-0.00029554876,-0.00034604495,-0.0003990061,-0.00044996035,-0.00049480784,-0.00052999775,-0.0005525039,-0.0005604661,-0.0005527985,-0.00052958116,-0.00049182295,-0.0004414976,-0.0003813781,-0.00031481133,-0.00024550353,-0.00017725432,-0.00011385214,-5.8593614e-5,-1.4301248e-5,1.6765829e-5,3.3437413e-5,3.5323723e-5,2.286206e-5,-2.5867257e-6,-3.8962375e-5,-8.357931e-5,-0.00013332201,-0.00018494355,-0.00023507606,-0.00028064364,-0.00031887932,-0.00034758612,-0.0003653188,-0.00037116162,-0.00036528613,-0.000348315,-0.0003217898,-0.0002877354,-0.0002486116,-0.00020719353,-0.0001663229,-0.00012877618,-9.709747e-5,-7.343379e-5,-5.923301e-5,-5.5576482e-5,-6.270488e-5,-8.024904e-5,-0.000107103246,-0.00014174539,-0.00018213481,-0.00022587404,-0.0002704953,-0.00031334333,-0.00035208894,-0.00038461093,-0.00040922416,-0.0004247068,-0.00043051157,-0.00042658127,-0.00041353336,-0.00039242092,-0.0003648602,-0.00033267896,-0.00029813472,-0.0002633577,-0.00023052929,-0.00020165404,-0.00017840632,-0.00016201187,-0.00015324359],"type":"scatter","name":"My","x":[-5000.0,-4974.937343358396,-4949.874686716792,-4924.812030075188,-4899.749373433584,-4874.68671679198,-4849.624060150376,-4824.561403508772,-4799.498746867168,-4774.436090225564,-4749.37343358396,-4724.310776942356,-4699.248120300752,-4674.185463659148,-4649.122807017544,-4624.06015037594,-4598.997493734336,-4573.934837092732,-4548.872180451128,-4523.809523809524,-4498.74686716792,-4473.684210526316,-4448.621553884712,-4423.558897243108,-4398.496240601504,-4373.4335839599,-4348.370927318296,-4323.308270676692,-4298.245614035088,-4273.182957393484,-4248.12030075188,-4223.057644110276,-4197.994987468672,-4172.932330827068,-4147.869674185464,-4122.80701754386,-4097.744360902256,-4072.6817042606517,-4047.6190476190477,-4022.5563909774437,-3997.4937343358397,-3972.4310776942357,-3947.3684210526317,-3922.3057644110277,-3897.2431077694237,-3872.1804511278197,-3847.1177944862156,-3822.0551378446116,-3796.9924812030076,-3771.9298245614036,-3746.8671679197996,-3721.8045112781956,-3696.7418546365916,-3671.6791979949876,-3646.6165413533836,-3621.5538847117796,-3596.4912280701756,-3571.4285714285716,-3546.3659147869676,-3521.3032581453635,-3496.2406015037595,-3471.1779448621555,-3446.1152882205515,-3421.0526315789475,-3395.9899749373435,-3370.9273182957395,-3345.8646616541355,-3320.8020050125315,-3295.7393483709275,-3270.6766917293235,-3245.6140350877195,-3220.5513784461155,-3195.4887218045114,-3170.4260651629074,-3145.3634085213034,-3120.3007518796994,-3095.2380952380954,-3070.1754385964914,-3045.1127819548874,-3020.0501253132834,-2994.9874686716794,-2969.9248120300754,-2944.8621553884714,-2919.7994987468674,-2894.7368421052633,-2869.6741854636593,-2844.6115288220553,-2819.5488721804513,-2794.4862155388473,-2769.4235588972433,-2744.3609022556393,-2719.2982456140353,-2694.2355889724313,-2669.1729323308273,-2644.1102756892233,-2619.0476190476193,-2593.9849624060153,-2568.9223057644112,-2543.8596491228072,-2518.7969924812032,-2493.7343358395988,-2468.6716791979948,-2443.6090225563908,-2418.5463659147867,-2393.4837092731827,-2368.4210526315787,-2343.3583959899747,-2318.2957393483707,-2293.2330827067667,-2268.1704260651627,-2243.1077694235587,-2218.0451127819547,-2192.9824561403507,-2167.9197994987467,-2142.8571428571427,-2117.7944862155387,-2092.7318295739346,-2067.6691729323306,-2042.6065162907269,-2017.5438596491229,-1992.4812030075188,-1967.4185463659148,-1942.3558897243108,-1917.2932330827068,-1892.2305764411028,-1867.1679197994988,-1842.1052631578948,-1817.0426065162908,-1791.9799498746868,-1766.9172932330828,-1741.8546365914788,-1716.7919799498748,-1691.7293233082708,-1666.6666666666667,-1641.6040100250627,-1616.5413533834587,-1591.4786967418547,-1566.4160401002507,-1541.3533834586467,-1516.2907268170427,-1491.2280701754387,-1466.1654135338347,-1441.1027568922307,-1416.0401002506267,-1390.9774436090227,-1365.9147869674186,-1340.8521303258146,-1315.7894736842106,-1290.7268170426066,-1265.6641604010026,-1240.6015037593984,-1215.5388471177944,-1190.4761904761904,-1165.4135338345864,-1140.3508771929824,-1115.2882205513783,-1090.2255639097743,-1065.1629072681703,-1040.1002506265663,-1015.0375939849624,-989.9749373433584,-964.9122807017544,-939.8496240601504,-914.7869674185464,-889.7243107769424,-864.6616541353384,-839.5989974937344,-814.5363408521304,-789.4736842105264,-764.4110275689223,-739.3483709273183,-714.2857142857143,-689.2230576441103,-664.1604010025063,-639.0977443609023,-614.0350877192982,-588.9724310776942,-563.9097744360902,-538.8471177944862,-513.7844611528822,-488.7218045112782,-463.6591478696742,-438.5964912280702,-413.5338345864662,-388.4711779448622,-363.40852130325817,-338.34586466165416,-313.28320802005015,-288.2205513784461,-263.1578947368421,-238.0952380952381,-213.0325814536341,-187.9699248120301,-162.90726817042608,-137.84461152882204,-112.78195488721805,-87.71929824561404,-62.65664160401003,-37.59398496240601,-12.531328320802006,12.531328320802006,37.59398496240601,62.65664160401003,87.71929824561404,112.78195488721805,137.84461152882204,162.90726817042608,187.9699248120301,213.0325814536341,238.0952380952381,263.1578947368421,288.2205513784461,313.28320802005015,338.34586466165416,363.40852130325817,388.4711779448622,413.5338345864662,438.5964912280702,463.6591478696742,488.7218045112782,513.7844611528822,538.8471177944862,563.9097744360902,588.9724310776942,614.0350877192982,639.0977443609023,664.1604010025063,689.2230576441103,714.2857142857143,739.3483709273183,764.4110275689223,789.4736842105264,814.5363408521304,839.5989974937344,864.6616541353384,889.7243107769424,914.7869674185464,939.8496240601504,964.9122807017544,989.9749373433584,1015.0375939849624,1040.1002506265663,1065.1629072681703,1090.2255639097743,1115.2882205513783,1140.3508771929824,1165.4135338345864,1190.4761904761904,1215.5388471177944,1240.6015037593984,1265.6641604010026,1290.7268170426066,1315.7894736842106,1340.8521303258146,1365.9147869674186,1390.9774436090227,1416.0401002506267,1441.1027568922307,1466.1654135338347,1491.2280701754387,1516.2907268170427,1541.3533834586467,1566.4160401002507,1591.4786967418547,1616.5413533834587,1641.6040100250627,1666.6666666666667,1691.7293233082708,1716.7919799498748,1741.8546365914788,1766.9172932330828,1791.9799498746868,1817.0426065162908,1842.1052631578948,1867.1679197994988,1892.2305764411028,1917.2932330827068,1942.3558897243108,1967.4185463659148,1992.4812030075188,2017.5438596491229,2042.6065162907269,2067.6691729323306,2092.7318295739346,2117.7944862155387,2142.8571428571427,2167.9197994987467,2192.9824561403507,2218.0451127819547,2243.1077694235587,2268.1704260651627,2293.2330827067667,2318.2957393483707,2343.3583959899747,2368.4210526315787,2393.4837092731827,2418.5463659147867,2443.6090225563908,2468.6716791979948,2493.7343358395988,2518.7969924812032,2543.8596491228072,2568.9223057644112,2593.9849624060153,2619.0476190476193,2644.1102756892233,2669.1729323308273,2694.2355889724313,2719.2982456140353,2744.3609022556393,2769.4235588972433,2794.4862155388473,2819.5488721804513,2844.6115288220553,2869.6741854636593,2894.7368421052633,2919.7994987468674,2944.8621553884714,2969.9248120300754,2994.9874686716794,3020.0501253132834,3045.1127819548874,3070.1754385964914,3095.2380952380954,3120.3007518796994,3145.3634085213034,3170.4260651629074,3195.4887218045114,3220.5513784461155,3245.6140350877195,3270.6766917293235,3295.7393483709275,3320.8020050125315,3345.8646616541355,3370.9273182957395,3395.9899749373435,3421.0526315789475,3446.1152882205515,3471.1779448621555,3496.2406015037595,3521.3032581453635,3546.3659147869676,3571.4285714285716,3596.4912280701756,3621.5538847117796,3646.6165413533836,3671.6791979949876,3696.7418546365916,3721.8045112781956,3746.8671679197996,3771.9298245614036,3796.9924812030076,3822.0551378446116,3847.1177944862156,3872.1804511278197,3897.2431077694237,3922.3057644110277,3947.3684210526317,3972.4310776942357,3997.4937343358397,4022.5563909774437,4047.6190476190477,4072.6817042606517,4097.744360902256,4122.80701754386,4147.869674185464,4172.932330827068,4197.994987468672,4223.057644110276,4248.12030075188,4273.182957393484,4298.245614035088,4323.308270676692,4348.370927318296,4373.4335839599,4398.496240601504,4423.558897243108,4448.621553884712,4473.684210526316,4498.74686716792,4523.809523809524,4548.872180451128,4573.934837092732,4598.997493734336,4624.06015037594,4649.122807017544,4674.185463659148,4699.248120300752,4724.310776942356,4749.37343358396,4774.436090225564,4799.498746867168,4824.561403508772,4849.624060150376,4874.68671679198,4899.749373433584,4924.812030075188,4949.874686716792,4974.937343358396,5000.0]},{"line":{"dash":"dash"},"y":[3.1206176694827057e-6,1.8661007255124603e-8,3.102070764067501e-6,3.1395102749339546e-6,5.599318476625768e-8,3.083859458873468e-6,3.158758874379696e-6,9.335586500183862e-8,3.0659738344152017e-6,3.1783739692003612e-6,1.3076942803508878e-7,3.0484041387870925e-6,3.198366282657416e-6,1.6825432185861177e-7,3.0311407741009985e-6,3.2187467736785915e-6,2.0583108923098643e-7,3.014174284412469e-6,3.2395266521462557e-6,2.4352039568098553e-7,2.997495342373747e-6,3.2607173934588783e-6,2.8134305702671047e-7,2.981094737040404e-6,3.2823307545226027e-6,3.1932006782863307e-7,2.964963361304459e-6,3.3043787895430046e-6,3.574726299235482e-7,2.9490921993555514e-6,3.3268738666223106e-6,3.958221815336561e-7,2.9334723144779905e-6,3.349828685156582e-6,4.3439042744581194e-7,2.918094836267114e-6,3.373256293206785e-6,4.731993690889343e-7,2.9029509483847447e-6,3.397170106197073e-6,5.122713358112111e-7,2.8880318759186566e-6,3.42158392603616e-6,5.516290171540574e-7,2.8733288725443586e-6,3.4465119608902152e-6,5.912954956113834e-7,2.858833207780782e-6,3.47196884599926e-6,6.312942806998708e-7,2.8445361539245845e-6,3.4979696653250177e-6,6.716493442299067e-7,2.8304289725953148e-6,3.524529973846542e-6,7.12385156167065e-7,2.8165029014929044e-6,3.5516658215357346e-6,7.535267229942404e-7,2.8027491401882842e-6,3.5793937773059942e-6,7.950996259536185e-7,2.789158836221685e-6,3.607730955627202e-6,8.371300626201723e-7,2.775723070059898e-6,3.63669504245537e-6,8.796448880106393e-7,2.7624328407495904e-6,3.6663043247045997e-6,9.226716600018219e-7,2.7492790494430937e-6,3.69657771846451e-6,9.662386839943572e-7,2.7362524843792175e-6,3.7275348017511728e-6,1.0103750622187736e-6,2.723343803193637e-6,3.7591958456586626e-6,1.0551107434076073e-6,2.71054351632198e-6,3.7915818499329703e-6,1.100476575676759e-6,2.6978419687188574e-6,3.824714578657521e-6,1.1465043622514412e-6,2.6852293207696465e-6,3.858616598186093e-6,1.1932269189672518e-6,2.6726955292536064e-6,3.893311317936718e-6,1.2406781362206886e-6,2.6602303260174697e-6,3.9288230320450605e-6,1.28889304262203e-6,2.6478231970086288e-6,3.965176964614669e-6,1.3379078733390154e-6,2.635463359154768e-6,4.002399316542801e-6,1.3877601412957801e-6,2.6231397367662197e-6,4.040517315559989e-6,1.4384887127559316e-6,2.6108409363242018e-6,4.079559268987746e-6,1.490133887226661e-6,2.598555219794965e-6,4.119554619261849e-6,1.5427374815024413e-6,2.586270477030578e-6,4.160534003350676e-6,1.5963429192919109e-6,2.5739741955862852e-6,4.202529314975851e-6,1.650995325531017e-6,2.5616534296552832e-6,4.245573770961236e-6,1.7067416265861715e-6,2.5492947668452895e-6,4.289701981834613e-6,1.7636306570088257e-6,2.5368842925308398e-6,4.334950025961279e-6,1.821713271889001e-6,2.5244075525702626e-6,4.381355529278886e-6,1.8810424673804451e-6,2.5118495131431517e-6,4.428957749174381e-6,1.9416735080698214e-6,2.4991945182585885e-6,4.4777976641727e-6,2.003664062848354e-6,2.48642624440614e-6,4.5279180693000865e-6,2.0670743497766925e-6,2.4735276519189305e-6,4.57936367727162e-6,2.131967290026801e-6,2.4604809335028874e-6,4.632181226905937e-6,2.198408672657103e-6,2.4472674587196144e-6,4.68641959825138e-6,2.266467330266345e-6,2.433867714645175e-6,4.742129935334347e-6,2.336215326327274e-6,2.420261242803763e-6,4.799365777794608e-6,2.4077281562635356e-6,2.4064265706992325e-6,4.858183200770501e-6,2.4810849617933656e-6,2.3923411392216526e-6,4.9186409651481825e-6,2.5563687610240747e-6,2.3779812238459522e-6,4.980800677694595e-6,2.6336666946263474e-6,2.3633218507222173e-6,5.044726962919205e-6,2.71307029014665e-6,2.348336705770181e-6,5.110487647109477e-6,2.7946757456303404e-6,2.332998036999646e-6,5.178153955496101e-6,2.878584234094836e-6,2.317276549401874e-6,5.247800724087124e-6,2.9649022311370465e-6,2.3011412913248493e-6,5.319506627028323e-6,3.0537418673029346e-6,2.284559531804357e-6,5.393354420752142e-6,3.1452213072560177e-6,2.267496628373357e-6,5.469431207200019e-6,3.239465159119296e-6,2.249915883383754e-6,5.547828716275692e-6,3.3366049150528605e-6,2.231778389346697e-6,5.628643611097397e-6,3.4367794277154856e-6,2.2130428605484774e-6,5.711977816563009e-6,3.5401354248976995e-6,2.193665450975823e-6,5.797938874023693e-6,3.6468280654371533e-6,2.1735995567179717e-6,5.88664032499874e-6,3.757021542416302e-6,2.1527956004753063e-6,5.978202124676302e-6,3.8708897347558e-6,2.1312007985083987e-6,6.072751091762686e-6,3.988616916389603e-6,2.108758905833626e-6,6.170421393076391e-6,4.110398523484192e-6,2.0854099390946264e-6,6.271355071119543e-6,4.236441990406023e-6,2.0610898743358985e-6,6.375702615830135e-6,4.366967657637009e-6,2.0357303167607856e-6,6.483623585848988e-6,4.502209761186631e-6,2.009258140077707e-6,6.595287284637535e-6,4.6424175109228305e-6,1.9815950915608653e-6,6.710873496137238e-6,4.787856267014333e-6,1.952657360110067e-6,6.830573287544943e-6,4.938808825949325e-6,1.922355101722642e-6,6.954589884375606e-6,5.095576826208942e-6,1.890591919491066e-6,7.0831396276059045e-6,5.258482288227719e-6,1.8572642915556356e-6,7.216453019681522e-6,5.427869302215562e-6,1.8222609417585032e-6,7.354775871119687e-6,5.604105881216327e-6,1.7854621465766094e-6,7.498370557161314e-6,5.787585997520863e-6,1.7467389704560329e-6,7.647517397972863e-6,5.97873182378498e-6,1.7059524211985915e-6,7.802516176261455e-6,6.177996202861456e-6,1.6629525160042596e-6,7.963687807725249e-6,6.385865372746922e-6,1.6175772476304815e-6,8.131376183362053e-6,6.602861978166062e-6,1.5696514370883158e-6,8.305950203332363e-6,6.829548403175026e-6,1.5189854602217663e-6,8.487806025784808e-6,7.066530464192454e-6,1.4653738314833295e-6,8.677369557829888e-6,7.31446150975697e-6,1.4085936261938006e-6,8.875099218216848e-6,7.574046977949138e-6,1.3484027206321684e-6,9.081489006659652e-6,7.846049471108297e-6,1.2845378259003535e-6,9.297071920036569e-6,8.131294416594027e-6,1.216712286989257e-6,9.522423760232231e-6,8.430676391099613e-6,1.144613615754856e-6,9.758167387015654e-6,8.745166200052854e-6,1.0679007202969569e-6,1.0004977476477156e-5,9.075818815942984e-6,9.862007871314203e-7,1.0263585854367446e-5,9.423782296965975e-6,8.991057679214168e-7,1.0534787487396455e-5,9.790307827478637e-6,8.061684104180096e-7,1.081944722506115e-5,1.0176761042614963e-5,7.068977678668634e-7,1.1118507404002582e-5,1.058463483001802e-5,6.007541059853371e-7,1.143299644236648e-5,1.1015563831260535e-5,4.871431157142107e-7,1.176403857604138e-5,1.1471340906956787e-5,3.654093213897184e-7,1.2112864913335055e-5,1.1953935873764438e-5,2.3482855602960443e-7,1.248082601771356e-5,1.2465516879234041e-5,9.459935061697461e-8,1.2869406265149111e-5,1.3008474846502648e-5,5.616694310901105e-8,1.3280240269865415e-5,1.358545150311703e-5,2.1845751297522309e-7,1.3715131725914456e-5,1.4199371605070773e-5,3.933711852902086e-7,1.4176075083048682e-5,1.485348009057552e-5,5.821335735895097e-7,1.4665280552761759e-5,1.555138503932441e-5,7.861146442235242e-7,1.5185203048152913e-5,1.6297107499628448e-5,1.0068491511374262e-6,1.5738575778570402e-5,1.7095139460922016e-5,1.24606047695561e-6,1.6328449379747884e-5,1.7950511528795114e-5,1.5056885445272752e-6,1.695823764668159e-5,1.8868872195547085e-5,1.7879226017529293e-6,1.7631771176008663e-5,1.9856581029857424e-5,2.0952398683811357e-6,1.8353360522875407e-5,2.0920818638810674e-5,2.430451264394324e-6,1.912787084926461e-5,2.206971692945145e-5,2.7967557237731302e-6,1.9960810519296792e-5,2.3312514052893287e-5,3.1978049736521885e-6,2.0858436693795256e-5,2.4659739493954545e-5,3.6377811183585643e-6,2.182788175497381e-5,2.6123436169932746e-5,4.121489980910425e-6,2.287730537447166e-5,2.7717428185488594e-5,4.654473922018794e-6,2.4016078329131753e-5,2.9457645223732864e-5,5.243148875487299e-6,2.5255005829443605e-5,3.136251757681516e-5,5.894971653601556e-6,2.6606600312776816e-5,3.345345979742885e-5,6.61864531521797e-6,2.808541652519329e-5,3.57554661977152e-5,7.42437268849262e-6,2.9708465522516224e-5,3.829784839099703e-5,8.324171206959578e-6,3.149572928695181e-5,4.111515438143827e-5,9.332266332574916e-6,3.347080444405627e-5,4.4248321222711876e-5,1.0465586405800936e-5,3.566171268418881e-5,4.774613017119056e-5,1.1744389334139631e-5,3.810192780181254e-5,5.166705619868376e-5,1.3193061908462711e-5,4.0831685873777365e-5,5.6081634914232104e-5,1.4841146827537391e-5,4.389966745948152e-5,6.107551234616504e-5,1.672467231248105e-5,4.7365170495377654e-5,6.675340031224542e-5,1.8887886660031906e-5,5.130093140384221e-5,7.324423635953847e-5,2.1385538207757037e-5,5.5796800164206465e-5,8.070794533878747e-5,2.4285893689019268e-5,6.096452856487656e-5,8.934431653338852e-5,2.7674758979317362e-5,6.694397202194765e-5,9.940462331664611e-5,3.16608583509367e-5,7.391097961497794e-5,0.00011120664235187286,3.6383036547997376e-5,8.208699834948355e-5,0.00012515343786179793,4.20198420850338e-5,9.174950891349672e-5,0.00014175497516421008,4.880202554297295e-5,0.00010323959849866558,0.0001616473226729476,5.702802762780147e-5,0.00011695459336472237,0.00018559092984769712,6.708073504684306e-5,0.00013328825036209918,0.00021438839318909642,7.943814763414621e-5,0.00015239973961234698,0.00024852894149295893,9.465467732940353e-5,0.00017340983825803728,0.00028689793451788873,0.0001132516407506841,0.000191510215450577,0.0003220228322142587,0.00013542997424442172,0.00018625923351720284,0.0003204426658689225,0.00016148166633678658,6.265403261302166e-5,0.00012130804637457231,0.0002140418263970231,0.0007913552394448315,0.0013706197009605377,0.0010910052355443704,0.012852686774043862,0.04179701440402208,0.093666681238243,0.16798086878619334,0.2562961093137423,0.34446117741998544,0.41811654084910416,0.4685057275548453,0.4953147486405551,0.5051021420322506,0.5066741830952327,0.506520606822343,0.506951663292191,0.507354736328125,0.506787786748696,0.5055820971061384,0.5049592062980826,0.5055820971061383,0.506787786748696,0.507354736328125,0.506951663292191,0.506520606822343,0.5066741830952327,0.5051021420322507,0.495314748640555,0.4685057275548454,0.41811654084910416,0.3444611774199854,0.2562961093137423,0.16798086878619334,0.093666681238243,0.04179701440402209,0.012852686774043864,0.0010910052355443704,0.0013706197009605374,0.0007913552394448315,0.0002140418263970231,0.00012130804637457233,6.265403261302166e-5,0.00016148166633678658,0.0003204426658689224,0.00018625923351720284,0.00013542997424442174,0.00032202283221425876,0.0001915102154505772,0.00011325164075068624,0.0002868979345178843,0.00017340983825803841,9.465467732940615e-5,0.0002485289414929631,0.00015239973961235156,7.943814763413378e-5,0.00021438839318909487,0.00013328825036208487,6.708073504686142e-5,0.00018559092984769818,0.00011695459336471678,5.702802762780754e-5,0.00016164732267294734,0.00010323959849866558,4.8802025542959076e-5,0.0001417549751642094,9.174950891351629e-5,4.2019842085021334e-5,0.00012515343786180568,8.208699834947395e-5,3.638303654803788e-5,0.00011120664235191846,7.391097961498378e-5,3.166085835094163e-5,9.940462331666429e-5,6.694397202193976e-5,2.7674758979316295e-5,8.934431653339054e-5,6.0964528564877205e-5,2.42858936890191e-5,8.070794533878745e-5,5.5796800164206486e-5,2.1385538207756993e-5,7.324423635953847e-5,5.130093140384221e-5,1.8887886660031912e-5,6.675340031224542e-5,4.736517049537769e-5,1.6724672312481028e-5,6.107551234616507e-5,4.389966745948183e-5,1.484114682753835e-5,5.6081634914230465e-5,4.0831685873780353e-5,1.3193061908461961e-5,5.1667056198684885e-5,3.810192780181118e-5,1.174438933413945e-5,4.774613017118214e-5,3.566171268417952e-5,1.0465586405815342e-5,4.4248321222702104e-5,3.347080444405329e-5,9.332266332575578e-6,4.111515438143106e-5,3.1495729286952154e-5,8.324171206959585e-6,3.829784839100367e-5,2.9708465522519636e-5,7.424372688503239e-6,3.5755466197713496e-5,2.808541652518727e-5,6.618645315227953e-6,3.3453459797424425e-5,2.660660031278057e-5,5.894971653599066e-6,3.136251757681578e-5,2.5255005829446268e-5,5.243148875484636e-6,2.9457645223733487e-5,2.401607832913114e-5,4.654473922018807e-6,2.7717428185488547e-5,2.2877305374471676e-5,4.121489980910413e-6,2.6123436169932715e-5,2.1827881754973818e-5,3.637781118358559e-6,2.4659739493954545e-5,2.085843669379523e-5,3.1978049736522084e-6,2.331251405289331e-5,1.9960810519296714e-5,2.796755723773677e-6,2.2069716929452516e-5,1.912787084926403e-5,2.4304512643758803e-6,2.092081863879761e-5,1.8353360522879452e-5,2.095239868363283e-6,1.9856581029818453e-5,1.7631771176004407e-5,1.7879226017345334e-6,1.8868872195538527e-5,1.6958237646667403e-5,1.5056885445352829e-6,1.7950511528796456e-5,1.632844937977467e-5,1.2460604769327368e-6,1.7095139460922016e-5,1.5738575778585892e-5,1.0068491511011424e-6,1.6297107499599422e-5,1.5185203048143489e-5,7.861146442578119e-7,1.5551385039338345e-5,1.4665280552799252e-5,5.821335735645364e-7,1.4853480090587178e-5,1.4176075083065724e-5,3.933711852898946e-7,1.4199371605091617e-5,1.371513172593793e-5,2.1845751297059257e-7,1.3585451503114674e-5,1.3280240269865176e-5,5.61669431090136e-8,1.3008474846502604e-5,1.2869406265149128e-5,9.459935061697774e-8,1.2465516879234041e-5,1.2480826017713563e-5,2.3482855602960247e-7,1.1953935873764472e-5,1.2112864913335063e-5,3.654093213897036e-7,1.1471340906956978e-5,1.1764038576041244e-5,4.871431157159323e-7,1.1015563831255995e-5,1.1432996442369548e-5,6.007541059813843e-7,1.0584634830024478e-5,1.1118507404005842e-5,7.068977678630908e-7,1.0176761042613896e-5,1.0819447225064015e-5,8.061684104282033e-7,9.790307827473616e-6,1.0534787487405386e-5,8.991057679148667e-7,9.423782296958273e-6,1.0263585854367451e-5,9.862007871290734e-7,9.075818815937888e-6,1.0004977476471248e-5,1.067900720292527e-6,8.745166200040906e-6,9.758167387027083e-6,1.1446136157585288e-6,8.430676391105801e-6,9.522423760217522e-6,1.2167122869831558e-6,8.131294416592118e-6,9.297071920036262e-6,1.2845378259041707e-6,7.846049471103772e-6,9.081489006660196e-6,1.348402720631848e-6,7.574046977949192e-6,8.875099218216829e-6,1.4085936261937788e-6,7.314461509756969e-6,8.677369557829886e-6,1.4653738314833249e-6,7.066530464192462e-6,8.487806025784838e-6,1.5189854602217625e-6,6.829548403175055e-6,8.305950203332515e-6,1.5696514370871242e-6,6.602861978161902e-6,8.131376183359615e-6,1.6175772476298826e-6,6.3858653727474e-6,7.963687807729101e-6,1.6629525160032023e-6,6.177996202884314e-6,7.802516176276397e-6,1.7059524211939084e-6,5.978731823782894e-6,7.647517397979236e-6,1.7467389704477199e-6,5.787585997515835e-6,7.498370557160701e-6,1.7854621465766033e-6,5.60410588120454e-6,7.354775871119338e-6,1.822260941764442e-6,5.427869302231151e-6,7.216453019686513e-6,1.8572642915536427e-6,5.258482288228632e-6,7.083139627608648e-6,1.8905919194837155e-6,5.095576826204132e-6,6.954589884378988e-6,1.922355101717999e-6,4.9388088259496215e-6,6.830573287544324e-6,1.952657360110452e-6,4.787856267014204e-6,6.7108734961372795e-6,1.9815950915608683e-6,4.642417510922793e-6,6.595287284637547e-6,2.0092581400777082e-6,4.502209761186641e-6,6.483623585848991e-6,2.035730316760859e-6,4.36696765763703e-6,6.3757026158301444e-6,2.0610898743360467e-6,4.2364419904079335e-6,6.271355071127916e-6,2.0854099390912573e-6,4.1103985235083065e-6,6.1704213930975784e-6,2.108758905792264e-6,3.98861691636138e-6,6.072751091764422e-6,2.131200798472615e-6,3.87088973479858e-6,5.978202124689527e-6,2.152795600454292e-6,3.757021542348598e-6,5.886640324989162e-6,2.1735995567487923e-6,3.6468280654371533e-6,5.797938874046881e-6,2.193665450942965e-6,3.540135424926986e-6,5.711977816569504e-6,2.213042860557189e-6,3.4367794277011636e-6,5.628643611098723e-6,2.231778389339429e-6,3.336604915069724e-6,5.54782871628171e-6,2.2499158833833696e-6,3.2394651591002006e-6,5.469431207195283e-6,2.2674966283735516e-6,3.1452213072588934e-6,5.3933544207517e-6,2.2845595318043505e-6,3.0537418673029532e-6,5.319506627028326e-6,2.301141291324849e-6,2.964902231137039e-6,5.247800724087125e-6,2.317276549401865e-6,2.8785842340948648e-6,5.178153955496112e-6,2.3329980369996547e-6,2.794675745630255e-6,5.110487647109204e-6,2.3483367057690946e-6,2.7130702901483167e-6,5.04472696291924e-6,2.3633218507268256e-6,2.6336666946215053e-6,4.980800677691762e-6,2.377981223848119e-6,2.556368761028702e-6,4.918640965140384e-6,2.3923411392188464e-6,2.4810849617922416e-6,4.858183200761956e-6,2.406426570693462e-6,2.4077281562739473e-6,4.7993657777946075e-6,2.420261242797035e-6,2.3362153263128064e-6,4.742129935335881e-6,2.4338677146464395e-6,2.266467330268166e-6,4.686419598250347e-6,2.447267458709725e-6,2.1984086726724617e-6,4.632181226931038e-6,2.4604809335135423e-6,2.13196729002858e-6,4.57936367726247e-6,2.47352765191728e-6,2.067074349777063e-6,4.52791806929889e-6,2.4864262444059583e-6,2.003664062848367e-6,4.477797664172694e-6,2.499194518258587e-6,1.9416735080698087e-6,4.42895774917438e-6,2.511849513143159e-6,1.8810424673804458e-6,4.3813555292789026e-6,2.5244075525702516e-6,1.8217132718889793e-6,4.334950025961318e-6,2.5368842925311485e-6,1.7636306570083016e-6,4.289701981836746e-6,2.5492947668539428e-6,1.706741626584471e-6,4.245573770951256e-6,2.5616534296233116e-6,1.6509953255328517e-6,4.202529314974139e-6,2.5739741955926418e-6,1.5963429192920913e-6,4.160534003357797e-6,2.586270477029118e-6,1.5427374814920624e-6,4.119554619260964e-6,2.5985552197949682e-6,1.4901338872278653e-6,4.079559268991301e-6,2.61084093631946e-6,1.4384887127577616e-6,4.0405173155679525e-6,2.62313973677469e-6,1.3877601412905768e-6,4.002399316536699e-6,2.6354633591653253e-6,1.3379078733362234e-6,3.965176964616342e-6,2.647823196999505e-6,1.2888930426196853e-6,3.928823032045956e-6,2.6602303260177005e-6,1.2406781362204053e-6,3.893311317936691e-6,2.6726955292536377e-6,1.1932269189672454e-6,3.858616598186092e-6,2.6852293207696444e-6,1.1465043622514323e-6,3.824714578657508e-6,2.6978419687187642e-6,1.100476575676874e-6,3.791581849932918e-6,2.7105435163222283e-6,1.0551107434074677e-6,3.759195845663525e-6,2.7233438031855837e-6,1.0103750622552539e-6,3.7275348017331466e-6,2.7362524844099626e-6,9.66238683974582e-7,3.696577718481625e-6,2.7492790494455434e-6,9.226716599746551e-7,3.666304324686221e-6,2.76243284072114e-6,8.796448880230458e-7,3.6366950424656194e-6,2.775723070047969e-6,8.371300626201723e-7,3.6077309556186173e-6,2.7891588362441755e-6,7.950996259580606e-7,3.579393777289238e-6,2.802749140179277e-6,7.535267230066686e-7,3.551665821537946e-6,2.81650290154524e-6,7.123851561552396e-7,3.5245299738557282e-6,2.8304289725675346e-6,6.71649344186171e-7,3.49796966531767e-6,2.8445361539308784e-6,6.312942807041433e-7,3.4719688459993637e-6,2.8588332077807843e-6,5.912954956112796e-7,3.4465119608901064e-6,2.8733288725443468e-6,5.516290171540528e-7,3.4215839260361614e-6,2.8880318759186604e-6,5.122713358112284e-7,3.397170106197072e-6,2.9029509483847303e-6,4.7319936908904144e-7,3.373256293207381e-6,2.9180948362675874e-6,4.343904274453954e-7,3.349828685153915e-6,2.933472314470614e-6,3.958221815343088e-7,3.326873866621482e-6,2.94909219935333e-6,3.5747262992029536e-7,3.3043787895369826e-6,2.9649633613077855e-6,3.1932006782829447e-7,3.282330754529436e-6,2.981094737031854e-6,2.8134305703315036e-7,3.2607173934588804e-6,2.997495342352079e-6,2.4352039569502643e-7,3.2395266521431017e-6,3.0141742844104503e-6,2.058310892441345e-7,3.21874677367931e-6,3.031140774108445e-6,1.6825432185827288e-7,3.1983662826573e-6,3.0484041387866703e-6,1.3076942802730095e-7,3.178373969203566e-6,3.065973834419317e-6,9.335586500085825e-8,3.158758874380413e-6,3.0838594588735984e-6,5.5993184766269735e-8,3.1395102749339817e-6,3.1020707640674994e-6,1.8661007255128855e-8,3.120617669482713e-6],"type":"scatter","name":"|FT(B₁(t))|","x":[-47031.25000000001,-46927.083333333336,-46822.91666666667,-46718.75000000001,-46614.583333333336,-46510.41666666667,-46406.25000000001,-46302.083333333336,-46197.91666666667,-46093.75000000001,-45989.583333333336,-45885.41666666667,-45781.25000000001,-45677.083333333336,-45572.91666666667,-45468.75000000001,-45364.583333333336,-45260.41666666667,-45156.25000000001,-45052.083333333336,-44947.91666666667,-44843.75000000001,-44739.583333333336,-44635.41666666667,-44531.25000000001,-44427.083333333336,-44322.91666666667,-44218.75000000001,-44114.583333333336,-44010.41666666667,-43906.25000000001,-43802.083333333336,-43697.91666666667,-43593.75000000001,-43489.583333333336,-43385.41666666667,-43281.25000000001,-43177.083333333336,-43072.91666666667,-42968.75000000001,-42864.583333333336,-42760.41666666667,-42656.25000000001,-42552.083333333336,-42447.91666666667,-42343.75000000001,-42239.583333333336,-42135.41666666667,-42031.25000000001,-41927.083333333336,-41822.91666666667,-41718.75000000001,-41614.583333333336,-41510.41666666667,-41406.25000000001,-41302.083333333336,-41197.91666666667,-41093.75000000001,-40989.583333333336,-40885.41666666667,-40781.25000000001,-40677.083333333336,-40572.91666666667,-40468.75000000001,-40364.583333333336,-40260.41666666667,-40156.25000000001,-40052.083333333336,-39947.91666666667,-39843.75000000001,-39739.583333333336,-39635.41666666667,-39531.25000000001,-39427.083333333336,-39322.91666666667,-39218.75000000001,-39114.583333333336,-39010.41666666667,-38906.25000000001,-38802.083333333336,-38697.91666666667,-38593.75000000001,-38489.583333333336,-38385.41666666667,-38281.25000000001,-38177.083333333336,-38072.91666666667,-37968.75000000001,-37864.583333333336,-37760.41666666667,-37656.25000000001,-37552.083333333336,-37447.91666666667,-37343.75000000001,-37239.583333333336,-37135.41666666667,-37031.25000000001,-36927.083333333336,-36822.91666666667,-36718.75000000001,-36614.583333333336,-36510.41666666667,-36406.25000000001,-36302.083333333336,-36197.91666666667,-36093.75000000001,-35989.583333333336,-35885.41666666667,-35781.25000000001,-35677.083333333336,-35572.91666666667,-35468.75000000001,-35364.583333333336,-35260.41666666667,-35156.25000000001,-35052.083333333336,-34947.91666666667,-34843.75000000001,-34739.583333333336,-34635.41666666667,-34531.25000000001,-34427.083333333336,-34322.91666666667,-34218.75000000001,-34114.583333333336,-34010.41666666667,-33906.25000000001,-33802.083333333336,-33697.91666666667,-33593.75000000001,-33489.583333333336,-33385.41666666667,-33281.25000000001,-33177.083333333336,-33072.91666666667,-32968.75000000001,-32864.583333333336,-32760.41666666667,-32656.250000000004,-32552.083333333336,-32447.91666666667,-32343.750000000004,-32239.583333333336,-32135.41666666667,-32031.250000000004,-31927.083333333336,-31822.91666666667,-31718.750000000004,-31614.583333333336,-31510.41666666667,-31406.250000000004,-31302.083333333336,-31197.91666666667,-31093.750000000004,-30989.583333333336,-30885.41666666667,-30781.250000000004,-30677.083333333336,-30572.916666666668,-30468.750000000004,-30364.583333333336,-30260.416666666668,-30156.250000000004,-30052.083333333336,-29947.916666666668,-29843.750000000004,-29739.583333333336,-29635.416666666668,-29531.250000000004,-29427.083333333336,-29322.916666666668,-29218.750000000004,-29114.583333333336,-29010.416666666668,-28906.250000000004,-28802.083333333336,-28697.916666666668,-28593.750000000004,-28489.583333333336,-28385.416666666668,-28281.250000000004,-28177.083333333336,-28072.916666666668,-27968.750000000004,-27864.583333333336,-27760.416666666668,-27656.250000000004,-27552.083333333336,-27447.916666666668,-27343.750000000004,-27239.583333333336,-27135.416666666668,-27031.250000000004,-26927.083333333336,-26822.916666666668,-26718.750000000004,-26614.583333333336,-26510.416666666668,-26406.250000000004,-26302.083333333336,-26197.916666666668,-26093.750000000004,-25989.583333333336,-25885.416666666668,-25781.250000000004,-25677.083333333336,-25572.916666666668,-25468.750000000004,-25364.583333333336,-25260.416666666668,-25156.250000000004,-25052.083333333336,-24947.916666666668,-24843.750000000004,-24739.583333333336,-24635.416666666668,-24531.250000000004,-24427.083333333336,-24322.916666666668,-24218.750000000004,-24114.583333333336,-24010.416666666668,-23906.250000000004,-23802.083333333336,-23697.916666666668,-23593.750000000004,-23489.583333333336,-23385.416666666668,-23281.250000000004,-23177.083333333336,-23072.916666666668,-22968.750000000004,-22864.583333333336,-22760.416666666668,-22656.250000000004,-22552.083333333336,-22447.916666666668,-22343.750000000004,-22239.583333333336,-22135.416666666668,-22031.250000000004,-21927.083333333336,-21822.916666666668,-21718.750000000004,-21614.583333333336,-21510.416666666668,-21406.250000000004,-21302.083333333336,-21197.916666666668,-21093.750000000004,-20989.583333333336,-20885.416666666668,-20781.250000000004,-20677.083333333336,-20572.916666666668,-20468.750000000004,-20364.583333333336,-20260.416666666668,-20156.250000000004,-20052.083333333336,-19947.916666666668,-19843.750000000004,-19739.583333333336,-19635.416666666668,-19531.250000000004,-19427.083333333336,-19322.916666666668,-19218.750000000004,-19114.583333333336,-19010.416666666668,-18906.250000000004,-18802.083333333336,-18697.916666666668,-18593.750000000004,-18489.583333333336,-18385.416666666668,-18281.250000000004,-18177.083333333336,-18072.916666666668,-17968.750000000004,-17864.583333333336,-17760.416666666668,-17656.250000000004,-17552.083333333336,-17447.916666666668,-17343.750000000004,-17239.583333333336,-17135.416666666668,-17031.250000000004,-16927.083333333336,-16822.916666666668,-16718.750000000004,-16614.583333333336,-16510.416666666668,-16406.250000000004,-16302.083333333338,-16197.91666666667,-16093.750000000005,-15989.583333333338,-15885.41666666667,-15781.250000000005,-15677.083333333338,-15572.91666666667,-15468.750000000005,-15364.583333333338,-15260.41666666667,-15156.250000000005,-15052.083333333338,-14947.91666666667,-14843.750000000005,-14739.583333333338,-14635.41666666667,-14531.250000000005,-14427.083333333338,-14322.91666666667,-14218.750000000005,-14114.583333333334,-14010.41666666667,-13906.250000000005,-13802.083333333334,-13697.91666666667,-13593.750000000005,-13489.583333333334,-13385.41666666667,-13281.250000000005,-13177.083333333334,-13072.91666666667,-12968.750000000005,-12864.583333333334,-12760.41666666667,-12656.250000000005,-12552.083333333334,-12447.91666666667,-12343.750000000005,-12239.583333333334,-12135.41666666667,-12031.250000000005,-11927.083333333334,-11822.91666666667,-11718.750000000005,-11614.583333333334,-11510.41666666667,-11406.250000000005,-11302.083333333334,-11197.91666666667,-11093.750000000005,-10989.583333333334,-10885.41666666667,-10781.250000000005,-10677.083333333334,-10572.91666666667,-10468.750000000005,-10364.583333333334,-10260.41666666667,-10156.250000000005,-10052.083333333334,-9947.91666666667,-9843.750000000005,-9739.583333333334,-9635.41666666667,-9531.250000000005,-9427.083333333334,-9322.91666666667,-9218.750000000005,-9114.583333333334,-9010.41666666667,-8906.250000000005,-8802.083333333334,-8697.91666666667,-8593.750000000005,-8489.583333333334,-8385.41666666667,-8281.250000000005,-8177.083333333333,-8072.916666666669,-7968.750000000005,-7864.583333333333,-7760.416666666669,-7656.250000000005,-7552.083333333333,-7447.916666666669,-7343.750000000005,-7239.583333333333,-7135.416666666669,-7031.250000000005,-6927.083333333333,-6822.916666666669,-6718.750000000005,-6614.583333333333,-6510.416666666669,-6406.250000000005,-6302.083333333333,-6197.916666666669,-6093.750000000005,-5989.583333333333,-5885.416666666669,-5781.250000000005,-5677.083333333333,-5572.916666666669,-5468.750000000005,-5364.583333333333,-5260.416666666669,-5156.250000000005,-5052.083333333333,-4947.916666666669,-4843.750000000005,-4739.583333333333,-4635.416666666669,-4531.250000000005,-4427.083333333333,-4322.916666666669,-4218.750000000005,-4114.583333333333,-4010.4166666666692,-3906.250000000005,-3802.0833333333335,-3697.9166666666692,-3593.750000000005,-3489.5833333333335,-3385.4166666666692,-3281.250000000005,-3177.0833333333335,-3072.9166666666692,-2968.750000000005,-2864.5833333333335,-2760.4166666666692,-2656.250000000005,-2552.0833333333335,-2447.9166666666692,-2343.750000000005,-2239.5833333333335,-2135.4166666666692,-2031.2500000000048,-1927.0833333333333,-1822.916666666669,-1718.7500000000048,-1614.5833333333333,-1510.416666666669,-1406.2500000000048,-1302.0833333333333,-1197.916666666669,-1093.7500000000048,-989.5833333333334,-885.4166666666691,-781.2500000000049,-677.0833333333334,-572.9166666666691,-468.75000000000483,-364.5833333333333,-260.4166666666691,-156.25000000000486,-52.083333333333336,52.083333333330906,156.24999999999514,260.4166666666667,364.5833333333309,468.74999999999517,572.9166666666666,677.0833333333309,781.2499999999951,885.4166666666666,989.5833333333309,1093.7499999999952,1197.9166666666667,1302.083333333331,1406.2499999999952,1510.4166666666667,1614.583333333331,1718.7499999999952,1822.9166666666667,1927.083333333331,2031.2499999999952,2135.4166666666665,2239.5833333333308,2343.749999999995,2447.9166666666665,2552.0833333333308,2656.249999999995,2760.4166666666665,2864.5833333333308,2968.749999999995,3072.9166666666665,3177.0833333333308,3281.249999999995,3385.4166666666665,3489.5833333333308,3593.749999999995,3697.9166666666665,3802.0833333333308,3906.249999999995,4010.4166666666665,4114.583333333331,4218.749999999995,4322.916666666667,4427.083333333331,4531.249999999995,4635.416666666667,4739.583333333331,4843.749999999995,4947.916666666667,5052.083333333331,5156.249999999995,5260.416666666667,5364.583333333331,5468.749999999995,5572.916666666667,5677.083333333331,5781.249999999995,5885.416666666667,5989.583333333331,6093.749999999995,6197.916666666667,6302.083333333331,6406.249999999995,6510.416666666667,6614.583333333331,6718.749999999995,6822.916666666667,6927.083333333331,7031.249999999995,7135.416666666667,7239.583333333331,7343.749999999995,7447.916666666667,7552.083333333331,7656.249999999995,7760.416666666667,7864.583333333331,7968.749999999995,8072.916666666667,8177.083333333331,8281.249999999995,8385.416666666666,8489.58333333333,8593.749999999995,8697.916666666666,8802.08333333333,8906.249999999995,9010.416666666666,9114.58333333333,9218.749999999995,9322.916666666666,9427.08333333333,9531.249999999995,9635.416666666666,9739.58333333333,9843.749999999995,9947.916666666666,10052.08333333333,10156.249999999995,10260.416666666666,10364.58333333333,10468.749999999995,10572.916666666666,10677.08333333333,10781.249999999995,10885.416666666666,10989.58333333333,11093.749999999995,11197.916666666666,11302.08333333333,11406.249999999995,11510.416666666666,11614.58333333333,11718.749999999995,11822.916666666666,11927.08333333333,12031.249999999995,12135.416666666666,12239.58333333333,12343.749999999995,12447.916666666666,12552.08333333333,12656.249999999995,12760.416666666666,12864.58333333333,12968.749999999995,13072.916666666666,13177.08333333333,13281.249999999995,13385.416666666666,13489.58333333333,13593.749999999995,13697.916666666666,13802.08333333333,13906.249999999995,14010.416666666666,14114.58333333333,14218.749999999995,14322.916666666666,14427.08333333333,14531.249999999995,14635.416666666666,14739.58333333333,14843.749999999995,14947.916666666666,15052.08333333333,15156.249999999995,15260.416666666666,15364.58333333333,15468.749999999995,15572.916666666666,15677.08333333333,15781.249999999995,15885.416666666666,15989.58333333333,16093.749999999995,16197.916666666666,16302.08333333333,16406.249999999996,16510.416666666668,16614.583333333332,16718.749999999996,16822.916666666668,16927.083333333332,17031.249999999996,17135.416666666668,17239.583333333332,17343.749999999996,17447.916666666668,17552.083333333332,17656.249999999996,17760.416666666668,17864.583333333332,17968.749999999996,18072.916666666668,18177.083333333332,18281.249999999996,18385.416666666668,18489.583333333332,18593.749999999996,18697.916666666668,18802.08333333334,18906.249999999996,19010.416666666668,19114.58333333334,19218.749999999996,19322.916666666668,19427.08333333334,19531.249999999996,19635.416666666668,19739.58333333334,19843.749999999996,19947.916666666668,20052.08333333334,20156.249999999996,20260.416666666668,20364.58333333334,20468.749999999996,20572.916666666668,20677.08333333334,20781.249999999996,20885.416666666668,20989.58333333334,21093.749999999996,21197.916666666668,21302.08333333334,21406.249999999996,21510.416666666668,21614.58333333334,21718.749999999996,21822.916666666668,21927.08333333334,22031.249999999996,22135.416666666668,22239.58333333334,22343.749999999996,22447.916666666668,22552.08333333334,22656.249999999996,22760.416666666668,22864.58333333334,22968.749999999996,23072.916666666668,23177.08333333334,23281.249999999996,23385.416666666668,23489.58333333334,23593.749999999996,23697.916666666668,23802.08333333334,23906.249999999996,24010.416666666668,24114.58333333334,24218.749999999996,24322.916666666668,24427.08333333334,24531.249999999996,24635.416666666668,24739.58333333334,24843.749999999996,24947.916666666668,25052.08333333334,25156.249999999996,25260.416666666668,25364.58333333334,25468.749999999996,25572.916666666668,25677.08333333334,25781.249999999996,25885.416666666668,25989.58333333334,26093.749999999996,26197.916666666668,26302.08333333334,26406.249999999996,26510.416666666668,26614.58333333334,26718.749999999996,26822.916666666668,26927.08333333334,27031.249999999996,27135.416666666668,27239.58333333334,27343.749999999996,27447.916666666668,27552.08333333334,27656.249999999996,27760.416666666668,27864.58333333334,27968.749999999996,28072.916666666668,28177.08333333334,28281.249999999996,28385.416666666668,28489.58333333334,28593.749999999996,28697.916666666668,28802.08333333334,28906.249999999996,29010.416666666668,29114.58333333334,29218.749999999996,29322.916666666668,29427.08333333334,29531.249999999996,29635.416666666668,29739.58333333334,29843.749999999996,29947.916666666668,30052.08333333334,30156.249999999996,30260.416666666668,30364.58333333334,30468.749999999996,30572.916666666668,30677.08333333334,30781.249999999996,30885.416666666668,30989.58333333334,31093.749999999996,31197.916666666668,31302.08333333334,31406.249999999996,31510.416666666668,31614.58333333334,31718.749999999996,31822.916666666668,31927.08333333334,32031.249999999996,32135.416666666668,32239.58333333334,32343.749999999996,32447.916666666668,32552.08333333334,32656.249999999996,32760.416666666668,32864.583333333336,32968.74999999999,33072.916666666664,33177.083333333336,33281.24999999999,33385.416666666664,33489.583333333336,33593.74999999999,33697.916666666664,33802.083333333336,33906.24999999999,34010.416666666664,34114.583333333336,34218.74999999999,34322.916666666664,34427.083333333336,34531.24999999999,34635.416666666664,34739.583333333336,34843.74999999999,34947.916666666664,35052.083333333336,35156.24999999999,35260.416666666664,35364.583333333336,35468.74999999999,35572.916666666664,35677.083333333336,35781.24999999999,35885.416666666664,35989.583333333336,36093.74999999999,36197.916666666664,36302.083333333336,36406.24999999999,36510.416666666664,36614.583333333336,36718.74999999999,36822.916666666664,36927.083333333336,37031.24999999999,37135.416666666664,37239.583333333336,37343.74999999999,37447.916666666664,37552.083333333336,37656.24999999999,37760.416666666664,37864.583333333336,37968.74999999999,38072.916666666664,38177.083333333336,38281.24999999999,38385.416666666664,38489.583333333336,38593.74999999999,38697.916666666664,38802.083333333336,38906.24999999999,39010.416666666664,39114.583333333336,39218.74999999999,39322.916666666664,39427.083333333336,39531.24999999999,39635.416666666664,39739.583333333336,39843.74999999999,39947.916666666664,40052.083333333336,40156.24999999999,40260.416666666664,40364.583333333336,40468.74999999999,40572.916666666664,40677.083333333336,40781.24999999999,40885.416666666664,40989.583333333336,41093.74999999999,41197.916666666664,41302.083333333336,41406.24999999999,41510.416666666664,41614.583333333336,41718.74999999999,41822.916666666664,41927.083333333336,42031.24999999999,42135.416666666664,42239.583333333336,42343.74999999999,42447.916666666664,42552.083333333336,42656.24999999999,42760.416666666664,42864.583333333336,42968.74999999999,43072.916666666664,43177.083333333336,43281.24999999999,43385.416666666664,43489.583333333336,43593.74999999999,43697.916666666664,43802.083333333336,43906.24999999999,44010.416666666664,44114.583333333336,44218.74999999999,44322.916666666664,44427.083333333336,44531.24999999999,44635.416666666664,44739.583333333336,44843.74999999999,44947.916666666664,45052.083333333336,45156.24999999999,45260.416666666664,45364.583333333336,45468.74999999999,45572.916666666664,45677.083333333336,45781.24999999999,45885.416666666664,45989.583333333336,46093.74999999999,46197.916666666664,46302.083333333336,46406.24999999999,46510.416666666664,46614.583333333336,46718.74999999999,46822.916666666664,46927.083333333336]}], {"xaxis":{"title":{"text":"Frequency [Hz]"},"range":[-5000.0,5000.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}}}]}},"margin":{"l":50,"b":50,"r":50,"t":60},"title":"30 deg SINC pulse (TBP=8, Hamming)"}, {"editable":false,"responsive":true,"staticPlot":false,"scrollZoom":true}, diff --git a/dev/create-your-own-phantom/index.html b/dev/create-your-own-phantom/index.html index b4dce24d0..55427e156 100644 --- a/dev/create-your-own-phantom/index.html +++ b/dev/create-your-own-phantom/index.html @@ -1,5 +1,5 @@ -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]
@@ -86,4 +86,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 T1 decay to be displayed, but you can choose other property to be displayed:

plot_phantom_map(obj, :T1)
+)

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

plot_phantom_map(obj, :T1)
diff --git a/dev/create-your-own-sequence/index.html b/dev/create-your-own-sequence/index.html index 14c83ea09..eddf66603 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 3c5e7d74a..b2f9df204 100644 --- a/dev/docstrings/index.html +++ b/dev/docstrings/index.html @@ -1,14 +1,14 @@ -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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
KomaMRICore.durMethod
y = dur(x::Grad)
-y = dur(x::Vector{Grad})

Duration 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.

Arguments

  • x: (::Grad or ::Vector{Grad}) RF struct or RF array

Returns

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

RF

Refer to API Documentation:

KomaMRICore.SpinorType
spinor = Spinor(α, β)

Spinor(α, β) 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 ($\alpha,\beta\in\mathbb{C}$):

\[R=\left[\begin{array}{cc} +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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
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
source
KomaMRICore.durMethod
y = dur(x::Grad)
+y = dur(x::Vector{Grad})

Duration 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.

Arguments

  • x: (::Grad or ::Vector{Grad}) RF struct or RF array

Returns

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

RF

Refer to API Documentation:

KomaMRICore.SpinorType
spinor = Spinor(α, β)

Spinor(α, β) 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 ($\alpha,\beta\in\mathbb{C}$):

\[R=\left[\begin{array}{cc} \alpha & -\beta^{*}\\ \beta & \alpha^{*} -\end{array}\right],\]

with $|\alpha|^2+|\beta|^2 = 1$.

This later operates on the $2\times2$ representation of $(x,y,z)$ as follows $V^{+} = R V R^{*}$.

Arguments

  • α: (::Complex{Float64}) Cayley-Klein parameter α
  • β: (::Complex{Float64}) Cayley-Klein parameter β

Returns

  • spinor: (::Spinor) Spinor struct
source
Base.showMethod
str = show(io::IO, s::Spinor)

Displays the spinor parameters in the julia REPL.

Arguments

  • s: (::Spinor) Spinor struct

Returns

  • str: (::String) output string message
source
Base.:*Method
s = *(s1::Spinor, s2::Spinor)

Spinor multiplication identity: (α1,β1)×(α2,β2) = (α1 α2 - β2⋆ β1 , β2 α1 + α2⋆ β1)

Arguments

  • s1: (::Spinor) first spinor struct
  • s2: (::Spinor) second spinor struct

Returns

  • s: (::Spinor) multiplication spinnor identity result
source
KomaMRICore.RzFunction
s = Rz(φ)

Spinor clockwise rotation matrix with angle φ with respect to z-axis.

Arguments

  • φ: (::Real, [rad]) angle with respect to z-axis

Returns

  • s: (::Spinor) spinnor struct that represents the Rz rotation matrix
source
KomaMRICore.RyFunction
s = Ry(θ)

Spinor clockwise rotation matrix with angle θ with respect to y-axis.

Arguments

  • θ: (::Real, [rad]) angle with respect to y-axis

Returns

  • s: (::Spinor) spinor struct that represents the Ry rotation matrix
source
KomaMRICore.RxFunction
s = Rx(θ)

Spinor clockwise rotation matrix with angle θ with respect to x-axis.

Arguments

  • θ: (::Real, [rad]) angle with respect to x-axis

Returns

  • s: (::Spinor) spinor struct that represents the Rx rotation matrix
source
Missing docstring.

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

Missing docstring.

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

KomaMRICore.QFunction
s = Q(φ, nxy, nz)

Spinor rotation matrix. Rotation of φ with respect to the axis of rotation n=(nx, ny, nz).

Pauly, 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

\[\varphi=-\gamma\Delta t\sqrt{\left|B_{1}\right|^{2}+\left(\boldsymbol{G}\cdot\boldsymbol{x} -\right)^{2}}=-\gamma\Delta t\left\Vert \boldsymbol{B}\right\Vert\]

\[\boldsymbol{n}=\boldsymbol{B}/\left\Vert \boldsymbol{B}\right\Vert\]

Arguments

  • φ: (::Real, [rad]) φ angle
  • nxy: (::Real) nxy factor
  • nz: (::Real) nz factor

Returns

  • s: (::Spinor) spinnor struct that represents the Q rotation matrix
source
Base.absMethod
y = abs(s::Spinor)

It calculates |α|^2 + |β|^2 of the Cayley-Klein parameters.

Arguments

  • s: (::Spinor) spinnor struct

Returns

  • y: (::Real) result of the abs operator
source
Base.showMethod
str = show(io::IO, x::RF)

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

Arguments

  • x: (::RF) RF struct

Returns

  • str: (::String) output string message
source
Base.getpropertyMethod
y = getproperty(x::Vector{RF}, f::Symbol)
-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
source
KomaMRICore.durMethod
y = dur(x::RF)
+\end{array}\right],\]

with $|\alpha|^2+|\beta|^2 = 1$.

This later operates on the $2\times2$ representation of $(x,y,z)$ as follows $V^{+} = R V R^{*}$.

Arguments

  • α: (::Complex{Float64}) Cayley-Klein parameter α
  • β: (::Complex{Float64}) Cayley-Klein parameter β

Returns

  • spinor: (::Spinor) Spinor struct
source
Base.showMethod
str = show(io::IO, s::Spinor)

Displays the spinor parameters in the julia REPL.

Arguments

  • s: (::Spinor) Spinor struct

Returns

  • str: (::String) output string message
source
Base.:*Method
s = *(s1::Spinor, s2::Spinor)

Spinor multiplication identity: (α1,β1)×(α2,β2) = (α1 α2 - β2⋆ β1 , β2 α1 + α2⋆ β1)

Arguments

  • s1: (::Spinor) first spinor struct
  • s2: (::Spinor) second spinor struct

Returns

  • s: (::Spinor) multiplication spinnor identity result
source
KomaMRICore.RzFunction
s = Rz(φ)

Spinor clockwise rotation matrix with angle φ with respect to z-axis.

Arguments

  • φ: (::Real, [rad]) angle with respect to z-axis

Returns

  • s: (::Spinor) spinnor struct that represents the Rz rotation matrix
source
KomaMRICore.RyFunction
s = Ry(θ)

Spinor clockwise rotation matrix with angle θ with respect to y-axis.

Arguments

  • θ: (::Real, [rad]) angle with respect to y-axis

Returns

  • s: (::Spinor) spinor struct that represents the Ry rotation matrix
source
KomaMRICore.RxFunction
s = Rx(θ)

Spinor clockwise rotation matrix with angle θ with respect to x-axis.

Arguments

  • θ: (::Real, [rad]) angle with respect to x-axis

Returns

  • s: (::Spinor) spinor struct that represents the Rx rotation matrix
source
Missing docstring.

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

Missing docstring.

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

KomaMRICore.QFunction
s = Q(φ, nxy, nz)

Spinor rotation matrix. Rotation of φ with respect to the axis of rotation n=(nx, ny, nz).

Pauly, 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

\[\varphi=-\gamma\Delta t\sqrt{\left|B_{1}\right|^{2}+\left(\boldsymbol{G}\cdot\boldsymbol{x} +\right)^{2}}=-\gamma\Delta t\left\Vert \boldsymbol{B}\right\Vert\]

\[\boldsymbol{n}=\boldsymbol{B}/\left\Vert \boldsymbol{B}\right\Vert\]

Arguments

  • φ: (::Real, [rad]) φ angle
  • nxy: (::Real) nxy factor
  • nz: (::Real) nz factor

Returns

  • s: (::Spinor) spinnor struct that represents the Q rotation matrix
source
Base.absMethod
y = abs(s::Spinor)

It calculates |α|^2 + |β|^2 of the Cayley-Klein parameters.

Arguments

  • s: (::Spinor) spinnor struct

Returns

  • y: (::Real) result of the abs operator
source
Base.showMethod
str = show(io::IO, x::RF)

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

Arguments

  • x: (::RF) RF struct

Returns

  • str: (::String) output string message
source
Base.getpropertyMethod
y = getproperty(x::Vector{RF}, f::Symbol)
+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
source
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
source
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
source
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
source
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
source

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
source
+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
source
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
source
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
source
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
source

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
source
diff --git a/dev/events/index.html b/dev/events/index.html index 4642d84e9..1684ee30e 100644 --- a/dev/events/index.html +++ b/dev/events/index.html @@ -1,5 +1,5 @@ -Sequence Events · KomaMRI.jl: General MRI simulation framework

Sequence Events

As we already know, a Sequence struct contains field names that store arrays of RF, Grad, and ADC structs. In the context of MRI, we refer to RF, Grad, and ADC as "events." 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 guide you through the process of creating 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

As we already know, a Sequence struct contains field names that store arrays of RF, Grad, and ADC structs. In the context of MRI, we refer to RF, Grad, and ADC as "events." 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 guide you through the process of creating 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
@@ -162,4 +162,4 @@
 # Create two equivalent sequences in different ways
 sa = Sequence(R * [gx; gy; gz;;])
 sb = R * Sequence([gx; gy; gz;;])
julia> all(sa.GR .≈ sb.GR)
-true
+true
diff --git a/dev/generated/examples/01-FID/index.html b/dev/generated/examples/01-FID/index.html index 3000d250e..08b9d85a4 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 a99671fd5..beb326e29 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
@@ -9,4 +9,4 @@
 M = simulate_slice_profile(seq; z, sim_params)
"../../assets/examples/4b-profile.html"

This produces the following slice profile:

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)$).

But what will happen if we use a flip angle of 120 deg instead?

α_desired = 120 + 0im               # The multiplication of a complex number scales the RF pulse of a Sequence
 α = get_flip_angles(seq)[1] # Previous FA approx 30 deg
 seq = (α_desired / α) * seq         # Scaling the pulse to have a flip angle of 120
-M = simulate_slice_profile(seq; z, sim_params)
"../../assets/examples/4a-profile.html"

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.

+M = simulate_slice_profile(seq; z, sim_params)
"../../assets/examples/4a-profile.html"

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 02f0a7e6d..2197d67bc 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 42053bb9f..a946458ed 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
@@ -31,4 +31,4 @@
 # Plotting the slices
 p4 = plot_image(abs.(image[:, :, 1]); height=360, title="Slice 1")
 p5 = plot_image(abs.(image[:, :, 2]); height=360, title="Slice 2")
-p6 = plot_image(abs.(image[:, :, 3]); height=360, title="Slice 3")
"../../assets/examples/3-recon3.html"

This page was generated using Literate.jl.

+p6 = plot_image(abs.(image[:, :, 3]); height=360, title="Slice 3")
"../../assets/examples/3-recon3.html"

This page was generated using Literate.jl.

diff --git a/dev/getting-started/index.html b/dev/getting-started/index.html index 3059e567c..918ed17ea 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 the KomaUI function.

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 6afbac0ef..cd652b60b 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 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.
+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 efd23c099..cde3baab7 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 189bdc1c6..d1a09a63e 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.

Figure 1: The sequence seq is discretized after calculating the required time points in the wrapper function simulate. The time points are then divided into Nblocks to reduce the amount of memory used. The phantom obj is divided into Nthreads, and KomaMRI will use either run_spin_excitation! or run_spin_precession! depending on the regime. If an ADC object is present, the simulator will add the signal contributions of each thread to construct the acquired signal sig[t]. All the parameters: Nthreads, Nblocks, Δt_rf, and Δt, are passed through a dictionary called sim_params as an optional parameter of the simulate function.

From the programming perspective, it is needed to call the simulate function with the sim_params dictionary keyword argument. A user can change the values of the following keys:

ParameterDescription
"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.
"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.
"Δt"raster time for gradients.
"Δt_rf"raster time for RFs.
"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.
"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".
"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.
"gpu"is a boolean that determines whether to use GPU or CPU hardware resources, as long as they are available on the host computer.
"gpu_device"sets the index ID of the available GPU in the host computer.

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:

# Set non-default simulation parameters and run 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 seq is discretized after calculating the required time points in the wrapper function simulate. The time points are then divided into Nblocks to reduce the amount of memory used. The phantom obj is divided into Nthreads, and KomaMRI will use either run_spin_excitation! or run_spin_precession! depending on the regime. If an ADC object is present, the simulator will add the signal contributions of each thread to construct the acquired signal sig[t]. All the parameters: Nthreads, Nblocks, Δt_rf, and Δt, are passed through a dictionary called sim_params as an optional parameter of the simulate function.

From the programming perspective, it is needed to call the simulate function with the sim_params dictionary keyword argument. A user can change the values of the following keys:

ParameterDescription
"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.
"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.
"Δt"raster time for gradients.
"Δt_rf"raster time for RFs.
"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.
"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".
"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.
"gpu"is a boolean that determines whether to use GPU or CPU hardware resources, as long as they are available on the host computer.
"gpu_device"sets the index ID of the available GPU in the host computer.

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:

# Set non-default simulation parameters and run simulation
 sim_params = KomaMRICore.default_sim_params() 
 sim_params["gpu"] = false
 sim_params["precision"] = "f64"
@@ -84,4 +84,4 @@
 
 # Define the plots for traverse and longitudinal magnetizations
 pxy = plot(abs.(sig[:,:,1]));
-pz = plot(abs.(sig[:,:,2]));
julia> [pxy pz]
+pz = plot(abs.(sig[:,:,2]));
julia> [pxy pz]
diff --git a/dev/notebooks/index.html b/dev/notebooks/index.html index 628a96e52..d227df481 100644 --- a/dev/notebooks/index.html +++ b/dev/notebooks/index.html @@ -1,5 +1,5 @@ -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.

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.

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
 
@@ -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 IJulia documentation and this troubleshooting guide for details. Essentially, you need to install a WebIO extension depending 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/pluto-simulation/index.html b/dev/pluto-simulation/index.html index f8af8ef5c..7042fbc5e 100644 --- a/dev/pluto-simulation/index.html +++ b/dev/pluto-simulation/index.html @@ -1,2 +1,5 @@ -Educational Material · KomaMRI.jl: General MRI simulation framework

My first MRI simulations: FID, GE, and SE

This example was used in the workshop MRI: Processing your own data. In the workshop's GitHub you'll find:

The participants used KomaMRI within a Pluto notebook to simulate some basic 1D sequences: Free Induction Decay (FID), Gradient Echo (GE), and Spin Echo (SE). Try to solve the problems yourself! 😼

```@raw html <iframe type="text/html" src="../../../examples/pluto/simulation-example-empty.html" style="height:100vh;width:100%;"></iframe>

+Educational Material 📚 · KomaMRI.jl: General MRI simulation framework
diff --git a/dev/programming-workflow/index.html b/dev/programming-workflow/index.html index a6f22fae6..44a7b54b5 100644 --- a/dev/programming-workflow/index.html +++ b/dev/programming-workflow/index.html @@ -1,5 +1,5 @@ -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
+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 e7479c510..618a9e377 100644 --- a/dev/search/index.html +++ b/dev/search/index.html @@ -1,2 +1,2 @@ -Search · KomaMRI.jl: General MRI simulation framework

Loading search...

    +Search · KomaMRI.jl: General MRI simulation framework

    Loading search...

      diff --git a/dev/search_index.js b/dev/search_index.js index 43043e7f6..68efdb5da 100644 --- a/dev/search_index.js +++ b/dev/search_index.js @@ -1,3 +1,3 @@ var documenterSearchIndex = {"docs": -[{"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 plot_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/#Pluto","page":"Notebooks","title":"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/#Jupyter","page":"Notebooks","title":"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 the KomaUI function.","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":"pluto-simulation/#My-first-MRI-simulations:-FID,-GE,-and-SE","page":"Educational Material","title":"My first MRI simulations: FID, GE, and SE","text":"","category":"section"},{"location":"pluto-simulation/","page":"Educational Material","title":"Educational Material","text":"This example was used in the workshop MRI: Processing your own data. In the workshop's GitHub you'll find:","category":"page"},{"location":"pluto-simulation/","page":"Educational Material","title":"Educational Material","text":"A presentation on open-source software \nand an introduction to MRI simulation.","category":"page"},{"location":"pluto-simulation/","page":"Educational Material","title":"Educational Material","text":"The participants used KomaMRI within a Pluto notebook to simulate some basic 1D sequences: Free Induction Decay (FID), Gradient Echo (GE), and Spin Echo (SE). Try to solve the problems yourself! 😼","category":"page"},{"location":"pluto-simulation/","page":"Educational Material","title":"Educational Material","text":"```@raw html ","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\", \"pelvis2D.mat\")\ndata = MAT.matread(path_phantom_mat)\nclass = data[\"pelvis3D_slice\"]","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 plot_image function:","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 soft tissue, we use ρ = 0.9, T1 = 1200 * 1e-3, T2 = 80 * 1e-3, and T2s = 80 * 1e-3. Additionally, we create an array mask to identify the location of a tissue's ID. For soft tissue with ID = 153, the mask is (class .== 153). 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.==51)*.001 .+ # Air\n (class.==102)*.86 .+ # Fat\n (class.==153)*.9 .+ # SoftTissue\n (class.==204)*.4 .+ # SpongyBone\n (class.==255)*.2 # CorticalBone\n\n# Define the T1 decay array\nT1 = (class.==51)*.001 .+ # Air\n (class.==102)*366 .+ # Fat\n (class.==153)*1200 .+ # SoftTissue\n (class.==204)*381 .+ # SpongyBone\n (class.==255)*100 # CorticalBone\n\n# Define the T2 decay array\nT2 = (class.==51)*.001 .+ # Air\n (class.==102)*70 .+ # Fat\n (class.==153)*80 .+ # SoftTissue\n (class.==204)*52 .+ # SpongyBone\n (class.==255)*.3 # CorticalBone\n\n# Define the T2s decay array\nT2s = (class.==51)*.001 .+ # Air\n (class.==102)*70 .+ # Fat\n (class.==153)*80 .+ # SoftTissue\n (class.==204)*52 .+ # SpongyBone\n (class.==255)*.3 # CorticalBone\n\n# Define off-resonance array\nΔw_fat = -220 * 2π\nΔw = (class.==102) * Δw_fat # FAT1\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.","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-pelvis\",\n\tx = x[ρ.!=0],\n\ty = y[ρ.!=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 T1 decay 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, :T1)","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. It contains hardware limitations of the MRI resonator. It is an input for the simulation.\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's 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. Most of its field names are vectors, with each element associated with a property value representing a spin. This struct serves as an input for the simulation.\n\nArguments\n\nname: (::String) phantom name\nx: (::AbstractVector{T<:Real}, [m]) spin x-position vector\ny: (::AbstractVector{T<:Real}, [m]) spin y-position vector\nz: (::AbstractVector{T<:Real}, [m]) spin z-position vector\nρ: (::AbstractVector{T<:Real}) spin proton density vector\nT1: (::AbstractVector{T<:Real}, [s]) spin T1 parameter vector\nT2: (::AbstractVector{T<:Real}, [s]) spin T2 parameter vector\nT2s: (::AbstractVector{T<:Real}, [s]) spin T2s parameter vector\nΔw: (::AbstractVector{T<:Real}, [rad/s]) spin off-resonance parameter vector\nDλ1: (::AbstractVector{T<:Real}) spin Dλ1 (diffusion) parameter vector\nDλ2: (::AbstractVector{T<:Real}) spin Dλ2 (diffusion) parameter vector\nDθ: (::AbstractVector{T<:Real}) spin Dθ (diffusion) parameter vector\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(x=[0.0])\n\njulia> obj.ρ\n\n\n\n\n\n","category":"type"},{"location":"api/#KomaMRICore.brain_phantom2D","page":"API Documentation","title":"KomaMRICore.brain_phantom2D","text":"obj = brain_phantom2D(; axis=\"axial\", ss=4)\n\nCreates a two-dimensional 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\", \"coronal\", \"sagittal\"]) orientation of the phantom\nss: (::Integer, =4) subsampling parameter in all axis\n\nReturns\n\nobj: (::Phantom) Phantom struct\n\nExamples\n\njulia> obj = brain_phantom2D(; axis=\"sagittal\", ss=1)\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":"obj = 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: (::Integer, =4) subsampling parameter in all axes\n\nReturns\n\nobj: (::Phantom) 3D Phantom struct\n\nExamples\n\njulia> obj = brain_phantom3D(; ss=5)\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. It contains events of an MRI sequence. Most field names (except for the DEF field) consist of matrices or vectors, where each column index represents a sequence block. This struct serves as an input for the simulation.\n\nArguments\n\nGR: (::Matrix{Grad}) gradient matrix. Rows for x-y-z amplitudes and columns are for blocks\nRF: (::Matrix{RF}) RF matrix. The 1 row is for the coil and columns are for blocks\nADC: (::Array{ADC,1}) ADC block vector\nDUR: (::Vector, [s]) duration block vector\nDEF: (::Dict{String, Any}) dictionary with relevant information of the sequence. Possible keys could be [\"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":"gr = Grad(A, T)\ngr = Grad(A, T, rise)\ngr = Grad(A, T, rise, delay)\ngr = Grad(A, T, rise, fall, delay)\n\nThe Grad struct represents a gradient of a sequence event.\n\nArguments\n\nA: (::Real or ::Vector, [T/m]) amplitude of the gradient\nT: (::Real or ::Vector, [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\ngr: (::Grad) gradient struct\n\nExamples\n\njulia> gr = Grad(1, 1, 0.1, 0.1, 0.2)\n\njulia> seq = Sequence([gr]); plot_seq(seq)\n\n\n\n\n\n","category":"type"},{"location":"api/#KomaMRICore.Grad-Tuple{Function, Real, Int64}","page":"API Documentation","title":"KomaMRICore.Grad","text":"gr = Grad(f::Function, T::Real, N::Integer; delay::Real)\n\nGenerates an arbitrary gradient waveform defined by the function f in the interval t ∈ [0,T]. The time separation between two consecutive samples is given by T/(N-1).\n\nArguments\n\nf: (::Function) function that describes the gradient waveform\nT: (::Real, [s]) duration of the gradient waveform\nN: (::Integer, =300) number of samples of the gradient waveform\n\nKeywords\n\ndelay: (::Real, =0, [s]) delay time of the waveform\n\nReturns\n\ngr: (::Grad) gradient struct\n\nExamples\n\njulia> gx = Grad(t -> sin(π*t / 0.8), 0.8)\n\njulia> seq = Sequence([gx]); 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 represents a Radio Frequency excitation of a sequence event.\n\nArguments\n\nA: (::Complex, [T]) RF complex amplitud modulation (AM), B_1(t) = B_1(t) e^iphi(t) = B_1(t) + iB_1y(t)\nT: (::Real, [s]) RF duration\nΔf: (::Real or ::Vector, [Hz]) RF frequency difference with respect to the Larmor frequency. This can be a number but also a vector to represent frequency modulated signals (FM).\ndelay: (::Real, [s]) RF delay time\n\nReturns\n\nrf: (::RF) the RF struct\n\nExamples\n\njulia> rf = RF(1, 1, 0, 0.2)\n\njulia> seq = Sequence(); seq += rf; plot_seq(seq)\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 represents the Analog to Digital Converter (ADC) of a sequence event.\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 is meant to compensate RF pulse phases\nϕ: (::Float64, [rad]) phase. It is meant to compensate RF pulse phases\n\nReturns\n\nadc: (::ADC) ADC struct\n\nExamples\n\njulia> adc = ADC(16, 1, 0.1)\n\njulia> seq = Sequence(); seq += adc; plot_seq(seq)\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 is 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\nExamples\n\njulia> delay = Delay(0.5)\n\njulia> s = Sequence([Grad(1, 1, 0.1)])\n\njulia> seq = delay + s; plot_seq(seq)\n\n\n\n\n\n","category":"type"},{"location":"api/#Read-Data","page":"API Documentation","title":"Read Data","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"CurrentModule = KomaMRIFiles","category":"page"},{"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/#KomaMRIFiles.read_seq","page":"API Documentation","title":"KomaMRIFiles.read_seq","text":"seq = read_seq(filename)\n\nReturns the Sequence struct from a Pulseq file with .seq extension.\n\nArguments\n\nfilename: (::String) 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/#KomaMRIFiles.read_phantom_jemris","page":"API Documentation","title":"KomaMRIFiles.read_phantom_jemris","text":"obj = 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\nobj: (::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/#KomaMRIFiles.read_phantom_MRiLab","page":"API Documentation","title":"KomaMRIFiles.read_phantom_MRiLab","text":"obj = 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\nobj: (::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 = signal_to_raw_data(signal, seq; phantom_name, sys, sim_params)\n\nTransforms the raw signal into a RawAcquisitionData struct (nearly equivalent to the ISMRMRD format) used for reconstruction with MRIReco.\n\nArguments\n\nsignal: (::Matrix{Complex}) raw signal matrix\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nphantom_name: (::String, =\"Phantom\") phantom name\nsys: (::Scanner, =Scanner()) Scanner struct\nsim_params: (::Dict{String, Any}, =Dict{String,Any}()) simulation parameter dictionary\n\nReturns\n\nraw: (::RawAcquisitionData) RawAcquisitionData struct\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/epi_se.seq\")\n\njulia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)\n\njulia> sim_params = KomaMRICore.default_sim_params(); sim_params[\"return_type\"] = \"mat\"\n\njulia> signal = simulate(obj, seq, sys; sim_params)\n\njulia> raw = signal_to_raw_data(signal, seq)\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/","page":"API Documentation","title":"API Documentation","text":"CurrentModule = KomaMRICore","category":"page"},{"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":"seq = RF_hard(B1, T, sys; G=[0, 0, 0], Δf=0)\n\nReturns a sequence with a RF excitation pulse.\n\nArguments\n\nB1: (::Number, [T]) RF pulse amplitude\nT: (::Real, [s]) RF pulse duration\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nG: (::Vector{Real}, =[0, 0, 0], [T/m]) gradient amplitudes for x, y, z\nΔf: (::Real, =0, [Hz]) RF pulse carrier frequency displacement\n\nReturns\n\nseq: (::Sequence) Sequence struct with a RF pulse\n\nExamples\n\njulia> sys = Scanner(); durRF = π / 2 / (2π * γ * sys.B1);\n\njulia> seq = PulseDesigner.RF_hard(sys.B1, durRF, sys);\n\njulia> plot_seq(seq)\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 = RF_sinc(B1, T, sys; G=[0, 0, 0], Δf=0, a=0.46, TBP=4)\n\nReturns a sequence with a RF sinc waveform.\n\nReferences\n\nMatt A. Bernstein, Kevin F. King, Xiaohong Joe Zhou, Chapter 2 - Radiofrequency Pulse\n\nShapes, Handbook of MRI Pulse Sequences, 2004, Pages 35-66, https://doi.org/10.1016/B978-012092861-3/50006-6.\n\nArguments\n\nB1: (::Number, [T]) RF sinc amplitude\nT: (::Real, [s]) RF sinc duration\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nG: (::Vector{Real}, =[0, 0, 0], [T/m]) gradient amplitudes for x, y, z\nΔf: (::Real, =0, [Hz]) RF pulse carrier frequency displacement\na: (::Real, =0.46) height appodization window parameter\nTBP: (::Real, =4) width appodization window parameter\n\nReturns\n\nseq: (::Sequence) Sequence struct with a RF pulse\n\nExamples\n\njulia> sys = Scanner(); durRF = π / 2 / (2π * γ * sys.B1);\n\njulia> seq = PulseDesigner.RF_sinc(sys.B1, durRF, sys);\n\njulia> plot_seq(seq)\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":"seq = EPI(FOV::Real, N::Integer, sys::Scanner)\n\nReturns a sequence with EPI gradients.\n\nArguments\n\nFOV: (::Real, [m]) field of view\nN: (::Integer) number of pixels in the x and y axis\nsys: (::Scanner) Scanner struct\n\nReturns\n\nseq: (::Sequence) Sequence struct with EPI gradients\n\nExamples\n\njulia> sys, FOV, N = Scanner(), 23e-2, 101\n\njulia> seq = PulseDesigner.EPI(FOV, N, sys)\n\njulia> plot_seq(seq)\n\njulia> plot_kspace(seq)\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::Real, Nr::Integer, sys::Scanner)\n\nReturns a sequence with radial gradients for a single trajectory.\n\nArguments\n\nFOV: (::Real, [m]) field of view\nN: (::Integer) number of pixels along the diameter\nsys: (::Scanner) Scanner struct\n\nReturns\n\nseq: (::Sequence) Sequence struct of a single radial trajectory\n\nExamples\n\njulia> sys, FOV, N = Scanner(), 23e-2, 101\n\njulia> seq = PulseDesigner.radial_base(FOV, N, sys)\n\njulia> plot_seq(seq)\n\njulia> plot_kspace(seq)\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":"spiral = spiral_base(FOV, N, sys; S0=sys.Smax*2/3, Nint=8, λ=Nint/FOV, BW=60e3)\n\nDefinition of a spiral base sequence.\n\nReferences\n\nGlover, G.H. (1999), Simple analytic spiral K-space algorithm. Magn. Reson. Med.,\n\n42: 412-415. https://doi.org/10.1002/(SICI)1522-2594(199908)42:2<412::AID-MRM25>3.0.CO;2-U\n\nArguments\n\nFOV: (::Real, [m]) field of view\nN: (::Integer) number of pixels along the radious\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nS0: (::Vector{Real}, =sys.Smax*2/3, [T/m/s]) slew rate reference\nNint: (::Integer, =8) number of interleaves\nλ: (::Real, =Nint/FOV, [1/m]) kspace spiral parameter\nBW: (::Real, =60e3, [Hz]) adquisition parameter\n\nReturns\n\nspiral: (::Function) function that returns a Sequence struct when evaluated\n\nExamples\n\njulia> sys, FOV, N = Scanner(), 23e-2, 101\n\njulia> spiral = PulseDesigner.spiral_base(FOV, N, sys)\n\njulia> seq = spiral(0)\n\njulia> plot_seq(seq)\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/#KomaMRICore.PulseDesigner.EPI_example","page":"API Documentation","title":"KomaMRICore.PulseDesigner.EPI_example","text":"seq = EPI_example(; sys=Scanner())\n\nReturns a sequence suitable for acquiring the 2D brain example in the provided examples.\n\nKeywords\n\nsys: (::Scanner) Scanner struct\n\nReturns\n\nseq: (::Sequence) EPI example Sequence struct\n\nExamples\n\njulia> seq = PulseDesigner.EPI_example();\n\njulia> plot_seq(seq)\n\n\n\n\n\n","category":"function"},{"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; sim_params, w)\n\nReturns the raw signal or the last state of the magnetization according to the value of the \"return_type\" key of the sim_params dictionary.\n\nArguments\n\nobj: (::Phantom) Phantom struct\nseq: (::Sequence) Sequence struct\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nsim_params: (::Dict{String,Any}, =Dict{String,Any}()) simulation parameter dictionary\nw: (::Blink.AtomShell.Window, =nothing) the window within which to display a progress bar in the Blink Window UI. If this variable is anything other than 'nothing', the progress bar will be considered\n\nReturns\n\nout: (::Vector{Complex} or ::SpinStateRepresentation or ::RawAcquisitionData) depending on whether \"return_type\" is \"mat\", \"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":"mag = simulate_slice_profile(seq; z, sim_params)\n\nReturns magnetization of spins distributed along z after running the Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nz: (=range(-2e-2,2e-2,200)) range for the z axis\nsim_params: (::Dict{String, Any}, =Dict{String,Any}(\"Δt_rf\"=>1e-6)) dictionary with simulation parameters\n\nReturns\n\nmag: (::SpinStateRepresentation) final state of the magnetization 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(obj::Phantom, key::Symbol; kwargs...)\n\nPlots a phantom map for a specific spin parameter given by key.\n\nArguments\n\nobj: (::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: (::Real, =0, [ms]) time to see displacement of the phantom\nheight: (::Integer, =600) plot height\nwidth: (::Integer, =nothing) plot width\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nview_2d: (::Bool, =false) boolean to indicate whether to use a 2D scatter plot\ncolorbar: (::Bool, =true) boolean to indicate whether to display a 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::Sequence; kwargs...)\n\nPlots a sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\nmax_rf_samples: (::Integer, =100) maximum number of RF samples\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::Sequence; 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: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the k-space 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_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::Sequence; kwargs...)\n\nPlots the zero order moment (M0) of a Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M0 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_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::Sequence; kwargs...)\n\nPlots the first order moment (M1) of a Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M1 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_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::Sequence; kwargs...)\n\nPlots the second order moment (M2) of a Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M2 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_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::Sequence, λ; kwargs...)\n\nPlots the eddy currents of a Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\nλ: (::Real, [s]) time constant for the decay of Eddy currents\n\nKeywords\n\nα: (::Vector{Real}, =ones(size(λ))) eddy currents factors\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the Eddy currents 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_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::Sequence; kwargs...)\n\nPlots the slew rate currents of a Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the slew rate currents 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_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; kwargs...)\n\nPlots a raw signal in ISMRMRD format.\n\nArguments\n\nraw: (::RawAcquisitionData) RawAcquisitionData struct (raw signal in ISMRMRD format)\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) 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{Number}) image matrix\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nzmin: (::Real, =minimum(abs.(image[:]))) reference value for minimum color\nzmax: (::Real, =maximum(abs.(image[:]))) reference value for maximum color\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\ntitle: (::String, =\"\") plot title\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":"As we already know, a Sequence struct contains field names that store arrays of RF, Grad, and ADC structs. In the context of MRI, we refer to RF, Grad, and ADC as \"events.\" 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 guide you through the process of creating 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":"events/#Algebraic-manipulation","page":"Sequence Events","title":"Algebraic manipulation","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Certain mathematical operations can be directly applied to events and sequence structs. This proves helpful when constructing sequences using reference structs and manipulating them algebraically to create new structs. Below, we provide a list of operations you can perform, along with examples where we check the equivalence of two different struct definitions:","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"RF scaling","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define params\nA, T = 10e-6, 0.5e-3 # Define base RF params \nα = (1 + im*1)/sqrt(2) # Define a complex scaling factor\n\n# Create two equivalent RFs in different ways\nra = RF(α * A, T)\nrb = α * RF(A, T)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> ra ≈ rb\ntrue","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Gradient scaling","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define params\nA, T = 10e-3, 0.5e-3 # Define base gradient params \nα = 2 # Define a scaling factor\n\n# Create two equivalent gradients in different ways\nga = Grad(α * A, T)\ngb = α * Grad(A, T)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> ga ≈ gb\ntrue","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Gradient addition","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define params\nT = 0.5e-3 # Define common duration of the gradients\nA1 = 5e-3 # Define base amplitude for gradient \nA2 = 10e-3 # Define another base amplitude for gradient \n\n# Create two equivalent gradients in different ways\nga = Grad(A1 + A2, T)\ngb = Grad(A1, T) + Grad(A2, T)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> ga ≈ gb\ntrue","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Gradient array multiplication by a matrix","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define params\nT = 0.5e-3 # Define common duration of the gradients\nAx, Ay, Az = 10e-3, 20e-3, 5e-3 # Define base amplitude for gradients \ngx, gy, gz = Grad(Ax, T), Grad(Ay, T), Grad(Az, T) # Define gradients\nR = [0 1. 0; 0 0 1.; 1. 0 0] # Define matrix (a rotation matrix in this example)\n\n# Create two equivalent gradient vectors in different ways\nga = [gy; gz; gx]\ngb = R * [gx; gy; gz]\n\n# Create two equivalent gradient matrices in different ways\ngc = [gy 2*gy; gz 2*gz; gx 2*gx]\ngd = R * [gx 2*gx; gy 2*gy; gz 2*gz]","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> all(ga .≈ gb)\ntrue\n\njulia> all(gc .≈ gd)\ntrue","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Sequence rotation","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define params\nT = 0.5e-3 # Define common duration of the gradients\nAx, Ay, Az = 10e-3, 20e-3, 5e-3 # Define base amplitude for gradients \ngx, gy, gz = Grad(Ax, T), Grad(Ay, T), Grad(Az, T) # Define gradients\nR = [0 1. 0; 0 0 1.; 1. 0 0] # Define matrix (a rotation matrix in this example)\n\n# Create two equivalent sequences in different ways\nsa = Sequence(R * [gx; gy; gz;;])\nsb = R * Sequence([gx; gy; gz;;])","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> all(sa.GR .≈ sb.GR)\ntrue","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 provides a comprehensive guide on using the User Interface of the KomaMRI package and delves into the internal processes that occur during interaction. By the end of this section, you will be equipped to execute a complete workflow even without any prior programming experience.","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

      ","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/","page":"User Interface","title":"User Interface","text":"And remember, you are free to interact with the plots:","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":"ui-details/","page":"User Interface","title":"User Interface","text":"

      ","category":"page"},{"location":"ui-details/#REPL-and-UI-communication","page":"User Interface","title":"REPL and UI communication","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"An amazing feature of KomaMRI is that it allows you to modify certain variables in the Julia REPL, and then the user interface automatically updates its plots in real-time:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

      ","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"The variables that update the interface are:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"seq_ui[] for the Sequence\nobj_ui[] for the Phantom\nsys_ui[] for the Scanner\nraw_ui[] for the Raw Signal\nimg_ui[] for the Image","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"Don't forget to add the brackets [] to these variables, otherwise it won't work.","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 plot_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":"
      ","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"Figure 1: The sequence seq is discretized after calculating the required time points in the wrapper function simulate. The time points are then divided into Nblocks to reduce the amount of memory used. The phantom obj is divided into Nthreads, and KomaMRI will use either run_spin_excitation! or run_spin_precession! depending on the regime. If an ADC object is present, the simulator will add the signal contributions of each thread to construct the acquired signal sig[t]. All the parameters: Nthreads, Nblocks, Δt_rf, and Δt, are passed through a dictionary called sim_params as an optional parameter of the simulate function.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"From the programming perspective, it is needed to call the simulate function 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":"Parameter Description\n\"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/#Bloch()-Method-Example","page":"Simulation","title":"Bloch() Method Example","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"We will consider an RF pulse that excites a phantom with 3 spins, and then we acquire the data:","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"
      View code","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"# Import modules\nusing KomaMRI\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 = 4000e-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","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"
      ","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> obj = Phantom(x=[-0.5e-3; 0.0; 0.5e-3], T1=[1000e-3; 2000e-3; 500e-3], T2=[500e-3; 1000e-3; 2000e-3]);","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> plot_seq(seq; slider=false)","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The resulting signal from the Bloch() method is the sum of magnetizations in the transverse plane (x, y):","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"# Configure Bloch() simulation method and run simulation\nsim_params = KomaMRICore.default_sim_params()\nsim_params[\"return_type\"] = \"mat\"\nsim_params[\"sim_method\"] = Bloch()\nsig = simulate(obj, seq, sys; sim_params)","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> plot(abs.(sig[:,1,1]))","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"","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. You can specify it by setting the sim_method = BlochDict() entry in the sim_params dictionary. Additionally, it offers the option to save the resulting signal in the z-component by using sim_method = BlochDict(save_Mz=true). This method allows you to store the magnetizations of all spins in both the transverse plane (x, y) and the longitudinal axis (z) if specified.","category":"page"},{"location":"mri-theory/#BlochDict()-Method-Example","page":"Simulation","title":"BlochDict() Method Example","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"We are going to consider the same setup as in the Bloch() Method Example. This includes the same excitation, acquisition, and the same 3-spin phantom:","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"
      View code","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"# Import modules\nusing KomaMRI, PlotlyJS\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 = 4000e-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","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"
      ","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> obj = Phantom(x=[-0.5e-3; 0.0; 0.5e-3], T1=[1000e-3; 2000e-3; 500e-3], T2=[500e-3; 1000e-3; 2000e-3]);","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> plot_seq(seq; slider=false)","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The resulting signal from the BlochDict() method comprises the individual magnetizations of all spins in both the transverse plane (x, y) and the longitudinal axis (z):","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"# Configure BlochDict() simulation method and run simulation\nsim_params = KomaMRICore.default_sim_params()\nsim_params[\"return_type\"] = \"mat\"\nsim_params[\"sim_method\"] = BlochDict(save_Mz=true)\nsig = simulate(obj, seq, sys; sim_params)\n\n# Define the plots for traverse and longitudinal magnetizations\npxy = plot(abs.(sig[:,:,1]));\npz = plot(abs.(sig[:,:,2]));","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> [pxy pz]","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"","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"}] +[{"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 plot_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/#Pluto","page":"Notebooks","title":"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/#Jupyter","page":"Notebooks","title":"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 the KomaUI function.","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":"pluto-simulation/#D-Simulations:-FID,-GE,-and-SE","page":"Educational Material 📚","title":"1D Simulations: FID, GE, and SE","text":"","category":"section"},{"location":"pluto-simulation/","page":"Educational Material 📚","title":"Educational Material 📚","text":"This example was used in the workshop MRI: Processing your own data. In the workshop's GitHub you'll find:","category":"page"},{"location":"pluto-simulation/","page":"Educational Material 📚","title":"Educational Material 📚","text":"A presentation on open-source software \nand an introduction to MRI simulation.","category":"page"},{"location":"pluto-simulation/","page":"Educational Material 📚","title":"Educational Material 📚","text":"The participants used KomaMRI within a Pluto notebook to simulate some basic 1D sequences: Free Induction Decay (FID), Gradient Echo (GE), and Spin Echo (SE). Try to solve the problems yourself! 😼","category":"page"},{"location":"pluto-simulation/","page":"Educational Material 📚","title":"Educational Material 📚","text":"\n
      View Solution\n\n
      ","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\", \"pelvis2D.mat\")\ndata = MAT.matread(path_phantom_mat)\nclass = data[\"pelvis3D_slice\"]","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 plot_image function:","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 soft tissue, we use ρ = 0.9, T1 = 1200 * 1e-3, T2 = 80 * 1e-3, and T2s = 80 * 1e-3. Additionally, we create an array mask to identify the location of a tissue's ID. For soft tissue with ID = 153, the mask is (class .== 153). 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.==51)*.001 .+ # Air\n (class.==102)*.86 .+ # Fat\n (class.==153)*.9 .+ # SoftTissue\n (class.==204)*.4 .+ # SpongyBone\n (class.==255)*.2 # CorticalBone\n\n# Define the T1 decay array\nT1 = (class.==51)*.001 .+ # Air\n (class.==102)*366 .+ # Fat\n (class.==153)*1200 .+ # SoftTissue\n (class.==204)*381 .+ # SpongyBone\n (class.==255)*100 # CorticalBone\n\n# Define the T2 decay array\nT2 = (class.==51)*.001 .+ # Air\n (class.==102)*70 .+ # Fat\n (class.==153)*80 .+ # SoftTissue\n (class.==204)*52 .+ # SpongyBone\n (class.==255)*.3 # CorticalBone\n\n# Define the T2s decay array\nT2s = (class.==51)*.001 .+ # Air\n (class.==102)*70 .+ # Fat\n (class.==153)*80 .+ # SoftTissue\n (class.==204)*52 .+ # SpongyBone\n (class.==255)*.3 # CorticalBone\n\n# Define off-resonance array\nΔw_fat = -220 * 2π\nΔw = (class.==102) * Δw_fat # FAT1\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.","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-pelvis\",\n\tx = x[ρ.!=0],\n\ty = y[ρ.!=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 T1 decay 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, :T1)","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. It contains hardware limitations of the MRI resonator. It is an input for the simulation.\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's 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. Most of its field names are vectors, with each element associated with a property value representing a spin. This struct serves as an input for the simulation.\n\nArguments\n\nname: (::String) phantom name\nx: (::AbstractVector{T<:Real}, [m]) spin x-position vector\ny: (::AbstractVector{T<:Real}, [m]) spin y-position vector\nz: (::AbstractVector{T<:Real}, [m]) spin z-position vector\nρ: (::AbstractVector{T<:Real}) spin proton density vector\nT1: (::AbstractVector{T<:Real}, [s]) spin T1 parameter vector\nT2: (::AbstractVector{T<:Real}, [s]) spin T2 parameter vector\nT2s: (::AbstractVector{T<:Real}, [s]) spin T2s parameter vector\nΔw: (::AbstractVector{T<:Real}, [rad/s]) spin off-resonance parameter vector\nDλ1: (::AbstractVector{T<:Real}) spin Dλ1 (diffusion) parameter vector\nDλ2: (::AbstractVector{T<:Real}) spin Dλ2 (diffusion) parameter vector\nDθ: (::AbstractVector{T<:Real}) spin Dθ (diffusion) parameter vector\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(x=[0.0])\n\njulia> obj.ρ\n\n\n\n\n\n","category":"type"},{"location":"api/#KomaMRICore.brain_phantom2D","page":"API Documentation","title":"KomaMRICore.brain_phantom2D","text":"obj = brain_phantom2D(; axis=\"axial\", ss=4)\n\nCreates a two-dimensional 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\", \"coronal\", \"sagittal\"]) orientation of the phantom\nss: (::Integer, =4) subsampling parameter in all axis\n\nReturns\n\nobj: (::Phantom) Phantom struct\n\nExamples\n\njulia> obj = brain_phantom2D(; axis=\"sagittal\", ss=1)\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":"obj = 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: (::Integer, =4) subsampling parameter in all axes\n\nReturns\n\nobj: (::Phantom) 3D Phantom struct\n\nExamples\n\njulia> obj = brain_phantom3D(; ss=5)\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. It contains events of an MRI sequence. Most field names (except for the DEF field) consist of matrices or vectors, where each column index represents a sequence block. This struct serves as an input for the simulation.\n\nArguments\n\nGR: (::Matrix{Grad}) gradient matrix. Rows for x-y-z amplitudes and columns are for blocks\nRF: (::Matrix{RF}) RF matrix. The 1 row is for the coil and columns are for blocks\nADC: (::Array{ADC,1}) ADC block vector\nDUR: (::Vector, [s]) duration block vector\nDEF: (::Dict{String, Any}) dictionary with relevant information of the sequence. Possible keys could be [\"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":"gr = Grad(A, T)\ngr = Grad(A, T, rise)\ngr = Grad(A, T, rise, delay)\ngr = Grad(A, T, rise, fall, delay)\n\nThe Grad struct represents a gradient of a sequence event.\n\nArguments\n\nA: (::Real or ::Vector, [T/m]) amplitude of the gradient\nT: (::Real or ::Vector, [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\ngr: (::Grad) gradient struct\n\nExamples\n\njulia> gr = Grad(1, 1, 0.1, 0.1, 0.2)\n\njulia> seq = Sequence([gr]); plot_seq(seq)\n\n\n\n\n\n","category":"type"},{"location":"api/#KomaMRICore.Grad-Tuple{Function, Real, Int64}","page":"API Documentation","title":"KomaMRICore.Grad","text":"gr = Grad(f::Function, T::Real, N::Integer; delay::Real)\n\nGenerates an arbitrary gradient waveform defined by the function f in the interval t ∈ [0,T]. The time separation between two consecutive samples is given by T/(N-1).\n\nArguments\n\nf: (::Function) function that describes the gradient waveform\nT: (::Real, [s]) duration of the gradient waveform\nN: (::Integer, =300) number of samples of the gradient waveform\n\nKeywords\n\ndelay: (::Real, =0, [s]) delay time of the waveform\n\nReturns\n\ngr: (::Grad) gradient struct\n\nExamples\n\njulia> gx = Grad(t -> sin(π*t / 0.8), 0.8)\n\njulia> seq = Sequence([gx]); 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 represents a Radio Frequency excitation of a sequence event.\n\nArguments\n\nA: (::Complex, [T]) RF complex amplitud modulation (AM), B_1(t) = B_1(t) e^iphi(t) = B_1(t) + iB_1y(t)\nT: (::Real, [s]) RF duration\nΔf: (::Real or ::Vector, [Hz]) RF frequency difference with respect to the Larmor frequency. This can be a number but also a vector to represent frequency modulated signals (FM).\ndelay: (::Real, [s]) RF delay time\n\nReturns\n\nrf: (::RF) the RF struct\n\nExamples\n\njulia> rf = RF(1, 1, 0, 0.2)\n\njulia> seq = Sequence(); seq += rf; plot_seq(seq)\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 represents the Analog to Digital Converter (ADC) of a sequence event.\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 is meant to compensate RF pulse phases\nϕ: (::Float64, [rad]) phase. It is meant to compensate RF pulse phases\n\nReturns\n\nadc: (::ADC) ADC struct\n\nExamples\n\njulia> adc = ADC(16, 1, 0.1)\n\njulia> seq = Sequence(); seq += adc; plot_seq(seq)\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 is 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\nExamples\n\njulia> delay = Delay(0.5)\n\njulia> s = Sequence([Grad(1, 1, 0.1)])\n\njulia> seq = delay + s; plot_seq(seq)\n\n\n\n\n\n","category":"type"},{"location":"api/#Read-Data","page":"API Documentation","title":"Read Data","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"CurrentModule = KomaMRIFiles","category":"page"},{"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/#KomaMRIFiles.read_seq","page":"API Documentation","title":"KomaMRIFiles.read_seq","text":"seq = read_seq(filename)\n\nReturns the Sequence struct from a Pulseq file with .seq extension.\n\nArguments\n\nfilename: (::String) 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/#KomaMRIFiles.read_phantom_jemris","page":"API Documentation","title":"KomaMRIFiles.read_phantom_jemris","text":"obj = 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\nobj: (::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/#KomaMRIFiles.read_phantom_MRiLab","page":"API Documentation","title":"KomaMRIFiles.read_phantom_MRiLab","text":"obj = 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\nobj: (::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 = signal_to_raw_data(signal, seq; phantom_name, sys, sim_params)\n\nTransforms the raw signal into a RawAcquisitionData struct (nearly equivalent to the ISMRMRD format) used for reconstruction with MRIReco.\n\nArguments\n\nsignal: (::Matrix{Complex}) raw signal matrix\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nphantom_name: (::String, =\"Phantom\") phantom name\nsys: (::Scanner, =Scanner()) Scanner struct\nsim_params: (::Dict{String, Any}, =Dict{String,Any}()) simulation parameter dictionary\n\nReturns\n\nraw: (::RawAcquisitionData) RawAcquisitionData struct\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/epi_se.seq\")\n\njulia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)\n\njulia> sim_params = KomaMRICore.default_sim_params(); sim_params[\"return_type\"] = \"mat\"\n\njulia> signal = simulate(obj, seq, sys; sim_params)\n\njulia> raw = signal_to_raw_data(signal, seq)\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/","page":"API Documentation","title":"API Documentation","text":"CurrentModule = KomaMRICore","category":"page"},{"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":"seq = RF_hard(B1, T, sys; G=[0, 0, 0], Δf=0)\n\nReturns a sequence with a RF excitation pulse.\n\nArguments\n\nB1: (::Number, [T]) RF pulse amplitude\nT: (::Real, [s]) RF pulse duration\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nG: (::Vector{Real}, =[0, 0, 0], [T/m]) gradient amplitudes for x, y, z\nΔf: (::Real, =0, [Hz]) RF pulse carrier frequency displacement\n\nReturns\n\nseq: (::Sequence) Sequence struct with a RF pulse\n\nExamples\n\njulia> sys = Scanner(); durRF = π / 2 / (2π * γ * sys.B1);\n\njulia> seq = PulseDesigner.RF_hard(sys.B1, durRF, sys);\n\njulia> plot_seq(seq)\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 = RF_sinc(B1, T, sys; G=[0, 0, 0], Δf=0, a=0.46, TBP=4)\n\nReturns a sequence with a RF sinc waveform.\n\nReferences\n\nMatt A. Bernstein, Kevin F. King, Xiaohong Joe Zhou, Chapter 2 - Radiofrequency Pulse\n\nShapes, Handbook of MRI Pulse Sequences, 2004, Pages 35-66, https://doi.org/10.1016/B978-012092861-3/50006-6.\n\nArguments\n\nB1: (::Number, [T]) RF sinc amplitude\nT: (::Real, [s]) RF sinc duration\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nG: (::Vector{Real}, =[0, 0, 0], [T/m]) gradient amplitudes for x, y, z\nΔf: (::Real, =0, [Hz]) RF pulse carrier frequency displacement\na: (::Real, =0.46) height appodization window parameter\nTBP: (::Real, =4) width appodization window parameter\n\nReturns\n\nseq: (::Sequence) Sequence struct with a RF pulse\n\nExamples\n\njulia> sys = Scanner(); durRF = π / 2 / (2π * γ * sys.B1);\n\njulia> seq = PulseDesigner.RF_sinc(sys.B1, durRF, sys);\n\njulia> plot_seq(seq)\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":"seq = EPI(FOV::Real, N::Integer, sys::Scanner)\n\nReturns a sequence with EPI gradients.\n\nArguments\n\nFOV: (::Real, [m]) field of view\nN: (::Integer) number of pixels in the x and y axis\nsys: (::Scanner) Scanner struct\n\nReturns\n\nseq: (::Sequence) Sequence struct with EPI gradients\n\nExamples\n\njulia> sys, FOV, N = Scanner(), 23e-2, 101\n\njulia> seq = PulseDesigner.EPI(FOV, N, sys)\n\njulia> plot_seq(seq)\n\njulia> plot_kspace(seq)\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::Real, Nr::Integer, sys::Scanner)\n\nReturns a sequence with radial gradients for a single trajectory.\n\nArguments\n\nFOV: (::Real, [m]) field of view\nN: (::Integer) number of pixels along the diameter\nsys: (::Scanner) Scanner struct\n\nReturns\n\nseq: (::Sequence) Sequence struct of a single radial trajectory\n\nExamples\n\njulia> sys, FOV, N = Scanner(), 23e-2, 101\n\njulia> seq = PulseDesigner.radial_base(FOV, N, sys)\n\njulia> plot_seq(seq)\n\njulia> plot_kspace(seq)\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":"spiral = spiral_base(FOV, N, sys; S0=sys.Smax*2/3, Nint=8, λ=Nint/FOV, BW=60e3)\n\nDefinition of a spiral base sequence.\n\nReferences\n\nGlover, G.H. (1999), Simple analytic spiral K-space algorithm. Magn. Reson. Med.,\n\n42: 412-415. https://doi.org/10.1002/(SICI)1522-2594(199908)42:2<412::AID-MRM25>3.0.CO;2-U\n\nArguments\n\nFOV: (::Real, [m]) field of view\nN: (::Integer) number of pixels along the radious\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nS0: (::Vector{Real}, =sys.Smax*2/3, [T/m/s]) slew rate reference\nNint: (::Integer, =8) number of interleaves\nλ: (::Real, =Nint/FOV, [1/m]) kspace spiral parameter\nBW: (::Real, =60e3, [Hz]) adquisition parameter\n\nReturns\n\nspiral: (::Function) function that returns a Sequence struct when evaluated\n\nExamples\n\njulia> sys, FOV, N = Scanner(), 23e-2, 101\n\njulia> spiral = PulseDesigner.spiral_base(FOV, N, sys)\n\njulia> seq = spiral(0)\n\njulia> plot_seq(seq)\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/#KomaMRICore.PulseDesigner.EPI_example","page":"API Documentation","title":"KomaMRICore.PulseDesigner.EPI_example","text":"seq = EPI_example(; sys=Scanner())\n\nReturns a sequence suitable for acquiring the 2D brain example in the provided examples.\n\nKeywords\n\nsys: (::Scanner) Scanner struct\n\nReturns\n\nseq: (::Sequence) EPI example Sequence struct\n\nExamples\n\njulia> seq = PulseDesigner.EPI_example();\n\njulia> plot_seq(seq)\n\n\n\n\n\n","category":"function"},{"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; sim_params, w)\n\nReturns the raw signal or the last state of the magnetization according to the value of the \"return_type\" key of the sim_params dictionary.\n\nArguments\n\nobj: (::Phantom) Phantom struct\nseq: (::Sequence) Sequence struct\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nsim_params: (::Dict{String,Any}, =Dict{String,Any}()) simulation parameter dictionary\nw: (::Blink.AtomShell.Window, =nothing) the window within which to display a progress bar in the Blink Window UI. If this variable is anything other than 'nothing', the progress bar will be considered\n\nReturns\n\nout: (::Vector{Complex} or ::SpinStateRepresentation or ::RawAcquisitionData) depending on whether \"return_type\" is \"mat\", \"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":"mag = simulate_slice_profile(seq; z, sim_params)\n\nReturns magnetization of spins distributed along z after running the Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nz: (=range(-2e-2,2e-2,200)) range for the z axis\nsim_params: (::Dict{String, Any}, =Dict{String,Any}(\"Δt_rf\"=>1e-6)) dictionary with simulation parameters\n\nReturns\n\nmag: (::SpinStateRepresentation) final state of the magnetization 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(obj::Phantom, key::Symbol; kwargs...)\n\nPlots a phantom map for a specific spin parameter given by key.\n\nArguments\n\nobj: (::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: (::Real, =0, [ms]) time to see displacement of the phantom\nheight: (::Integer, =600) plot height\nwidth: (::Integer, =nothing) plot width\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nview_2d: (::Bool, =false) boolean to indicate whether to use a 2D scatter plot\ncolorbar: (::Bool, =true) boolean to indicate whether to display a 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::Sequence; kwargs...)\n\nPlots a sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\nmax_rf_samples: (::Integer, =100) maximum number of RF samples\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::Sequence; 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: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the k-space 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_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::Sequence; kwargs...)\n\nPlots the zero order moment (M0) of a Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M0 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_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::Sequence; kwargs...)\n\nPlots the first order moment (M1) of a Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M1 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_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::Sequence; kwargs...)\n\nPlots the second order moment (M2) of a Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M2 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_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::Sequence, λ; kwargs...)\n\nPlots the eddy currents of a Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\nλ: (::Real, [s]) time constant for the decay of Eddy currents\n\nKeywords\n\nα: (::Vector{Real}, =ones(size(λ))) eddy currents factors\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the Eddy currents 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_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::Sequence; kwargs...)\n\nPlots the slew rate currents of a Sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) time range to be displayed initially\ntitle: (::String, =\"\") plot title\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the slew rate currents 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_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; kwargs...)\n\nPlots a raw signal in ISMRMRD format.\n\nArguments\n\nraw: (::RawAcquisitionData) RawAcquisitionData struct (raw signal in ISMRMRD format)\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nslider: (::Bool, =true) boolean to indicate whether to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to indicate whether to display sequence blocks\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\nrange: (::Vector{Real}, =[]) 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{Number}) image matrix\n\nKeywords\n\nwidth: (::Integer, =nothing) plot width\nheight: (::Integer, =nothing) plot height\nzmin: (::Real, =minimum(abs.(image[:]))) reference value for minimum color\nzmax: (::Real, =maximum(abs.(image[:]))) reference value for maximum color\ndarkmode: (::Bool, =false) boolean to indicate whether to display darkmode style\ntitle: (::String, =\"\") plot title\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":"As we already know, a Sequence struct contains field names that store arrays of RF, Grad, and ADC structs. In the context of MRI, we refer to RF, Grad, and ADC as \"events.\" 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 guide you through the process of creating 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":"events/#Algebraic-manipulation","page":"Sequence Events","title":"Algebraic manipulation","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Certain mathematical operations can be directly applied to events and sequence structs. This proves helpful when constructing sequences using reference structs and manipulating them algebraically to create new structs. Below, we provide a list of operations you can perform, along with examples where we check the equivalence of two different struct definitions:","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"RF scaling","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define params\nA, T = 10e-6, 0.5e-3 # Define base RF params \nα = (1 + im*1)/sqrt(2) # Define a complex scaling factor\n\n# Create two equivalent RFs in different ways\nra = RF(α * A, T)\nrb = α * RF(A, T)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> ra ≈ rb\ntrue","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Gradient scaling","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define params\nA, T = 10e-3, 0.5e-3 # Define base gradient params \nα = 2 # Define a scaling factor\n\n# Create two equivalent gradients in different ways\nga = Grad(α * A, T)\ngb = α * Grad(A, T)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> ga ≈ gb\ntrue","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Gradient addition","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define params\nT = 0.5e-3 # Define common duration of the gradients\nA1 = 5e-3 # Define base amplitude for gradient \nA2 = 10e-3 # Define another base amplitude for gradient \n\n# Create two equivalent gradients in different ways\nga = Grad(A1 + A2, T)\ngb = Grad(A1, T) + Grad(A2, T)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> ga ≈ gb\ntrue","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Gradient array multiplication by a matrix","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define params\nT = 0.5e-3 # Define common duration of the gradients\nAx, Ay, Az = 10e-3, 20e-3, 5e-3 # Define base amplitude for gradients \ngx, gy, gz = Grad(Ax, T), Grad(Ay, T), Grad(Az, T) # Define gradients\nR = [0 1. 0; 0 0 1.; 1. 0 0] # Define matrix (a rotation matrix in this example)\n\n# Create two equivalent gradient vectors in different ways\nga = [gy; gz; gx]\ngb = R * [gx; gy; gz]\n\n# Create two equivalent gradient matrices in different ways\ngc = [gy 2*gy; gz 2*gz; gx 2*gx]\ngd = R * [gx 2*gx; gy 2*gy; gz 2*gz]","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> all(ga .≈ gb)\ntrue\n\njulia> all(gc .≈ gd)\ntrue","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Sequence rotation","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define params\nT = 0.5e-3 # Define common duration of the gradients\nAx, Ay, Az = 10e-3, 20e-3, 5e-3 # Define base amplitude for gradients \ngx, gy, gz = Grad(Ax, T), Grad(Ay, T), Grad(Az, T) # Define gradients\nR = [0 1. 0; 0 0 1.; 1. 0 0] # Define matrix (a rotation matrix in this example)\n\n# Create two equivalent sequences in different ways\nsa = Sequence(R * [gx; gy; gz;;])\nsb = R * Sequence([gx; gy; gz;;])","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> all(sa.GR .≈ sb.GR)\ntrue","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 provides a comprehensive guide on using the User Interface of the KomaMRI package and delves into the internal processes that occur during interaction. By the end of this section, you will be equipped to execute a complete workflow even without any prior programming experience.","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

      ","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/","page":"User Interface","title":"User Interface","text":"And remember, you are free to interact with the plots:","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":"ui-details/","page":"User Interface","title":"User Interface","text":"

      ","category":"page"},{"location":"ui-details/#REPL-and-UI-communication","page":"User Interface","title":"REPL and UI communication","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"An amazing feature of KomaMRI is that it allows you to modify certain variables in the Julia REPL, and then the user interface automatically updates its plots in real-time:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

      ","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"The variables that update the interface are:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"seq_ui[] for the Sequence\nobj_ui[] for the Phantom\nsys_ui[] for the Scanner\nraw_ui[] for the Raw Signal\nimg_ui[] for the Image","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"Don't forget to add the brackets [] to these variables, otherwise it won't work.","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 plot_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":"
      ","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"Figure 1: The sequence seq is discretized after calculating the required time points in the wrapper function simulate. The time points are then divided into Nblocks to reduce the amount of memory used. The phantom obj is divided into Nthreads, and KomaMRI will use either run_spin_excitation! or run_spin_precession! depending on the regime. If an ADC object is present, the simulator will add the signal contributions of each thread to construct the acquired signal sig[t]. All the parameters: Nthreads, Nblocks, Δt_rf, and Δt, are passed through a dictionary called sim_params as an optional parameter of the simulate function.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"From the programming perspective, it is needed to call the simulate function 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":"Parameter Description\n\"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/#Bloch()-Method-Example","page":"Simulation","title":"Bloch() Method Example","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"We will consider an RF pulse that excites a phantom with 3 spins, and then we acquire the data:","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"
      View code","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"# Import modules\nusing KomaMRI\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 = 4000e-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","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"
      ","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> obj = Phantom(x=[-0.5e-3; 0.0; 0.5e-3], T1=[1000e-3; 2000e-3; 500e-3], T2=[500e-3; 1000e-3; 2000e-3]);","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> plot_seq(seq; slider=false)","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The resulting signal from the Bloch() method is the sum of magnetizations in the transverse plane (x, y):","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"# Configure Bloch() simulation method and run simulation\nsim_params = KomaMRICore.default_sim_params()\nsim_params[\"return_type\"] = \"mat\"\nsim_params[\"sim_method\"] = Bloch()\nsig = simulate(obj, seq, sys; sim_params)","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> plot(abs.(sig[:,1,1]))","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"","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. You can specify it by setting the sim_method = BlochDict() entry in the sim_params dictionary. Additionally, it offers the option to save the resulting signal in the z-component by using sim_method = BlochDict(save_Mz=true). This method allows you to store the magnetizations of all spins in both the transverse plane (x, y) and the longitudinal axis (z) if specified.","category":"page"},{"location":"mri-theory/#BlochDict()-Method-Example","page":"Simulation","title":"BlochDict() Method Example","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"We are going to consider the same setup as in the Bloch() Method Example. This includes the same excitation, acquisition, and the same 3-spin phantom:","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"
      View code","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"# Import modules\nusing KomaMRI, PlotlyJS\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 = 4000e-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","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"
      ","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> obj = Phantom(x=[-0.5e-3; 0.0; 0.5e-3], T1=[1000e-3; 2000e-3; 500e-3], T2=[500e-3; 1000e-3; 2000e-3]);","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> plot_seq(seq; slider=false)","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The resulting signal from the BlochDict() method comprises the individual magnetizations of all spins in both the transverse plane (x, y) and the longitudinal axis (z):","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"# Configure BlochDict() simulation method and run simulation\nsim_params = KomaMRICore.default_sim_params()\nsim_params[\"return_type\"] = \"mat\"\nsim_params[\"sim_method\"] = BlochDict(save_Mz=true)\nsig = simulate(obj, seq, sys; sim_params)\n\n# Define the plots for traverse and longitudinal magnetizations\npxy = plot(abs.(sig[:,:,1]));\npz = plot(abs.(sig[:,:,2]));","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"julia> [pxy pz]","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"","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 dacdaaaac..f1afc743c 100644 --- a/dev/sequence/index.html +++ b/dev/sequence/index.html @@ -1,5 +1,5 @@ -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] +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} \\ @@ -55,4 +55,4 @@ julia> seq = s + s + s Sequence[ τ = 11.512 ms | blocks: 33 | ADC: 15 | GR: 33 | RF: 3 | DEF: 5 ] -julia> plot_seq(seq; slider=false)

      +julia> plot_seq(seq; slider=false)
      diff --git a/dev/ui-details/index.html b/dev/ui-details/index.html index fdbf55b86..de87a2b3d 100644 --- a/dev/ui-details/index.html +++ b/dev/ui-details/index.html @@ -1,4 +1,4 @@ -User Interface · KomaMRI.jl: General MRI simulation framework

      User Interface

      This section provides a comprehensive guide on using the User Interface of the KomaMRI package and delves into the internal processes that occur during interaction. By the end of this section, you will be equipped to execute a complete workflow even without any prior programming experience.

      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 provides a comprehensive guide on using the User Interface of the KomaMRI package and delves into the internal processes that occur during interaction. By the end of this section, you will be equipped to execute a complete workflow even without any prior programming experience.

      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:

      And remember, you are free to interact with the plots:

      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:

      REPL and UI communication

      An amazing feature of KomaMRI is that it allows you to modify certain variables in the Julia REPL, and then the user interface automatically updates its plots in real-time:

      The variables that update the interface are:

      • seq_ui[] for the Sequence
      • obj_ui[] for the Phantom
      • sys_ui[] for the Scanner
      • raw_ui[] for the Raw Signal
      • img_ui[] for the Image

      Don't forget to add the brackets [] to these variables, otherwise it won't work.

      +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:

      And remember, you are free to interact with the plots:

      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:

      REPL and UI communication

      An amazing feature of KomaMRI is that it allows you to modify certain variables in the Julia REPL, and then the user interface automatically updates its plots in real-time:

      The variables that update the interface are:

      • seq_ui[] for the Sequence
      • obj_ui[] for the Phantom
      • sys_ui[] for the Scanner
      • raw_ui[] for the Raw Signal
      • img_ui[] for the Image

      Don't forget to add the brackets [] to these variables, otherwise it won't work.

      diff --git a/dev/ways-of-using-koma/index.html b/dev/ways-of-using-koma/index.html index bda8489ee..176dfb535 100644 --- a/dev/ways-of-using-koma/index.html +++ b/dev/ways-of-using-koma/index.html @@ -1,5 +1,5 @@ -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
      +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
      @@ -134,4 +134,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 troubleshooting guide for details. Essentially, you need to install a WebIO extension based on your Jupyter installation.